* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #8e2de2;
  --secondary: #ff6a88;
  --dark: #4b145a;
  --light: #fff0f5;
  --white: #ffffff;
  --text: #333;
}
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* NAVBAR */
.navbar {
  background: var(--dark);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .logo img {
  height: 50px;
  border: 2px solid white;
  border-radius: 8px;
  padding: 4px;
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--secondary);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  text-align: center;
  padding: 90px 20px 70px;
  animation: fadeInUp 1s ease;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: var(--white);
  color: var(--primary);
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* SERVICES PREVIEW */
.services-preview {
  padding: 70px 5%;
  text-align: center;
}
.services-preview h2 {
  font-size: 2.4rem;
  margin-bottom: 45px;
  color: var(--dark);
  position: relative;
}
.services-preview h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 12px auto 0;
  border-radius: 2px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 20px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid #f8f0f5;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(142, 45, 226, 0.25);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid var(--light);
}
.service-card h3 {
  padding: 20px 15px 10px;
  font-size: 1.4rem;
  color: var(--primary);
}
.preview-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 11px 28px;
  border-radius: 28px;
  margin: 0 15px 20px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 10px rgba(142, 45, 226, 0.3);
}
.preview-btn:hover {
  background: var(--secondary);
  transform: scale(1.05);
}

/* COMMUNITY */
.community {
  background: var(--white);
  margin: 60px auto 50px;
  max-width: 90%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border: 2px solid #f5e6f0;
}
.banner {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  padding: 45px 25px;
  text-align: center;
}
.banner h2 {
  font-size: 2.1rem;
  margin-bottom: 12px;
}
.social-buttons {
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.social-btn {
  padding: 13px 26px;
  border-radius: 32px;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 14px rgba(0,0,0,0.22);
  transition: all 0.3s ease;
  font-size: 1rem;
}
.social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}
.facebook { background: #3b5998; }
.instagram { background: #e1306c; }
.whatsapp { background: #25d366; }
.tiktok { background: #000000; }

/* FOOTER */
footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 25px;
  margin-top: 40px;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 65px;
  font-size: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  z-index: 1000;
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.15) rotate(10deg);
}

/* SERVICE PAGES */
.service-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.back-home {
  display: inline-block;
  margin: 25px auto;
  padding: 10px 24px;
  background: white;
  color: var(--primary);
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.back-home:hover {
  background: #f0e6f2;
}

/* PRICING TABLE */
.pricing-container {
  max-width: 950px;
  margin: 40px auto;
  padding: 0 15px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
th, td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #f0e6f2;
}
th {
  background: var(--dark);
  color: white;
  font-weight: 600;
}
tr:last-child td {
  border-bottom: none;
}
tr:hover {
  background-color: #fdf2f8;
}

/* MAKEUP & LASHES GALLERY */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 40px 15px;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s;
}
.gallery img:hover {
  transform: scale(1.03);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.1rem; }
  .hero p { font-size: 1.1rem; }
  .service-grid { gap: 20px; }
  .social-buttons { padding: 20px; }
  .nav-links { display: none; }
}