/* Reset and Base Styles */
/* Note: Tailwind CSS is included via CDN and provides its own reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* WCAG Accessibility - Skip to Main Content Link */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 12px 24px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-to-main:focus {
    top: 0;
    outline: 3px solid var(--text-black);
    outline-offset: 2px;
}

/* WCAG Accessibility - Focus Indicators */
*:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Ensure sufficient color contrast for focus indicators */
.nav-link:focus-visible,
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-service:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
    background-color: var(--button-color);
    color: var(--text-white);
}

/* Required field indicator */
.required {
    color: var(--pink-rose);
    font-weight: bold;
}

/* Prevent Tailwind from overriding custom styles */
@layer base {
    /* Custom styles will take precedence */
}

/* Promotion Bar - REMOVED */

/* ================================================

   PERFECT COLOR PALETTE SYSTEM

   Professional color organization for web design

   ================================================ */

:root {
  /* ============================================

     PRIMARY COLORS - Main Brand Identity

     ============================================ */

  

  /* Greens - Nature & Growth */

  --primary-green: #A4C639;           /* Vibrant lime green - Main CTA */

  --primary-green-light: #B8D84E;     /* Light lime - Hover states */

  --primary-green-dark: #8BAA2E;      /* Deep lime - Active states */

  --forest-dark: #0f3029;             /* Deep forest - Dark backgrounds */

  --teal-slate: #1f2a27;              /* Teal slate - Headers */

  --sage: #223836;                    /* Sage green - Subtle accents */

  

  /* Yellows - Energy & Warmth */

  --yellow-bright: #f9e322;           /* Bright yellow - Attention grabber */

  --yellow-gold: #e8d534;             /* Golden yellow - Secondary accent */

  --gold-accent: #E8C547;             /* Warm gold - Premium feel */

  --cream-gold: #e6d08c;              /* Cream gold - Soft backgrounds */

  

  /* Pinks & Corals - Feminine & Warm */

  --pink-rose: #ee9eb2;               /* Rose pink - Soft accent */

  --coral-peach: #f9ab8d;             /* Coral peach - Warm highlight */

  --peach-light: #F4A8A0;             /* Light peach - Delicate touch */

  --blush: #e8d2d4;                   /* Soft blush - Subtle backgrounds */

  

  /* Browns - Earthy & Natural */

  --brown-earth: #5f4231;             /* Earth brown - Text accent */

  

  /* Neutrals - Foundation */

  --text-main: #2d1b1f;               /* Warm dark text - Soft brown-pink tint for readability */

  --black: #1a0f12;                   /* Soft black with warm undertone */

  --grey: #8b7a7d;                    /* Warm grey with pink undertone */

  --grey-light: #f5e8ea;              /* Very light pink-grey */

  --grey-dark: #5a4a4d;               /* Warm dark grey */

  --white: #ffffff;                   /* Pure white */

  

  

  /* ============================================

     SEMANTIC COLORS - Purpose-Driven

     ============================================ */

  

  /* UI Elements */

  --ui-primary: var(--primary-green);

  --ui-primary-hover: var(--primary-green-light);

  --ui-primary-active: var(--primary-green-dark);

  

  --ui-secondary: var(--gold-accent);

  --ui-secondary-hover: var(--yellow-gold);

  --ui-secondary-active: var(--cream-gold);

  

  --ui-accent: var(--pink-rose);

  --ui-accent-hover: var(--coral-peach);

  --ui-accent-active: var(--peach-light);

  

  /* Backgrounds */

  --bg-primary: var(--white);

  --bg-secondary: #fff5f7;             /* Very light warm pink */

  --bg-tertiary: #fff9f5;             /* Warm cream with pink hint */

  --bg-dark: #f5e8ea;                 /* Light warm pink (replaces dark) */

  --bg-darker: #f0e0e3;               /* Slightly deeper warm pink */

  --bg-overlay: rgba(238, 158, 178, 0.15);

  

  /* Text Colors */

  --text-primary: #2d1b1f;           /* Bright, warm dark text for excellent contrast */

  --text-secondary: #5a4a4d;         /* Warm medium text */

  --text-muted: #8b7a7d;             /* Warm muted text */

  --text-light: var(--white);

  --text-accent: #c97a8f;           /* Warm pink accent for text */

  --text-link: var(--pink-rose);

  --text-link-hover: var(--coral-peach);

  

  /* Status Colors */

  --success: var(--primary-green);

  --warning: var(--yellow-bright);

  --error: var(--pink-rose);

  --info: var(--gold-accent);

  

  /* Borders */

  --border-light: var(--grey-light);

  --border-medium: var(--grey);

  --border-dark: var(--grey-dark);

  --border-accent: var(--primary-green);

  --border-gold: var(--gold-accent);

  

  

  /* ============================================

     GRADIENTS - Dynamic Backgrounds

     ============================================ */

  

  --gradient-green: linear-gradient(135deg, #A4C639 0%, #B8D84E 100%);

  --gradient-green-dark: linear-gradient(135deg, #0f3029 0%, #223836 100%);

  --gradient-yellow: linear-gradient(135deg, #f9e322 0%, #e8d534 100%);

  --gradient-gold: linear-gradient(135deg, #E8C547 0%, #e6d08c 100%);

  --gradient-pink: linear-gradient(135deg, #ee9eb2 0%, #f9ab8d 100%);

  --gradient-peach: linear-gradient(135deg, #f9ab8d 0%, #F4A8A0 100%);

  --gradient-sunset: linear-gradient(135deg, #f9e322 0%, #f9ab8d 50%, #ee9eb2 100%);

  --gradient-forest: linear-gradient(180deg, #0f3029 0%, #1f2a27 50%, #223836 100%);

  --gradient-hero: linear-gradient(135deg, #0f3029 0%, #A4C639 100%);

  --gradient-overlay-dark: linear-gradient(180deg, rgba(15, 48, 41, 0.7) 0%, rgba(18, 27, 22, 0.95) 100%);

  

  

  /* ============================================

     SHADOWS - Depth & Elevation

     ============================================ */

  

  --shadow-xs: 0 1px 2px rgba(18, 27, 22, 0.05);

  --shadow-sm: 0 2px 4px rgba(18, 27, 22, 0.08);

  --shadow-md: 0 4px 8px rgba(18, 27, 22, 0.12);

  --shadow-lg: 0 8px 16px rgba(18, 27, 22, 0.15);

  --shadow-xl: 0 12px 24px rgba(18, 27, 22, 0.18);

  --shadow-2xl: 0 20px 40px rgba(18, 27, 22, 0.22);

  

  /* Colored Shadows */

  --shadow-green: 0 4px 14px rgba(164, 198, 57, 0.3);

  --shadow-yellow: 0 4px 14px rgba(249, 227, 34, 0.3);

  --shadow-pink: 0 4px 14px rgba(238, 158, 178, 0.3);

  --shadow-gold: 0 4px 14px rgba(232, 197, 71, 0.3);

  

  

  /* ============================================

     SPACING SYSTEM - Consistent Layout

     ============================================ */

  

  --space-xs: 4px;

  --space-sm: 8px;

  --space-md: 16px;

  --space-lg: 24px;

  --space-xl: 32px;

  --space-2xl: 48px;

  --space-3xl: 64px;

  --space-4xl: 96px;

  

  

  /* ============================================

     BORDER RADIUS - Consistent Rounding

     ============================================ */

  

  --radius-sm: 4px;

  --radius-md: 8px;

  --radius-lg: 12px;

  --radius-xl: 16px;

  --radius-2xl: 24px;

  --radius-full: 9999px;

  

  

  /* ============================================

     TRANSITIONS - Smooth Animations

     ============================================ */

  

  --transition-fast: 150ms ease-in-out;

  --transition-base: 250ms ease-in-out;

  --transition-slow: 350ms ease-in-out;

  --transition-slower: 500ms ease-in-out;

  

  /* ============================================

     LEGACY COMPATIBILITY - Map old variables to new system

     ============================================ */

  

  --primary-color: var(--pink-rose);

  --primary-dark: var(--coral-peach);

  --primary-light: var(--peach-light);

  --secondary-color: var(--primary-green);

  --accent-color: var(--blush);

  --yellow-soft: var(--cream-gold);

  --yellow-warm: var(--yellow-bright);

  --yellow-light: var(--cream-gold);

  --gold-luxury: var(--gold-accent);

  --gold-deep: var(--yellow-gold);

  --gold-light: var(--cream-gold);

  --pink-soft: var(--blush);

  --pink-bright: var(--coral-peach);

  --pink-warm: var(--pink-rose);

  --green-fresh: var(--primary-green);

  --green-soft: var(--primary-green-light);

  --text-black: var(--text-main);

  --text-white: var(--white);

  --text-grey: var(--grey);

  --text-grey-light: var(--grey-light);

  --text-grey-dark: var(--grey-dark);

  --button-color: var(--primary-green);

  --button-color-dark: var(--primary-green-dark);

  --text-dark: var(--text-main);

  --text-light: var(--grey);

  --text-muted: var(--grey);

  --light-bg: var(--blush);

  --warm-bg: var(--cream-gold);

  --border-color: var(--border-light);

  --shadow: var(--shadow-md);

  --shadow-hover: var(--shadow-lg);

  --luxury-shadow: var(--shadow-xl);

  --premium-shadow: var(--shadow-2xl);

  --modern-shadow: var(--shadow-md);

  --modern-shadow-hover: var(--shadow-lg);

    --glass-bg: rgba(255, 255, 255, 0.95);

  --glass-border: rgba(164, 198, 57, 0.6), rgba(238, 158, 178, 0.5);

  --gradient-primary: var(--gradient-sunset);

  --gradient-luxury: var(--gradient-gold);

  --gradient-soft: linear-gradient(135deg, rgba(164, 198, 57, 0.35) 0%, rgba(232, 197, 71, 0.3) 50%, rgba(238, 158, 178, 0.25) 100%);

  --gradient-warm: var(--gradient-sunset);

}

/* ================================================

   COLOR SCHEME VARIATIONS

   ================================================ */

/* Nature & Wellness Theme */

.theme-nature {

  --primary: var(--primary-green);

  --secondary: var(--sage);

  --accent: var(--cream-gold);

  --background: var(--white);

  --surface: var(--blush);

}

/* Luxury & Premium Theme */

.theme-luxury {

  --primary: var(--gold-accent);

  --secondary: var(--brown-earth);

  --accent: var(--cream-gold);

  --background: var(--white);

  --surface: var(--blush);

}

/* Fresh & Vibrant Theme */

.theme-vibrant {

  --primary: var(--yellow-bright);

  --secondary: var(--primary-green);

  --accent: var(--coral-peach);

  --background: var(--white);

  --surface: var(--cream-gold);

}

/* Feminine & Soft Theme */

.theme-feminine {

  --primary: var(--pink-rose);

  --secondary: var(--peach-light);

  --accent: var(--cream-gold);

  --background: var(--white);

  --surface: var(--blush);

}

/* Dark & Sophisticated Theme */

.theme-dark {

  --primary: var(--primary-green);

  --secondary: var(--gold-accent);

  --accent: var(--pink-rose);

  --background: var(--teal-slate);

  --surface: var(--forest-dark);

  --text-primary: var(--white);

}

/* ================================================

   UTILITY CLASSES - Quick Styling

   ================================================ */

/* Background Colors */

.bg-primary-green { background-color: var(--primary-green); }

.bg-yellow-bright { background-color: var(--yellow-bright); }

.bg-pink-rose { background-color: var(--pink-rose); }

.bg-gold { background-color: var(--gold-accent); }

.bg-forest { background-color: var(--forest-dark); }

.bg-teal { background-color: var(--teal-slate); }

.bg-blush { background-color: var(--blush); }

.bg-cream { background-color: var(--cream-gold); }

.bg-white { background-color: var(--white); }

/* Gradient Backgrounds */

.bg-gradient-green { background: var(--gradient-green); }

.bg-gradient-yellow { background: var(--gradient-yellow); }

.bg-gradient-gold { background: var(--gradient-gold); }

.bg-gradient-pink { background: var(--gradient-pink); }

.bg-gradient-sunset { background: var(--gradient-sunset); }

.bg-gradient-hero { background: var(--gradient-hero); }

/* Text Colors */

.text-primary { color: var(--text-primary); }

.text-green { color: var(--primary-green); }

.text-yellow { color: var(--yellow-bright); }

.text-pink { color: var(--pink-rose); }

.text-gold { color: var(--gold-accent); }

.text-white { color: var(--white); }

.text-grey { color: var(--grey); }

/* Border Colors */

.border-green { border-color: var(--primary-green); }

.border-gold { border-color: var(--gold-accent); }

.border-pink { border-color: var(--pink-rose); }

.border-light { border-color: var(--border-light); }

/* ================================================

   COMPONENT STYLES - Pre-built Elements

   ================================================ */

/* Buttons */

.btn {

  padding: 12px 24px;

  border: none;

  border-radius: var(--radius-md);

  font-weight: 600;

  cursor: pointer;

  transition: all var(--transition-base);

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: var(--space-sm);

}

.btn-primary {

  background: var(--primary-green);

  color: var(--white);

  box-shadow: var(--shadow-green);

}

.btn-primary:hover {

  background: var(--primary-green-light);

  transform: translateY(-2px);

  box-shadow: var(--shadow-lg);

}

.btn-primary:active {

  background: var(--primary-green-dark);

  transform: translateY(0);

}

.btn-secondary {

  background: var(--gold-accent);

  color: var(--text-main);

  box-shadow: var(--shadow-gold);

}

.btn-secondary:hover {

  background: var(--yellow-gold);

  transform: translateY(-2px);

  box-shadow: var(--shadow-lg);

}

.btn-accent {

  background: var(--pink-rose);

  color: var(--white);

  box-shadow: var(--shadow-pink);

}

.btn-accent:hover {

  background: var(--coral-peach);

  transform: translateY(-2px);

  box-shadow: var(--shadow-lg);

}

.btn-outline {

  background: transparent;

  border: 2px solid var(--primary-green);

  color: var(--primary-green);

}

.btn-outline:hover {

  background: var(--primary-green);

  color: var(--white);

}

.btn-dark {

  background: var(--forest-dark);

  color: var(--white);

}

.btn-dark:hover {

  background: var(--teal-slate);

}

/* Cards */

.card {

  background: var(--white);

  border-radius: var(--radius-lg);

  padding: var(--space-xl);

  box-shadow: var(--shadow-md);

  transition: all var(--transition-base);

}

.card:hover {

  box-shadow: var(--shadow-xl);

  transform: translateY(-4px);

}

.card-green {

  border-top: 4px solid var(--primary-green);

}

.card-gold {

  border-top: 4px solid var(--gold-accent);

}

.card-pink {

  border-top: 4px solid var(--pink-rose);

}

.card-gradient {

  background: var(--gradient-green);

  color: var(--white);

}

/* Badges */

.badge {

  display: inline-flex;

  padding: 4px 12px;

  border-radius: var(--radius-full);

  font-size: 0.875rem;

  font-weight: 600;

}

.badge-green {

  background: var(--primary-green);

  color: var(--white);

}

.badge-yellow {

  background: var(--yellow-bright);

  color: var(--text-main);

}

.badge-pink {

  background: var(--pink-rose);

  color: var(--white);

}

.badge-outline {

  background: transparent;

  border: 2px solid var(--primary-green);

  color: var(--primary-green);

}

/* Links */

.link {

  color: var(--text-link);

  text-decoration: none;

  transition: color var(--transition-fast);

  position: relative;

}

.link:hover {

  color: var(--text-link-hover);

}

.link-underline {

  text-decoration: underline;

  text-underline-offset: 4px;

}

/* Dividers */

.divider {

  height: 1px;

  background: var(--border-light);

  margin: var(--space-xl) 0;

}

.divider-gradient {

  height: 2px;

  background: var(--gradient-green);

  margin: var(--space-xl) 0;

}

/* Hero Sections */

.hero {

  padding: var(--space-4xl) var(--space-xl);

  background: var(--gradient-hero);

  color: var(--white);

  border-radius: 0; /* No rounded corners for hero section */

}

.hero-title {

  font-size: 3rem;

  font-weight: 800;

  margin-bottom: var(--space-lg);

  background: linear-gradient(135deg, var(--white) 0%, var(--cream-gold) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}

/* Containers */

.container {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 var(--space-xl);

}

.container-narrow {

  max-width: 800px;

  margin: 0 auto;

  padding: 0 var(--space-xl);

}

.container-wide {

  max-width: 1400px;

  margin: 0 auto;

  padding: 0 var(--space-xl);

}

/* Grid Layouts */

.grid {

  display: grid;

  gap: var(--space-lg);

}

.grid-2 {

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

}

.grid-3 {

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

}

.grid-4 {

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

}

/* Flex Layouts */

.flex {

  display: flex;

  gap: var(--space-md);

}

.flex-center {

  display: flex;

  align-items: center;

  justify-content: center;

}

.flex-between {

  display: flex;

  align-items: center;

  justify-content: space-between;

}

/* Sections */

.section {

  padding: var(--space-3xl) 0;

}

.section-dark {

  background: var(--forest-dark);

  color: var(--white);

}

.section-light {

  background: var(--blush);

}

.section-gradient {

  background: var(--gradient-green);

  color: var(--white);

}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.8;
    color: var(--text-primary);
    overflow-x: hidden;
    background: linear-gradient(180deg, #fff5f7 0%, #fff9f5 50%, #fff5f7 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    position: relative;
    /* Mobile browser fixes */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: none;
    touch-action: pan-y;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(249, 171, 141, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 168, 160, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(238, 158, 178, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

p, span, li, a, input, textarea, select, button {
    font-family: 'Cormorant Garamond', serif;
}

/* Prevent horizontal scroll on mobile */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Mobile browser compatibility fixes */
html {
    /* Prevent iOS Safari bounce */
    overscroll-behavior-y: none;
    /* Smooth scrolling */
    -webkit-overflow-scrolling: touch;
    /* Prevent text size adjustment */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Fix for iOS Safari viewport height */
@supports (-webkit-touch-callout: none) {
    html, body {
        height: -webkit-fill-available;
    }
}

/* Mobile browser compatibility fixes */
html {
    /* Prevent iOS Safari bounce */
    overscroll-behavior-y: none;
    /* Smooth scrolling */
    -webkit-overflow-scrolling: touch;
    /* Prevent text size adjustment */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Fix for iOS Safari viewport height */
@supports (-webkit-touch-callout: none) {
    html, body {
        height: -webkit-fill-available;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 247, 0.95) 100%);
    box-shadow: 0 4px 40px rgba(238, 158, 178, 0.2), 0 2px 20px rgba(249, 171, 141, 0.15), 0 1px 0 rgba(244, 168, 160, 0.2);
    z-index: 10000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 2px solid rgba(238, 158, 178, 0.4);
    margin: 0;
    padding: 0;
    min-height: 80px; /* Increased from default for larger header */
    will-change: transform;
    /* Mobile browser fixes */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.navbar.navbar-hidden {
    transform: translateY(-100%) !important;
    pointer-events: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: relative;
    width: 100%;
    min-height: 80px; /* Increased for larger header */
    box-sizing: border-box;
    gap: 1rem; /* Safe spacing between components */
}

.logo {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1001;
    pointer-events: auto;
    width: auto;
    padding: 0.5rem 1rem; /* Vertical padding for safe spacing */
    margin: 0;
    max-width: calc(100% - 8rem); /* Safe margin from edges */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Keep logo within header */
    box-sizing: border-box;
}

.logo-image {
    height: auto;
    width: auto;
    max-width: 400px;
    max-height: 85px; /* Larger max height for desktop */
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo h1 {
    display: none; /* Hide text logo when image is used */
}

.logo h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(238, 158, 178, 0.6);
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(230, 208, 140, 0.2) 100%);
    z-index: -1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0.5rem 0; /* Vertical padding for safe spacing */
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-menu-left {
    flex: 0 0 auto;
    justify-content: flex-end;
    padding-right: 1rem;
    margin-right: auto;
    margin-left: 0;
}

.nav-menu-right {
    flex: 0 0 auto;
    justify-content: flex-start;
    padding-left: 1rem;
    margin-left: auto;
    margin-right: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0.8rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    white-space: nowrap;
    display: inline-block;
    flex-shrink: 0;
}

.nav-link:hover {
    color: var(--pink-rose);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '◆';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-luxury);
    opacity: 0;
    transition: all 0.4s ease;
    font-size: 0.6rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold-luxury) 0%, var(--primary-color) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before {
    opacity: 1;
    left: -1rem;
}

/* Active Navigation Link Styling */
.nav-link.active {
    color: var(--text-primary);
    font-weight: 600;
}

.nav-link.active::after {
    width: 80% !important;
    height: 3px;
    background: linear-gradient(90deg, var(--button-color) 0%, var(--button-color-dark) 100%);
    border-radius: 2px;
    animation: underlineExpand 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    left: 50%;
    transform: translateX(-50%);
}

.nav-link.active::before {
    opacity: 1;
    left: -1rem;
    color: var(--button-color);
}

@keyframes underlineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80%;
        opacity: 1;
    }
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

/* Active state for dropdown when on location page */
.dropdown-toggle.active {
    color: var(--primary-color);
    font-weight: 600;
}

.dropdown-toggle.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--gold-luxury) 50%, var(--primary-color) 100%);
    border-radius: 2px;
    animation: underlineExpand 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 254, 248, 0.95) 100%);
    min-width: 180px;
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    margin-top: 0.5rem;
    box-shadow: var(--premium-shadow);
    border: 2px solid rgba(255, 182, 193, 0.6);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '◆';
    position: absolute;
    top: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-luxury);
    font-size: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 254, 248, 0.95) 100%);
    padding: 0.2rem;
    border-radius: 50%;
}

.dropdown-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--gold-luxury) 0%, var(--primary-color) 100%);
    transition: width 0.3s ease;
    opacity: 0.1;
}

.dropdown-link:hover {
    color: var(--gold-luxury);
    padding-left: 2rem;
    background: rgba(255, 182, 193, 0.1);
}

.dropdown-link:hover::before {
    width: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: -webkit-fill-available; /* iOS Safari fix */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    margin-top: 80px; /* Navbar height (80px) */
    overflow: hidden;
    /* Mobile browser fixes */
    -webkit-overflow-scrolling: touch;
}

/* Mobile: Hero section full viewport */
@media (max-width: 767px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        margin-top: 70px; /* Mobile navbar height */
        border-radius: 0 !important; /* No rounded corners on mobile */
    }
    
    /* Ensure hero images have no rounded corners on mobile */
    .hero-slideshow {
        border-radius: 0 !important;
    }
    
    .hero-slide {
        border-radius: 0 !important;
    }
    
    .hero-slide img {
        border-radius: 0 !important;
    }
}

/* Hero margin will be set by JavaScript via adjustLayout function */
/* These CSS rules are fallbacks but JavaScript takes precedence */
/* Hero margin - no promotion bar, just navbar */

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0; /* No rounded corners for hero slideshow */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    will-change: opacity, transform, filter;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    border-radius: 0; /* No rounded corners for hero slides */
    overflow: hidden; /* Ensure images don't overflow */
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.0) saturate(1.3) contrast(1.1);
    will-change: transform, opacity, filter;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    border-radius: 0; /* No rounded corners for hero images */
}

/* Fade Transition */
.hero-slide[data-transition="fade"] {
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide[data-transition="fade"].active {
    opacity: 1;
}

.hero-slide[data-transition="fade"]:not(.active) {
    opacity: 0;
}

/* Slide Transition - GPU Accelerated */
.hero-slide[data-transition="slide"] {
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate3d(100%, 0, 0);
}

.hero-slide[data-transition="slide"].active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.hero-slide[data-transition="slide"]:not(.active) {
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
}

/* Zoom Transition - GPU Accelerated */
.hero-slide[data-transition="zoom"] {
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide[data-transition="zoom"].active {
    transform: scale3d(1, 1, 1);
    opacity: 1;
}

.hero-slide[data-transition="zoom"]:not(.active) {
    transform: scale3d(1.2, 1.2, 1);
    opacity: 0;
}

/* Blur Transition - OPTIMIZED: Reduced blur intensity for better performance */
/* Note: CSS filter: blur() is expensive. Consider using fade/zoom instead on low-end devices */
.hero-slide[data-transition="blur"] {
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Removed filter transition - blur is too expensive */
}

.hero-slide[data-transition="blur"].active {
    filter: blur(0) brightness(1.0);
    opacity: 1;
}

.hero-slide[data-transition="blur"]:not(.active) {
    /* Reduced blur from 10px to 5px for better performance */
    filter: blur(5px) brightness(0.8);
    opacity: 0;
}

/* Disable blur on low-end devices for better performance */
@media (max-width: 768px) {
    .hero-slide[data-transition="blur"] {
        filter: none !important; /* Remove blur on mobile for better performance */
    }
}

/* Continuous zoom effect for active slide - GPU Accelerated - OPTIMIZED */
/* Only animate if user prefers motion, otherwise disable for better performance */
@media (prefers-reduced-motion: no-preference) {
.hero-slide.active img {
        animation: continuousZoom 12s ease-in-out infinite alternate;
    will-change: transform;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide.active img {
        animation: none;
        will-change: auto;
    }
}

@keyframes continuousZoom {
    0% {
        transform: scale3d(1, 1, 1);
    }
    100% {
        transform: scale3d(1.05, 1.05, 1); /* Reduced from 1.1 to 1.05 for less GPU load */
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.15) 0%, rgba(238, 158, 178, 0.1) 50%, rgba(255, 182, 193, 0.12) 100%);
    z-index: 1;
}

@keyframes zoomIn {
    0% {
        transform: scale3d(1, 1, 1);
    }
    100% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 10px 40px rgba(18, 27, 22, 0.5), 0 2px 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.15;
    position: relative;
    display: inline-block;
    color: var(--white) !important;
}

/* Desktop: Hide line break, show inline */
.hero-title .mobile-break {
    display: none;
}

.hero-title-line1,
.hero-title-line2 {
    display: inline;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 50%, var(--green-fresh) 100%, transparent 100%);
    border-radius: 2px;
    animation: gradientShift 8s ease infinite;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    animation: fadeInUp 1s ease 0.3s both;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: var(--white) !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--button-color);
    color: var(--text-white);
    border: 2px solid var(--button-color);
    box-shadow: 0 8px 30px rgba(164, 198, 57, 0.6), 0 4px 15px rgba(164, 198, 57, 0.4), 0 2px 10px rgba(164, 198, 57, 0.3);
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    padding: 18px 45px;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section Book Appointment Button - Original Colors */
.hero .btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--white) 50%, var(--blush) 100%);
    color: var(--text-black);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 30px rgba(164, 198, 57, 0.6), 0 4px 15px rgba(238, 158, 178, 0.5), 0 2px 10px rgba(164, 198, 57, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(164, 198, 57, 0.7), 0 8px 25px rgba(164, 198, 57, 0.5), 0 5px 15px rgba(164, 198, 57, 0.4);
    border-color: var(--button-color-dark);
    background: var(--button-color-dark);
}

/* Hero Section Book Appointment Button Hover - Original Colors */
.hero .btn-primary:hover {
    color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(164, 198, 57, 0.7), 0 8px 25px rgba(238, 158, 178, 0.6), 0 5px 15px rgba(164, 198, 57, 0.5);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-green) 50%, var(--pink-rose) 100%);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:active {
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(164, 198, 57, 0.6) 50%, rgba(238, 158, 178, 0.5) 100%, transparent 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary) !important;
    font-weight: 800;
    letter-spacing: 1.5px;
    position: relative;
    text-transform: uppercase;
    line-height: 1.2;
    /* Remove gradient background clip */
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    background-clip: unset !important;
    filter: drop-shadow(0 2px 4px rgba(45, 27, 31, 0.15));
}

.section-title::before {
    content: '◆';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -2rem;
    color: var(--pink-rose);
    font-size: 1.5rem;
    opacity: 0.7;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--pink-rose) 50%, transparent 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #fff5f7 0%, #fff9f5 50%, #fff5f7 100%);
    padding-top: 140px; /* Space for fixed navbar + extra breathing room */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* ================================================
   COLLAPSIBLE SERVICE CARDS - Home Page
   ================================================ */

.collapsible-services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 3rem;
    margin-bottom: 50px;
}

/* Desktop: Match Services page exactly - use menu-section styles */
@media (min-width: 769px) {
    /* .collapsible-services-grid uses same styles as .menu-grid */
    
    /* On desktop, menu-section class provides all styling */
    .collapsible-service-card.menu-section {
        cursor: default;
        /* Ensure grid layout is applied (from .menu-section class) */
        display: grid;
        grid-template-columns: 300px 1fr;
        /* All other styles come from .menu-section class */
    }
    
    /* Show menu-section-image (directly in menu-section) on desktop */
    .collapsible-service-card.menu-section > .menu-section-image {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 300px;
    }
    
    /* Hide card-header on desktop */
    .collapsible-service-card.menu-section .card-header {
        display: none !important;
    }
    
    /* CRITICAL: Override any mobile styles for desktop - target both selectors */
    .collapsible-service-card.menu-section .card-content,
    .collapsible-service-card.menu-section .card-content.menu-section-content {
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
        transition: none !important;
        display: flex !important;
        flex-direction: column;
        padding: 40px 45px !important;
        /* Padding comes from .menu-section-content */
    }
    
    .collapsible-service-card.menu-section .expand-icon {
        display: none !important;
    }
    
    .collapsible-service-card.menu-section .service-menu-items {
        gap: 0;
        display: flex;
        flex-direction: column;
    }
    
    /* Ensure menu items use same styles as Services page */
    .collapsible-service-card.menu-section .menu-item {
        margin-bottom: 18px;
        padding: 12px 0;
        padding-left: 20px;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
    }
    
    /* Ensure Book Now button is visible on desktop - align left */
    .collapsible-service-card.menu-section .btn-book-now,
    .collapsible-service-card.menu-section .card-content .btn-book-now,
    .collapsible-service-card.menu-section .card-content.menu-section-content .btn-book-now {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 25px !important;
        margin-bottom: 25px !important;
        position: relative !important;
        z-index: 10 !important;
        align-self: flex-start !important;
        padding: 10px 18px !important;
        font-size: 0.9rem !important;
    }
    
    /* Ensure card-content aligns items to start (left) on desktop */
    .collapsible-service-card.menu-section .card-content.menu-section-content {
        align-items: flex-start;
    }
}

/* Mobile: Keep collapsible style */
@media (max-width: 768px) {
    /* Hide menu-section-image (directly in menu-section) on mobile */
    .collapsible-service-card.menu-section > .menu-section-image {
        display: none;
    }
    
    .collapsible-service-card {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 247, 0.85) 100%);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(238, 158, 178, 0.15), 0 3px 10px rgba(249, 171, 141, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid rgba(238, 158, 178, 0.3);
        cursor: pointer;
        display: flex;
        flex-direction: column;
    }
    
    .collapsible-service-card::before {
        display: none;
    }
    
    .collapsible-service-card.active {
        box-shadow: 0 15px 40px rgba(238, 158, 178, 0.3), 0 5px 15px rgba(249, 171, 141, 0.2);
        border-color: var(--pink-rose);
    }
}

.collapsible-service-card .service-menu-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Desktop: Use menu-item styles from Services page (via .menu-item class) */
/* Mobile: Custom styles below */

/* Desktop tablet adjustments - matches Services page */
@media (max-width: 1024px) and (min-width: 769px) {
    .collapsible-service-card.menu-section {
        grid-template-columns: 250px 1fr;
    }
    
    .collapsible-service-card.menu-section .card-content.menu-section-content {
        padding: 35px 30px;
    }
    
    .collapsible-service-card.menu-section .section-title {
        font-size: 2em;
    }
}

/* Mobile - Keep collapsible style */
@media (max-width: 768px) {
    .collapsible-services-grid {
        gap: 20px;
    }

    .collapsible-service-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
    }

    .collapsible-service-card::before {
        display: none;
    }

    .collapsible-service-card .card-header {
        display: flex;
        align-items: center;
        padding: 0;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
        transition: background-color 0.3s ease;
    }

    .collapsible-service-card .card-header:hover {
        background-color: rgba(238, 158, 178, 0.05);
    }

    .collapsible-service-card.active .card-header {
        background-color: rgba(238, 158, 178, 0.08);
    }

    .collapsible-service-card .card-image {
        width: 100px;
        height: 100px;
        min-width: 100px;
        min-height: 100px;
    }

    .collapsible-service-card .card-image::after {
        display: none;
    }

    .collapsible-service-card .card-title-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 245, 247, 0.7) 100%);
    }

    .collapsible-service-card .card-title {
        font-size: 1.3em;
        margin: 0;
        padding-bottom: 0;
    }

    .collapsible-service-card .card-title::after {
        display: none;
    }

    .collapsible-service-card .expand-icon {
        display: block;
        font-size: 1.2em;
        color: var(--pink-rose);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-left: 15px;
        flex-shrink: 0;
    }

    .collapsible-service-card.active .expand-icon {
        transform: rotate(180deg);
        color: var(--coral-peach);
    }

    /* Mobile only - collapsible behavior */
    /* Exclude menu-section cards from mobile collapsible behavior - they use desktop style */
    .collapsible-service-card:not(.menu-section) .card-content {
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 247, 0.9) 100%);
        opacity: 0;
    }
    
    /* For menu-section cards on mobile, ensure content is visible when active */
    .collapsible-service-card.menu-section.active .card-content {
        max-height: 3000px !important;
        padding: 20px !important;
        opacity: 1 !important;
        overflow: visible !important;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease 0.2s;
    }
    
    /* Regular collapsible cards (non-menu-section) when active */
    .collapsible-service-card:not(.menu-section).active .card-content {
        max-height: 3000px;
        padding: 20px;
        opacity: 1;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease 0.2s;
        overflow: visible;
    }
    
    /* Ensure Book Now button is visible when card is active on mobile */
    .collapsible-service-card.active .btn-book-now,
    .collapsible-service-card.menu-section.active .btn-book-now {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure Book Now button is visible when card is active on mobile */
    .collapsible-service-card.active .btn-book-now {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .collapsible-service-card .menu-item {
        padding: 10px 0;
        padding-left: 15px;
        margin-bottom: 15px;
        grid-template-columns: 1fr auto; /* Ensure name left, price right */
        gap: 10px; /* Add gap between name and price */
        align-items: center;
        border-bottom: 1px solid rgba(238, 158, 178, 0.15); /* Soft horizontal line */
    }

    .collapsible-service-card .menu-item:hover {
        padding-left: 20px;
        border-bottom-color: rgba(238, 158, 178, 0.3); /* Slightly more visible on hover */
    }

    .collapsible-service-card .menu-item .item-name {
        font-size: 1.05em;
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden;
        text-overflow: ellipsis; /* Show ellipsis if text is too long */
        min-width: 0; /* Allow grid item to shrink */
    }

    .collapsible-service-card .menu-item .item-price {
        font-size: 1.15em;
        padding-left: 10px;
        text-align: right; /* Keep price on the right */
        white-space: nowrap; /* Prevent price from wrapping */
        flex-shrink: 0; /* Don't shrink the price */
    }
}

@media (max-width: 480px) {
    .collapsible-service-card .card-image {
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
    }

    .collapsible-service-card .card-title-wrapper {
        padding: 12px 15px;
    }

    .collapsible-service-card .card-title {
        font-size: 1.1em;
    }

    .collapsible-service-card .expand-icon {
        font-size: 1em;
        margin-left: 10px;
    }

    .collapsible-service-card.active .card-content {
        padding: 15px;
    }

    .collapsible-service-card .menu-item {
        padding: 8px 0;
        padding-left: 12px;
        margin-bottom: 12px;
        grid-template-columns: 1fr auto; /* Keep name left, price right */
        gap: 10px; /* Add gap between name and price */
        align-items: center;
        border-bottom: 1px solid rgba(238, 158, 178, 0.15); /* Soft horizontal line */
    }

    .collapsible-service-card .menu-item:hover {
        padding-left: 15px;
        border-bottom-color: rgba(238, 158, 178, 0.3); /* Slightly more visible on hover */
    }

    .collapsible-service-card .menu-item .item-name {
        font-size: 0.95em;
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden;
        text-overflow: ellipsis; /* Show ellipsis if text is too long */
        min-width: 0; /* Allow grid item to shrink */
    }

    .collapsible-service-card .menu-item .item-price {
        font-size: 1.05em;
        padding-left: 10px;
        text-align: right; /* Keep price on the right */
        white-space: nowrap; /* Prevent price from wrapping */
        flex-shrink: 0; /* Don't shrink the price */
    }
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 245, 247, 0.8) 50%, rgba(255, 249, 245, 0.6) 100%);
    padding: 2.5rem 2rem;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(238, 158, 178, 0.25), 0 5px 20px rgba(249, 171, 141, 0.2), 0 2px 8px rgba(244, 168, 160, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(238, 158, 178, 0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
    will-change: transform;
    transform: translateZ(0);
    backdrop-filter: blur(10px);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(164, 198, 57, 0.3) 0%, rgba(238, 158, 178, 0.2) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green-light) 50%, var(--pink-rose) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(238, 158, 178, 0.3), 0 8px 20px rgba(238, 158, 178, 0.15);
    border-color: var(--pink-rose);
}

.service-card:hover::after {
    opacity: 1;
}

/* Featured Card */
.service-card.featured {
    border: 2px solid var(--pink-rose);
    background: linear-gradient(135deg, rgba(238, 158, 178, 0.1) 0%, rgba(230, 208, 140, 0.4) 100%);
    box-shadow: 0 12px 35px rgba(238, 158, 178, 0.3);
}

.service-card.featured::before {
    opacity: 1;
    height: 5px;
}

/* Premium Card */
.service-card.premium {
    border: 2px solid var(--coral-peach);
    background: linear-gradient(135deg, rgba(238, 158, 178, 0.15) 0%, rgba(230, 208, 140, 0.2) 100%);
    box-shadow: 0 12px 35px rgba(238, 158, 178, 0.35);
}

.service-card.premium::before {
    opacity: 1;
    height: 5px;
    background: linear-gradient(90deg, var(--yellow-bright) 0%, var(--pink-rose) 100%);
}

/* Badges */
.popular-badge,
.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

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

.popular-badge {
    background: linear-gradient(135deg, var(--pink-rose) 0%, var(--coral-peach) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(238, 158, 178, 0.5), 0 2px 8px rgba(238, 158, 178, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-badge {
    background: linear-gradient(135deg, var(--yellow-bright) 0%, var(--yellow-gold) 100%);
    color: var(--text-dark);
    box-shadow: 0 6px 20px rgba(249, 227, 34, 0.5), 0 2px 8px rgba(18, 27, 22, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Service Header */
.service-header {
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(255, 182, 193, 0.4));
    transition: transform 0.3s ease;
    display: block;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Service Price */
.service-price {
    margin: 1.5rem 0;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 182, 193, 0.3);
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
}

.price-amount {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--button-color);
    line-height: 1.2;
    margin-bottom: 0.25rem;
    /* Remove gradient background clip */
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--button-color) !important;
    background-clip: unset !important;
}

.price-duration {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Service Description */
.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.service-features li {
    padding: 0.6rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(238, 158, 178, 0.2);
    transition: all 0.3s ease;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    color: var(--button-color);
    padding-left: 0.5rem;
}

/* Service Button */
.btn-service {
    display: inline-block;
    margin-top: auto;
    padding: 16px 36px;
    background: var(--button-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(164, 198, 57, 0.4), 0 2px 8px rgba(164, 198, 57, 0.3);
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-service:hover::before {
    width: 300px;
    height: 300px;
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(164, 198, 57, 0.5), 0 4px 12px rgba(164, 198, 57, 0.3);
    background: var(--button-color-dark);
}

.btn-service:active {
    transform: translateY(-1px);
}

.service-card.featured .btn-service {
    background: var(--button-color);
    box-shadow: 0 4px 15px rgba(164, 198, 57, 0.5);
}

.service-card.premium .btn-service {
    background: var(--button-color);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(164, 198, 57, 0.5);
}

.service-card.premium .btn-service:hover {
    background: var(--button-color-dark);
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--white) 0%, #fff9f5 100%);
    padding-top: 140px; /* Space for fixed navbar + extra breathing room */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(255, 182, 193, 0.5);
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.salon-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: brightness(1.08) contrast(1.15) saturate(1.2) sepia(0.05);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.about-image:hover .salon-image {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.2) saturate(1.3) sepia(0.1);
}

.image-gloss {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), rgba(255, 235, 59, 0.3), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.about-image:hover .image-gloss {
    left: 100%;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(180deg, #fff9f5 0%, #fff5f7 100%);
    padding-top: 140px; /* Space for fixed navbar + extra breathing room */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Horizontal art grid: Some items span multiple columns for visual interest */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(238, 158, 178, 0.18), 0 2px 8px rgba(238, 158, 178, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(238, 158, 178, 0.3);
    background: var(--white);
}

/* Create horizontal art grid pattern - some items span 2 columns */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(8) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(9) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(238, 158, 178, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(238, 158, 178, 0.35), 0 8px 20px rgba(238, 158, 178, 0.2);
    border-color: var(--pink-rose);
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.05) contrast(1.15) saturate(1.2);
    transition: transform 0.6s ease, filter 0.4s ease;
    -webkit-user-select: none;
    user-select: none;
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(238, 158, 178, 0.25) 0%, rgba(164, 198, 57, 0.2) 50%, rgba(230, 208, 140, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.dew-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.35) 1.8px, transparent 1.8px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.3) 1.2px, transparent 1.2px),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.4) 2px, transparent 2px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    animation: dewShimmer 3s ease-in-out infinite;
}

.gallery-item:hover .dew-effect {
    opacity: 1;
}

@keyframes dewShimmer {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #fff9f5 0%, var(--white) 100%);
    padding-top: 140px; /* Space for fixed navbar + extra breathing room */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(255, 182, 193, 0.4));
    transition: transform 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1);
}

.info-text h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-form {
    background: linear-gradient(135deg, #fff9f5 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(238, 158, 178, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--pink-rose);
    box-shadow: 0 4px 16px rgba(238, 158, 178, 0.25), 0 0 0 3px rgba(238, 158, 178, 0.15);
    outline: none;
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-black);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--text-white);
    /* Remove gradient background clip */
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--text-white) !important;
    background-clip: unset !important;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section p {
    color: var(--text-grey-light);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-grey-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--button-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--pink-rose) 0%, var(--yellow-bright) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(238, 158, 178, 0.35);
    border-color: transparent;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    box-shadow: 0 4px 15px rgba(164, 198, 57, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, var(--pink-rose) 0%, var(--coral-peach) 50%, var(--yellow-bright) 100%);
    box-shadow: 0 4px 15px rgba(238, 158, 178, 0.3);
}

/* Header Social Media Links */
.header-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--grey);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.header-social-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    fill: currentColor;
}

.header-social-link:hover {
    color: var(--primary-green);
    background: rgba(164, 198, 57, 0.1);
    transform: translateY(-2px);
}

.header-social-link.facebook:hover {
    color: var(--primary-green);
    background: rgba(164, 198, 57, 0.15);
}

.header-social-link.instagram:hover {
    color: var(--pink-rose);
    background: rgba(238, 158, 178, 0.15);
}

/* Social card in location pages */
.social-card {
    margin-top: 1.5rem;
}

.social-card .social-links {
    margin-top: 0.5rem;
}

/* Social links in contact info */
.contact-info .social-links {
    margin-top: 0.5rem;
}

.contact-info .social-link {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .attribution {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Modern Enhancements */
.container {
    position: relative;
    z-index: 1;
}

/* Enhanced Glassmorphism */
.service-card.featured,
.service-card.premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 249, 196, 0.3) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Enhanced Focus States */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Modern Loading States */
.btn-primary:disabled,
.btn-service:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--pink-rose) 0%, var(--primary-green) 50%, var(--yellow-bright) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    margin-top: 80px; /* Updated to match navbar height */
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    opacity: 0.95;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--pink-rose) 0%, var(--yellow-bright) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.cta-section p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-style: italic;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, #fff9f5 0%, #fff5f7 100%);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, #fff9f5 100%);
    padding: 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid rgba(238, 158, 178, 0.3);
}

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

.feature-icon-large {
    font-size: 3rem;
    color: var(--pink-rose);
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(238, 158, 178, 0.5));
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Mission Section */
.mission-section {
    background: var(--white);
    padding: 80px 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}


/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--button-color);
    background: var(--white);
    color: var(--button-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--button-color);
    color: var(--text-white);
    border-color: var(--button-color);
    transform: translateY(-2px);
}

/* Form Labels */
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--pink-rose);
    box-shadow: 0 0 0 3px rgba(238, 158, 178, 0.2);
}

/* Map Section */
.map-section {
    background: var(--blush);
    padding: 80px 0;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--pink-rose) 0%, var(--yellow-bright) 100%);
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
    margin-top: 2rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.google-map-container {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    border: 2px solid rgba(238, 158, 178, 0.3);
}

.google-map {
    width: 100%;
    border-radius: 20px;
}

/* Location Pages Styles */
.location-header {
    background: linear-gradient(135deg, var(--pink-rose) 0%, var(--primary-green) 50%, var(--gold-accent) 100%);
}

.location-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-top: 80px; /* Updated to match navbar height */
}

.location-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.location-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1) saturate(1.2);
}

.location-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(238, 158, 178, 0.35) 0%, rgba(164, 198, 57, 0.25) 100%);
}

.location-info-section {
    background: linear-gradient(180deg, var(--white) 0%, #fff9f5 100%);
    padding: 100px 0;
    padding-top: 240px; /* Space for fixed navbar + original padding + extra breathing room */
}

.location-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-details {
    position: sticky;
    top: 100px;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, #fff9f5 100%);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(238, 158, 178, 0.3);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--luxury-shadow);
    border-color: var(--gold-accent);
}

.info-icon-large {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(238, 158, 178, 0.4));
}

.info-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.info-content p {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0.3rem 0;
    line-height: 1.8;
}

.address-detail {
    font-size: 1rem !important;
    color: var(--text-light) !important;
    font-style: italic;
}

.phone-link,
.email-link {
    color: var(--pink-rose);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.phone-link:hover,
.email-link:hover {
    color: var(--gold-accent);
    text-decoration: underline;
}

.location-call-btn {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
}

.location-description {
    font-family: 'Cormorant Garamond', serif;
}

.location-description p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(238, 158, 178, 0.3);
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.feature-check {
    color: var(--button-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Location Gallery Grid - Art Style */
.location-gallery-section {
    background: linear-gradient(180deg, #fff9f5 0%, #fff5f7 100%);
    padding: 100px 0;
}

.location-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 1.5rem;
    margin-top: 3rem;
}

.location-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(238, 158, 178, 0.25);
    cursor: pointer;
}

.location-gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.location-gallery-item:nth-child(2) {
    grid-column: span 2;
}

.location-gallery-item:nth-child(3) {
    grid-column: span 2;
}

.location-gallery-item:nth-child(4) {
    grid-column: span 2;
}

.location-gallery-item:nth-child(5) {
    grid-column: span 2;
}

.location-gallery-item:nth-child(6) {
    grid-column: span 2;
}

.location-gallery-item .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05) contrast(1.15) saturate(1.2);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.location-gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--premium-shadow);
    border-color: var(--gold-accent);
}

.location-gallery-item:hover .gallery-img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
}

.location-gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(238, 158, 178, 0.2) 0%, rgba(164, 198, 57, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

/* Location Selection Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, var(--white) 0%, #fff9f5 100%);
    margin: auto;
    padding: 3rem;
    border-radius: 30px;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--premium-shadow);
    border: 2px solid var(--pink-rose);
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-black);
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 182, 193, 0.15);
}

.modal-close:hover {
    color: var(--gold-accent);
    background: rgba(238, 158, 178, 0.25);
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--pink-rose) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-subtitle {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    font-style: italic;
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, #fff9f5 100%);
    border: 2px solid rgba(238, 158, 178, 0.4);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.location-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--luxury-shadow);
    border-color: var(--gold-accent);
    background: linear-gradient(135deg, var(--white) 0%, #fff9f5 100%);
}

.location-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(238, 158, 178, 0.4));
}

.location-info {
    flex: 1;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.location-info p {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Gallery Modal Styles */
.gallery-modal {
    z-index: 10001; /* Above location modal */
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image-wrapper {
    width: 100%;
    max-width: 800px;
    max-height: 70vh;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
    background: var(--white);
    padding: 10px;
}

.gallery-modal-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    border-radius: 15px;
}

.gallery-modal-info {
    margin-top: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(238, 158, 178, 0.2);
    max-width: 800px;
    width: 100%;
}

.gallery-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--pink-rose);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.gallery-modal-category {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--coral-peach);
    margin: 0;
    font-weight: 500;
    text-transform: capitalize;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
    line-height: 1;
    padding: 0;
}

.gallery-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

/* Gallery Modal Navigation Buttons */
.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    user-select: none;
}

.gallery-modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

.gallery-modal-counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 0 0;
    font-weight: 400;
    opacity: 0.8;
}

/* Modal Responsive */
@media (max-width: 767px) {
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
        border-radius: 25px;
    }
    
    .gallery-modal-content {
        max-width: 95%;
        padding: 0;
    }
    
    .gallery-modal-image-wrapper {
        max-height: 60vh;
        padding: 8px;
    }
    
    .gallery-modal-image {
        max-height: 60vh;
    }
    
    .gallery-modal-info {
        padding: 1rem 1.5rem;
        margin-top: 1rem;
    }
    
    .gallery-modal-title {
        font-size: 1.4rem;
    }
    
    .gallery-modal-category {
        font-size: 1rem;
    }
    
    .gallery-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .gallery-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .gallery-modal-prev {
        left: 10px;
    }
    
    .gallery-modal-next {
        right: 10px;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .location-btn {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .location-icon {
        font-size: 2.5rem;
    }

    .location-info h3 {
        font-size: 1.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
    }
}

/* Responsive Design */

/* Desktop: Hide Book Now button from mobile menu */
@media (min-width: 768px) {
    .mobile-book-now {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
    
    .btn-book-now-mobile {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Desktop: Restructure header components for proper spacing and layout */
@media (min-width: 768px) {
    .nav-wrapper {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem; /* Add gap between sections */
    }
    
    /* Left menu - takes up space on left */
    .nav-menu-left {
        flex: 0 0 auto;
        order: 1;
    }
    
    /* Logo - centered, takes up space */
    .logo {
        flex: 0 0 auto;
        order: 2;
        position: absolute; /* Keep absolute for centering */
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% - 6rem); /* Prevent overflow with padding */
        overflow: hidden; /* Ensure logo doesn't overflow */
        margin: 0;
    }
    
    /* Social icons - move to appear after nav-menu-right using order */
    .header-social {
        flex: 0 0 auto;
        order: 4; /* After nav-menu-right */
        position: relative; /* Change from absolute to relative for flexbox */
        right: auto;
        top: auto;
        transform: none;
        margin-left: 1.5rem; /* Add spacing between Contact and social icons */
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Right menu - takes up space on right, before social icons */
    .nav-menu-right {
        flex: 0 0 auto;
        order: 3; /* Before social icons */
        position: relative;
        margin-left: auto; /* Push to right */
        margin-right: 0;
        padding-right: 0;
        display: flex;
        align-items: center;
        gap: 0; /* No gap between menu items */
    }
    
    /* Group nav-menu-right and header-social together on the right */
    .nav-menu-right + .header-social {
        margin-left: 1.5rem; /* Spacing between Contact and social icons */
    }
}

/* Smaller Desktop / Large Tablet (1024px - 1200px) */
@media (min-width: 1024px) and (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu-left {
        padding-right: 2.5rem;
    }

    .nav-menu-right {
        padding-left: 2.5rem;
    }
    
    /* Desktop: Move social icons to right side, next to Contact */
    .header-social {
        margin-left: 1rem;
        padding-left: 0.75rem;
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }
    
    .header-social-link {
        width: 32px;
        height: 32px;
    }
    
    .header-social-link svg {
        width: 16px;
        height: 16px;
    }

    .logo {
        padding: 0 2.5rem;
    }
    
    .logo-image {
        height: auto;
        max-height: 55px; /* Original mobile size */
        max-width: 200px;
        width: auto;
    }

    .logo h1 {
        font-size: 1.6rem;
        padding: 0.4rem 1.2rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0.6rem;
    }

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

    .hero-subtitle {
        font-size: 1.5rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* iPad Mode - Switch earlier to prevent overlap (900px - 1024px) */
@media (min-width: 900px) and (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .nav-menu {
        gap: 1.2rem;
    }

    .nav-menu-left {
        padding-right: 2rem;
        justify-content: flex-end;
    }

    .nav-menu-right {
        padding-left: 2rem;
        justify-content: flex-start;
    }

    .logo {
        padding: 0 2rem;
    }

    .logo h1 {
        font-size: 1.4rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1px;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0.5rem;
        letter-spacing: 0.3px;
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Smaller iPad / Large Mobile (768px - 900px) - More compact iPad mode */
@media (min-width: 768px) and (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu-left {
        padding-right: 1.5rem;
    }

    .nav-menu-right {
        padding-left: 1.5rem;
    }

    .logo {
        padding: 0 1.5rem;
    }

    .logo h1 {
        font-size: 1.2rem;
        padding: 0.35rem 0.9rem;
        letter-spacing: 1px;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.4rem;
        letter-spacing: 0.2px;
    }

    .hero-title {
        font-size: 3.5rem; /* Increased from 2.8rem for better mobile visibility */
    }
    
    /* Mobile: Show line break, hide on desktop */
    .hero-title .mobile-break {
        display: block;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        display: block;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}


/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        min-height: 70px; /* Increased from 60px for larger header */
        height: 70px;
        padding: 0;
        margin: 0;
        /* Mobile browser fixes */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .nav-wrapper {
        padding: 0.85rem 0; /* Slightly increased padding */
        margin: 0;
        justify-content: space-between;
        position: relative;
        min-height: 70px; /* Increased from 60px */
        height: 70px;
        align-items: center;
        /* Prevent layout shifts */
        flex-shrink: 0;
    }
    
    .logo {
        position: relative;
        left: 0;
        transform: none;
        order: 1;
        margin: 0;
        padding: 0.3rem 0.5rem; /* Vertical padding for safe spacing */
        max-width: calc(100% - 8rem); /* Safe margin from edges */
        overflow: hidden; /* Keep logo within header */
        z-index: 1001;
        flex: 0 0 auto;
        margin-right: auto;
        height: 100%;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }
    
    .logo h1 {
        font-size: 1.1rem;
        letter-spacing: 1px;
        padding: 0.4rem 1rem;
        text-align: left;
    }
    
    .logo h1::before {
        border-radius: 30px;
    }
    
    .nav-menu {
        gap: 0;
    }
    
    .nav-menu-left {
        order: 1;
        flex: 0;
        width: 0;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu-right {
        order: 3;
        flex: 0;
        width: 0;
        opacity: 0;
        visibility: hidden;
    }
    
    .hamburger {
        order: 3;
        margin-left: auto;
        margin-right: 0.5rem; /* Safe margin from right edge */
        flex-shrink: 0;
    }
    
    /* Social Media Icons on Mobile - Right Side, Before Hamburger */
    /* Extract from nav-menu-right and position separately */
    .nav-menu-right .header-social {
        position: fixed !important;
        top: 0 !important;
        left: auto !important;
        right: 60px !important;
        height: 70px !important;
        display: flex !important;
        gap: 0.5rem;
        align-items: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 1002 !important;
        pointer-events: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Also target direct .header-social for mobile */
    .header-social {
        order: 2;
        display: flex !important;
        gap: 0.5rem;
        align-items: center;
        margin-left: auto;
        margin-right: 1rem; /* Safe margin from right edge */
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-menu-right .header-social .header-social-link {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border-radius: 50%;
        transition: all 0.3s ease;
        color: var(--grey-dark) !important; /* Use dark grey for visibility */
    }
    
    .nav-menu-right .header-social .header-social-link:hover,
    .nav-menu-right .header-social .header-social-link:active {
        background: rgba(139, 122, 125, 0.1); /* Light grey background on hover */
        transform: scale(1.1);
        color: var(--grey) !important;
    }
    
    .nav-menu-right .header-social .header-social-link svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }
    
    /* Hide desktop menu items on mobile */
    .nav-menu-left,
    .nav-menu-right {
        display: flex !important;
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
        box-shadow: var(--shadow);
        padding: 1.5rem 0;
        z-index: 999;
        justify-content: center !important;
        opacity: 0;
        visibility: hidden;
        will-change: left, opacity, visibility;
    }
    
    /* Exception: Social icons should NOT be hidden with parent menu - they're positioned independently */
    /* Social icons are positioned fixed in navbar, not affected by parent menu visibility */

    .nav-menu-left.active {
        left: 0;
        top: 60px;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu-right.active {
        left: 0;
        top: calc(60px + 180px); /* Position below left menu */
        opacity: 1;
        visibility: visible;
    }
    
    /* Adjust mobile menu when promotion bar is visible */
    .nav-menu-left.active {
        top: 70px; /* Navbar height (70px on mobile) */
    }
    
    .nav-menu-right.active {
        top: calc(70px + 180px);
    }
    
    .nav-menu-left li,
    .nav-menu-right li {
        margin: 0.5rem 0;
    }
    
    /* Book Now button in mobile navigation menu - MOBILE ONLY */
    .mobile-book-now {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(238, 158, 178, 0.2);
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .btn-book-now-mobile {
        width: 80%;
        max-width: 250px;
        padding: 12px 24px;
        background: linear-gradient(135deg, var(--pink-rose) 0%, var(--coral-peach) 100%);
        color: var(--white);
        border: none;
        border-radius: 25px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(238, 158, 178, 0.3), 0 2px 8px rgba(249, 171, 141, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .btn-book-now-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--coral-peach) 0%, var(--pink-rose) 100%);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 0;
    }
    
    .btn-book-now-mobile span,
    .btn-book-now-mobile {
        position: relative;
        z-index: 1;
    }
    
    .btn-book-now-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(238, 158, 178, 0.4), 0 3px 12px rgba(249, 171, 141, 0.3);
    }
    
    .btn-book-now-mobile:hover::before {
        left: 0;
    }
    
    .btn-book-now-mobile:active {
        transform: translateY(0);
        box-shadow: 0 2px 10px rgba(238, 158, 178, 0.3), 0 1px 5px rgba(249, 171, 141, 0.2);
    }
    
    /* Ensure dropdown works on mobile */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0.5rem 0 0.5rem 2rem !important;
        margin-top: 0.5rem !important;
        display: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        will-change: max-height;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
        max-height: 200px;
        padding: 0.5rem 0 0.5rem 2rem !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .dropdown-menu::before {
        display: none !important;
    }
    
    .dropdown-link {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
        display: block !important;
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, padding 0.2s ease;
        pointer-events: none;
    }
    
    .dropdown.active .dropdown-link {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }
    
    .dropdown-link:hover {
        padding-left: 1.5rem;
    }
    
    .dropdown-arrow {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 0.8rem 1rem;
        display: block;
        font-size: 1.1rem;
    }
    
    /* Header Social Media Icons - Mobile */
    .header-social {
        margin-left: 0;
        padding-left: 1rem;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 0.5rem;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .header-social-link {
        width: 40px;
        height: 40px;
    }
    
    .header-social-link svg {
        width: 20px;
        height: 20px;
    }

    /* Hero Section */
    .hero {
        height: 80vh;
        min-height: 500px;
        min-height: -webkit-fill-available; /* iOS Safari fix */
        margin-top: 80px; /* Updated to match navbar height */ /* Navbar height (70px) */
        padding-top: 0;
        margin-bottom: 0;
    }
    
    /* Fix iOS Safari viewport height issues */
    @supports (-webkit-touch-callout: none) {
        .hero {
            height: -webkit-fill-available;
        }
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        padding: 0 10px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 0.9rem;
        max-width: 200px;
        width: auto;
        margin: 0 auto;
        display: block;
    }

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

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .section-title::before {
        font-size: 1.2rem;
        top: -1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .popular-badge,
    .premium-badge {
        top: 15px;
        right: 15px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .btn-service {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .salon-image {
        height: 300px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    /* Reset column spans on mobile - all items take full width */
    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        aspect-ratio: 4 / 3; /* Maintain aspect ratio on mobile */
        min-height: 250px;
    }

    .gallery-filters {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .info-item {
        gap: 1rem;
    }

    .info-icon {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group input,
    .form-group textarea,
    .form-select {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .feature-icon-large {
        font-size: 2.5rem;
    }

    /* Ensure first sections have proper padding on mobile */
    .gallery,
    .services,
    .about,
    .contact {
        padding-top: 110px !important; /* Mobile navbar height + extra breathing room */
    }
    
    .location-info-section {
        padding-top: 180px !important; /* Mobile navbar + original padding + extra breathing room */
    }

    .page-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
        padding: 0 15px;
    }

    .cta-section p {
        font-size: 1rem;
        padding: 0 20px;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Mission Section */
    .mission-content {
        padding: 0 15px;
    }

    .mission-content p {
        font-size: 1rem;
    }

    /* Map Section */
    .map-section {
        padding: 60px 0;
    }

    .map-placeholder {
        padding: 40px 15px;
        border-radius: 15px;
    }

    .map-placeholder p {
        font-size: 1rem;
    }

    /* Social Links Mobile */
    .social-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .social-link {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
    }

    /* Location Pages Mobile */
    .location-hero {
        height: 40vh;
        min-height: 300px;
    }

    .location-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-details {
        position: static;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-icon-large {
        font-size: 2rem;
    }

    .info-content h3 {
        font-size: 1.3rem;
    }

    .info-content p {
        font-size: 1rem;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .location-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    .location-gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 250px;
    }

    .location-gallery-item.large {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .google-map {
        height: 300px;
    }
}

/* iPad Location Pages */
@media (min-width: 768px) and (max-width: 1024px) {
    .location-info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .location-gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 250px;
    }

    .location-gallery-item.large {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2.5rem; /* Increased from 1.75rem for better visibility on small screens */
    }
    
    /* Ensure line break on very small screens */
    .hero-title .mobile-break {
        display: block;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        display: block;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
    }

    section {
        padding: 50px 0;
    }

    .service-card,
    .feature-card,
    .contact-form {
        padding: 1.2rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    /* Ensure all items take full width on small mobile */
    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        aspect-ratio: 4 / 3; /* Maintain aspect ratio on small mobile */
        min-height: 220px;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .salon-image {
        height: 250px;
    }

    .info-icon {
        font-size: 1.3rem;
    }

    .info-text h3 {
        font-size: 1rem;
    }

    .info-text p {
        font-size: 0.9rem;
    }
}

/* Landscape Mobile (max-width: 767px and orientation: landscape) */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem; /* Increased from 1.8rem for landscape mobile */
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }

    .page-header {
        padding: 60px 0 40px;
    }
}

/* Scroll Animation Classes */
.animate-in {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateY(0) !important;
    will-change: auto !important; /* Remove will-change after animation */
}

/* Parallax Effect for Sections - OPTIMIZED */
/* Removed will-change from all sections - only apply when needed */
section {
    position: relative;
    /* will-change removed - only set dynamically when animating */
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Enhanced section transitions */
section:not(#home) {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stagger animation for grid items */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }

.gallery-grid .gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.05s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.15s; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 0.25s; }

/* Smooth reveal animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale3d(0.9, 0.9, 1);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0) scale3d(0.95, 0.95, 1);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    }
}

@keyframes fadeInUpRotate {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0) rotateY(10deg);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotateY(0);
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .btn,
    .filter-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-item {
        cursor: pointer;
    }

    .service-card:hover,
    .gallery-item:hover {
        transform: none;
    }

    .service-card:active {
        transform: scale(0.98);
    }
}

/* Call Button - Replaced Scroll to Top */
.scroll-to-top.call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 50%, var(--pink-rose) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(164, 198, 57, 0.7), 0 2px 10px rgba(238, 158, 178, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    will-change: transform, opacity;
    overflow: visible;
}

.scroll-to-top.call-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top.call-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 30px rgba(164, 198, 57, 0.8), 0 4px 15px rgba(238, 158, 178, 0.6);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    animation: shake 0.3s ease-in-out infinite;
}

.scroll-to-top.call-button:active {
    transform: translateY(-2px) scale(0.95);
}

.scroll-to-top.call-button svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.scroll-to-top.call-button:hover svg {
    transform: scale(1.1);
}

/* Water Wave Animation */
.call-button-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.call-button .wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(238, 158, 178, 0.4);
    animation: wavePulse 2s ease-out infinite;
}

.call-button .wave1 {
    animation-delay: 0s;
}

.call-button .wave2 {
    animation-delay: 0.7s;
}

.call-button .wave3 {
    animation-delay: 1.4s;
}

/* Shaking Animation */
@keyframes shake {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateY(0) rotate(-3deg);
    }
    20%, 40%, 60%, 80% {
        transform: translateY(0) rotate(3deg);
    }
}

.scroll-to-top.call-button.visible {
    animation: shake 0.5s ease-in-out infinite;
}

.scroll-to-top.call-button.visible:hover {
    animation: shake 0.3s ease-in-out infinite;
}

/* Water Wave Pulse Animation */
@keyframes wavePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Mobile adjustments for call button */
@media (max-width: 767px) {
    .scroll-to-top.call-button {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top.call-button svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top.call-button {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-to-top.call-button svg {
        width: 18px;
        height: 18px;
    }
}

/* ================================================
   SERVICE MENU STYLES - Modern Elegant Design
   ================================================ */

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 3rem;
    margin-bottom: 50px;
}

.menu-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 247, 0.85) 100%);
    border-radius: 25px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    box-shadow: 0 8px 30px rgba(238, 158, 178, 0.15), 0 3px 10px rgba(249, 171, 141, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(238, 158, 178, 0.2);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--pink-rose) 0%, var(--coral-peach) 50%, var(--yellow-bright) 100%);
    z-index: 1;
}

.menu-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(238, 158, 178, 0.25), 0 5px 15px rgba(249, 171, 141, 0.15);
    border-color: var(--pink-rose);
}

.menu-section-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--pink-rose) 0%, var(--coral-peach) 100%);
}

.menu-section-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(238, 158, 178, 0.2) 0%, rgba(255, 245, 247, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.menu-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) saturate(1.15);
}

.menu-section:hover .menu-section-image img {
    transform: scale(1.1);
}

.menu-section-content {
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: stretch; /* Don't center children - let them align naturally */
}

/* Ensure Book Now buttons are visible in menu-section-content - prevent width stretching */
.menu-section-content .btn-book-now,
.menu-section-content > .btn-book-now,
.menu-section .menu-section-content .btn-book-now,
.card-content.menu-section-content .btn-book-now {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    align-self: flex-start !important; /* Left align on desktop */
    width: auto !important; /* Prevent stretching - CRITICAL */
    max-width: none !important;
    min-width: auto !important;
    flex: none !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    flex-basis: auto !important;
    box-sizing: border-box !important;
}

/* Desktop: Force visibility */
@media (min-width: 769px) {
    .menu-section .btn-book-now,
    .menu-section-content .btn-book-now,
    .card-content.menu-section-content .btn-book-now,
    .collapsible-service-card.menu-section .btn-book-now,
    .collapsible-service-card.menu-section .card-content .btn-book-now,
    .collapsible-service-card.menu-section .card-content.menu-section-content .btn-book-now {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 25px !important;
    }
}

.menu-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    color: var(--pink-rose);
    margin: 0 0 30px 0;
    padding-bottom: 20px;
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.menu-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--pink-rose), var(--coral-peach));
    border-radius: 2px;
}

/* Book Now Button - Base Styles - UNIFIED for both pages */
.btn-book-now {
    margin-top: 25px;
    margin-bottom: 20px;
    padding: 10px 18px !important;
    background: linear-gradient(135deg, var(--pink-rose) 0%, var(--coral-peach) 100%) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 20px !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(238, 158, 178, 0.3), 0 2px 8px rgba(249, 171, 141, 0.2) !important;
    position: relative;
    overflow: hidden;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
    white-space: nowrap !important;
    align-self: flex-start !important; /* Default: left align for desktop */
    width: auto !important; /* Ensure button doesn't stretch - same on both pages */
    max-width: none !important;
    min-width: auto !important;
    flex: none !important; /* Don't allow flex to stretch button */
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
}

/* Desktop: Keep left align for both pages - NO CHANGE */
@media (min-width: 769px) {
    /* Target ALL buttons on both pages - left align on desktop */
    .btn-book-now,
    .menu-section .btn-book-now,
    .menu-section > .btn-book-now,
    .menu-section-content .btn-book-now,
    .menu-section-content > .btn-book-now,
    .menu-section .menu-section-content .btn-book-now,
    .menu-section .menu-section-content > .btn-book-now,
    .card-content.menu-section-content .btn-book-now,
    .card-content.menu-section-content > .btn-book-now,
    .collapsible-service-card.menu-section .btn-book-now,
    .collapsible-service-card.menu-section .card-content .btn-book-now,
    .collapsible-service-card.menu-section .card-content.menu-section-content .btn-book-now,
    .collapsible-service-card.menu-section .card-content.menu-section-content > .btn-book-now {
        align-self: flex-start !important;
        margin-top: 25px !important;
        margin-bottom: 25px !important;
        padding: 10px 18px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, var(--pink-rose) 0%, var(--coral-peach) 100%) !important;
        color: var(--white) !important;
        box-shadow: 0 4px 15px rgba(238, 158, 178, 0.3), 0 2px 8px rgba(249, 171, 141, 0.2) !important;
        font-family: 'Cormorant Garamond', serif !important;
        width: auto !important; /* Same width on both pages - content-based - CRITICAL */
        max-width: none !important;
        min-width: auto !important;
        display: inline-block !important;
        flex: none !important; /* Prevent flex from stretching */
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        flex-basis: auto !important;
        box-sizing: border-box !important;
    }
}

/* Mobile: Services page center, Home page center - EXACT SAME STYLING */
@media (max-width: 768px) {
    /* Services page: Center align buttons on mobile */
    .menu-section .menu-section-content .btn-book-now,
    .menu-section .menu-section-content > .btn-book-now,
    .menu-section-content .btn-book-now,
    .menu-section-content > .btn-book-now {
        align-self: center !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        padding: 9px 16px !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, var(--pink-rose) 0%, var(--coral-peach) 100%) !important;
        color: var(--white) !important;
        box-shadow: 0 4px 15px rgba(238, 158, 178, 0.3), 0 2px 8px rgba(249, 171, 141, 0.2) !important;
        font-family: 'Cormorant Garamond', serif !important;
        width: auto !important; /* Same width on both pages - content-based */
        max-width: none !important;
        min-width: auto !important;
        display: inline-block !important;
        flex: none !important; /* Prevent flex from stretching */
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        flex-basis: auto !important;
    }
    
    /* Home page: Center align buttons on mobile (keep existing behavior) */
    .btn-book-now,
    .card-content.menu-section-content .btn-book-now,
    .card-content.menu-section-content > .btn-book-now,
    .collapsible-service-card.menu-section .btn-book-now,
    .collapsible-service-card.active .btn-book-now {
        align-self: center !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        padding: 9px 16px !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, var(--pink-rose) 0%, var(--coral-peach) 100%) !important;
        color: var(--white) !important;
        box-shadow: 0 4px 15px rgba(238, 158, 178, 0.3), 0 2px 8px rgba(249, 171, 141, 0.2) !important;
        font-family: 'Cormorant Garamond', serif !important;
        width: auto !important; /* Same width on both pages - content-based */
        max-width: none !important;
        min-width: auto !important;
        display: inline-block !important;
        flex: none !important; /* Prevent flex from stretching */
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        flex-basis: auto !important;
    }
}

/* Desktop: Always visible */
@media (min-width: 769px) {
    .btn-book-now,
    .menu-section .btn-book-now,
    .menu-section-content .btn-book-now,
    .card-content .btn-book-now,
    .collapsible-service-card .btn-book-now,
    .collapsible-service-card.menu-section .btn-book-now,
    .collapsible-service-card.menu-section .card-content .btn-book-now {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Mobile: Visible when card is active */
@media (max-width: 768px) {
    .collapsible-service-card.active .btn-book-now,
    .collapsible-service-card.active .card-content .btn-book-now {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--coral-peach) 0%, var(--pink-rose) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-book-now span,
.btn-book-now {
    position: relative;
    z-index: 1;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 158, 178, 0.4), 0 3px 12px rgba(249, 171, 141, 0.3);
}

.btn-book-now:hover::before {
    left: 0;
}

.btn-book-now:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(238, 158, 178, 0.3), 0 1px 5px rgba(249, 171, 141, 0.2);
}

/* Mobile: Keep menu items left-aligned, only center the button */
@media (max-width: 768px) {
    .menu-section-content,
    .card-content.menu-section-content {
        align-items: stretch; /* Keep menu items left-aligned */
    }
    
    /* Only center the button, not menu items */
    .menu-section-content .btn-book-now,
    .card-content.menu-section-content .btn-book-now {
        align-self: center !important;
    }
}

/* Small mobile: Slightly smaller buttons - consistent across both pages */
@media (max-width: 480px) {
    .btn-book-now,
    .menu-section .btn-book-now,
    .menu-section-content .btn-book-now,
    .card-content.menu-section-content .btn-book-now,
    .collapsible-service-card.menu-section .btn-book-now,
    .collapsible-service-card.active .btn-book-now {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
    }
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 18px;
    padding: 12px 0;
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(238, 158, 178, 0.15); /* Soft horizontal line between items */
}

.menu-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--pink-rose);
    font-size: 1.5em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover {
    padding-left: 25px;
    border-left-color: var(--pink-rose);
    border-bottom-color: rgba(238, 158, 178, 0.3); /* Slightly more visible on hover */
    background: linear-gradient(to right, rgba(238, 158, 178, 0.08), transparent);
    border-radius: 8px;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:hover .item-name {
    color: var(--pink-rose);
    transform: translateX(5px);
}

.menu-item .item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15em;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.4;
    white-space: nowrap; /* Prevent text wrapping on all screen sizes */
    overflow: hidden;
    text-overflow: ellipsis; /* Show ellipsis if text is too long */
    min-width: 0; /* Allow grid item to shrink */
}

.menu-item .item-price {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--coral-peach);
    font-size: 1.3em;
    white-space: nowrap;
    padding-left: 20px;
    text-align: right;
    transition: all 0.3s ease;
}

.menu-item:hover .item-price {
    color: var(--pink-rose);
    transform: scale(1.05);
}

.menu-item .item-price.price-range {
    font-style: italic;
    font-size: 1.1em;
    color: var(--pink-rose);
}

.menu-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(238, 158, 178, 0.3);
}

.menu-footer .decorative-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--pink-rose), var(--coral-peach), transparent);
    margin: 25px auto;
    border-radius: 2px;
}

.menu-footer .footer-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5em;
    color: var(--pink-rose);
    margin: 15px 0;
    font-weight: 500;
    letter-spacing: 2px;
}

/* Responsive Menu Styles */
@media (max-width: 1024px) {
    .menu-section {
        grid-template-columns: 250px 1fr;
    }
    
    .menu-section-content {
        padding: 35px 30px;
    }
    
    .menu-section .section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .menu-grid {
        gap: 40px;
    }

    .menu-section {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .menu-section-image {
        min-height: 220px;
        height: 220px;
    }

    .menu-section-content {
        padding: 30px 25px;
    }

    .menu-section .section-title {
        font-size: 1.8em;
        margin: 0 0 25px 0;
    }

    .menu-item {
        padding: 10px 0;
        padding-left: 15px;
        margin-bottom: 15px;
        grid-template-columns: 1fr auto; /* Ensure name left, price right */
        gap: 10px; /* Add gap between name and price */
        align-items: center;
        border-bottom: 1px solid rgba(238, 158, 178, 0.15); /* Soft horizontal line */
    }

    .menu-item:hover {
        padding-left: 20px;
        border-bottom-color: rgba(238, 158, 178, 0.3); /* Slightly more visible on hover */
    }

    .menu-item .item-name {
        font-size: 1.05em;
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden;
        text-overflow: ellipsis; /* Show ellipsis if text is too long */
        min-width: 0; /* Allow grid item to shrink */
    }

    .menu-item .item-price {
        font-size: 1.15em;
        padding-left: 10px;
        text-align: right; /* Keep price on the right */
        white-space: nowrap; /* Prevent price from wrapping */
        flex-shrink: 0; /* Don't shrink the price */
    }

    .menu-footer .footer-item {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        gap: 30px;
    }

    .menu-section {
        border-radius: 15px;
    }

    .menu-section-image {
        min-height: 180px;
        height: 180px;
    }

    .menu-section-content {
        padding: 25px 20px;
    }

    .menu-section .section-title {
        font-size: 1.5em;
        margin: 0 0 20px 0;
        padding-bottom: 15px;
    }

    .menu-section .section-title::after {
        width: 40px;
        height: 2px;
    }

    .menu-item {
        padding: 8px 0;
        padding-left: 12px;
        margin-bottom: 12px;
        grid-template-columns: 1fr auto; /* Keep name left, price right */
        gap: 10px; /* Add gap between name and price */
        align-items: center;
        border-bottom: 1px solid rgba(238, 158, 178, 0.15); /* Soft horizontal line */
    }

    .menu-item:hover {
        padding-left: 15px;
        border-bottom-color: rgba(238, 158, 178, 0.3); /* Slightly more visible on hover */
    }

    .menu-item .item-name {
        font-size: 1em;
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden;
        text-overflow: ellipsis; /* Show ellipsis if text is too long */
        min-width: 0; /* Allow grid item to shrink */
    }

    .menu-item .item-price {
        font-size: 1.1em;
        padding-left: 10px;
        text-align: right; /* Keep price on the right */
        white-space: nowrap; /* Prevent price from wrapping */
        flex-shrink: 0; /* Don't shrink the price */
    }
}

