/* ==========================================================================
   DAISY MAKEUP STUDIO AND ACADEMY - LUXURY DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* 1. GOOGLE FONTS IMPORT & CSS VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@1,500;1,600&display=swap');

:root {
  /* Primary Color Palette */
  --blush-pink: #F8E8EA;
  --blush-pink-light: #FDFAF5;
  --rose-gold: #D89CA5;
  --rose-gold-dark: #C27E89;
  --rose-gold-light: #F4DCDD;
  --burgundy: #8C1D40;
  --burgundy-dark: #4A1026;
  --burgundy-deep: #2C0B18;
  --burgundy-glow: rgba(140, 29, 64, 0.15);
  --champagne-gold: #D4AF37;
  --champagne-gold-light: #F9E8A2;
  --champagne-gold-dark: #AA8721;
  --pure-white: #FFFFFF;
  --warm-cream: #FFF8F4;
  
  /* Text & Surface Neutral Colors */
  --text-dark: #2D1B24;
  --text-muted: #6B5560;
  --text-light: #F9ECEE;
  --border-light: rgba(216, 156, 165, 0.25);
  --border-gold: rgba(212, 175, 55, 0.35);
  
  /* Glassmorphism Effects */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-dark: rgba(44, 11, 24, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 16px 40px rgba(140, 29, 64, 0.08);
  --glass-glow: 0 0 35px rgba(216, 156, 165, 0.3);

  /* Shadows & Elevation */
  --shadow-sm: 0 4px 15px rgba(44, 11, 24, 0.04);
  --shadow-md: 0 10px 30px rgba(140, 29, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(44, 11, 24, 0.12);
  --shadow-luxury: 0 25px 60px -15px rgba(140, 29, 64, 0.2);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Transitions */
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
}

/* 2. RESET & BASE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--warm-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Luxury Ambient Gradient */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 10% 10%, rgba(248, 232, 234, 0.8), transparent 40%),
    radial-gradient(circle at 90% 40%, rgba(216, 156, 165, 0.15), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(212, 175, 55, 0.08), transparent 60%);
  z-index: -2;
  pointer-events: none;
}

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

/* 3. UTILITY CLASSES & CONTAINERS */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 110px 0;
}

.text-center {
  text-align: center;
}

/* Section Header Component */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--burgundy);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--burgundy);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-description {
  max-width: 680px;
  margin: 0 auto 50px auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--rose-gold);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--pure-white);
  box-shadow: 0 10px 25px rgba(140, 29, 64, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.6s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(140, 29, 64, 0.45);
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy-deep) 100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--champagne-gold-dark) 100%);
  color: var(--burgundy-deep);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--champagne-gold-light) 0%, var(--champagne-gold) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--burgundy-dark);
  border: 1.5px solid var(--rose-gold);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--burgundy);
  color: var(--pure-white);
  border-color: var(--burgundy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* 4. HEADER & STICKY NAVIGATION */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: linear-gradient(135deg, rgba(74, 21, 75, 0.95) 0%, rgba(39, 10, 46, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px rgba(39, 10, 46, 0.3);
  transition: var(--transition-normal);
}

.navbar-header.scrolled {
  padding: 12px 0;
  background: linear-gradient(135deg, rgba(74, 21, 75, 0.98) 0%, rgba(39, 10, 46, 0.98) 100%);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--champagne-gold);
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.official-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
  transition: var(--transition-fast);
}

.official-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 18px rgba(212, 175, 55, 0.5));
}

.official-logo-footer {
  height: 75px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.4));
  margin-bottom: 12px;
}

.logo-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold-light), var(--blush-pink));
  border: 1px solid var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(216, 156, 165, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.brand-tagline-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--champagne-gold-dark);
  font-weight: 600;
}

/* Desktop Menu Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--blush-pink-light);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne-gold), var(--rose-gold));
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--champagne-gold);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger Toggle Button for Mobile */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--champagne-gold);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(74, 21, 75, 0.98) 0%, rgba(39, 10, 46, 0.98) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1050;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  border-left: 2px solid var(--champagne-gold);
  transition: var(--transition-smooth);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--pure-white);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:hover {
  color: var(--champagne-gold);
}

/* 5. HERO SECTION */
.hero-section {
  padding-top: 160px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(216, 156, 165, 0.2), rgba(212, 175, 55, 0.15));
  border: 1px solid var(--rose-gold);
  color: var(--burgundy);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--burgundy-dark);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--rose-gold-dark) 50%, var(--champagne-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--champagne-gold-dark);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Achievement Badges Pill */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pure-white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--burgundy-dark);
}

.badge-item i {
  color: var(--champagne-gold);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Social Links Bar */
.hero-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.social-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--burgundy);
  color: var(--pure-white);
  border-color: var(--burgundy);
  transform: translateY(-3px);
}

/* Hero Visual & Right Side Frame */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 8px solid var(--pure-white);
  outline: 3px solid var(--champagne-gold);
  box-shadow: var(--shadow-luxury);
  background: var(--pure-white);
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  max-height: 660px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: var(--transition-smooth);
}

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

/* Floating Glass Badges - Positioned Off Image Area */
.floating-badge {
  position: absolute;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--champagne-gold);
  box-shadow: 0 12px 30px rgba(44, 11, 24, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  animation: floatAnim 6s ease-in-out infinite alternate;
}

.floating-badge-top {
  top: 15px;
  left: -20px;
}

.floating-badge-bottom {
  bottom: 15px;
  right: -15px;
  animation-delay: -3s;
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold-light), var(--blush-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-size: 1.2rem;
}

.float-info h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--burgundy-dark);
}

.float-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@keyframes floatAnim {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1deg); }
}

/* Decorative Glow Spheres */
.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.glow-1 {
  width: 320px;
  height: 320px;
  background: rgba(216, 156, 165, 0.35);
  top: 10%;
  right: 5%;
}

.glow-2 {
  width: 280px;
  height: 280px;
  background: rgba(212, 175, 55, 0.2);
  bottom: 10%;
  left: 5%;
}

/* 6. ABOUT SECTION */
.about-section {
  background: linear-gradient(180deg, var(--warm-cream) 0%, var(--blush-pink-light) 100%);
  position: relative;
}

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

.about-visual {
  position: relative;
}

.about-img-group {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-luxury);
  border: 8px solid var(--pure-white);
  outline: 2px solid var(--champagne-gold);
}

.about-experience-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--burgundy-dark);
  color: var(--pure-white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxury);
  border: 2px solid var(--champagne-gold);
  text-align: center;
  max-width: 220px;
}

.about-experience-card h3 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--champagne-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.about-experience-card p {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rose-gold-light);
}

.about-content {
  padding-left: 10px;
}

.about-paragraph {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Founder Qualifications Badges & Specialty List */
.founder-qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px 0;
}

.qual-badge {
  background: var(--pure-white);
  border: 1px solid var(--rose-gold);
  color: var(--burgundy-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.qual-badge i {
  color: var(--champagne-gold-dark);
}

.specialty-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px 0;
}

.specialty-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--burgundy-dark);
}

.specialty-item i {
  color: var(--champagne-gold-dark);
  font-size: 1.1rem;
}

/* Statistics Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}

.stat-card {
  text-align: center;
  padding: 18px 12px;
  background: var(--pure-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.stat-card:hover {
  border-color: var(--rose-gold);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 7. SERVICES SECTION */
.services-section {
  position: relative;
}

/* Services Filter Bar */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--burgundy);
  color: var(--pure-white);
  border-color: var(--burgundy);
  box-shadow: 0 8px 20px rgba(140, 29, 64, 0.25);
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  background: var(--pure-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--rose-gold);
}

.service-img-wrap {
  position: relative;
  height: 290px;
  overflow: hidden;
  background: var(--warm-cream);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-smooth);
}

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

.service-badge-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(44, 11, 24, 0.85);
  color: var(--champagne-gold);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

.service-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold-light), var(--blush-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-size: 1.3rem;
  margin-bottom: 16px;
  border: 1px solid var(--rose-gold);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--burgundy-dark);
  margin-bottom: 10px;
}

.service-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--burgundy);
}

/* 8. WHY CHOOSE US SECTION */
.why-us-section {
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy-dark) 100%);
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.why-us-section .section-title {
  color: var(--pure-white);
}

.why-us-section .section-subtitle {
  color: var(--champagne-gold);
}

.why-us-section .section-subtitle::before,
.why-us-section .section-subtitle::after {
  background: var(--champagne-gold);
}

.why-us-section .section-description {
  color: var(--rose-gold-light);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 22px;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  border-color: var(--champagne-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne-gold), var(--champagne-gold-dark));
  color: var(--burgundy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--pure-white);
}

.why-info p {
  font-size: 0.86rem;
  color: var(--rose-gold-light);
  line-height: 1.6;
}

/* 9. ACADEMY SECTION */
.academy-section {
  position: relative;
}

.academy-banner {
  background: linear-gradient(135deg, var(--blush-pink) 0%, var(--warm-cream) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rose-gold);
  padding: 60px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.academy-visual {
  position: relative;
  text-align: center;
}

.academy-img {
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxury);
  border: 6px solid var(--pure-white);
  outline: 2px solid var(--champagne-gold);
  cursor: pointer;
  transition: var(--transition-normal);
}

.academy-img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 70px rgba(140, 29, 64, 0.25);
}

.academy-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}

.academy-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pure-white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--burgundy-dark);
}

.academy-pill i {
  color: var(--burgundy);
  font-size: 1.1rem;
}

/* 10. BRIDAL PACKAGES & COST ESTIMATOR */
.packages-section {
  background: var(--blush-pink-light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.package-card {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

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

.package-card.featured {
  background: linear-gradient(180deg, #FFFDF9 0%, #FFF5F7 100%);
  border: 2px solid var(--champagne-gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
  transform: scale(1.03);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.featured-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--champagne-gold-dark) 100%);
  color: var(--burgundy-deep);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.package-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.package-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--burgundy-dark);
  margin-bottom: 8px;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--burgundy);
}

.package-price span {
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 400;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.package-features li i {
  color: var(--champagne-gold-dark);
  font-size: 1rem;
}

/* Interactive Bridal Package Estimator Widget */
.estimator-box {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--rose-gold);
  max-width: 900px;
  margin: 0 auto;
}

.estimator-header {
  text-align: center;
  margin-bottom: 30px;
}

.estimator-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--burgundy-dark);
}

.estimator-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.estimator-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--warm-cream);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
}

.estimator-checkbox-label:hover {
  border-color: var(--rose-gold);
  background: var(--blush-pink-light);
}

.estimator-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--burgundy);
  cursor: pointer;
}

.estimator-total-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 2px dashed var(--border-light);
  flex-wrap: wrap;
  gap: 20px;
}

.total-amount-display {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
}

/* 11. GALLERY SECTION (PINTEREST MASONRY) */
.gallery-section {
  position: relative;
}

.gallery-grid {
  columns: 3 320px;
  column-gap: 24px;
}

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

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(44, 11, 24, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category-badge {
  color: var(--champagne-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-title {
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 4, 8, 0.92);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--rose-gold);
}

.lightbox-caption {
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-top: 16px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--pure-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--rose-gold);
}

/* 12. TESTIMONIALS SECTION */
.testimonials-section {
  background: linear-gradient(180deg, var(--blush-pink-light) 0%, var(--warm-cream) 100%);
  overflow: hidden;
}

.testimonial-carousel-container {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.testimonial-slide {
  background: var(--pure-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeInSlide 0.5s ease-out;
}

@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
  color: var(--champagne-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--burgundy-dark);
  line-height: 1.7;
  margin-bottom: 30px;
}

.client-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-gold);
}

.client-details h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--burgundy-dark);
}

.client-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Stylish Client Avatar & Profile Badge */
.client-avatar-initial {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A154B 0%, #270A2E 100%);
  border: 2px solid var(--champagne-gold);
  color: var(--champagne-gold);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(39, 10, 46, 0.3);
}

.stylish-client-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  letter-spacing: -0.3px;
  margin-bottom: 2px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--burgundy-dark);
  margin-top: 4px;
  box-shadow: var(--shadow-sm);
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  color: var(--burgundy);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.carousel-nav-btn:hover {
  background: var(--burgundy);
  color: var(--pure-white);
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

/* 13. BOOKING SECTION */
.booking-section {
  position: relative;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.booking-info-box {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy-deep) 100%);
  color: var(--pure-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--rose-gold);
}

.booking-info-box h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--champagne-gold);
  margin-bottom: 16px;
}

.booking-info-box p {
  color: var(--rose-gold-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.booking-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.booking-feature-item i {
  color: var(--champagne-gold);
  font-size: 1.1rem;
}

/* Booking Form */
.booking-form-card {
  background: var(--pure-white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background: var(--warm-cream);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--burgundy);
  background: var(--pure-white);
  box-shadow: 0 0 0 4px rgba(140, 29, 64, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* 14. CONTACT SECTION */
.contact-section {
  background: var(--blush-pink-light);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.contact-card {
  background: var(--pure-white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--rose-gold);
  box-shadow: var(--shadow-luxury);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold-light), var(--blush-pink));
  color: var(--burgundy);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 1px solid var(--rose-gold);
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--burgundy-dark);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Interactive Map Frame */
.map-container {
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--pure-white);
}

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

/* 15. FAQ ACCORDION SECTION */
.faq-section {
  position: relative;
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy-dark);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--burgundy);
  transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 28px;
  background: var(--blush-pink-light);
}

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

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 16. FOOTER SECTION */
.site-footer {
  background: linear-gradient(180deg, #4A154B 0%, #270A2E 100%);
  color: var(--pure-white);
  padding-top: 90px;
  padding-bottom: 40px;
  position: relative;
  border-top: 3px solid var(--champagne-gold);
  box-shadow: 0 -15px 40px rgba(39, 10, 46, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 1fr 1.1fr;
  gap: 30px;
  margin-bottom: 60px;
}

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

.footer-brand p {
  color: var(--rose-gold-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 20px 0;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--champagne-gold);
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--rose-gold-light);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--champagne-gold);
  padding-left: 6px;
}

/* Footer Contact Details List */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--rose-gold-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact-list li i {
  color: var(--champagne-gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--rose-gold-light);
  transition: var(--transition-fast);
}

.footer-contact-list a:hover {
  color: var(--champagne-gold);
}

.newsletter-box p {
  color: var(--rose-gold-light);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--pure-white);
  font-size: 0.88rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

/* 17. FLOATING BUTTONS & TOAST NOTIFICATION */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: var(--transition-fast);
}

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

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 34px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 980;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--burgundy-dark);
  transform: translateY(-4px);
}

/* Success Toast Popup */
.toast-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: var(--burgundy-dark);
  color: var(--pure-white);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--champagne-gold);
  box-shadow: var(--shadow-luxury);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3000;
  transform: translateY(-100px);
  opacity: 0;
  transition: var(--transition-normal);
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification i {
  color: var(--champagne-gold);
  font-size: 1.4rem;
}

/* 18. RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .academy-banner,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card.featured {
    transform: none;
  }

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

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid {
    columns: 1 100%;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

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

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

  .carousel-nav-btn {
    display: none;
  }
}

/* ==========================================================================
   HIGH-END PROFESSIONAL LUXURY EXTENSIONS
   ========================================================================== */

/* Shimmer Gold Animated Text */
.text-shimmer {
  background: linear-gradient(120deg, var(--burgundy) 0%, var(--champagne-gold-dark) 35%, var(--rose-gold) 65%, var(--burgundy-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 6s linear infinite;
}

@keyframes shimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Interactive Before / After Transformation Slider */
.before-after-wrapper {
  margin: 60px 0 30px 0;
}

.before-after-container {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 4px solid var(--pure-white);
  outline: 1px solid var(--rose-gold);
  margin: 0 auto;
  user-select: none;
}

.before-img,
.after-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 3px solid var(--champagne-gold);
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy-deep));
  border: 2px solid var(--champagne-gold);
  color: var(--champagne-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(44, 11, 24, 0.4);
  cursor: ew-resize;
  z-index: 10;
  font-size: 1.2rem;
  transition: transform 0.15s ease;
}

.slider-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.badge-label-before,
.badge-label-after {
  position: absolute;
  top: 20px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 8;
  backdrop-filter: blur(10px);
}

.badge-label-before {
  left: 20px;
  background: rgba(44, 11, 24, 0.85);
  color: var(--rose-gold-light);
  border: 1px solid var(--rose-gold);
}

.badge-label-after {
  right: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(170, 135, 33, 0.9));
  color: var(--burgundy-deep);
  border: 1px solid var(--pure-white);
}

/* Luxury Card Shimmer Glow Border */
.luxury-glow-card {
  position: relative;
}

.luxury-glow-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--rose-gold), var(--champagne-gold), var(--burgundy));
  z-index: -1;
  opacity: 0.3;
  transition: var(--transition-normal);
}

.luxury-glow-card:hover::before {
  opacity: 0.9;
  filter: blur(4px);
}

/* Scroll Reveal Side Animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-right {
  opacity: 0;
  transform: translateX(70px);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* Stagger Delays for Grid Cards */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ==================== AWARDS SECTION ==================== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.award-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.award-card:hover {
  transform: translateY(-8px);
  border-color: var(--champagne-gold);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.award-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #0d0a12;
}

.award-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.award-card:hover .award-img-wrap img {
  transform: scale(1.06);
}

.award-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--champagne-gold) 0%, #b8860b 100%);
  color: #120d18;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.award-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.award-year {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--champagne-gold);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.award-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.award-org {
  font-size: 0.85rem;
  color: var(--champagne-gold-light);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.award-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-top: auto;
}


