/* ============================================
   SEETHA LUXURY BEAUTY SPA - Premium Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ----- CSS Variables ----- */
:root {
  --rose-gold: #D4A373;
  --rose-gold-dark: #c49263;
  --rose-gold-light: #e8c9a8;
  --ivory: #FFF8F0;
  --champagne: #F5E6D3;
  --lavender: #E6D7FF;
  --charcoal: #2B2B2B;
  --charcoal-light: #3d3d3d;
  --white: #FFFFFF;
  --black: #1a1a1a;
  --glass-bg: rgba(255, 248, 240, 0.15);
  --glass-border: rgba(255, 248, 240, 0.25);
  --glass-shadow: rgba(212, 163, 115, 0.15);
  --shadow-sm: 0 2px 8px rgba(43, 43, 43, 0.08);
  --shadow-md: 0 8px 32px rgba(43, 43, 43, 0.12);
  --shadow-lg: 0 16px 48px rgba(43, 43, 43, 0.16);
  --shadow-glow: 0 0 30px rgba(212, 163, 115, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 16px;
  display: block;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ----- Loading Screen ----- */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--rose-gold);
  margin-bottom: 24px;
  letter-spacing: 3px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--champagne);
  border-top-color: var(--rose-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ----- Glassmorphism Navbar ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--nav-height);
  background: rgba(255, 248, 240, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 163, 115, 0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 248, 240, 0.92);
  box-shadow: 0 4px 30px rgba(43, 43, 43, 0.08);
  border-bottom-color: rgba(212, 163, 115, 0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  color: var(--rose-gold);
  font-weight: 400;
  font-style: italic;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  letter-spacing: 0.5px;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-gold);
  transition: var(--transition);
}

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

.nav-links a.active { color: var(--rose-gold); }

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  transition: var(--transition);
}

.nav-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.nav-whatsapp::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  box-shadow: 0 8px 25px rgba(212, 163, 115, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 163, 115, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--rose-gold);
}

.btn-secondary:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

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

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

.btn-lg {
  padding: 18px 42px;
  font-size: 0.95rem;
}

/* ----- Floating Shapes ----- */
.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: floatAnim 15s ease-in-out infinite;
}

.float-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  background: var(--rose-gold);
  top: -5%;
  left: -5%;
  animation-delay: 0s;
}

.float-shape:nth-child(2) {
  width: 300px;
  height: 300px;
  background: var(--lavender);
  bottom: -3%;
  right: -3%;
  animation-delay: -5s;
}

.float-shape:nth-child(3) {
  width: 200px;
  height: 200px;
  background: var(--champagne);
  top: 40%;
  right: 10%;
  animation-delay: -10s;
}

@keyframes floatAnim {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 25px) scale(1.02); }
}

/* ----- Hero Section ----- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid rgba(212, 163, 115, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-gold-dark);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--rose-gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--rose-gold);
  font-style: italic;
}

.hero-text {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container {
  width: 100%;
  max-width: 560px;
  height: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--rose-gold-light), var(--champagne));
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-frame {
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(212, 163, 115, 0.2);
  border-radius: calc(var(--radius-xl) + 12px);
  z-index: -1;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(212, 163, 115, 0.1);
  border-radius: calc(var(--radius-xl) + 20px);
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 163, 115, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: floatCard 6s ease-in-out infinite;
}

.hero-floating-card-1 {
  bottom: 30px;
  left: -30px;
  animation-delay: 0s;
}

.hero-floating-card-2 {
  top: 40px;
  right: -20px;
  animation-delay: -3s;
}

.hero-floating-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hero-floating-card-icon.gold { background: rgba(212, 163, 115, 0.15); }
.hero-floating-card-icon.lavender { background: rgba(230, 215, 255, 0.4); }

.hero-floating-card-text small {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 2px;
}

.hero-floating-card-text strong {
  font-size: 0.9rem;
  color: var(--charcoal);
}

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

/* ----- Hero Scroll Indicator ----- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #bbb;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose-gold), transparent);
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ----- Counters Section ----- */
.counters-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.counter-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid rgba(212, 163, 115, 0.1);
  transition: var(--transition);
}

.counter-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 163, 115, 0.2);
}

.counter-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-number .suffix {
  font-size: 1.8rem;
}

.counter-label {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(212, 163, 115, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 163, 115, 0.2);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-image .card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--rose-gold-dark);
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.service-card-body p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid rgba(212, 163, 115, 0.08);
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rose-gold);
}

.service-card .btn-whatsapp {
  padding: 8px 18px;
  font-size: 0.75rem;
}

/* ----- Packages Section ----- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(212, 163, 115, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 2px var(--rose-gold), var(--shadow-md);
}

.package-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--rose-gold);
  color: var(--white);
  padding: 4px 40px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  transform: rotate(45deg);
}

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

.package-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.package-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-card .package-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-gold);
  margin-bottom: 20px;
}

.package-card .package-price small {
  font-size: 0.9rem;
  color: #999;
  font-family: var(--font-body);
}

.package-features {
  text-align: left;
  margin-bottom: 24px;
}

.package-features li {
  padding: 8px 0;
  font-size: 0.85rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(212, 163, 115, 0.06);
}

.package-features li::before {
  content: '\2713';
  color: var(--rose-gold);
  font-weight: 700;
}

/* ----- Testimonials ----- */
.testimonials-section {
  background: linear-gradient(135deg, var(--ivory), var(--champagne));
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 163, 115, 0.08);
  transition: var(--transition);
}

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

.testimonial-stars {
  color: var(--rose-gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--champagne);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-title {
  font-size: 0.75rem;
  color: #999;
}

/* ----- Beauty Tips Section ----- */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tip-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.tip-image {
  height: 200px;
  overflow: hidden;
}

.tip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tip-card:hover .tip-image img { transform: scale(1.08); }

.tip-body {
  padding: 24px;
}

.tip-tag {
  display: inline-block;
  background: rgba(212, 163, 115, 0.1);
  color: var(--rose-gold-dark);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.tip-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tip-body p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.7;
}

/* ----- WhatsApp Booking Selector ----- */
.booking-selector {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-light));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.booking-selector::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.1), transparent);
  top: -200px;
  right: -200px;
}

.booking-selector::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 215, 255, 0.08), transparent);
  bottom: -100px;
  left: -100px;
}

.booking-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.booking-form-wrapper .section-title { color: var(--white); }
.booking-form-wrapper .section-subtitle { color: rgba(255,255,255,0.7); }

.booking-select-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.booking-select-group select {
  flex: 1;
  min-width: 280px;
  padding: 16px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4A373' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.booking-select-group select option {
  background: var(--charcoal);
  color: var(--white);
}

.booking-select-group select:focus {
  border-color: var(--rose-gold);
}

/* ----- CTA Sections ----- */
.cta-section {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::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.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .section-title { color: var(--white); }
.cta-section .section-subtitle { color: rgba(255,255,255,0.8); margin-left: auto; margin-right: auto; }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ----- Sticky WhatsApp Bar ----- */
.sticky-whatsapp-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 163, 115, 0.15);
  padding: 12px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-whatsapp-bar .bar-text {
  font-size: 0.8rem;
  color: var(--charcoal);
  font-weight: 500;
}

.sticky-whatsapp-bar .bar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ----- Floating WhatsApp Button ----- */
.floating-whatsapp {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9997;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.55); }
}

/* ----- Footer ----- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand h3 span { color: var(--rose-gold); font-style: italic; }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--rose-gold);
  transform: translateX(4px);
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: 50px 0 0 50px;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--rose-gold); }

.newsletter-form button {
  padding: 12px 20px;
  background: var(--rose-gold);
  color: var(--white);
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition);
}

.newsletter-form button:hover { background: var(--rose-gold-dark); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.footer-bottom-links a:hover { color: var(--rose-gold); }

/* ----- About Page ----- */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, var(--ivory), var(--champagne));
  position: relative;
}

.about-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.about-hero-content p {
  font-size: 1.1rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

.alt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.alt-layout.reverse {
  direction: rtl;
}

.alt-layout.reverse > * {
  direction: ltr;
}

.alt-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.alt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.alt-image:hover img { transform: scale(1.03); }

.alt-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.alt-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ----- Timeline ----- */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose-gold), var(--lavender), var(--rose-gold));
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rose-gold);
  border: 3px solid var(--ivory);
  box-shadow: 0 0 0 2px var(--rose-gold);
}

.timeline-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.85rem;
  color: #888;
}

/* ----- Team Grid ----- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 163, 115, 0.08);
  transition: var(--transition);
}

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

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--champagne);
  border: 3px solid rgba(212, 163, 115, 0.2);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card span {
  font-size: 0.8rem;
  color: var(--rose-gold);
  font-weight: 500;
}

.team-card p {
  font-size: 0.8rem;
  color: #999;
  margin-top: 12px;
  line-height: 1.6;
}

/* ----- Services Page ----- */
.services-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, var(--ivory), var(--champagne));
  position: relative;
}

.services-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.services-hero-content p {
  font-size: 1.1rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 40px 0;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-detail-image:hover img { transform: scale(1.03); }

.service-detail-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-detail-content .service-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.service-detail-content .service-meta span {
  font-size: 0.8rem;
  color: var(--rose-gold);
  font-weight: 500;
  background: rgba(212, 163, 115, 0.1);
  padding: 4px 14px;
  border-radius: 50px;
}

.service-detail-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-benefits {
  margin-bottom: 20px;
}

.service-benefits li {
  font-size: 0.85rem;
  color: #555;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-benefits li::before {
  content: '\2713';
  color: var(--rose-gold);
  font-weight: 700;
}

/* ----- Gallery Page ----- */
.gallery-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, var(--ivory), var(--champagne));
  position: relative;
}

.gallery-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.gallery-hero-content p {
  font-size: 1.1rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.gallery-filter {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(212, 163, 115, 0.2);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--charcoal);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--champagne);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,43,43,0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-overlay span {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}

/* ----- Lightbox ----- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-align: center;
}

/* ----- Contact Page ----- */
.contact-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, var(--ivory), var(--champagne));
  position: relative;
}

.contact-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.contact-hero-content p {
  font-size: 1.1rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 163, 115, 0.08);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 163, 115, 0.06);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 163, 115, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail-content p {
  font-size: 0.85rem;
  color: #888;
}

.contact-hours {
  margin-top: 20px;
  padding: 20px;
  background: rgba(212, 163, 115, 0.06);
  border-radius: var(--radius-md);
}

.contact-hours h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 12px;
}

.contact-hours .hour-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.85rem;
  color: #666;
}

.contact-hours .hour-row .day { font-weight: 500; }
.contact-hours .hour-row .time { color: var(--rose-gold); }

.contact-map {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----- Booking Form ----- */
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 163, 115, 0.08);
}

.booking-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.booking-form-card > p {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group label .required {
  color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(212, 163, 115, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--ivory);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.08);
}

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

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

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 163, 115, 0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.active { display: block; }

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success p {
  color: #888;
  margin-bottom: 24px;
}

.form-error {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}

.form-error.active { display: block; }

/* ----- Accordion/FAQ ----- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid rgba(212, 163, 115, 0.08);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(212, 163, 115, 0.2); }

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.faq-question .faq-toggle {
  font-size: 1.2rem;
  color: var(--rose-gold);
  transition: var(--transition);
}

.faq-item.active .faq-question { color: var(--rose-gold); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.8;
}

/* ----- Comparison Cards ----- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.comparison-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 163, 115, 0.1);
  transition: var(--transition);
}

.comparison-card.professional {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--rose-gold);
}

.comparison-card.regular {
  background: var(--white);
}

.comparison-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.comparison-card.professional h4 { color: var(--rose-gold); }

.comparison-card ul li {
  padding: 8px 0;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(212, 163, 115, 0.06);
}

.comparison-card.professional ul li { color: rgba(255,255,255,0.8); }
.comparison-card.regular ul li { color: #666; }

.comparison-card ul li::before {
  content: '\2713';
  font-weight: 700;
}

.comparison-card.professional ul li::before { color: var(--rose-gold); }
.comparison-card.regular ul li::before { color: #ccc; }

/* ----- Video Placeholders ----- */
.video-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--champagne), var(--lavender));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.video-placeholder:hover { transform: scale(1.02); }

.video-placeholder .play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--rose-gold);
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
  transition: var(--transition);
}

.video-placeholder:hover .play-btn { transform: scale(1.1); }

.video-placeholder span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--charcoal);
}

/* ----- Page Transition ----- */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ----- Animations ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-image-container {
    height: 450px;
    max-width: 100%;
  }

  .hero-title { font-size: clamp(2rem, 5vw, 3rem); }
  .hero-floating-card-1 { left: 10px; }
  .hero-floating-card-2 { right: 10px; }

  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .alt-layout { grid-template-columns: 1fr; gap: 40px; }
  .alt-layout.reverse { direction: ltr; }
  .alt-image { height: 350px; }

  .service-detail { grid-template-columns: 1fr; gap: 30px; }
  .service-detail.reverse { direction: ltr; }
  .service-detail-image { height: 300px; }

  .contact-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .navbar { height: 70px; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(212, 163, 115, 0.1);
    transform: translateY(-110%);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active { transform: translateY(0); }

  .nav-toggle { display: flex; }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-image-container { height: 350px; }

  .hero-floating-card {
    display: none;
  }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .scroll-indicator { display: none; }

  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .counter-number { font-size: 2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .gallery-masonry { columns: 1; }

  .form-row { grid-template-columns: 1fr; }

  .booking-select-group {
    flex-direction: column;
  }

  .booking-select-group select { min-width: auto; }

  .floating-whatsapp {
    bottom: 70px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .sticky-whatsapp-bar { display: flex; }

  .comparison-grid { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-image-container { height: 280px; }
  .team-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .alt-image { height: 250px; }
  .service-detail-image { height: 220px; }
}
