/* ========================================
   DULHAN PARLOUR - Premium Beauty Website
   Modern, Elegant, Responsive Design
   ======================================== */

/* ========== CSS Variables ========== */
:root {
  /* Primary Colors */
  --primary-pink: #e91e8c;
  --primary-pink-light: #f472b6;
  --primary-pink-dark: #be185d;
  
  /* Purple Accents */
  --primary-purple: #9333ea;
  --primary-purple-light: #a855f7;
  --primary-purple-dark: #7e22ce;
  
  /* Gold Accent */
  --gold: #d4af37;
  --gold-light: #f4d03f;
  
  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #fdf8fc;
  --gray-50: #faf5f8;
  --gray-100: #f5e6ef;
  --gray-200: #edd3e4;
  --gray-300: #d8b4c8;
  --gray-400: #b88da6;
  --gray-500: #926b84;
  --gray-600: #725166;
  --gray-700: #5a3d50;
  --gray-800: #422c3a;
  --gray-900: #2d1f28;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
  --gradient-soft: linear-gradient(135deg, #fce7f3, #f5d0fe);
  --gradient-gold: linear-gradient(135deg, var(--gold), var(--gold-light));
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-pink: 0 10px 40px rgba(233, 30, 140, 0.2);
  --shadow-purple: 0 10px 40px rgba(147, 51, 234, 0.2);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --container-max: 1200px;
  --section-padding: 100px;
  --card-radius: 20px;
  --button-radius: 50px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========== Reset & Base Styles ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul {
  list-style: none;
}

/* ========== Container ========== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== Navigation ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition-normal);
}

.navbar.scrolled .logo {
  color: var(--gray-900);
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar:not(.scrolled) .logo-text {
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 5px 0;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-700);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-pink);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.navbar.scrolled .mobile-menu-btn span {
  background: var(--gray-800);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0a14 0%, #2d1025 50%, #1a0a14 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e91e8c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--primary-pink-light);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--primary-pink-light);
  margin-bottom: 25px;
  font-weight: 400;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.decoration {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.decoration-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.decoration-2 {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.decoration-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--button-radius);
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(233, 30, 140, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-pink);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  background: var(--gradient-soft);
  border-color: var(--primary-pink-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* ========== Section Styles ========== */
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-soft);
  color: var(--primary-pink);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== About Section ========== */
.about {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.about-image.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.about-image img {
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-xl);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 25px;
  border-radius: var(--card-radius);
  text-align: center;
  box-shadow: var(--shadow-pink);
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

.about-content {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.about-content.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.about-text {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  gap: 20px;
  margin-top: 35px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: 15px;
  transition: var(--transition-normal);
}

.feature-item:hover {
  background: var(--gradient-soft);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ========== Services Section ========== */
.services {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-grid.small {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--card-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-pink-light);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.service-card:hover .service-icon {
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 15px;
}

.service-desc {
  color: var(--gray-500);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* ========== Why Choose Us ========== */
.why-us {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-us-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--gray-50);
  border-radius: var(--card-radius);
  transition: var(--transition-normal);
  opacity: 0;
  transform: translateY(20px);
}

.why-us-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.why-us-card:hover {
  background: var(--gradient-soft);
  transform: translateY(-5px);
}

.why-us-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.why-us-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.why-us-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== CTA Section ========== */
.cta {
  padding: 80px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 35px;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--primary-pink);
  box-shadow: var(--shadow-lg);
}

.cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ========== Footer ========== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand p {
  margin-top: 20px;
  line-height: 1.8;
  color: var(--gray-400);
}

.footer-brand .logo {
  color: var(--white);
}

.footer-brand .logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition-normal);
}

.social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.social-links.large a {
  width: 50px;
  height: 50px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 25px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--gray-400);
  transition: var(--transition-normal);
}

.footer-links a:hover {
  color: var(--primary-pink-light);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-400);
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--primary-pink-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--gray-500);
}

.footer-bottom a {
  color: var(--primary-pink-light);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ========== Service Detail Page ========== */
.service-detail {
  padding-top: 120px;
  padding-bottom: var(--section-padding);
  background: var(--gray-50);
  min-height: 100vh;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.breadcrumb a {
  color: var(--primary-pink);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.service-detail-image {
  position: sticky;
  top: 100px;
}

.service-detail-image img {
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-detail-content {
  background: var(--white);
  padding: 50px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
}

.service-detail-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.service-detail-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.service-detail-desc {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 35px;
}

.service-benefits,
.service-occasions {
  margin-bottom: 35px;
}

.service-benefits h3,
.service-occasions h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.service-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-600);
}

.service-benefits li svg {
  flex-shrink: 0;
  color: var(--primary-pink);
  margin-top: 2px;
}

.occasions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.occasion-tag {
  padding: 8px 18px;
  background: var(--gradient-soft);
  color: var(--primary-pink);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

.other-services {
  margin-top: 60px;
}

.other-services h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 40px;
  text-align: center;
}

/* ========== Booking Page ========== */
.booking-section {
  padding-top: 120px;
  padding-bottom: var(--section-padding);
  background: var(--gray-50);
  min-height: 100vh;
}

.booking-header {
  text-align: center;
  margin-bottom: 50px;
}

.booking-form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.booking-form {
  background: var(--white);
  padding: 50px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23926b84' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ef4444;
}

.error-message {
  display: block;
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 8px;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--card-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.info-card h4 {
  font-family: var(--font-display);
  color: var(--gray-900);
  margin-bottom: 8px;
}

.info-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ========== Confirmation Page ========== */
.confirmation-section {
  padding-top: 120px;
  padding-bottom: var(--section-padding);
  background: var(--gray-50);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.confirmation-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px 50px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.confirmation-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-card h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 15px;
}

.confirmation-message {
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.7;
}

.booking-summary {
  background: var(--gray-50);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  text-align: left;
}

.booking-summary h3 {
  font-family: var(--font-display);
  color: var(--gray-900);
  margin-bottom: 20px;
  text-align: center;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  font-weight: 600;
  color: var(--gray-700);
}

.summary-value {
  color: var(--gray-600);
  text-align: right;
}

.confirmation-note {
  background: var(--gradient-soft);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 35px;
}

.confirmation-note p {
  color: var(--gray-700);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.confirmation-note p:last-child {
  margin-bottom: 0;
}

/* ========== Contact Page ========== */
.contact-section {
  padding-top: 120px;
  padding-bottom: var(--section-padding);
  background: var(--gray-50);
  min-height: 100vh;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: var(--card-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-pink);
}

.contact-card h3 {
  font-family: var(--font-display);
  color: var(--gray-900);
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--gray-500);
  margin-bottom: 15px;
}

.contact-link {
  color: var(--primary-pink);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-link:hover {
  text-decoration: underline;
}

.social-section {
  background: var(--white);
  padding: 30px;
  border-radius: var(--card-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.social-section h3 {
  font-family: var(--font-display);
  color: var(--gray-900);
  margin-bottom: 20px;
}

.social-section .social-links {
  justify-content: center;
  margin-top: 0;
}

.contact-form-container {
  background: var(--white);
  padding: 50px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

/* ========== Privacy Policy Page - NEW PREMIUM DESIGN ========== */
.privacy-section-new {
  padding-top: 120px;
  padding-bottom: var(--section-padding);
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  min-height: 100vh;
}

/* Privacy Header */
.privacy-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 60px 40px;
  background: var(--gradient-primary);
  border-radius: var(--card-radius);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.privacy-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.privacy-icon-large {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.privacy-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
  position: relative;
}

.privacy-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 25px;
  position: relative;
}

.privacy-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

/* Privacy Intro Card */
.privacy-intro-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
  border-left: 5px solid var(--primary-pink);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.privacy-intro-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.privacy-intro-card p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 15px;
}

.privacy-intro-card p:last-child {
  margin-bottom: 0;
}

/* Privacy Grid */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Privacy Cards */
.privacy-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-normal);
  opacity: 0;
  transform: translateY(30px);
}

.privacy-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.privacy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.privacy-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 30px;
  background: var(--gradient-soft);
  border-bottom: 1px solid var(--gray-200);
}

.privacy-card-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.privacy-card-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gray-900);
  margin: 0;
}

.privacy-card-content {
  padding: 30px;
}

.privacy-card-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 15px;
}

.privacy-card-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gray-800);
  margin: 20px 0 15px;
}

/* Privacy List */
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 15px;
  background: var(--gray-50);
  border-radius: 10px;
  margin-bottom: 10px;
  color: var(--gray-700);
  transition: var(--transition-normal);
}

.privacy-list li:hover {
  background: var(--gradient-soft);
  transform: translateX(5px);
}

.list-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.privacy-list.check-list li {
  background: rgba(34, 197, 94, 0.08);
  border-left: 3px solid #22c55e;
}

.privacy-list.check-list li:hover {
  background: rgba(34, 197, 94, 0.15);
}

.check-icon {
  color: #22c55e;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Highlight Box */
.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(233, 30, 140, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(233, 30, 140, 0.2);
  margin-top: 20px;
}

.highlight-box.success {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.2);
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-box p {
  margin: 0;
  color: var(--gray-700);
  font-weight: 500;
}

/* Note Text */
.note-text {
  font-size: 0.9rem;
  color: var(--gray-500) !important;
  font-style: italic;
  padding: 15px;
  background: var(--gray-50);
  border-radius: 10px;
  margin-top: 15px;
}

/* Security Badges */
.security-badges {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 25px;
  background: var(--gradient-soft);
  border-radius: 15px;
  flex: 1;
  min-width: 100px;
  text-align: center;
  transition: var(--transition-normal);
}

.security-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.security-badge span:first-child {
  font-size: 2rem;
}

.security-badge span:last-child {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* Third Party Item */
.third-party-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: var(--gray-50);
  border-radius: 10px;
  margin: 15px 0;
  border: 1px solid var(--gray-200);
}

.tp-icon {
  font-size: 1.3rem;
  color: var(--primary-pink);
}

/* Age Badge */
.age-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px 30px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 15px;
  margin-top: 20px;
}

.age-badge span:first-child {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.age-badge span:last-child {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Privacy Changes Card */
.privacy-changes-card {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 40px;
  border-radius: var(--card-radius);
  text-align: center;
  margin-bottom: 30px;
  border: 1px solid #fcd34d;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.privacy-changes-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.changes-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.privacy-changes-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 15px;
}

.privacy-changes-card p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Privacy Contact Card */
.privacy-contact-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--card-radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
  border: 2px solid var(--gray-100);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.privacy-contact-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-icon-large {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.privacy-contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gray-900);
  margin-bottom: 15px;
}

.privacy-contact-card p {
  color: var(--gray-600);
  margin-bottom: 25px;
}

.contact-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--button-radius);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-pink);
}

.contact-email-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(233, 30, 140, 0.35);
}

/* Privacy Footer Nav */
.privacy-footer-nav {
  text-align: center;
  margin-top: 20px;
}

/* Old Privacy Section (kept for reference) */
.privacy-section {
  padding-top: 120px;
  padding-bottom: var(--section-padding);
  background: var(--white);
  min-height: 100vh;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.last-updated {
  color: var(--gray-500);
  margin-bottom: 40px;
  font-style: italic;
}

.privacy-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gray-900);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.privacy-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.privacy-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gray-800);
  margin-top: 25px;
  margin-bottom: 15px;
}

.privacy-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 15px;
}

.privacy-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.privacy-content li {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
}

.privacy-content li::before {
  content: '•';
  color: var(--primary-pink);
  font-weight: bold;
  position: absolute;
  left: -20px;
}

.privacy-content a {
  color: var(--primary-pink);
}

.privacy-content a:hover {
  text-decoration: underline;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
  .about-grid {
    gap: 50px;
  }
  
  .services-grid,
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-detail-grid {
    gap: 40px;
  }
  
  .booking-form-container {
    grid-template-columns: 1fr;
  }
  
  .booking-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .info-card {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }
  
  /* Mobile Navigation */
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 25px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: var(--gray-800) !important;
    font-size: 1.1rem;
  }
  
  /* Hero */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-lg {
    padding: 16px 35px;
    width: 100%;
    max-width: 300px;
  }
  
  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-badge {
    right: 20px;
    bottom: -15px;
    padding: 20px;
  }
  
  .badge-number {
    font-size: 2rem;
  }
  
  /* Services */
  .services-grid,
  .services-grid.small,
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 35px 25px;
  }
  
  /* Service Detail */
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail-image {
    position: relative;
    top: 0;
  }
  
  .service-detail-content {
    padding: 35px 25px;
  }
  
  .service-detail-title {
    font-size: 2rem;
  }
  
  /* Booking */
  .booking-form {
    padding: 35px 25px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .booking-info {
    flex-direction: column;
  }
  
  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: -1;
  }
  
  .contact-form-container {
    padding: 35px 25px;
  }
  
  /* Confirmation */
  .confirmation-card {
    padding: 40px 25px;
  }
  
  /* Privacy Policy Page - Responsive */
  .privacy-grid {
    grid-template-columns: 1fr;
  }
  
  .privacy-header {
    padding: 40px 25px;
  }
  
  .privacy-icon-large {
    font-size: 3rem;
  }
  
  .privacy-intro-card {
    padding: 30px 25px;
  }
  
  .privacy-card-header {
    padding: 20px;
  }
  
  .privacy-card-content {
    padding: 20px;
  }
  
  .privacy-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .privacy-card-header h2 {
    font-size: 1.1rem;
  }
  
  .security-badges {
    flex-direction: column;
  }
  
  .privacy-changes-card,
  .privacy-contact-card {
    padding: 30px 25px;
  }
  
  .contact-icon-large {
    font-size: 3rem;
  }
  
  .meta-item {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 50px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-icon,
  .why-us-icon {
    font-size: 2.5rem;
  }
  
  .service-detail-icon {
    font-size: 3rem;
  }
  
  .confirmation-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
  }
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.why-us-card {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.why-us-card:nth-child(1) { animation-delay: 0.1s; }
.why-us-card:nth-child(2) { animation-delay: 0.2s; }
.why-us-card:nth-child(3) { animation-delay: 0.3s; }
.why-us-card:nth-child(4) { animation-delay: 0.4s; }
.why-us-card:nth-child(5) { animation-delay: 0.5s; }
.why-us-card:nth-child(6) { animation-delay: 0.6s; }

/* Loading state for cards */
.service-card,
.why-us-card {
  opacity: 0;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-pink-dark);
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar,
  .hero-decorations,
  .cta,
  .footer {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: 50px 0;
    background: var(--white);
  }
  
  .hero-title,
  .hero-subtitle,
  .hero-description {
    color: var(--gray-900);
  }
}
