/*
Theme Name: Dimpal Home Massage Spa
Theme URI: #
Author: Antigravity Developer
Description: Premium Indian Luxury Home Spa & Massage WordPress Theme. Fully SEO optimized, responsive grid, dynamic admin options panel, floating CTA actions, and Hostinger ready.
Version: 1.0.0
Text Domain: dimpal-home-spa
*/

/* --- Core Tokens (Soft Pink & Soft Lavender Zen Palette) --- */
:root {
    --bg-main: #1A2E25; /* Forest Green background */
    --bg-alt: #13241C; /* Slightly darker forest green background */
    --bg-footer: #0D1A13;
    --card-bg: #322D29; /* Dark card background */
    
    /* New Spa Palette matched to Logo */
    --primary-accent: #2A805D; /* Deep Green from Logo */
    --secondary-accent: #E98472; /* Peach/Coral from Logo */
    --accent-light: #978671; /* Stone */
    --accent-lavender: #EBDFCE; /* Sand */
    
    --text-main: #F4E5D9; /* Pearl for high contrast readable text */
    --text-dark: #FFFFFF; /* Bright white for prominent text */
    --text-muted: #D6CFC8; /* Muted readable text */
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Hardcoded Dark Background Sections Text Fix */
.about-section, .services-section, .gallery-section, .faq-section, .testimonials-section {
    color: #FFFFFF !important;
    --text-main: #FFFFFF !important;
    --text-muted: rgba(255, 255, 255, 0.75) !important;
}
.about-section h1, .about-section h2, .about-section h3, .about-section h4, .about-section h5, .about-section h6,
.services-section h1, .services-section h2, .services-section h3, .services-section h4, .services-section h5, .services-section h6,
.gallery-section h1, .gallery-section h2, .gallery-section h3, .gallery-section h4, .gallery-section h5, .gallery-section h6,
.faq-section h1, .faq-section h2, .faq-section h3, .faq-section h4, .faq-section h5, .faq-section h6,
.testimonials-section h1, .testimonials-section h2, .testimonials-section h3, .testimonials-section h4, .testimonials-section h5, .testimonials-section h6 {
    color: #FFFFFF !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    padding-top: 76px; /* Adjusted for refined header height */
}

a, button, input, textarea {
    touch-action: manipulation;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Fluid Container Utility --- */
.container {
    width: 100%;
    max-width: min(1240px, 92vw);
    margin: 0 auto;
    padding-left: max(15px, env(safe-area-inset-left));
    padding-right: max(15px, env(safe-area-inset-right));
}

/* --- Fluid Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700; /* Bold typography */
    color: var(--text-dark); /* Ensure headings are bright white */
    margin-bottom: 15px;
}

h1 {
    font-size: clamp(1.8rem, 4.5vw + 0.8rem, 3.4rem);
    line-height: 1.25;
}

h2 {
    font-size: clamp(1.5rem, 3vw + 0.6rem, 2.5rem);
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.8rem);
}

h4 {
    font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
}

h1, h2 {
    font-style: italic;
}

p, li, td, th {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.1rem);
    font-weight: 500;
    color: var(--text-main);
}

.text-center {
    text-align: center;
}

.section-title h5 {
    color: var(--secondary-accent);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(0.8rem, 0.3vw + 0.7rem, 0.95rem);
    margin-bottom: 8px;
}

.section-title h2 {
    margin-bottom: 15px;
}

/* --- Header & Sticky Navigation (Edge-to-Edge Solid) --- */
header.header-area {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    background: rgba(28, 25, 23, 0.95); /* Deep dark premium background */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
    border-bottom: 1px solid rgba(233, 132, 114, 0.15);
    border-radius: 0 0 30px 30px; /* Elegant rounded bottom corners */
    transition: all 0.3s ease;
}

header.header-area.scrolled {
    background: rgba(28, 25, 23, 1); /* Fully opaque on scroll */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(233, 132, 114, 0.35);
}

.header-container {
    width: 100%;
    max-width: 1240px; /* Keep logo and menu aligned with main content */
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-girl-icon {
    height: 56px;
    width: 56px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(233, 132, 114, 0.4);
    background: #E98472;
    border: 2px solid var(--secondary-accent);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.brand-logo-link:hover .brand-girl-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(233, 132, 114, 0.65);
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-accent, #E98472);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-accent, #2A805D);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.logo-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.5vw + 0.8rem, 1.4rem);
    font-weight: 800; /* Bolder logo title */
    letter-spacing: 2px;
    color: var(--text-dark);
}
.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-accent);
}
@media (max-width: 480px) {
    .logo-svg { height: 36px; }
    .logo-subtitle { display: none; }
    .logo-title { font-size: 1.1rem; letter-spacing: 1px; }
    .logo-link { gap: 10px; }
}

.main-menu ul {
    display: flex;
    gap: clamp(15px, 2vw, 28px);
}

.main-menu ul li a {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    min-height: 44px;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    color: var(--secondary-accent);
}

.main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-accent);
    transition: width 0.3s ease;
}

.main-menu ul li a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(233, 132, 114, 0.15);
    border: 1px solid rgba(233, 132, 114, 0.3);
    color: var(--secondary-accent);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.mobile-toggle i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.mobile-toggle:hover {
    background: var(--secondary-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(233, 132, 114, 0.4);
}

.btn-header-call {
    background: var(--bg-main); /* Darker charcoal */
    color: var(--primary-accent) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-accent);
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .btn-header-book .desktop-text {
        display: none;
    }
    .btn-header-book {
        padding: 8px 14px !important;
        font-size: 1.1rem !important;
    }
    .mobile-toggle {
        display: inline-flex;
    }
    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(28, 25, 23, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(233, 132, 114, 0.25);
        border-radius: 20px;
        padding: 20px 0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.6);
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.98);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 999;
    }
    .main-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(15px) scale(1);
    }
    .main-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .main-menu ul li a {
        font-size: 1.15rem;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }
}

.btn-header-call:hover {
    background: var(--secondary-accent);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 126, 180, 0.35);
}

/* --- Glassmorphism Hero Section Styles --- */
.hero-glass-card {
    background: rgba(30, 32, 34, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: clamp(35px, 6vw, 60px);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(178, 189, 163, 0.15);
    color: var(--primary-accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(178, 189, 163, 0.3);
}

.hero-glass-card h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero-glass-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 30px;
}

.btn-hero-glass {
    background: var(--primary-accent);
    color: var(--bg-main) !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 25px rgba(178, 189, 163, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-glass:hover {
    transform: translateY(-3px);
    background: #c3ceb4;
    box-shadow: 0 8px 30px rgba(178, 189, 163, 0.5);
}

/* --- Animated Spa Zen Hero Section --- */
.hero-slider-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 90px;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero-glass-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 24px;
    max-width: 650px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.hero-glass-content h1, .hero-glass-content h5, .hero-glass-content p, .hero-glass-content .hero-badge {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-glass-content .hero-badge {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

@keyframes gradientDrift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-glow {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.45), transparent 45%),
                radial-gradient(circle at 70% 70%, rgba(255,255,255,0.25), transparent 40%);
    animation: kenburnsGlow 12s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes kenburnsGlow {
    0% { transform: scale(1) translate(0,0); }
    100% { transform: scale(1.18) translate(-2%, -3%); }
}

.hero-mist {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 120%;
    height: 45%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.55) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0.6;
    animation: mistRise 9s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-mist.two {
    animation-delay: 3s;
    animation-duration: 11s;
    opacity: 0.4;
}

@keyframes mistRise {
    0% { transform: translateY(20px) scaleX(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scaleX(1.1); opacity: 0.6; }
    100% { transform: translateY(20px) scaleX(1); opacity: 0.3; }
}

.petal {
    position: absolute;
    bottom: -40px;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #b6a2c9);
    border-radius: 0 50% 50% 50%;
    opacity: 0.85;
    animation-name: floatUp, sway;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes floatUp {
    0% { bottom: -40px; opacity: 0; }
    10% { opacity: 0.9; }
    90% { opacity: 0.7; }
    100% { bottom: 110%; opacity: 0; }
}

@keyframes sway {
    0%, 100% { margin-left: 0px; }
    50% { margin-left: 40px; }
}

.hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: ringPulse 6s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes ringPulse {
    0% { width: 40px; height: 40px; opacity: 0.6; }
    100% { width: 360px; height: 360px; opacity: 0; margin-left: -180px; margin-top: -180px; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 5;
}

/* Premium Editorial Hero Image Box */
.hero-image-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    z-index: 10;
}

/* Decorative Background Blob */
.hero-image-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 5%;
    left: 5%;
    background: var(--pink);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.8;
}

/* Dark gradient overlay for text readability */
.hero-image-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    pointer-events: none;
    z-index: 2;
}

.hero-image-box img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 40px 80px -20px rgba(201,168,216,0.6);
    animation: heroImageReveal 1s ease-out forwards;
    transition: transform 0.4s ease;
    z-index: 1;
}

@keyframes heroImageReveal {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

@media (min-width: 1024px) {
    .hero-image-box:hover img {
        transform: scale(1.02);
    }
}

@keyframes sceneFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}

/* Floating Glass Badge */
.hero-glass-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(155, 126, 180, 0.3);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 3;
    animation: sceneFloat 5s ease-in-out infinite;
}

.hero-glass-badge .stars {
    color: #f5b041;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.hero-glass-badge span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-glass-badge strong {
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .hero-glass-badge {
        bottom: 10px;
        left: 0px;
        padding: 10px 15px;
    }
    .hero-image-box::before {
        filter: blur(40px);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--accent-light);
    border: 1px solid var(--primary-accent);
    color: var(--text-main);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.25;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-call-now, .btn-whatsapp-us {
    background: var(--primary-accent);
    color: #FFFFFF !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(224, 152, 173, 0.3);
}

.btn-call-now:hover, .btn-whatsapp-us:hover {
    background: var(--secondary-accent);
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(155, 126, 180, 0.35);
}.about-section {
    padding: 100px 0;
    background: linear-gradient(rgba(28, 25, 23, 0.90), rgba(28, 25, 23, 0.95)), url('./assets/images/service_2_new.png') center/cover no-repeat fixed;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(30px, 5vw, 50px);
    align-items: center;
}

.about-image-collage {
    position: relative;
    width: 100%;
    padding-bottom: 20%;
}

.about-img-main {
    position: relative;
    width: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 1;
}

.about-img-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    width: 60%;
    bottom: -10%;
    right: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 8px solid var(--bg-main);
    z-index: 2;
}

.about-img-secondary img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
    color: #FFFFFF;
    padding: 20px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(155, 126, 180, 0.3);
}

.experience-badge span {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* --- Services Grid Section --- */
.services-section {
    padding: 100px 0;
    background: linear-gradient(rgba(28, 25, 23, 0.92), rgba(28, 25, 23, 0.96)), url('./assets/images/service_3_new.png') center/cover no-repeat fixed;
    position: relative;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(25px, 4vw, 30px);
    margin-top: 50px;
}
@media (max-width: 900px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-grid-new {
        grid-template-columns: 1fr;
    }
}

.service-item-open {
    border: 1px solid rgba(201, 184, 216, 0.4);
    padding: clamp(15px, 4vw, 20px);
    border-radius: 12px;
    background: var(--card-bg);
    transition: all 0.3s ease;
    text-align: left;
    box-shadow: 0 4px 15px rgba(155, 126, 180, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item-open:hover {
    border-color: var(--primary-accent);
    box-shadow: 0 10px 30px rgba(155, 126, 180, 0.15);
    transform: translateY(-5px);
}

.service-item-open img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-item-open h4 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.service-item-open p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-item-open .service-book-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    background: var(--primary-accent);
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(42, 128, 93, 0.4);
    transition: all 0.3s ease;
}

.service-item-open .service-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(42, 128, 93, 0.6);
    color: #FFFFFF;
}

/* --- Gallery Grid Section --- */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(rgba(28, 25, 23, 0.90), rgba(28, 25, 23, 0.92)), url('./assets/images/service_5_new.png') center/cover no-repeat fixed;
    position: relative;
}

.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
}

.gallery-carousel-container {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
    padding: 10px 0;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px;
}

.gallery-slide {
    min-width: calc(33.333% - 13.33px);
    box-sizing: border-box;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(155, 126, 180, 0.15);
}

@media (max-width: 768px) {
    .gallery-slide {
        min-width: 100%;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: 1px solid rgba(201, 184, 216, 0.4);
    color: var(--secondary-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(155, 126, 180, 0.15);
}

.carousel-btn.prev-btn {
    left: -25px;
}

.carousel-btn.next-btn {
    right: -25px;
}

.carousel-btn:hover {
    background: var(--primary-accent);
    color: #FFFFFF;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(rgba(28, 25, 23, 0.85), rgba(28, 25, 23, 0.85)), url('./assets/images/service_4_new.png') center/cover no-repeat fixed;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 184, 216, 0.35);
    background: var(--card-bg);
    box-shadow: 0 4px 15px rgba(155, 126, 180, 0.05);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: clamp(15px, 4vw, 25px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-accent);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: rgba(243, 234, 240, 0.5);
}

.faq-item.active .faq-answer {
    padding: clamp(15px, 4vw, 25px);
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--bg-main) !important; /* Dark text as requested */
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(rgba(28, 25, 23, 0.88), rgba(28, 25, 23, 0.95)), url('./assets/images/about_img_new.png') center/cover no-repeat fixed;
    position: relative;
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .testimonial-layout {
        grid-template-columns: 1fr;
    }
}

.testi-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.center-image {
    display: flex;
    align-items: stretch;
}

/* Spa Experience Animated Reel Styles */
.spa-reel-container {
    width: 100%;
    height: 100%;
    min-height: 420px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.45);
    border: 1px solid rgba(233, 132, 114, 0.3);
    background: #140d10;
}

.spa-reel-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spa-reel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.2s ease-in-out, transform 3.5s ease-out;
    pointer-events: none;
}

.spa-reel-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.spa-reel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spa-reel-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 10;
    background: rgba(35, 18, 22, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--secondary-accent);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 700;
    border: 1px solid rgba(233, 132, 114, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.spa-reel-caption {
    position: absolute;
    bottom: 22px;
    left: 18px;
    right: 18px;
    z-index: 10;
    background: rgba(20, 10, 14, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 20px;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.spa-reel-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 10;
}

.spa-reel-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    transition: width 3.5s linear;
}

.spa-reel-dots {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    display: flex;
    gap: 6px;
    background: rgba(0,0,0,0.4);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.spa-reel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.4s ease;
}

.spa-reel-dots .dot.active {
    background: var(--secondary-accent);
    width: 22px;
    border-radius: 10px;
}


.testimonial-card {
    background: var(--card-bg);
    padding: clamp(20px, 4vw, 30px);
    border-radius: 18px;
    border: 1px solid rgba(201, 184, 216, 0.3);
    position: relative;
    box-shadow: 0 4px 15px rgba(155, 126, 180, 0.08);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.testi-avatar-placeholder {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.2rem;
}

.testi-name h6 {
    font-size: 1.05rem;
    margin: 0;
}

.testi-rating {
    color: var(--gold-accent);
    font-size: 0.85rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

/* --- Contact & Map Section --- */
.contact-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(30px, 5vw, 40px);
    align-items: stretch;
}

/* Review Form Styling */
.leave-review-container {
    margin-top: 60px; 
    background: rgba(30, 32, 34, 0.6); 
    padding: 40px; 
    border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}
.leave-review-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
}
.review-input {
    width: 100%; 
    padding: 14px 18px; 
    border-radius: 10px; 
    border: 1px solid rgba(255,255,255,0.15); 
    background: rgba(18, 18, 20, 0.6); 
    color: #FFFFFF !important; 
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.review-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.review-input:focus {
    outline: none;
    border-color: var(--primary-accent);
    background: rgba(18, 18, 20, 0.85);
    box-shadow: 0 0 15px rgba(178, 189, 163, 0.3);
}
.review-submit-btn, .contact-submit-btn {
    background: var(--primary-accent); 
    color: var(--bg-main) !important; 
    border: none; 
    padding: 15px 24px; 
    border-radius: 50px; 
    font-weight: 700; 
    cursor: pointer; 
    font-size: 1rem; 
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(178, 189, 163, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.review-submit-btn:hover, .contact-submit-btn:hover {
    transform: translateY(-2px);
    background: #c3ceb4;
    box-shadow: 0 8px 25px rgba(178, 189, 163, 0.45);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(155, 126, 180, 0.12);
    height: 100%;
    min-height: 250px;
    border: 1px solid rgba(201, 184, 216, 0.4);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-info-card {
    background: var(--card-bg);
    color: var(--text-main);
    padding: clamp(30px, 5vw, 50px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
}
.contact-info-card h2, .contact-info-card h5 {
    color: var(--text-main);
}
.contact-info-card p, .contact-info-card a {
    color: var(--text-muted);
}
.contact-info-card a:hover {
    color: var(--primary-accent);
}
.contact-info-item .icon {
    background: var(--bg-alt);
    color: var(--primary-accent);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    min-width: 0;
}

.contact-info-item > div {
    min-width: 0;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    border-radius: 12px;
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-item div h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-item div a, .contact-info-item div p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Footer --- */
footer {
    background: var(--bg-footer);
    padding-top: 70px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(30px, 5vw, 40px);
    margin-bottom: 50px;
}

.footer-widget {
    min-width: 0;
}

.footer-widget p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
}

.footer-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-widget ul li a:hover {
    color: var(--secondary-accent);
    padding-left: 5px;
}

.copyright-bar {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(201, 184, 216, 0.3);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Privacy Policy Page Styling --- */
.page-header-banner {
    padding: 140px 0 60px;
    background: var(--bg-alt);
    text-align: center;
    border-bottom: 1px solid rgba(201, 184, 216, 0.3);
}

.page-content-wrapper {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-content-wrapper h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: var(--primary-accent);
}

.page-content-wrapper p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* --- Floating Action Buttons --- */
.float-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: white !important;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.float-button.whatsapp {
    background-color: #25D366;
    animation: pulse-ring-wa 2s infinite;
}

.float-button.phone {
    background-color: #007BFF;
    animation: pulse-ring-phone 2s infinite;
}

.float-button:hover {
    transform: scale(1.1);
}

@keyframes pulse-ring-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-ring-phone {
    0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(0, 123, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

/* --- Comprehensive Mobile-First Responsive Architecture --- */

/* Base (320px+) Mobile-First Layouts */
.hero-slider-section {
    min-height: 100vh;
    min-height: 100dvh;
}

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    margin-left: 15px;
    min-width: 44px;
    min-height: 44px;
}

.main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-alt);
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-bottom: 2px solid var(--primary-accent);
    z-index: 1000;
}

.main-menu.active {
    display: block;
}

.main-menu ul {
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.btn-header-call .desktop-text {
    display: none;
}

.btn-header-call {
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
}

.hero-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    justify-content: center;
}

.btn-call-now, .btn-whatsapp-us {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    min-height: 44px;
}

.hero-image-box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.hero-image-box img {
    height: 220px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
}

.carousel-btn.prev-btn { left: 8px; }
.carousel-btn.next-btn { right: 8px; }

/* Fluid typography and spacing scale automatically, no need for micro-breakpoints for heights anymore */

/* 600px+ Breakpoint (Small Tablets / Large Landscape Phones) */
@media (min-width: 600px) {
    .hero-btn-group {
        flex-direction: row;
        width: auto;
    }
    .btn-call-now, .btn-whatsapp-us {
        width: auto;
    }
}

/* 768px+ Breakpoint (iPad Portrait / Standard Tablets) */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        text-align: left;
        gap: 35px;
    }
    .hero-btn-group {
        justify-content: flex-start;
    }
}

/* 1024px+ Breakpoint (iPad Landscape / Small Laptops & Desktops) */
@media (min-width: 1024px) {
    .mobile-toggle {
        display: none !important;
    }
    .mobile-menu-book-item {
        display: none !important;
    }
    .main-menu {
        display: block !important;
        position: static;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border-bottom: none;
        width: auto;
    }
    .main-menu ul {
        flex-direction: row;
        gap: clamp(18px, 2vw, 28px);
        text-align: left;
    }
}

@media (max-width: 1023px) {
    .mobile-toggle {
        display: block !important;
        font-size: 1.5rem;
        color: #fff;
        cursor: pointer;
        padding: 5px;
    }
    .header-cta .btn-header-book {
        display: none !important; /* Move button inside hamburger menu on mobile */
    }
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(20, 20, 22, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 30px 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        border-top: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }
    .main-menu.active {
        display: block !important;
    }
    .main-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin: 0;
        padding: 0;
    }
    .main-menu ul li a {
        font-size: 1.15rem;
        font-weight: 600;
        color: #FFFFFF;
    }
    .hero-grid-wrapper {
        grid-template-columns: 1fr !important;
    }
}
    .btn-header-call .desktop-text {
        display: inline;
    }
    .btn-header-call {
        padding: 10px 24px;
        border-radius: 50px;
        width: auto;
        height: auto;
    }
    .carousel-btn.prev-btn { left: -25px; }
    .carousel-btn.next-btn { right: -25px; }
}

/* 1280px+ Breakpoint (Standard Desktop) */
@media (min-width: 1280px) {
    .container {
        max-width: 1240px;
    }
}

/* 1536px+ Breakpoint (Large Desktop / 4K Displays) */
@media (min-width: 1536px) {
    .container {
        max-width: 1400px;
    }
    .hero-slider-section {
        min-height: 80vh;
    }
}

/* --- Interactive Story Card & Lightbox Modal --- */
.story-card-interactive {
    border: 1px solid rgba(233, 132, 114, 0.35);
    border-radius: 20px;
    background: rgba(35, 18, 22, 0.6);
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.story-card-interactive:hover {
    border-color: var(--secondary-accent);
    box-shadow: 0 15px 35px rgba(233, 132, 114, 0.25);
    transform: translateY(-4px);
}

.story-img-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.story-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.story-card-interactive:hover .story-img-item img {
    transform: scale(1.06);
}

.story-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 128, 93, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    gap: 10px;
    border-radius: 14px;
    z-index: 3;
    letter-spacing: 0.5px;
}

.story-card-interactive:hover .story-hover-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .story-card-interactive {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Lightbox Modal Sizing & Animations */
.story-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 10, 12, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.story-modal.active {
    opacity: 1;
    visibility: visible;
}

.story-modal-content {
    background: var(--bg-main);
    border: 1px solid rgba(233, 132, 114, 0.4);
    border-radius: 20px;
    max-width: 850px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-modal.active .story-modal-content {
    transform: scale(1);
}

.story-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.story-modal-close:hover {
    background: var(--secondary-accent);
    color: var(--bg-main);
}

.story-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .story-modal-grid {
        grid-template-columns: 1fr;
    }
}

.story-modal-grid img {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    object-fit: cover;
}

.story-modal-caption h3 {
    margin-bottom: 12px;
    color: var(--secondary-accent);
    font-size: 1.4rem;
}

.story-modal-caption p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* --- Floating Scroll to Top Button --- */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-accent);
    color: var(--bg-main);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(42, 128, 93, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9999;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: var(--secondary-accent);
    color: var(--bg-main);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 24px rgba(233, 132, 114, 0.65);
}

/* 3D Popout Hero Image & Review Split Grid Responsive Rules */
.hero-image-3d-wrapper:hover .hero-3d-popout-img {
    transform: translateY(-22px) scale(1.08);
}

@media (max-width: 991px) {
    .review-grid-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .organic-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }
    .organic-right-content {
        padding-left: 0 !important;
        text-align: center !important;
    }
    .hero-titles-wrap, .offer-banner-row, .organic-right-content p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .organic-right-content div {
        justify-content: center !important;
        align-items: center !important;
    }
    .main-curved-frame {
        border-radius: 0 140px 140px 0 !important;
        height: 320px !important;
    }
    .floating-circle-top {
        width: 120px !important;
        height: 120px !important;
        right: -10px !important;
        top: -15px !important;
    }
    .floating-circle-bottom {
        width: 120px !important;
        height: 120px !important;
        left: 80px !important;
        bottom: -25px !important;
    }
}

/* ==========================================================================
   Fully Responsive Split Hero Section Styling (Desktop, Tablet & Mobile)
   ========================================================================== */
.hero-split-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background: var(--bg-main);
    overflow: hidden;
    display: flex;
    padding: 0;
}

.hero-split-left {
    position: relative;
    width: 60%;
    min-height: 85vh;
    overflow: hidden;
}

.hero-main-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-curve-svg {
    position: absolute;
    top: 0;
    right: -1px;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid var(--primary-accent);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-accent);
}

.hero-circle-top {
    top: 10%;
    right: 2%;
    width: clamp(140px, 18vw, 240px);
    height: clamp(140px, 18vw, 240px);
    padding: clamp(5px, 0.8vw, 12px);
}

.hero-circle-bottom {
    bottom: 5%;
    right: 8%;
    width: clamp(180px, 25vw, 340px);
    height: clamp(180px, 25vw, 340px);
    padding: clamp(6px, 1vw, 15px);
}

.hero-split-right {
    width: 40%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 140px 40px 60px 60px;
    position: relative;
    z-index: 3;
}

.hero-split-content {
    text-align: center !important;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hero-icon {
    font-size: 2.8rem;
    color: var(--primary-accent);
    margin-bottom: 16px;
    display: block;
}

.hero-tagline-span {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.5vw, 1.3rem);
    letter-spacing: 3px;
    color: var(--accent-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-offer-badge {
    background: var(--card-bg);
    border: 1px dashed var(--primary-accent);
    border-radius: 50px;
    padding: 6px 18px;
    margin: 10px auto 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    max-width: 100%;
}

.hero-offer-badge .badge-tag {
    background: var(--primary-accent);
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hero-offer-badge .badge-text {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 600;
}

.hero-offer-badge .badge-sub {
    color: var(--text-muted);
    font-weight: 400;
}

.hero-main-h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.6rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.15;
    margin: 8px 0 16px 0;
    text-transform: uppercase;
}

.hero-decor-line {
    width: 60px;
    height: 3px;
    background: var(--primary-accent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.hero-desc-p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--accent-light);
    margin-bottom: 28px;
    font-weight: 300;
}

.hero-cta-btn {
    background: var(--primary-accent);
    color: #FFFFFF;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(42, 128, 93, 0.4);
    transition: all 0.3s ease;
}

/* Tablet Media Queries (768px to 1024px) */
@media (max-width: 1024px) {
    .hero-split-section {
        min-height: auto;
    }
    .hero-split-left {
        width: 50%;
        min-height: 520px;
    }
    .hero-split-right {
        width: 50%;
        padding: 40px 24px 40px 40px;
    }
    .hero-circle-top {
        width: 130px;
        height: 130px;
        right: 2%;
    }
    .hero-circle-bottom {
        width: 180px;
        height: 180px;
        right: 4%;
    }
}

/* Mobile Media Queries (Under 768px - Stacked Layout) */
@media (max-width: 767px) {
    .hero-split-section {
        flex-direction: column;
        min-height: auto;
    }
    .hero-split-left {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        min-height: 300px;
        max-height: 450px;
    }
    .hero-curve-svg {
        display: none; /* Hide vertical curve on stacked mobile view */
    }
    .hero-circle-top {
        top: 5%;
        right: 5%;
        width: 100px;
        height: 100px;
        padding: 3px;
    }
    .hero-circle-bottom {
        bottom: 5%;
        left: 5%;
        right: auto;
        width: 130px;
        height: 130px;
        padding: 4px;
    }
    .hero-split-right {
        width: 100%;
        padding: 40px 15px 50px 15px;
    }
    .hero-split-content {
        max-width: 100%;
    }
    .hero-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    .hero-main-h1 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        line-height: 1.25;
        margin: 12px 0 16px 0;
    }
    .hero-tagline-span {
        margin-bottom: 12px;
        line-height: 1.4;
    }
    .hero-offer-badge {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 50px;
        padding: 6px 14px;
        margin: 10px auto 18px;
    }
    .hero-offer-badge .badge-tag {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
    .hero-offer-badge .badge-text {
        font-size: 0.8rem;
    }
    .hero-desc-p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    .hero-cta-btn {
        width: auto;
        display: inline-flex;
        padding: 12px 32px;
        font-size: 1rem;
    }
}

/* ============================================================
   HERO TEXT PANEL — BACKGROUND ANIMATION
   Only affects .hero-split-right (the text column).
   All pseudo-elements sit behind z-index 2 so text is
   always fully readable on any screen / accessibility mode.
   ============================================================ */

/* Layer 1 — Aurora gradient base */
.hero-split-right::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 60% at 20% 30%, rgba(178,189,163,0.10) 0%, transparent 65%),
        radial-gradient(ellipse 55% 50% at 80% 70%, rgba(233,132,114,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 90% 80% at 50% 50%, rgba(136,76,210,0.06) 0%, transparent 70%);
    background-size: 200% 200%;
    animation: heroAurora 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroAurora {
    0%   { background-position: 0% 0%; }
    33%  { background-position: 60% 40%; }
    66%  { background-position: 100% 60%; }
    100% { background-position: 30% 100%; }
}

/* Layer 2 — Floating blurred orbs */
.hero-split-right::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle 120px at 15% 20%, rgba(178,189,163,0.13) 0%, transparent 70%),
        radial-gradient(circle 90px  at 85% 15%, rgba(233,132,114,0.10) 0%, transparent 70%),
        radial-gradient(circle 100px at 70% 80%, rgba(136,76,210,0.09) 0%, transparent 70%),
        radial-gradient(circle 80px  at 30% 75%, rgba(178,189,163,0.10) 0%, transparent 70%),
        radial-gradient(circle 60px  at 55% 45%, rgba(255,215,0,0.06)  0%, transparent 70%);
    animation: heroOrbs 14s ease-in-out infinite alternate;
}

@keyframes heroOrbs {
    0%   { transform: translateY(0px) scale(1);    opacity: 0.8; }
    25%  { transform: translateY(-12px) scale(1.04); opacity: 1;   }
    50%  { transform: translateY(8px) scale(0.97);  opacity: 0.85; }
    75%  { transform: translateY(-6px) scale(1.02); opacity: 1;   }
    100% { transform: translateY(14px) scale(0.98); opacity: 0.9;  }
}

/* Ensure content stays above all animation layers */
.hero-split-right {
    isolation: isolate;
}
.hero-split-content {
    position: relative;
    z-index: 2;
}

/* Shimmer particles — pure CSS, no JS, lightweight */
.hero-split-right .hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-split-right .hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(178,189,163,0.25);
    animation: heroPulse var(--dur, 6s) ease-in-out infinite;
    animation-delay: var(--del, 0s);
    top:    var(--top,  20%);
    left:   var(--left, 50%);
    width:  var(--sz,   6px);
    height: var(--sz,   6px);
    filter: blur(1px);
}
@keyframes heroPulse {
    0%,100% { transform: translate(0,0) scale(1);   opacity: 0.15; }
    33%      { transform: translate(8px,-14px) scale(1.3); opacity: 0.45; }
    66%      { transform: translate(-6px,10px) scale(0.8); opacity: 0.25; }
}
