/**
 * AromeDi Spa - Custom Stylesheet
 * Natural Luxury Design
 * Colors: Green, White, Brown, Gold
 */

/* ========================================
   CSS Variables - Reschio + Natural Green
   Earthy • Green • Warm • Sophisticated
======================================== */
:root {
    
    /* Natural Greens - Added */
    --color-forest-dark: #003300;      /* Dark Forest Green */
    --color-forest: #006400;           /* Dark Green */
    --color-nature: #009900;           /* Bright Nature Green */
    --color-spring: #228B22;           /* Forest Green Spring */
    
    /* Earthy Browns - Primary */
    --color-saddle: #8B4513;           /* Saddle Brown */
    --color-gold: #B8860B;             /* Dark Goldenrod */
    --color-stone: #d4cfc0;            /* Warm Stone */
    --color-sand: #c9b896;             /* Desert Sand */
    --color-terracotta: #b8956a;       /* Terracotta */
    --color-clay: #9b8961;             /* Clay */
    --color-bark: #8b7355;             /* Tree Bark */
    --color-wood: #6b5d4f;             /* Warm Wood */
    --color-earth: #5a4d3f;            /* Deep Earth */
    --color-espresso: #3d3530;         /* Espresso */
    
    /* Warm Whites & Creams */
    --color-linen: #faf8f4;            /* Natural Linen */
    --color-cream: #f5f2ea;            /* Warm Cream */
    --color-ivory: #f0ebe0;            /* Soft Ivory */
    --color-parchment: #ede8dc;        /* Parchment */
    --color-white: #ffffff;            /* Pure White */
    
    /* Soft Greens - Accent */
    --color-sage: #9ca68f;             /* Sage Green */
    --color-olive: #7a8070;            /* Soft Olive */
    --color-moss: #6b7461;             /* Moss */
    
    /* Muted Blues - Subtle */
    --color-sky: #b8c5d4;              /* Soft Sky */
    --color-slate: #8b9aaa;            /* Slate Blue */
    
    /* Warm Grays */
    --color-greige: #c4bfb6;           /* Greige */
    --color-taupe: #a39f92;            /* Taupe */
    --color-charcoal: #6b6860;         /* Charcoal */
    
    /* Backgrounds - Natural Style */
    --bg-primary: #faf8f4;             /* Linen background */
    --bg-secondary: #f5f2ea;           /* Cream background */
    --bg-tertiary: #ede8dc;            /* Parchment background */
    --bg-forest: #003300;              /* Dark Forest background */
    
    /* Gradients - Natural & Green */
    --gradient-warm: linear-gradient(180deg, #faf8f4 0%, #f0ebe0 100%);
    --gradient-earth: linear-gradient(135deg, #c9b896 0%, #9b8961 100%);
    --gradient-stone: linear-gradient(135deg, #d4cfc0 0%, #b8956a 100%);
    --gradient-forest: linear-gradient(135deg, #003300 0%, #006400 50%, #228B22 100%);
    --gradient-nature: linear-gradient(135deg, #006400 0%, #009900 50%, #228B22 100%);
    --gradient-gold: linear-gradient(135deg, #8B4513 0%, #B8860B 100%);
    
    /* Shadows - Soft & Natural */
    --shadow-soft: 0 2px 12px rgba(59, 53, 48, 0.06);
    --shadow-medium: 0 4px 20px rgba(59, 53, 48, 0.08);
    --shadow-large: 0 8px 30px rgba(59, 53, 48, 0.10);
    
    /* Transitions - Smooth & Elegant */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Fonts - Ultra Luxury */
    --font-display: 'Playfair Display', serif;
    --font-heading: 'Crimson Text', serif;
    --font-body: 'Libre Baskerville', serif;
    --font-accent: 'Cormorant Garamond', serif;
}

/* ========================================
   Global Styles - Reschio Minimal
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #2d2520;
    background: #d1efbf
    ;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: #228B22;
    letter-spacing: 1px;
}

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

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

/* ========================================
   Decorative Elements
======================================== */
.decorative-border {
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-primary) 0%, 
        var(--color-gold) 50%, 
        var(--color-primary) 100%);
    position: relative;
    overflow: hidden;
}

.decorative-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

/* ========================================
   Navigation Bar
======================================== */
.navbar {
    position: relative;
    padding: 1rem 0;
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.6)
      ),
      url("../images/navbar-bg.jpg") center / cover no-repeat;
    z-index: -1;
}



.navbar.scrolled {
    background-color: #c9b896 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #f0d98d;
    letter-spacing: 2px;
    margin: 0;
}

.logo-text .spa-text {
    color: #228B22;
    font-weight: 400;
    font-style: italic;
}

.logo-img {
    height: 280px;
    width: auto;
    filter: brightness(1.2);
    color: #ffffff ;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff !important;
    padding: 0.5rem 1.2rem !important;
    margin: 0 0.2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #228B22;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f0d98d !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
    background: #f0d98d;
}

.btn-reservation {
    background: linear-gradient(135deg, #6B8E23 0%, #6B8E23 50%, #6B8E23 100%);
    color: #ffffff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #6B8E23;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px #6B8E23;
}

.btn-reservation:hover {
    background: #6B8E23;
    color: #ffffff !important;
    border-color: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Background Image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    /* Fallback gradient if no image */
    background-color: var(--color-primary);
    overflow: hidden;
}

/* Animated organic shapes in background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(125, 158, 109, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

/* Decorative corner accent - Top Left */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 0 0 100% 0;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Decorative floating leaves/particles */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.leaf-particle {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, rgba(125, 158, 109, 0.4) 100%);
    border-radius: 50% 0 50% 0;
    opacity: 0.5;
    filter: blur(1px);
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation: leafFloat1 15s ease-in-out infinite;
}

.leaf-2 {
    top: 40%;
    right: 15%;
    width: 25px;
    height: 25px;
    animation: leafFloat2 18s ease-in-out infinite 2s;
}

.leaf-3 {
    bottom: 30%;
    left: 20%;
    width: 35px;
    height: 35px;
    animation: leafFloat3 20s ease-in-out infinite 4s;
}

.leaf-4 {
    top: 60%;
    right: 25%;
    width: 28px;
    height: 28px;
    animation: leafFloat4 16s ease-in-out infinite 1s;
}

.leaf-5 {
    bottom: 20%;
    right: 30%;
    width: 32px;
    height: 32px;
    animation: leafFloat5 22s ease-in-out infinite 3s;
}

@keyframes leafFloat1 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translate(30px, -40px) rotate(90deg);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-20px, 30px) rotate(180deg);
        opacity: 0.4;
    }
    75% { 
        transform: translate(40px, 20px) rotate(270deg);
        opacity: 0.5;
    }
}

@keyframes leafFloat2 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    33% { 
        transform: translate(-40px, 30px) rotate(120deg) scale(1.2);
        opacity: 0.6;
    }
    66% { 
        transform: translate(20px, -25px) rotate(240deg) scale(0.9);
        opacity: 0.5;
    }
}

@keyframes leafFloat3 {
    0%, 100% { 
        transform: translate(0, 0) rotate(45deg);
        opacity: 0.35;
    }
    50% { 
        transform: translate(50px, -60px) rotate(225deg);
        opacity: 0.7;
    }
}

@keyframes leafFloat4 {
    0%, 100% { 
        transform: translate(0, 0) rotate(180deg) scale(1);
        opacity: 0.4;
    }
    40% { 
        transform: translate(-35px, -30px) rotate(280deg) scale(1.1);
        opacity: 0.6;
    }
    80% { 
        transform: translate(25px, 40px) rotate(380deg) scale(0.95);
        opacity: 0.45;
    }
}

@keyframes leafFloat5 {
    0%, 100% { 
        transform: translate(0, 0) rotate(270deg);
        opacity: 0.3;
    }
    25% { 
        transform: translate(45px, 35px) rotate(360deg);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-30px, -40px) rotate(450deg);
        opacity: 0.5;
    }
    75% { 
        transform: translate(20px, 20px) rotate(540deg);
        opacity: 0.55;
    }
}

/* Corner decorations */
.corner-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.corner-decoration.top-right {
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: 
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12) 0%, transparent 70%),
        linear-gradient(135deg, rgba(125, 158, 109, 0.08) 0%, transparent 60%);
    border-radius: 0 0 0 100%;
    animation: cornerPulse 8s ease-in-out infinite;
}

.corner-decoration.bottom-left {
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(circle at bottom left, rgba(201, 169, 97, 0.1) 0%, transparent 70%),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    border-radius: 0 100% 0 0;
    animation: cornerPulse 8s ease-in-out infinite 1s;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Stronger overlay for image readability */
    
    z-index: 1;
}

/* Animated overlay pulse */
@keyframes overlayPulse {
    0%, 100% { 
        opacity: 1;
    }
    50% { 
        opacity: 0.95;
    }
}

/* Add floating particles effect */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(212, 175, 55, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: particlesFloat 60s linear infinite;
    opacity: 0.2;
}

@keyframes particlesFloat {
    0% { background-position: 0 0, 40px 40px; }
    100% { background-position: 50px 50px, 90px 90px; }
}

/* Add bokeh effect */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 3%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.1) 0%, transparent 4%),
        radial-gradient(circle at 40% 70%, rgba(125, 158, 109, 0.08) 0%, transparent 3%),
        radial-gradient(circle at 70% 60%, rgba(232, 215, 168, 0.06) 0%, transparent 5%),
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 4%),
        radial-gradient(circle at 60% 80%, rgba(125, 158, 109, 0.1) 0%, transparent 3%),
        radial-gradient(circle at 85% 70%, rgba(201, 169, 97, 0.07) 0%, transparent 4%),
        radial-gradient(circle at 15% 80%, rgba(232, 215, 168, 0.09) 0%, transparent 3%);
    animation: bokehFloat 30s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bokehFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% { 
        transform: translate(20px, -30px) scale(1.1);
        opacity: 0.7;
    }
    50% { 
        transform: translate(-15px, 20px) scale(0.95);
        opacity: 0.6;
    }
    75% { 
        transform: translate(30px, 15px) scale(1.05);
        opacity: 0.65;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: #ede8dc;
}

.hero-title .highlight {
    color: var(--color-accent);
    display: block;
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-style: italic;
}

.btn-hero {
    margin-bottom: 10px;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 0;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-hero.btn-primary {
    background: var(--gradient-forest);
    border-color: var(--color-forest);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.3);
}

.btn-hero.btn-primary:hover {
    background: var(--gradient-nature);
    border-color: var(--color-spring);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(34, 139, 34, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-hero.btn-outline-light {
    background: transparent;
    backdrop-filter: blur(10px);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-hero.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-forest-dark);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
}

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

/* ========================================
   Introduction Section
======================================== */
.introduction-section {
    background: linear-gradient(135deg, #1a1815 0%, #2d2520 100%);
    padding: 5rem 0;
    position: relative;
    border-top: 3px solid var(--color-spring);
    border-bottom: 1px solid var(--color-gold);
}

.introduction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-forest);
}

.introduction-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #f5f2ea;
    font-weight: 400;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Intro subtitle */
.intro-subtitle {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: #d4cfc0;
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

/* Intro content */
.intro-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #e8e3d5;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.intro-content p {
    color: #e8e3d5;
    margin-bottom: 1.5rem;
}

/* ========================================
   Section Headers - Dark & Light Versions
======================================== */
.section-header {
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: #228B22;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Dark section headings */
.introduction-section .section-title,
.dark-section .section-title {
    color: #f0d98d;
    text-shadow: 0 2px 8px rgba(240, 217, 141, 0.3);
}

/* Light section headings */
.five-senses-section .section-title,
.light-section .section-title {
    color: #003300;
    text-shadow: 0 2px 4px rgba(0, 51, 0, 0.1);
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-spring) 0%, 
        var(--color-gold) 50%, 
        var(--color-spring) 100%
    );
    margin: 1.5rem auto;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: #c9b896;
    font-style: italic;
    font-weight: 400;
}

/* Dark section subtitle */
.introduction-section .section-subtitle,
.dark-section .section-subtitle {
    color: #d4cfc0;
}

/* Light section subtitle */
.five-senses-section .section-subtitle,
.light-section .section-subtitle {
    color: #6b5d4f;
}

/* ========================================
   Five Senses Section - Light Background
======================================== */
.five-senses-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        #f5f2ea 0%, 
        #ede8dc 50%, 
        #f0ebe0 100%
    );
    position: relative;
}

.five-senses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-nature);
}

.five-senses-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.sense-card {
    background: var(--color-white);
    border: 1px solid var(--color-stone);
    border-left: 4px solid var(--color-forest);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 51, 0, 0.1),
        0 2px 10px rgba(139, 69, 19, 0.05);
    transition: all 0.5s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sense-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-forest) 0%, 
        var(--color-spring) 50%, 
        var(--color-gold) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sense-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 
        0 12px 40px rgba(0, 51, 0, 0.15),
        0 6px 20px rgba(184, 134, 11, 0.1),
        -4px 0 0 0 var(--color-spring);
    border-left-color: var(--color-spring);
}

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

.sense-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    background: var(--gradient-nature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    z-index: 1;
}

.sense-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(250, 248, 244, 0.9) 100%
    );
}

.sense-title {
    font-size: 1.5rem;
    color: #003300;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: var(--font-display);
}

.sense-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #2d2520;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.sense-image {
    position: relative;
    overflow: hidden;
    height: 260px;
    margin-top: auto;
}

.sense-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 51, 0, 0.2) 100%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sense-card:hover .sense-image::before {
    opacity: 1;
}

.sense-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(0%) contrast(1.05) brightness(1);
}

.sense-card:hover .sense-image img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1.1) brightness(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, var(--bg-overlay), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.sense-card:hover .image-overlay {
    opacity: 0.4;
}

.sense-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.sense-card-large .sense-content {
    padding: 2rem;
}

.sense-card-large .sense-image {
    height: 100%;
    min-height: 350px;
}

/* ========================================
   Cards Section
======================================== */



.card-item {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.card-featured {
    border: 2px solid var(--color-accent);
}

.featured-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--bg-gradient-gold);
    color: var(--color-white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: var(--shadow-gold);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.card-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--color-white);
    z-index: 5;
}

.card-body-custom {
    padding: 2.5rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title-custom {
    font-size: 1.5rem;
    color: #003300;
    margin-bottom: 0.75rem;
    text-align: center;
}

/* For dark backgrounds */
.dark-section .card-title-custom {
    color: #f0d98d;
}

.card-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #2d2520;
    margin-bottom: 1.25rem;
    flex: 1;
}

.card-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
}

.card-benefits li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    color: var(--color-gray-dark);
}

.card-benefits li:last-child {
    border-bottom: none;
}

.card-benefits li i {
    color: var(--color-gold);
    margin-right: 0.7rem;
    font-size: 1rem;
}

.loyalty-highlight {
    background: linear-gradient(135deg, #1a1815, #2d2520);
    padding: 0.85rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.25rem;
    border: 2px solid #B8860B;
    color: #f0d98d;
}

.loyalty-highlight strong {
    color: #f0d98d;
    font-size: 1rem;
}

.btn-card {
    background: var(--bg-gradient-gold);
    color: var(--color-white);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
}

.btn-card:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    padding: 4rem 0;
    background: var(--color-stone);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-cta {
    padding: 0.9rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    background: var(--bg-gradient-gold);
    color: var(--color-white);
    border: 3px solid transparent;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.btn-cta:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.4);
}

/* ========================================
   Footer
======================================== */
.footer {
    position: relative;
    color: var(--color-white);

    background:
      
      url("../images/footer-bg.jpg") center / cover no-repeat;

    padding: 4rem 0;
}



.footer-quotes {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
    opacity: 0.9;
}

.quote-icon {
    color: var(--color-white);
    margin-right: 0.5rem;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px) rotate(5deg);
    color: var(--color-primary);
}

.opening-hours-list {
    list-style: none;
    padding: 0;
}

.opening-hours-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.opening-hours-item:last-child {
    border-bottom: none;
}

.opening-hours-item .day {
    font-weight: 600;
}

.opening-hours-item .hours {
    color: var(--color-light-gold);
}

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

.contact-info-item {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
}

.contact-info-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-info-item a {
    color: var(--color-white);
    opacity: 0.85;
    transition: var(--transition-fast);
}

.contact-info-item a:hover {
    opacity: 1;
    color: var(--color-light-gold);
}

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

.quick-link {
    color: var(--color-white);
    opacity: 0.8;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

.quick-link:hover {
    opacity: 1;
    border-bottom-color: var(--color-gold);
    color: var(--color-light-gold);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

/* ========================================
   Back to Top Button
======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--bg-gradient-gold);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-gold);
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Responsive Design
======================================== */

/* Video Section */
/* ======================================== */

.video-section {
    position: relative;
    overflow: hidden;
}

.video-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

/* Native Video Wrapper - ไม่บังคับ aspect ratio */
.video-wrapper-native {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--color-charcoal);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Video Element - ใช้ขนาดต้นฉบับ */
.spa-video {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 20px;
    background: var(--color-charcoal);
}

/* สำหรับ YouTube หรือ 16:9 (backup) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    background: var(--color-charcoal);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-wrapper video {
    object-fit: cover;
}

/* Play Button Overlay */
.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 80, 22, 0.3);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    pointer-events: none;
}

.play-button-overlay.active {
    pointer-events: auto;
}

.play-button-overlay:hover {
    background: rgba(45, 80, 22, 0.5);
}

.play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-gradient-gold);
    border: 5px solid var(--color-white);
    color: var(--color-white);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-gold);
    padding-left: 0.5rem; /* Adjust play icon position */
    pointer-events: auto;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.4);
}

.play-button i {
    transition: var(--transition-fast);
}

.play-button:hover i {
    transform: scale(1.2);
}

/* Video Description */
.video-description {
    margin-top: 2rem;
}

.video-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
}

/* Video Features */
.video-feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    height: 100%;
}

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

.feature-icon-small {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--bg-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
}

.video-feature h5 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.video-feature p {
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Styles */
/* ======================================== */

/* Contact Info Cards */
.contact-info-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    height: 100%;
    text-align: center;
}

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

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
}

.info-title {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-text {
    color: var(--color-gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-text strong {
    color: var(--color-primary);
    font-weight: 600;
}

.info-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.info-link:hover {
    color: var(--color-primary);
    gap: 0.5rem;
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: var(--color-cream);
    border-radius: 8px;
}

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

.hours-item.highlight .day,
.hours-item.highlight .time {
    color: var(--color-white);
}

.hours-item .day {
    font-weight: 600;
    color: var(--color-primary);
}

.hours-item .time {
    color: var(--color-gold);
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-fast);
    font-size: 1.2rem;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.line {
    background: #00b900;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Payment Icons */
.payment-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 2rem;
    color: var(--color-gray-dark);
}

.payment-icons i {
    transition: var(--transition-fast);
}

.payment-icons i:hover {
    color: var(--color-gold);
    transform: scale(1.2);
}

/* Booking & Contact Forms */
.booking-form-wrapper,
.contact-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-section-title {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-beige);
    font-weight: 600;
}

.form-section-title i {
    color: var(--color-gold);
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-beige);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.2);
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c9a961' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.btn-submit {
    background: var(--bg-gradient-gold);
    color: var(--color-white);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid transparent;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.form-note {
    color: var(--color-gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* Map Section */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 2rem;
}

.map-wrapper iframe {
    display: block;
}

/* FAQ Accordion */
.accordion-item {
    background: var(--color-white);
    border: none;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-button {
    background: var(--color-white);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-gradient-gold);
    color: var(--color-white);
}

.accordion-button:not(.collapsed) i {
    color: var(--color-white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a961'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button i {
    color: var(--color-gold);
}

.accordion-body {
    padding: 1.5rem 2rem;
    color: var(--color-gray-dark);
    line-height: 1.8;
    background: var(--color-cream);
}

.contact-form-section {
    background-color: #f6f3e8 !important;
}

/* Services Page Styles */
/* ======================================== */

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    /* รองรับรูปพื้นหลัง */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    /* Fallback gradient ถ้าไม่มีรูป */
    background-color: var(--color-primary);
    background-image: var(--bg-gradient-primary);
    position: relative;
    overflow: hidden;
}

/* Overlay สำหรับรูปพื้นหลัง */
.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    z-index: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(125, 158, 109, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.page-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-ivory);
    opacity: 0.95;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.breadcrumb-item {
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: var(--color-light-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--color-white);
}

.breadcrumb-item.active {
    color: var(--color-white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-light-gold);
}

/* Services Categories */
.services-categories {
    background-color: #ffffff; /* เปลี่ยนเป็นสีขาว */
    padding: 3rem 0;
}

.category-card {
    display: block;
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    height: 100%;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
    transition: var(--transition-fast);
}

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

.category-title {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-desc {
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    margin: 0;
}

/* Service Card */
.service-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    background: var(--bg-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.service-badge.popular,
.service-badge.premium {
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

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

.service-badge.premium {
    background: var(--bg-gradient-primary);
}

.service-badge span {
    margin-left: 0.3rem;
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-benefits li {
    padding: 0.6rem 0;
    color: var(--color-gray-dark);
    font-size: 0.95rem;
}

.service-benefits li i {
    color: var(--color-gold);
    margin-right: 0.7rem;
}

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

.service-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-dark);
    font-size: 0.9rem;
}

.service-duration i {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.service-price {
    text-align: right;
}

.price-from {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: uppercase;
}

.price-amount {
    display: block;
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 700;
}

.btn-service {
    background: var(--bg-gradient-gold);
    color: var(--color-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-service:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Package Cards */
.package-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.package-card.featured {
    border: 3px solid var(--color-gold);
    transform: scale(1.05);
}

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

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-gradient-gold);
    color: var(--color-white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-gold);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.package-badge.premium {
    background: var(--bg-gradient-primary);
}

.package-header {
    background: var(--bg-gradient-primary);
    padding: 2.5rem 2rem;
    text-align: center;
    color: var(--color-white);
}

.package-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.package-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
    margin: 0;
}

.package-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex: 1;
}

.package-includes li {
    padding: 0.8rem 0;
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-includes li:last-child {
    border-bottom: none;
}

.package-includes li i {
    color: var(--color-gold);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.package-price {
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    border-top: 2px solid var(--color-beige);
}

.price-original {
    display: block;
    font-size: 1rem;
    color: var(--color-gray);
    text-decoration: line-through;
    margin-bottom: 0.3rem;
}

.price-special {
    display: block;
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.price-save {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-package {
    background: var(--bg-gradient-gold);
    color: var(--color-white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-package:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   Responsive Design
======================================== */

/* Tablets */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sense-card-large {
        grid-template-columns: 1fr;
    }
    
    .sense-card-large .sense-image {
        order: -1;
        min-height: 280px;
    }
    
    .card-image-wrapper {
        height: 180px;
    }
    
    /* Services Page */
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .service-image {
        height: 240px;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: scale(1.02) translateY(-5px);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-hero {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    .sense-content {
        padding: 1.25rem;
    }
    
    .sense-title {
        font-size: 1.1rem;
    }
    
    .sense-description {
        font-size: 0.85rem;
    }
    
    .sense-image {
        height: 200px;
    }
    
    .card-image-wrapper {
        height: 180px;
    }
    
    .card-body-custom {
        padding: 2rem 1.25rem 1.25rem;
    }
    
    .card-title-custom {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Services Page */
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .service-price {
        text-align: left;
    }
    
    .package-header {
        padding: 2rem 1.5rem;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
    
    .package-content {
        padding: 1.5rem;
    }
    
    .price-special {
        font-size: 2rem;
    }
    
    /* Contact Page */
    .booking-form-wrapper,
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-section-title {
        font-size: 1.1rem;
    }
    
    .info-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .info-title {
        font-size: 1.2rem;
    }
    
    .map-wrapper {
        margin: 1rem;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }
    
    .accordion-body {
        padding: 1.2rem 1.5rem;
    }
    
    /* Video Section */
    .video-wrapper,
    .video-wrapper-native {
        border-radius: 15px;
    }
    
    .spa-video {
        border-radius: 15px;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .video-feature {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon-small {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .video-feature h5 {
        font-size: 1.1rem;
    }
    
    .video-feature p {
        font-size: 0.9rem;
    }
}

/* ========================================
   Luxury JavaScript Effects Styles
======================================== */

/* Luxury Cursor */
.luxury-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(184, 134, 11, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-trail {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.6), transparent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
}

/* Gold Particles */
.gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.gold-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #B8860B, transparent);
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0.6;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Text Reveal Animation */
.text-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #B8860B, #DAA520);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

/* Navbar Scrolled *//* Navbar Scrolled *//* Navbar Scrolled *//* Navbar Scrolled *//* Navbar Scrolled *//* Navbar Scrolled *//* Navbar Scrolled *//* Navbar Scrolled */



/* Glow Effect */
.glow-active {
    animation: glowPulse 2s ease-in-out;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(184, 134, 11, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(184, 134, 11, 0.4), 0 0 30px rgba(184, 134, 11, 0.2);
    }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.5);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhance Cards with Luxury Effects */
.service-card,
.package-card,
.sense-card {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

/* Gold Shimmer Effect */
@keyframes goldShimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.gold-shimmer {
    position: relative;
    overflow: hidden;
}

.gold-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.3), transparent);
    animation: goldShimmer 3s infinite;
}

/* Luxury Hover Glow */
.btn:hover,
.service-card:hover,
.package-card:hover {
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.3), 0 0 40px rgba(184, 134, 11, 0.1);
}

/* Music Control Button */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--bg-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
    transition: all 0.3s ease;
    z-index: 9000;
}

.music-control:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(184, 134, 11, 0.6);
}

/* ========================================
   Advanced Animations & Effects
======================================== */

/* Letter Reveal Animation */
@keyframes letterReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Pulse Animation */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 10px rgba(184, 134, 11, 0.6));
    }
}

/* Cursor Glow */
.cursor-glow {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.4), transparent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transition: opacity 0.3s ease;
    opacity: 0.5;
}

/* Enhanced Scroll Progress */
.scroll-progress-text {
    position: absolute;
    right: 10px;
    top: -20px;
    font-size: 10px;
    color: #B8860B;
    font-weight: bold;
    font-family: var(--font-display);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Fade In Scale Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Slide In from Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In from Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Bounce In */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Rotate In */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-200deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Flip In */
@keyframes flipIn {
    from {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    to {
        transform: perspective(400px) rotateY(0);
        opacity: 1;
    }
}

/* Enhanced Card Hover */
.service-card:hover,
.package-card:hover,
.sense-card:hover {
    animation: cardFloat 0.6s ease-in-out;
}

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

/* Pulse Glow */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(184, 134, 11, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(184, 134, 11, 0.6), 0 0 50px rgba(184, 134, 11, 0.3);
    }
}

.btn:hover {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Text Glow Effect */
@keyframes textGlowPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(184, 134, 11, 0.6), 0 0 30px rgba(184, 134, 11, 0.4);
    }
}

h1:hover, h2:hover {
    animation: textGlowPulse 2s ease-in-out;
}

/* Image Reveal Animation */
@keyframes imageReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

.service-image img,
.sense-image img {
    animation: imageReveal 1s ease-out;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.2), transparent);
    animation: shimmer 2s infinite;
}

/* Wave Animation */
@keyframes wave {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.wave-animation {
    animation: wave 3s ease-in-out infinite;
}

/* Particle Rise */
@keyframes particleRise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* Music Control Playing Animation */
.music-control.playing {
    animation: musicPulse 1s ease-in-out infinite;
}

@keyframes musicPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(184, 134, 11, 0.8);
    }
}

/* Loading Bar Animation */
@keyframes loadingBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Down */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Zoom In */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Swing Animation */
@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Tada Animation */
@keyframes tada {
    0% {
        transform: scale(1) rotate(0);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

/* Wobble Animation */
@keyframes wobble {
    0% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-25px) rotate(-5deg);
    }
    30% {
        transform: translateX(20px) rotate(3deg);
    }
    45% {
        transform: translateX(-15px) rotate(-3deg);
    }
    60% {
        transform: translateX(10px) rotate(2deg);
    }
    75% {
        transform: translateX(-5px) rotate(-1deg);
    }
    100% {
        transform: translateX(0);
    }
}

/* Jello Animation */
@keyframes jello {
    0%, 100% {
        transform: skewX(0deg) skewY(0deg);
    }
    30% {
        transform: skewX(25deg) skewY(25deg);
    }
    40% {
        transform: skewX(-15deg) skewY(-15deg);
    }
    50% {
        transform: skewX(15deg) skewY(15deg);
    }
    65% {
        transform: skewX(-5deg) skewY(-5deg);
    }
    75% {
        transform: skewX(5deg) skewY(5deg);
    }
}

/* Heart Beat */
@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

/* Apply animations to specific elements */
.btn-primary:hover {
    animation: tada 1s;
}

.card-item:hover {
    animation: swing 0.8s;
}

.fa-heart {
    animation: heartBeat 1.5s ease-in-out infinite;
    color: var(--color-accent);
}

/* Enhance existing animations */
.service-card,
.package-card,
.sense-card {
    animation: fadeInUp 0.8s ease-out both;
}

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

/* ========================================
   Carte Cadeau Page Styles
======================================== */

/* Card Type Items */
.card-type-item {
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(184, 134, 11, 0.2);
}

.card-type-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.3);
    border-color: rgba(184, 134, 11, 0.6);
}

.card-type-item.featured {
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(184, 134, 11, 0.1) 100%);
    border: 2px solid var(--color-gold);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-gradient-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.card-image-placeholder {
    position: relative;
    width: 100%;
    height: 200px;
    background: var(--color-gray-dark);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.card-type-item:hover .card-image-placeholder img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.card-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}

.card-badge.gold {
    background: var(--bg-gradient-gold);
    color: white;
}

.card-type-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.card-type-description {
    color: var(--color-off-white);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.card-benefits li {
    color: var(--color-off-white);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.card-benefits li i {
    color: var(--color-gold);
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-info {
    background: rgba(184, 134, 11, 0.1);
    border-radius: 10px;
    padding: 1rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price-option .price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: bold;
}

.price-option .details {
    color: var(--color-off-white);
    font-size: 0.9rem;
}

.btn-gold {
    background: var(--bg-gradient-gold);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.5);
    color: white;
}

/* How It Works */
.how-it-works-section {
    background: rgba(51, 102, 0, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    transition: all 0.5s ease;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-gradient-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem auto 1.5rem;
    font-size: 2rem;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background: var(--bg-gradient-gold);
    color: white;
    transform: rotate(360deg);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--color-off-white);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section .accordion-item {
    background: var(--bg-dark);
    border: 1px solid rgba(184, 134, 11, 0.2);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: var(--bg-dark);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(184, 134, 11, 0.1);
    color: var(--color-gold);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(184, 134, 11, 0.3);
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B8860B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    background: var(--bg-dark);
    color: var(--color-off-white);
    padding: 1.5rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(51, 102, 0, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--color-off-white);
    margin-bottom: 2rem;
}

/* Quotes Bottom Section */
.quotes-section-bottom {
    background: rgba(51, 102, 0, 0.05);
    border-top: 2px solid rgba(184, 134, 11, 0.2);
}

.quote-bottom {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-gold);
    margin: 0;
    padding: 1rem;
}

.quote-bottom i {
    color: var(--color-gold);
    opacity: 0.8;
}

.quote-bottom em {
    color: var(--color-off-white);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .card-type-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0 !important;
    }
    
    .step-item {
        margin-bottom: 2rem;
    }
}

/* ========================================
   Five Senses Intro & Closing Sections
======================================== */



.intro-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.intro-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--color-off-white);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-divider {
    width: 100px;
    height: 3px;
    background: var(--bg-gradient-gold);
    margin: 2rem auto;
    border-radius: 50px;
}

/* Closing Section */
.senses-closing-section {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(51, 102, 0, 0.05) 100%);
    border-top: 2px solid rgba(184, 134, 11, 0.2);
    border-bottom: 2px solid rgba(184, 134, 11, 0.2);
}

.closing-content {
    padding: 2rem;
}

.closing-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.closing-description {
    font-size: 1.1rem;
    color: #f5f2ea;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.closing-tagline {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #f0d98d;
    font-style: italic;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-title {
        font-size: 1.8rem;
    }
    
    .intro-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-content p {
        font-size: 1rem;
    }
    
    .closing-title {
        font-size: 1.5rem;
    }
    
    .closing-tagline {
        font-size: 1.1rem;
    }
}

/* ========================================
   About Page - AROMEDI Meaning Styles
======================================== */

/* Main Title */
.aromedi-main-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-gold);
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.aromedi-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-off-white);
    font-style: italic;
}

.heart-icon, .green-icon {
    font-size: 1.5rem;
    display: inline-block;
    animation: heartbeat 2s ease-in-out infinite;
}

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

/* Meaning Cards */
.meaning-card {
    background: var(--bg-dark);
    border: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.meaning-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.3);
}

.meaning-letter {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--bg-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.meaning-content {
    flex: 1;
}

.meaning-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.meaning-description {
    color: var(--color-off-white);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Hearts Divider */
.hearts-divider {
    font-size: 2rem;
    padding: 2rem 0;
}

.hearts-divider span {
    margin: 0 0.5rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.hearts-divider span:nth-child(odd) {
    animation-delay: 0.2s;
}

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

/* SPA Section */
.spa-meaning-section {
    background: rgba(51, 102, 0, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
}

.spa-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-gold);
    font-weight: bold;
    letter-spacing: 4px;
}

.spa-card {
    background: var(--bg-dark);
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.spa-card:hover {
    transform: scale(1.05);
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.4);
}

.spa-letter {
    width: 100px;
    height: 100px;
    background: var(--bg-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.5);
}

.spa-word-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.spa-description {
    color: var(--color-off-white);
    line-height: 1.8;
    font-size: 1rem;
}

/* Final Message */
.final-message {
    background: linear-gradient(135deg, rgba(51, 102, 0, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(184, 134, 11, 0.2);
}

.clover-icon {
    font-size: 3rem;
    margin: 1rem 0;
    display: inline-block;
    animation: rotate 3s ease-in-out infinite;
}

@keyframes rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

.final-quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    font-weight: 600;
    font-style: italic;
    margin: 1rem 0;
}

/* Value Cards */
.value-card {
    background: var(--bg-dark);
    border: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.5s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--color-off-white);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .aromedi-main-title {
        font-size: 2rem;
    }
    
    .spa-title {
        font-size: 2rem;
    }
    
    .meaning-card {
        flex-direction: column;
        text-align: center;
    }
    
    .meaning-letter {
        margin: 0 auto 1rem;
    }
    
    .hearts-divider {
        font-size: 1.5rem;
    }
    
    .final-quote {
        font-size: 1.3rem;
    }
}

/* ========================================
   Smooth Zoom & Scale Animations
======================================== */

/* Ultra smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Smooth transitions */
* {
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Card zoom effects */
.service-card,
.sense-card,
.card-item,
.package-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                background-color 0.3s ease;
    transform-origin: center center;
    will-change: transform;
}

.service-card:hover,
.sense-card:hover,
.card-item:hover,
.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background-color: var(--color-white);
}

/* Image zoom on hover */
.service-image img,
.sense-image img,
.card-image,
img {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                filter 0.3s ease;
    transform-origin: center center;
    will-change: transform;
}

.service-image:hover img,
.sense-image:hover img,
.card-image:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* Button smooth effects */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-origin: center center;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-gold);
}

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

/* Section smooth appearance */
section {
    transition: background-color 0.4s ease,
                transform 0.3s ease;
}

/* Smooth fade effects */
.fade-in {
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Zoom in animation */
.zoom-in {
    animation: zoomIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Icon pulse */
.icon-pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

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

/* Smooth link transitions */
a {
    transition: color 0.3s ease,
                transform 0.2s ease;
}

a:hover {
    transform: translateX(2px);
}

/* Navbar smooth */
.navbar {
    transition: all 0.3s ease,
                box-shadow 0.3s ease;
}

/* Performance optimization */
.hero-section,
.page-header {
    will-change: transform;
    backface-visibility: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    html {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto;
    }
}

/* ========================================
   Cards Section - Home Page
======================================== */

.card-benefits-mini {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.card-benefits-mini li {
    color: var(--color-off-white);
    padding: 0.3rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.card-benefits-mini li i {
    color: var(--color-gold);
    margin-right: 8px;
    font-size: 0.9rem;
}

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

.card-pricing {
    background: rgba(184, 134, 11, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    color: var(--color-off-white);
    font-size: 0.95rem;
}

.card-pricing .price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: bold;
}

.btn-card.btn-gold {
    background: var(--bg-gradient-gold);
    color: white;
    border: none;
}

.btn-card.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.5);
    color: white;
}



/* Very Small Mobile */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .navbar-brand .logo-text {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .footer-main {
        padding: 2.5rem 0 1.5rem;
    }
    
    .sense-image {
        height: 180px;
    }
    
    .card-image-wrapper {
        height: 160px;
    }
    
    /* Services Page */
    .page-title {
        font-size: 1.8rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-badge {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ========================================
   Dark Sections Styling
======================================== */
.dark-section {
    background: linear-gradient(135deg, #1a1815 0%, #2d2520 100%);
    color: #e8e3d5;
    position: relative;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-nature);
}

.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: #f0d98d;
}

.dark-section p,
.dark-section .intro-text {
    color: #d4cfc0;
}

/* ========================================
   Light Sections Styling
======================================== */
.light-section {
    background: linear-gradient(180deg, #f5f2ea 0%, #ede8dc 100%);
    color: #2d2520;
    position: relative;
}

.light-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-forest);
}

.light-section h2,
.light-section h3,
.light-section h4 {
    color: #003300;
}

.light-section p {
    color: #2d2520;
}

/* ========================================
   Alternating Section Colors
======================================== */
section:nth-child(odd) {
    background: linear-gradient(135deg, #1a1815 0%, #2d2520 100%);
}

section:nth-child(even) {
    background: linear-gradient(180deg, #f5f2ea 0%, #ede8dc 100%);
}


/* ========================================
   Dark Section Text Colors Fix
======================================== */

/* Intro sections */
.intro-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #f0d98d !important;
    margin-bottom: 1.5rem;
    text-align: center;
}

.senses-intro-section {
    color: #e8e3d5;
}

.senses-intro-section .intro-title {
    color: #f0d98d !important;
}

.senses-intro-section .intro-subtitle {
    color: #d4cfc0 !important;
}

.senses-intro-section .intro-content,
.senses-intro-section .intro-content p {
    color: #e8e3d5 !important;
}

/* Intro divider */
.intro-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #228B22 0%, #B8860B 50%, #228B22 100%);
    margin: 2rem auto;
}

/* All dark background sections */
.dark-section p,
.dark-section .intro-text,
.dark-section .intro-content,
.dark-section .intro-content p {
    color: #e8e3d5 !important;
}







/* ========================================
   Gallery Section
   For Home Page & Gallery Page
======================================== */


/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    box-shadow: 0 4px 20px rgba(0, 51, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.gallery-item-large {
    height: 100%;
    min-height: 616px;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 51, 0, 0.2);
}

/* Gallery Image */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
    filter: brightness(1.05);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 51, 0, 0.9) 0%,
        rgba(34, 139, 34, 0.6) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* Gallery Content */
.gallery-content {
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #f0d98d;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #e8e3d5;
    margin-bottom: 1rem;
}

/* Gallery Zoom Button */
.gallery-zoom {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.gallery-zoom:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.6);
    background: linear-gradient(135deg, #B8860B 0%, #228B22 100%);
}

/* ========================================
   Lightbox Modal
======================================== */

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Lightbox Content */
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    animation: lightboxZoom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Lightbox Controls */
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: #B8860B;
    border-color: #B8860B;
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    border-color: #B8860B;
    transform: translateY(-50%) scale(1.1);
}

/* ========================================
   Gallery Grid Variations
======================================== */

/* Masonry Layout (Optional) */
.gallery-masonry {
    column-count: 3;
    column-gap: 1rem;
}

.gallery-masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    height: auto;
}

/* Instagram Grid Style */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-grid .gallery-item {
    height: 300px;
}

/* Full Width Gallery */
.gallery-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0 2rem;
}

/* ========================================
   Gallery Filters (Optional)
======================================== */

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

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid #228B22;
    border-radius: 50px;
    color: #003300;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Libre Baskerville', serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

/* ========================================
   Loading Animation
======================================== */

.gallery-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(34, 139, 34, 0.2);
    border-top-color: #228B22;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ========================================
   Responsive Design
======================================== */

@media (max-width: 991px) {
    .gallery-item-large {
        min-height: 400px;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-title {
        font-size: 1.3rem;
    }

    .gallery-description {
        font-size: 0.85rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 4rem 0;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-item-large {
        min-height: 300px;
    }

    .gallery-title {
        font-size: 1.1rem;
    }

    .gallery-description {
        font-size: 0.8rem;
        display: none;
    }

    .gallery-zoom {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-content {
        max-width: 95vw;
    }

    .gallery-masonry {
        column-count: 1;
    }

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

/* Very Small Mobile */
@media (max-width: 575px) {
    .gallery-item {
        height: 200px;
    }

    .gallery-item-large {
        min-height: 250px;
    }

    .gallery-content {
        padding: 0.5rem;
    }

    .gallery-title {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .gallery-zoom {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ========================================
   Gallery Badge/Tag (Optional)
======================================== */

.gallery-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Performance Optimizations
======================================== */

.gallery-item,
.gallery-image {
    will-change: transform;
    backface-visibility: hidden;
}

/* Lazy Loading Placeholder */
.gallery-item.loading {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* ========================================
   Additional Hover Effects
======================================== */

/* Zoom In Effect */
.gallery-item.zoom-in:hover .gallery-image {
    transform: scale(1.2);
}

/* Slide Effect */
.gallery-item.slide:hover .gallery-image {
    transform: translateX(-20px) scale(1.1);
}

/* Rotate Effect */
.gallery-item.rotate:hover .gallery-image {
    transform: rotate(5deg) scale(1.1);
}

/* Blur Effect */
.gallery-item.blur:hover .gallery-image {
    filter: blur(3px) brightness(0.8);
}

/* ========================================
   Print Styles
======================================== */

@media print {
    .gallery-lightbox,
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next,
    .gallery-zoom {
        display: none;
    }

    .gallery-item {
        page-break-inside: avoid;
    }
}

/* ========================================
   Dark Mode Support (Optional)
======================================== */

@media (prefers-color-scheme: dark) {
    .gallery-section {
        background-image: url('../images/gallery-bg.jpg');

    }

    .gallery-item {
        box-shadow: 0 4px 20px rgba(184, 134, 11, 0.2);
    }

    .filter-btn {
        border-color: #B8860B;
        color: #f0d98d;
    }
}

/* ========================================
   Accessibility Improvements
======================================== */

.gallery-zoom:focus,
.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus {
    outline: 3px solid #B8860B;
    outline-offset: 2px;
}

.gallery-item:focus-within {
    outline: 2px solid #228B22;
    outline-offset: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .gallery-image,
    .gallery-overlay,
    .gallery-content,
    .gallery-zoom,
    .lightbox-content {
        animation: none;
        transition: none;
    }
}
/* ========================================
   ENHANCED GALLERY SECTION
   With Advanced Animations & Effects
======================================== */

/* ========================================
   Gallery Section Base
======================================== */

.gallery-section {
    background-image: url('../images/gallery-bg.jpg');
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #003300 0%, #228B22 50%, #B8860B 100%);
}

/* Animated background particles */
.gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
        background-image: url('../images/gallery-bg.jpg');

}

@keyframes particlesFloat {
    0% { background-position: 0 0, 40px 40px; }
    100% { background-position: 50px 50px, 90px 90px; }
}

/* ========================================
   Gallery Filters
======================================== */

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

.filter-btn {
    padding: 0.7rem 1.8rem;
    background: white;
    border: 2px solid #228B22;
    border-radius: 50px;
    color: #003300;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 0;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.filter-btn i,
.filter-btn span {
    position: relative;
    z-index: 1;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

/* ========================================
   Gallery Item Base
======================================== */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
    box-shadow: 
        0 4px 20px rgba(0, 51, 0, 0.1),
        0 2px 10px rgba(139, 69, 19, 0.05);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.gallery-item-large {
    height: 100%;
    min-height: 616px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #228B22, #B8860B, #228B22);
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderGlow 3s ease infinite;
}

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

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

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 51, 0, 0.25),
        0 10px 30px rgba(184, 134, 11, 0.15);
}

/* ========================================
   Gallery Image
======================================== */

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95) contrast(1.05);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.05) contrast(1.1);
}

/* ========================================
   Gallery Badges (Enhanced)
======================================== */

.gallery-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(184, 134, 11, 0.5);
    }
}

.gallery-item:hover .gallery-badge {
    transform: scale(1.2) rotate(360deg);
}

/* Featured Badge */
.featured-badge {
    width: auto;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    gap: 0.5rem;
    animation: featuredShine 3s ease-in-out infinite;
}

.featured-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes featuredShine {
    0%, 100% {
        box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(184, 134, 11, 0.6);
    }
}

/* Premium Badge */
.premium-badge {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
}

/* Gold Badge */
.gold-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

/* Zen Badge */
.zen-badge {
    background: linear-gradient(135deg, #006400 0%, #228B22 100%);
}

/* ========================================
   Gallery Overlay (Enhanced)
======================================== */

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 51, 0, 0.95) 0%,
        rgba(34, 139, 34, 0.8) 40%,
        rgba(0, 0, 0, 0.4) 70%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

/* ========================================
   Gallery Content (Enhanced)
======================================== */

.gallery-content {
    text-align: center;
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

/* Gallery Icon */
.gallery-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f0d98d;
    border: 2px solid rgba(240, 217, 141, 0.5);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1.15) rotate(360deg);
    background: rgba(240, 217, 141, 0.3);
    box-shadow: 0 0 30px rgba(240, 217, 141, 0.5);
}

/* Gallery Title */
.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #f0d98d;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Gallery Description */
.gallery-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #e8e3d5;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Gallery Stats */
.gallery-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #d4cfc0;
}

.gallery-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gallery-stats i {
    color: #f0d98d;
}

/* ========================================
   Gallery Zoom Button (Enhanced)
======================================== */

.gallery-zoom {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
}

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

.gallery-zoom:hover::before {
    width: 300px;
    height: 300px;
}

.gallery-zoom:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 35px rgba(184, 134, 11, 0.6);
    background: linear-gradient(135deg, #B8860B 0%, #228B22 100%);
}

.gallery-zoom span {
    position: relative;
    z-index: 1;
}

/* ========================================
   Gallery Shine Effect
======================================== */

.gallery-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%,
        transparent 100%
    );
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
    pointer-events: none;
}

.gallery-shine.active {
    opacity: 1;
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        left: -200%;
    }
    100% {
        left: 200%;
    }
}

/* ========================================
   Hover Effect Variations
======================================== */

/* Lift Effect */
.gallery-hover-lift:hover {
    transform: translateY(-20px) scale(1.03);
}

/* Zoom Effect */
.gallery-hover-zoom:hover .gallery-image {
    transform: scale(1.25);
}

/* Tilt Effect */
.gallery-hover-tilt:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(-5deg);
}

/* Glow Effect */
.gallery-hover-glow:hover {
    box-shadow: 
        0 0 50px rgba(184, 134, 11, 0.6),
        0 20px 60px rgba(34, 139, 34, 0.3);
}

/* Slide Effect */
.gallery-hover-slide:hover .gallery-image {
    transform: translateX(-10px) scale(1.1);
}

/* Flip Effect */
.gallery-hover-flip:hover {
    transform: perspective(1000px) rotateY(10deg);
}

/* Bounce Effect */
.gallery-hover-bounce:hover {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(-7px);
    }
    75% {
        transform: translateY(-12px);
    }
}

/* ========================================
   Enhanced Lightbox Modal
======================================== */

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Lightbox Header */
.lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    z-index: 10002;
}

.lightbox-info {
    color: white;
}

.lightbox-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #f0d98d;
    margin: 0;
}

.lightbox-counter {
    font-size: 0.9rem;
    color: #d4cfc0;
    margin: 0.3rem 0 0 0;
}

/* Lightbox Content */
.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    position: relative;
    animation: lightboxZoom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

/* Lightbox Loading */
.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.lightbox-loading .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(240, 217, 141, 0.3);
    border-top-color: #f0d98d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Lightbox Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    border-color: #B8860B;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.5);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.15);
}

/* Lightbox Thumbnails */
.lightbox-thumbnails {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    max-width: 90vw;
    overflow-x: auto;
    z-index: 10001;
}

.lightbox-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-thumb:hover,
.lightbox-thumb.active {
    border-color: #f0d98d;
    transform: scale(1.1);
}

/* Lightbox Controls Bar */
.lightbox-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-lightbox:hover .lightbox-controls {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-control {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-control:hover {
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    transform: scale(1.15);
}

/* ========================================
   Animated Button
======================================== */

.btn-animated {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-animated .btn-icon {
    transition: transform 0.4s ease;
}

.btn-animated:hover .btn-icon {
    transform: translateX(5px);
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateY(-50%);
    transition: all 0.6s ease;
}

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

/* ========================================
   Loading Indicator
======================================== */

.gallery-loading {
    text-align: center;
    padding: 4rem 0;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(34, 139, 34, 0.2);
    border-top-color: #228B22;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

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

.loading-text {
    font-family: 'Libre Baskerville', serif;
    color: #003300;
    font-size: 1.1rem;
}

/* ========================================
   Responsive Design
======================================== */

@media (max-width: 991px) {
    .gallery-item-large {
        min-height: 400px;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-title {
        font-size: 1.4rem;
    }

    .gallery-description {
        font-size: 0.9rem;
    }

    .gallery-filters {
        gap: 0.7rem;
    }

    .filter-btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.9rem;
    }

    .lightbox-thumbnails {
        gap: 0.7rem;
    }

    .lightbox-thumb {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 4rem 0;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-item-large {
        min-height: 300px;
    }

    .gallery-title {
        font-size: 1.2rem;
    }

    .gallery-description,
    .gallery-stats {
        display: none;
    }

    .gallery-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .gallery-zoom {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .gallery-badge {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .featured-badge {
        padding: 0.5rem 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-close {
        width: 45px;
        height: 45px;
        top: 1rem;
        right: 1rem;
    }

    .lightbox-title {
        font-size: 1.2rem;
    }

    .lightbox-counter {
        font-size: 0.8rem;
    }

    .lightbox-controls {
        display: none;
    }

    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .gallery-item {
        height: 200px;
        border-radius: 15px;
    }

    .gallery-item-large {
        min-height: 250px;
    }

    .gallery-zoom span {
        display: none;
    }

    .gallery-zoom {
        padding: 0.7rem;
        border-radius: 50%;
    }

    .lightbox-thumbnails {
        padding: 0.7rem;
        gap: 0.5rem;
    }

    .lightbox-thumb {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   Performance Optimizations
======================================== */

.gallery-item,
.gallery-image,
.gallery-overlay {
    will-change: transform;
    backface-visibility: hidden;
}

/* ========================================
   Accessibility
======================================== */

.gallery-zoom:focus,
.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus,
.filter-btn:focus {
    outline: 3px solid #B8860B;
    outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}


/* ========================================
   ENHANCED GALLERY SECTION
   With Background Image Support
======================================== */

/* ========================================
   Gallery Section Base - Background Image
======================================== */

.gallery-section {
    /* Background Image */
    background-image: url('../images/gallery-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
   
}

/* Overlay for better readability */
.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
 
    z-index: 0;
    pointer-events: none;
}

/* Border decoration */
.gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #003300 0%, #228B22 50%, #B8860B 100%);
    z-index: 2;
}

/* Ensure content is above overlay */
.gallery-section > .container {
    position: relative;
    z-index: 1;
}

/* ========================================
   Gallery Filters
======================================== */

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

.filter-btn {
    padding: 0.7rem 1.8rem;
    background: white;
    border: 2px solid #228B22;
    border-radius: 50px;
    color: #003300;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 0;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.filter-btn i,
.filter-btn span {
    position: relative;
    z-index: 1;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

/* ========================================
   Gallery Item Base
======================================== */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
    box-shadow: 
        0 4px 20px rgba(0, 51, 0, 0.1),
        0 2px 10px rgba(139, 69, 19, 0.05);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.gallery-item-large {
    height: 100%;
    min-height: 616px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #228B22, #B8860B, #228B22);
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderGlow 3s ease infinite;
}

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

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

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 51, 0, 0.25),
        0 10px 30px rgba(184, 134, 11, 0.15);
}

/* ========================================
   Gallery Image
======================================== */

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95) contrast(1.05);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.05) contrast(1.1);
}

/* ========================================
   Gallery Badges (Enhanced)
======================================== */

.gallery-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(184, 134, 11, 0.5);
    }
}

.gallery-item:hover .gallery-badge {
    transform: scale(1.2) rotate(360deg);
}

/* Featured Badge */
.featured-badge {
    width: auto;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    gap: 0.5rem;
    animation: featuredShine 3s ease-in-out infinite;
}

.featured-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes featuredShine {
    0%, 100% {
        box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(184, 134, 11, 0.6);
    }
}

/* Premium Badge */
.premium-badge {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
}

/* Gold Badge */
.gold-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

/* Zen Badge */
.zen-badge {
    background: linear-gradient(135deg, #006400 0%, #228B22 100%);
}

/* ========================================
   Gallery Overlay (Enhanced)
======================================== */

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 51, 0, 0.95) 0%,
        rgba(34, 139, 34, 0.8) 40%,
        rgba(0, 0, 0, 0.4) 70%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

/* ========================================
   Gallery Content (Enhanced)
======================================== */

.gallery-content {
    text-align: center;
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

/* Gallery Icon */
.gallery-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f0d98d;
    border: 2px solid rgba(240, 217, 141, 0.5);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1.15) rotate(360deg);
    background: rgba(240, 217, 141, 0.3);
    box-shadow: 0 0 30px rgba(240, 217, 141, 0.5);
}

/* Gallery Title */
.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #f0d98d;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Gallery Description */
.gallery-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #e8e3d5;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Gallery Stats */
.gallery-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #d4cfc0;
}

.gallery-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gallery-stats i {
    color: #f0d98d;
}

/* ========================================
   Gallery Zoom Button (Enhanced)
======================================== */

.gallery-zoom {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
}

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

.gallery-zoom:hover::before {
    width: 300px;
    height: 300px;
}

.gallery-zoom:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 35px rgba(184, 134, 11, 0.6);
    background: linear-gradient(135deg, #B8860B 0%, #228B22 100%);
}

.gallery-zoom span {
    position: relative;
    z-index: 1;
}

/* ========================================
   Gallery Shine Effect
======================================== */

.gallery-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%,
        transparent 100%
    );
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
    pointer-events: none;
}

.gallery-shine.active {
    opacity: 1;
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        left: -200%;
    }
    100% {
        left: 200%;
    }
}

/* ========================================
   Hover Effect Variations
======================================== */

/* Lift Effect */
.gallery-hover-lift:hover {
    transform: translateY(-20px) scale(1.03);
}

/* Zoom Effect */
.gallery-hover-zoom:hover .gallery-image {
    transform: scale(1.25);
}

/* Tilt Effect */
.gallery-hover-tilt:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(-5deg);
}

/* Glow Effect */
.gallery-hover-glow:hover {
    box-shadow: 
        0 0 50px rgba(184, 134, 11, 0.6),
        0 20px 60px rgba(34, 139, 34, 0.3);
}

/* Slide Effect */
.gallery-hover-slide:hover .gallery-image {
    transform: translateX(-10px) scale(1.1);
}

/* Flip Effect */
.gallery-hover-flip:hover {
    transform: perspective(1000px) rotateY(10deg);
}

/* Bounce Effect */
.gallery-hover-bounce:hover {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(-7px);
    }
    75% {
        transform: translateY(-12px);
    }
}

/* ========================================
   Enhanced Lightbox Modal
======================================== */

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Lightbox Header */
.lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    z-index: 10002;
}

.lightbox-info {
    color: white;
}

.lightbox-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #f0d98d;
    margin: 0;
}

.lightbox-counter {
    font-size: 0.9rem;
    color: #d4cfc0;
    margin: 0.3rem 0 0 0;
}

/* Lightbox Content */
.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    position: relative;
    animation: lightboxZoom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

/* Lightbox Loading */
.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.lightbox-loading .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(240, 217, 141, 0.3);
    border-top-color: #f0d98d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Lightbox Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    border-color: #B8860B;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.5);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.15);
}

/* Lightbox Thumbnails */
.lightbox-thumbnails {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    max-width: 90vw;
    overflow-x: auto;
    z-index: 10001;
}

.lightbox-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-thumb:hover,
.lightbox-thumb.active {
    border-color: #f0d98d;
    transform: scale(1.1);
}

/* Lightbox Controls Bar */
.lightbox-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-lightbox:hover .lightbox-controls {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-control {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-control:hover {
    background: linear-gradient(135deg, #228B22 0%, #B8860B 100%);
    transform: scale(1.15);
}

/* ========================================
   Animated Button
======================================== */

.btn-animated {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-animated .btn-icon {
    transition: transform 0.4s ease;
}

.btn-animated:hover .btn-icon {
    transform: translateX(5px);
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateY(-50%);
    transition: all 0.6s ease;
}

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

/* ========================================
   Loading Indicator
======================================== */

.gallery-loading {
    text-align: center;
    padding: 4rem 0;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(34, 139, 34, 0.2);
    border-top-color: #228B22;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

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

.loading-text {
    font-family: 'Libre Baskerville', serif;
    color: #003300;
    font-size: 1.1rem;
}

/* ========================================
   Responsive Design
======================================== */

@media (max-width: 991px) {
    .gallery-item-large {
        min-height: 400px;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-title {
        font-size: 1.4rem;
    }

    .gallery-description {
        font-size: 0.9rem;
    }

    .gallery-filters {
        gap: 0.7rem;
    }

    .filter-btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.9rem;
    }

    .lightbox-thumbnails {
        gap: 0.7rem;
    }

    .lightbox-thumb {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 4rem 0;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-item-large {
        min-height: 300px;
    }

    .gallery-title {
        font-size: 1.2rem;
    }

    .gallery-description,
    .gallery-stats {
        display: none;
    }

    .gallery-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .gallery-zoom {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .gallery-badge {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .featured-badge {
        padding: 0.5rem 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-close {
        width: 45px;
        height: 45px;
        top: 1rem;
        right: 1rem;
    }

    .lightbox-title {
        font-size: 1.2rem;
    }

    .lightbox-counter {
        font-size: 0.8rem;
    }

    .lightbox-controls {
        display: none;
    }

    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .gallery-item {
        height: 200px;
        border-radius: 15px;
    }

    .gallery-item-large {
        min-height: 250px;
    }

    .gallery-zoom span {
        display: none;
    }

    .gallery-zoom {
        padding: 0.7rem;
        border-radius: 50%;
    }

    .lightbox-thumbnails {
        padding: 0.7rem;
        gap: 0.5rem;
    }

    .lightbox-thumb {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   Performance Optimizations
======================================== */

.gallery-item,
.gallery-image,
.gallery-overlay {
    will-change: transform;
    backface-visibility: hidden;
}

/* ========================================
   Accessibility
======================================== */

.gallery-zoom:focus,
.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus,
.filter-btn:focus {
    outline: 3px solid #B8860B;
    outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}


/* AROMEDI Meaning Cards */
.meaning-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.meaning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(107, 142, 35, 0.2);
}

.meaning-letter {
    min-width: 80px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6B8E23 0%, #8FBC3F 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 5px 20px rgba(107, 142, 35, 0.4);
    border: 4px solid #fff;
    position: relative;
    flex-shrink: 0;
}

.meaning-letter::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(107, 142, 35, 0.3);
}

.meaning-content {
    flex: 1;
}

.meaning-title {
    color: #6B8E23;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.meaning-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* SPA Cards */
.spa-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.spa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(107, 142, 35, 0.25);
}

.spa-letter {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8FBC3F 0%, #6B8E23 100%);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.5);
    border: 5px solid #fff;
    position: relative;
}

.spa-letter::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px solid rgba(107, 142, 35, 0.3);
}

.spa-letter::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
}

.spa-word-title {
    color: #6B8E23;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.spa-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Titles */
.aromedi-main-title {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.aromedi-subtitle {
    font-size: 20px;
    color: #777;
    font-style: italic;
}

.spa-title {
    font-size: 52px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 12px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Final Message */
.final-message {
    background: linear-gradient(135deg, #6B8E23 0%, #8FBC3F 100%);
    border-radius: 20px;
    padding: 50px 30px !important;
}

.final-quote {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .meaning-card {
        flex-direction: column;
        text-align: center;
    }
    
    .meaning-letter {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
    
    .spa-letter {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .aromedi-main-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .spa-title {
        font-size: 36px;
        letter-spacing: 6px;
    }
}






.category-card {
    display: block;
    padding: 40px 25px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    transition: all 0.4s ease;
    z-index: -1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 142, 35, 0.25);
}

.category-card:hover::before {
    opacity: 0.95;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6B8E23 0%, #8FBC3F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(107, 142, 35, 0.3);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(107, 142, 35, 0.5);
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #6B8E23;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.category-desc {
    font-size: 15px;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .category-card {
        padding: 35px 20px;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .category-desc {
        font-size: 14px;
    }
}
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}



.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

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

.btn-cta {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta.btn-primary {
    background: #fff;
    color: #6B8E23;
    border: 3px solid #fff;
}

.btn-cta.btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 3px solid #fff;
}

.btn-cta.btn-outline-light:hover {
    background: #fff;
    color: #6B8E23;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
        margin: 0 !important;
    }
    
    .btn-cta.btn-outline-light {
        margin-left: 0 !important;
    }
}




.cta-section {
    position: relative;
}

.btn-cta:hover {
    background: transparent !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

.btn-cta-outline:hover {
    background: #ffffff !important;
    color: #6B8E23 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0 !important;
    }
    
    .cta-title {
        font-size: 32px !important;
    }
    
    .cta-text {
        font-size: 16px !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .btn-cta,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
        margin: 0 !important;
    }
}
.btn-animated {
    background: linear-gradient(135deg, #8FBC3F, #6B8E23) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(143, 188, 63, 0.4);
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.btn-animated:hover {
    background: linear-gradient(135deg, #6B8E23, #8FBC3F) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 142, 35, 0.6);
}

.btn-animated .btn-icon {
    transition: transform 0.3s ease;
}

.btn-animated:hover .btn-icon {
    transform: translateX(5px);
}