/* ===========================
   Lavendra Saloon - Luxury CSS
   =========================== */

/* CSS Variables for Colors - Premium Lavender Theme */
:root {
    /* Core palette: Green + Yellow + Rose */
    --green: #10B981;          /* Emerald */
    --green-dark: #047857;     /* Forest */
    --yellow: #FFD700;         /* Gold */
    --amber: #F59E0B;          /* Warm gold */
    --rose: #E8B4B8;           /* Rose gold */

    /* Map old variable names to new palette for minimal code changes */
    --primary-lavender: var(--green);
    --deep-purple: var(--green-dark);
    --soft-lavender: #F8CFE0;  /* soft rose tint */
    --light-lavender: #FFF7E6; /* warm light */
    --rose-gold: var(--rose);
    --silver: #C0C0C0;
    --champagne-gold: var(--yellow);
    --deep-plum: #4C1D95; /* kept for accents if used */
    --lavender-mist: #FAFAF9;
    --black: #000000;
    --charcoal: #1F1B2E;
    --dark-charcoal: #161025;
    --darker-purple: #0F0A1A;
    --dark-surface: #1E2231; /* slightly cooler dark */
    --white: #FFFFFF;
    --cream: #FFFBF7;
    --light-gray: #4B4562;
    --darker-gray: #0E121B;
    --dark-text: #111827; /* near-black for light theme */
    --light-text: #4B5563; /* gray-600 for secondary text */
    --darker-text: #B8B4CC;

    /* Missing variables used in stylesheet */
    --emerald-green: var(--green);
    --forest-green: var(--green-dark);
    --gold: var(--yellow);
    --golden-yellow: var(--amber);
    --sky-blue: #38BDF8;
    --sunset-orange: #FB923C;
    --royal-purple: #8B5CF6; /* keep subtle purple for icons if referenced */

    /* Shadows tuned to new palette */
    --shadow-light: rgba(16, 185, 129, 0.2);
    --shadow-medium: rgba(16, 185, 129, 0.3);
    --shadow-lavender: rgba(232, 180, 184, 0.25);
    --shadow-dark: rgba(0, 0, 0, 0.4);
    --shadow-purple: rgba(16, 185, 129, 0.35);

    /* Gradients tuned to new palette */
    --gradient-luxury: linear-gradient(135deg, var(--green), var(--yellow));
    --gradient-lavender: linear-gradient(135deg, var(--rose), var(--green));
    --gradient-purple: linear-gradient(135deg, var(--green-dark), var(--green));
    --gradient-premium: linear-gradient(135deg, var(--rose), var(--green));
    --gradient-gold: linear-gradient(135deg, var(--amber), var(--yellow));
    --gradient-dark: linear-gradient(135deg, var(--darker-purple), var(--dark-charcoal));
    --gradient-dark-purple: linear-gradient(135deg, var(--dark-surface), var(--charcoal));
    --gradient-dark-rose: linear-gradient(135deg, var(--dark-charcoal), var(--darker-purple));
    --gradient-3d: linear-gradient(145deg, var(--green), var(--green-dark));
    --gradient-glass: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(232, 180, 184, 0.12));
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-premium);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.text-lavender {
    color: var(--lavender) !important;
}

.text-emerald {
    color: var(--primary-lavender) !important;
}

.text-gold {
    color: var(--rose-gold) !important;
}

.text-purple {
    color: var(--royal-purple) !important;
}

.text-coral {
    color: var(--coral-pink) !important;
}

.text-sky {
    color: var(--sky-blue) !important;
}

.text-sunset {
    color: var(--sunset-orange) !important;
}

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

/* Navigation */
.luxury-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10; /* lowered to allow navigator sections to appear above if needed */
    transform: translateZ(0);
}

.luxury-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.7rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transform: translateZ(10px);
}

.luxury-nav.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(139, 93, 255, 0.05) 0%, 
        rgba(196, 181, 253, 0.1) 50%, 
        rgba(139, 93, 255, 0.05) 100%
    );
    z-index: -1;
    transform: translateZ(-1px);
}

/* Account trigger styling */
.account-avatar {
    font-size: 1.6rem;
    color: var(--deep-plum);
}
.account-name {
    display: block;
    margin-top: 2px;
    color: var(--dark-text);
    opacity: 0.9;
    line-height: 1;
    font-weight: 600;
}

/* Services cart - compact, low-bandwidth friendly */
.card .services-cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 6px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    margin-bottom: 8px;
}
.services-cart-item .thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: var(--lavender-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--dark-text);
}
.services-cart-item .meta {
    flex: 1 1 auto;
    min-width: 0;
}
.services-cart-item .meta .title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
}
.services-cart-item .meta .sub {
    font-size: 0.82rem;
    color: var(--light-text);
}
.services-cart-item .price {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.95rem;
}

/* Reduce heavy shadows for low-bandwidth rendering */
.card, .navbar, .gallery-item, .service-card {
    box-shadow: none !important;
}

.luxury-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    text-shadow: none;
    transform: translateZ(5px);
}

.luxury-brand:hover {
    transform: translateZ(8px) scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(139, 93, 255, 0.4));
}

.navbar-logo {
    height: 55px;
    width: auto;
    max-height: 55px;
    transition: all 0.4s ease;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 2px 4px rgba(139, 93, 255, 0.3));
    transform: translateZ(3px);
}

.navbar-logo:hover {
    transform: translateZ(6px) rotateY(5deg);
    filter: brightness(1.3) contrast(1.2) drop-shadow(0 4px 8px rgba(139, 93, 255, 0.5));
}

.luxury-nav.scrolled .navbar-logo {
    height: 55px;
    max-height: 55px;
}

.luxury-nav.scrolled .luxury-brand {
    font-size: 1.6rem;
    filter: brightness(1.5);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.luxury-brand::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-premium);
    opacity: 0;
    border-radius: 10px;
    filter: blur(15px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.luxury-nav.scrolled .luxury-brand::before {
    opacity: 0.1;
}

.luxury-nav-link {
    color: #1F2937 !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: all 0.4s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transform: translateZ(2px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.luxury-nav.scrolled .luxury-nav-link {
    color: #111827 !important;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.06);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
}

.luxury-nav-link:hover {
    color: var(--green) !important;
    background: rgba(16, 185, 129, 0.12);
    transform: translateZ(5px) translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 93, 255, 0.3),
                0 4px 10px rgba(196, 181, 253, 0.2);
    backdrop-filter: blur(15px);
}

.luxury-nav.scrolled .luxury-nav-link:hover {
    background: rgba(16, 185, 129, 0.18);
    color: #111827 !important;
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.2),
                0 6px 12px rgba(232, 180, 184, 0.15),
                inset 0 1px 0 rgba(0,0,0,0.05);
}

.luxury-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-premium);
    transition: all 0.4s ease;
    border-radius: 2px;
}

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

.luxury-nav.scrolled .luxury-nav-link::after {
    bottom: 2px;
    height: 3px;
    background: var(--gradient-gold);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.luxury-nav.scrolled .luxury-nav-link:hover::after {
    width: 90%;
    background: var(--gradient-premium);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

.luxury-nav-link.active {
    color: var(--gold) !important;
    background: rgba(245, 158, 11, 0.12);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.15) inset;
}

.luxury-nav.scrolled .luxury-nav-link.active {
    background: rgba(245, 158, 11, 0.15);
    color: var(--white) !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.luxury-nav-link.active::after {
    width: 100%;
    background: var(--gradient-gold);
}

.luxury-nav.scrolled .luxury-nav-link.active::after {
    width: 100%;
    background: var(--gradient-gold);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
}

/* Navbar spacing/layout tweaks */
.luxury-nav .navbar-nav { gap: 0.5rem; align-items: center; }
.luxury-nav .navbar-nav .nav-item { margin: 0 0.25rem; }
.luxury-nav .navbar-nav .nav-link { padding: 0.5rem 0.9rem; }
.luxury-nav .navbar-nav .btn-luxury { padding: 10px 22px; }
.luxury-nav .dropdown-toggle.btn { padding: 8px 16px; border-radius: 24px; }
.luxury-nav .dropdown-menu { margin-top: 0.5rem; z-index: 1100; position: absolute; }
/* Allow wrapping on mid/large widths to prevent clipping */
@media (min-width: 992px) and (max-width: 1399.98px) {
    /* reduce sizes for tighter fit, avoid early wrapping */
    .luxury-nav .navbar-nav { row-gap: 0.25rem; }
    .luxury-nav .navbar-logo { height: 48px; max-height: 48px; }
    .luxury-brand { font-size: 1.5rem; }
    .luxury-nav .navbar-nav .nav-link { margin: 0 0.25rem; padding: 0.45rem 0.75rem; }
    .luxury-nav .navbar-nav .btn-luxury { padding: 8px 18px; }
}
/* Force single row on desktop and allow items to shrink instead of wrapping */
@media (min-width: 992px) {
    .luxury-nav .navbar-nav { flex-wrap: nowrap !important; }
    .luxury-nav .navbar-nav .nav-item { flex: 0 1 auto; }
    .luxury-nav .navbar-nav .nav-link,
    .luxury-nav .navbar-nav .btn { white-space: nowrap; }
    .luxury-nav .dropdown { width: auto; }
    .luxury-brand { max-width: clamp(160px, 22vw, 280px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    #accountName { display: inline-block; max-width: 140px; overflow: hidden; text-overflow: ellipsis; vertical-align: bottom; }
}
@media (max-width: 991.98px) {
    .luxury-nav .navbar-collapse { padding-top: 0.5rem; }
    .luxury-nav .navbar-nav { gap: 0.25rem; }
    .luxury-nav .navbar-nav .nav-item { margin: 0.15rem 0; }
    .luxury-nav .navbar-nav .btn, .luxury-nav .navbar-nav .dropdown { width: 100%; }
    .luxury-nav .dropdown-menu { width: 100%; }
}

/* Navigation Scroll Progress Bar */
.nav-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-premium);
    transition: width 0.2s ease;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Buttons */
.btn-luxury {
    background: var(--gradient-premium);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px var(--shadow-lavender),
                0 4px 12px rgba(139, 93, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

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

.btn-luxury:hover {
    transform: translateZ(8px) translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px var(--shadow-lavender),
                0 8px 20px rgba(139, 93, 255, 0.4),
                0 0 30px rgba(196, 181, 253, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-luxury {
    background: transparent;
    border: 2px solid var(--primary-lavender);
    color: var(--primary-lavender);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    transform: translateZ(0);
    box-shadow: 0 4px 12px rgba(139, 93, 255, 0.2);
}

.btn-outline-luxury:hover {
    background: var(--primary-lavender);
    color: white;
    transform: translateZ(6px) translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 93, 255, 0.4),
                0 6px 15px rgba(196, 181, 253, 0.3);
}

.btn-service {
    background: var(--gradient-lavender);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 6px 18px rgba(139, 93, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
}

.btn-service:hover {
    transform: translateZ(5px) translateY(-3px) scale(1.03);
    color: white;
    box-shadow: 0 12px 28px rgba(139, 93, 255, 0.4),
                0 6px 14px rgba(232, 180, 184, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.95)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2310B981;stop-opacity:0.08"/><stop offset="50%" style="stop-color:%23FFD700;stop-opacity:0.08"/><stop offset="100%" style="stop-color:%23E8B4B8;stop-opacity:0.08"/></linearGradient></defs><rect width="1200" height="800" fill="url(%23bg)"/></svg>') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.hero-overlay { display: none; }

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer3d 4s infinite;
    text-shadow: none;
    transform: translateZ(20px);
}

@keyframes shimmer3d {
    0%, 100% { 
        background-position: 0% 50%; 
        transform: translateZ(20px) rotateY(0deg);
    }
    25% { 
        transform: translateZ(25px) rotateY(2deg);
    }
    50% { 
        background-position: 100% 50%; 
        transform: translateZ(30px) rotateY(0deg);
    }
    75% { 
        transform: translateZ(25px) rotateY(-2deg);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 2rem;
    transform: translateZ(10px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--emerald-green);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(139, 93, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(196, 181, 253, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-image-wrapper {
    position: relative;
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-luxury);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.about-text {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
}

.feature-item {
    font-size: 1.1rem;
    color: var(--dark-text);
    display: flex;
    align-items: center;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F0FDF4 0%, #ECFDF5 100%);
    position: relative;
    z-index: 1;
}

.service-card {
    background: #FFFFFF;
    padding: 0;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    color: white;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

.service-title {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.service-category {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

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

.service-duration {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    color: var(--light-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* Optional service image block for cards */
.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FFFB 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 30%, rgba(139, 93, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(232, 180, 184, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.06);
    transform: translateZ(0);
}

.gallery-item:hover {
    transform: translateZ(15px) scale(1.05);
    box-shadow: 0 25px 50px var(--shadow-purple),
                0 15px 30px rgba(16, 185, 129, 0.25),
                0 0 30px rgba(196, 181, 253, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.0), rgba(16,185,129,0.18));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 2rem;
}

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

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background: #F3F4F6;
}

.booking-card {
    background: #FFFFFF;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
}

.luxury-input {
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: #111827;
}

.luxury-input:focus {
    border-color: var(--emerald-green);
    box-shadow: 0 0 15px var(--shadow-light);
    outline: none;
}

/* Ensure Bootstrap modals are above any stacking contexts */
.modal-backdrop { z-index: 1500 !important; }
.modal { z-index: 1600 !important; }

.form-label {
    color: #111827;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.testimonial-card {
    background: #FFFFFF;
    backdrop-filter: none;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-premium);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px var(--shadow-gold);
}

.testimonial-rating {
    color: var(--rose-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid transparent;
    background: var(--gradient-premium) padding-box, var(--gradient-premium) border-box;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.author-name {
    color: var(--dark-text);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-title {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #F9FAFB;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 30%, rgba(139, 93, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(232, 180, 184, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.06);
    transform: translateZ(0);
    backdrop-filter: none;
}

.contact-item:hover {
    transform: translateZ(10px) translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-purple),
                0 8px 20px rgba(139, 93, 255, 0.3),
                inset 0 1px 0 rgba(196, 181, 253, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    width: 30px;
}

.contact-item h5 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--light-text);
    margin: 0;
}

.contact-item a {
    color: var(--emerald-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--forest-green);
}

.contact-form {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-premium);
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-gold);
    transform: translateY(-3px);
    color: white;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-dark);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

/* Footer */
.footer {
    background: #F3F4F6;
    color: #374151;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.footer-text {
    color: rgba(17, 24, 39, 0.7);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn-luxury,
    .hero-buttons .btn-outline-luxury {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 0 1rem;
    }
    
    .booking-card,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

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

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-gold);
}

/* Luxury Animations */
.luxury-hover {
    transition: all 0.3s ease;
}

.luxury-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Special Effects */
.sparkle::before {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    animation: sparkle 2s infinite;
}

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

/* Premium Gradient Text Effect */
.gradient-text {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: elegant-shift 4s ease-in-out infinite;
}

@keyframes elegant-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating Elements with Color */
.floating {
    animation: floating-elegant 3s ease-in-out infinite;
}

@keyframes floating-elegant {
    0%, 100% { 
        transform: translateY(0px);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    }
    50% { 
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    }
}

/* Enhanced Pulse Effect */
.pulse {
    animation: pulse-elegant 2s infinite;
}

@keyframes pulse-elegant {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    25% { box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0.3); }
    75% { box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.5); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Colorful Border Animation */
.rainbow-border {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, 
                var(--gradient-premium) border-box;
    animation: border-elegant 3s linear infinite;
}

@keyframes border-elegant {
    0% { filter: hue-rotate(0deg) brightness(1); }
    50% { filter: hue-rotate(45deg) brightness(1.1); }
    100% { filter: hue-rotate(0deg) brightness(1); }
}

/* Premium Card Glow */
.card-glow {
    position: relative;
    overflow: hidden;
}

.card-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        var(--emerald-green),
        var(--gold),
        var(--golden-yellow),
        var(--emerald-green)
    );
    animation: rotate-elegant 4s linear infinite;
    z-index: -2;
}

.card-glow::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--dark-surface);
    border-radius: inherit;
    z-index: -1;
}

@keyframes rotate-elegant {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,10,26,0.98), rgba(31,27,71,0.96));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: opacity 0.4s ease;
}

.loading-screen .loader {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 12px;
}

.loading-screen .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-premium);
    animation: pulseDot 1.2s infinite ease-in-out;
}

.loading-screen .dot:nth-child(2) { animation-delay: 0.15s; }
.loading-screen .dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes pulseDot {
    0%, 100% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.loader-text {
    color: var(--dark-text);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ===========================
   Footer Section
   =========================== */
.footer-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
    padding: 60px 0 20px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--yellow), var(--rose));
}

.footer-heading {
    color: var(--yellow);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--green);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

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

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--yellow);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social-link:hover {
    background: var(--green);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact i {
    color: var(--green);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1rem;
    min-width: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--yellow);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-copyright,
.footer-credits {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    padding: 10px 0;
}

.footer-credits i {
    color: #EF4444;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* Footer Responsive */
@media (max-width: 767px) {
    .footer-section {
        padding: 40px 0 15px;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-text,
    .footer-links a,
    .footer-contact li {
        font-size: 0.9rem;
    }
    
    .footer-copyright,
    .footer-credits {
        text-align: center !important;
        font-size: 0.85rem;
    }
}

/* Additional responsive tweaks */
@media (max-width: 991px) {
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 2rem; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 2rem; }
}
