/* -------------------------------------------------------------
 * SIAT - SUNNY INDISCHE AYURVEDA THERAPIEZENTRUM
 * Modern Serene Spa Design System & Advanced Micro-Animations
 * ------------------------------------------------------------- */

:root {
    --color-primary: #0c291e;         /* Deep Emerald Forest */
    --color-primary-light: #164030;   /* Medium Emerald */
    --color-gold: #cfa856;            /* Warm Royal Gold */
    --color-gold-hover: #b89240;      /* Darker Gold */
    --color-sage: #7a9483;            /* Serene Sage Green */
    --color-sand: #fbf9f4;            /* Soft Spa Sand / Cream */
    --color-sand-card: #f3efe6;       /* Card Sand Background */
    --color-dark: #17231d;            /* Deep Charcoal / Slate */
    --color-text-muted: #57685d;     /* Muted Sage Text */
    --color-white: #ffffff;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(12, 41, 30, 0.06);
    --shadow-hover: 0 20px 40px rgba(12, 41, 30, 0.12);
    --shadow-gold: 0 10px 25px rgba(207, 168, 86, 0.25);
    
    --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --border-radius: 16px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-sand);
    color: var(--color-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------------------------------------------------
 * Top Header Bar (Contact & Phone Quick Bar)
 * ------------------------------------------------------------- */
.top-header {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(207, 168, 86, 0.2);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-info-list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
}

.top-info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info-list i {
    color: var(--color-gold);
}

.top-info-list a:hover {
    color: var(--color-gold);
}

/* Language Switcher Pill */
.lang-switcher {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(207, 168, 86, 0.3);
    border-radius: 30px;
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    background: transparent;
}

.lang-btn.active {
    background: var(--color-gold);
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lang-btn:hover:not(.active) {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
}

/* -------------------------------------------------------------
 * Navigation Header (Sticky Glassmorphism)
 * ------------------------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 249, 244, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(12, 41, 30, 0.08);
    padding: 8px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 4px 0;
    box-shadow: var(--shadow-soft);
    background: rgba(251, 249, 244, 0.98);
}

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

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

.brand-logo-img {
    height: 78px;
    max-height: 78px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(12, 41, 30, 0.12));
    image-rendering: -webkit-optimize-contrast;
    transition: var(--transition);
}

.navbar.scrolled .brand-logo-img {
    height: 64px;
    max-height: 64px;
}

.brand-logo:hover .brand-logo-img {
    transform: scale(1.04);
}



.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--color-primary);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, #b89240 100%);
    color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(207, 168, 86, 0.4);
    color: var(--color-primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-sand);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}

/* -------------------------------------------------------------
 * Page Inner Hero Banner
 * ------------------------------------------------------------- */
.page-banner {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(12, 41, 30, 0.92) 0%, rgba(22, 64, 48, 0.88) 100%), url('../assets/images/hero.jpg') center/cover no-repeat;
    color: var(--color-white);
    text-align: center;
}

.page-banner-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.breadcrumb-list {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    list-style: none;
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 600;
}

.breadcrumb-list a {
    color: rgba(255, 255, 255, 0.8);
}

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

/* -------------------------------------------------------------
 * Authentic Flyer-Style Hero Section
 * ------------------------------------------------------------- */
.flyer-hero {
    position: relative;
    background: #ffffff;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(122, 148, 131, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(121, 185, 0, 0.06) 0%, transparent 50%);
    padding: 30px 0 0 0;
    overflow: hidden;
    color: var(--color-dark);
}

.flyer-top-foliage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(12, 41, 30, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 0 4%;
}

.flyer-top-foliage .leaf-branch {
    font-size: 2.8rem;
    color: #135c3c;
    opacity: 0.85;
}

/* Header Branding Block */
.flyer-brand-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 36px auto;
    position: relative;
    z-index: 2;
}

.flyer-logo-box {
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
}

.flyer-logo-img {
    height: 90px;
    max-height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(12, 41, 30, 0.15));
}

.flyer-main-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    color: #0c291e;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.flyer-sub-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #0c291e;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.flyer-address-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5d52;
    margin-bottom: 8px;
}

.flyer-address-text i {
    color: var(--color-gold);
    margin-right: 4px;
}

.flyer-credentials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    font-weight: 600;
}

.flyer-credentials .asca-tag {
    color: #555;
}

.flyer-credentials .insurance-tag {
    color: #0b5c3c;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Flyer 2-Column Grid */
.flyer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

/* Left Column: Services & Pills */
.flyer-services-header {
    margin-bottom: 20px;
}

.flyer-services-title {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
    color: #0b5c3c;
}

.flyer-services-title .lime-highlight {
    color: #79b900;
}

/* Service Pills */
.services-pill-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    max-width: 600px;
}

.service-pill-item {
    background: #005c3c;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 16px rgba(0, 92, 60, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.service-pill-item:hover {
    transform: translateX(8px);
    background: #004a30;
    box-shadow: 0 10px 24px rgba(0, 92, 60, 0.28);
}

.service-pill-item i {
    color: #79b900;
    font-size: 0.9rem;
}

/* Contact Info & CTA Block */
.flyer-contact-block {
    background: #f4f8f5;
    border: 1px solid rgba(11, 92, 60, 0.15);
    border-radius: 20px;
    padding: 20px 24px;
    max-width: 600px;
}

.flyer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #17231d;
}

.contact-row i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #005c3c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-row a {
    color: #17231d;
    transition: var(--transition);
}

.contact-row a:hover {
    color: #005c3c;
}

.flyer-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Right Column: Layered Organic Graphic Photo Frames */
.flyer-visual-stack {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Top Small Circular Image */
.flyer-img-top-circle {
    position: absolute;
    top: 0px;
    right: 20px;
    width: 235px;
    height: 235px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
    z-index: 3;
    transition: var(--transition);
}

.flyer-img-top-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.flyer-img-top-circle:hover {
    transform: scale(1.04) rotate(2deg);
}

/* Bottom Main Organic Frame */
.flyer-img-main-organic {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 350px;
    height: 350px;
    border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
    overflow: hidden;
    border: 7px solid #005c3c;
    box-shadow: 0 22px 50px rgba(0, 92, 60, 0.24);
    z-index: 2;
    transition: var(--transition);
}

.flyer-img-main-organic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.flyer-img-main-organic:hover {
    transform: scale(1.03);
}

/* Background Ring Contours & Leaves Accent */
.flyer-green-ring-accent {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 380px;
    height: 380px;
    border: 3px dashed #79b900;
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
    animation: spinSlow 30s linear infinite;
}

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

/* Bottom Dark Green Stripe */
.flyer-bottom-bar {
    height: 24px;
    background: #005c3c;
    width: 100%;
}

/* Responsive Rules for Flyer Hero */
@media (max-width: 992px) {
    .flyer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .flyer-main-title {
        font-size: 2.8rem;
    }
    
    .flyer-services-title {
        font-size: 2.2rem;
    }
    
    .flyer-visual-stack {
        min-height: 400px;
    }
    
    .flyer-img-top-circle {
        width: 180px;
        height: 180px;
        right: 10px;
    }
    
    .flyer-img-main-organic {
        width: 270px;
        height: 270px;
    }
}

@media (max-width: 576px) {
    .flyer-main-title {
        font-size: 2.1rem;
    }
    
    .flyer-sub-title {
        font-size: 1.1rem;
    }
    
    .service-pill-item {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
    
    .flyer-services-title {
        font-size: 1.9rem;
    }
    
    .flyer-cta-buttons {
        flex-direction: column;
    }
    
    .flyer-visual-stack {
        min-height: 340px;
    }
    
    .flyer-img-top-circle {
        width: 140px;
        height: 140px;
    }
    
    .flyer-img-main-organic {
        width: 220px;
        height: 220px;
    }
}

/* -------------------------------------------------------------
 * Authentic Flyer Page 2 Section (Ayurveda & Abhyanga)
 * ------------------------------------------------------------- */
.flyer-page2-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Top Banner with Angled Quote Box */
.flyer-page2-top-banner {
    position: relative;
    min-height: 320px;
    background: url('../assets/images/flyer_page2_clean_header.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.flyer-quote-box {
    background: #ffffff;
    padding: 32px 42px 32px 32px;
    max-width: 720px;
    border-radius: 0 40px 40px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
}

.flyer-quote-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.5;
    color: #222222;
    font-weight: 500;
}

.flyer-quote-text .green-bold {
    color: #005c3c;
    font-weight: 800;
}

/* Middle Abhyanga Description Block */
.flyer-page2-middle {
    padding: 50px 0;
    background: #ffffff;
}

.abhyanga-desc-card {
    max-width: 960px;
    margin: 0 auto;
    background: #fbfaf6;
    border: 1px solid rgba(11, 92, 60, 0.12);
    border-radius: 24px;
    padding: 36px 44px;
    box-shadow: 0 10px 25px rgba(12, 41, 30, 0.05);
}

.abhyanga-desc-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.7;
    color: #2a332e;
    text-align: justify;
}

/* Bottom Leafy Showcase with Shirodhara Organic Frame & Logo */
.flyer-page2-bottom {
    background: linear-gradient(135deg, #092c1e 0%, #134631 100%);
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    text-align: center;
}

.flyer-bottom-graphic-wrap {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.flyer-bottom-graphic-wrap:hover {
    transform: scale(1.005);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.flyer-bottom-graphic-img {
    width: 100%;
    height: auto;
    display: block;
}

.flyer-shirodhara-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flyer-shirodhara-frame:hover {
    transform: scale(1.02);
}

.flyer-shirodhara-stroke-ring {
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    border: 3px dashed #005c3c;
    border-radius: 55px 105px 55px 105px / 105px 55px 105px 55px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

/* -------------------------------------------------------------
 * Authentic Flyer Page 3 Section (Principles & Benefits)
 * ------------------------------------------------------------- */
.flyer-page3-section {
    background: #fbfaf6;
    padding: 60px 0;
    position: relative;
}

.flyer-page3-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 16px 45px rgba(12, 41, 30, 0.08);
    border: 1px solid rgba(11, 92, 60, 0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

/* Top Principles Grid */
.flyer-p3-top-grid {
    display: grid;
    grid-template-columns: 1fr 240px;
    align-items: stretch;
}

.flyer-principles-content {
    padding: 36px 40px;
}

.flyer-p3-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: #007685;
    font-weight: 800;
    margin-bottom: 20px;
}

.flyer-principles-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flyer-principles-list li {
    position: relative;
    padding-left: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

.flyer-principles-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #007685;
    font-size: 1.4rem;
}

.flyer-principles-list strong {
    color: #0c291e;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.flyer-p3-top-badge-column {
    background: #79b900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.flyer-p3-logo-badge {
    background: #ffffff;
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    text-align: center;
}

.flyer-p3-logo-badge img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Middle Full-Width Oil Massage Photo */
.flyer-p3-middle-photo {
    width: 100%;
    height: 440px;
    overflow: hidden;
    position: relative;
}

.flyer-p3-middle-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    display: block;
}

/* Bottom Benefits Box */
.flyer-p3-bottom-box {
    background: #ffffff;
    padding: 10px 0;
}

.flyer-benefits-content {
    padding: 36px 40px;
}

.flyer-benefits-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: #007685;
    font-weight: 800;
    margin-bottom: 20px;
}

.flyer-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.flyer-benefits-list li {
    font-size: 1.08rem;
    font-weight: 600;
    color: #2b3a32;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flyer-benefits-list li i {
    color: #79b900;
    font-size: 1.1rem;
}

/* -------------------------------------------------------------
 * Authentic Flyer Page 4 Section (Spezialitäten & Herb Mosaic)
 * ------------------------------------------------------------- */
.flyer-page4-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Top Banner with Specialties White Card */
.flyer-page4-top-banner {
    position: relative;
    min-height: 320px;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.05) 100%), url('../assets/images/flyer_herbalist_bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.flyer-specialties-card {
    background: #ffffff;
    padding: 32px 42px;
    max-width: 680px;
    border-radius: 0 40px 40px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.flyer-specialties-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: #007685;
    font-weight: 800;
    margin-bottom: 16px;
}

.flyer-specialties-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flyer-specialties-list li {
    position: relative;
    padding-left: 20px;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #333333;
}

.flyer-specialties-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #007685;
    font-size: 1.4rem;
}

/* Middle Hexagonal Herb Mosaic Showcase */
.flyer-p4-mosaic-wrapper {
    padding: 40px 0;
    background: #fbfaf6;
    text-align: center;
}

.flyer-mosaic-card {
    max-width: 980px;
    max-height: 520px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(12, 41, 30, 0.14);
    border: 4px solid #ffffff;
    transition: var(--transition);
}

.flyer-mosaic-card:hover {
    transform: scale(1.01);
    box-shadow: 0 22px 55px rgba(12, 41, 30, 0.2);
}

.flyer-mosaic-card img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Bottom Footer Branding Card */
.flyer-p4-footer-brand {
    background: #ffffff;
    padding: 30px 0 0 0;
    text-align: center;
}

.flyer-p4-brand-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.flyer-p4-brand-logo {
    height: 95px;
    width: auto;
    object-fit: contain;
}

.flyer-p4-brand-text h3 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #0c291e;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2px;
}

.flyer-p4-brand-text h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c291e;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.flyer-p4-brand-text p {
    font-size: 0.92rem;
    font-weight: 600;
    color: #4a5d52;
}

/* Responsive Rules for Page 4 */
@media (max-width: 992px) {
    .flyer-specialties-card {
        max-width: 90%;
        padding: 24px 28px;
        border-radius: 0 24px 24px 0;
    }
    
    .flyer-specialties-title {
        font-size: 1.8rem;
    }
    
    .flyer-p4-brand-text h3 {
        font-size: 2.2rem;
    }
}

/* Responsive Rules */
@media (max-width: 992px) {
    .flyer-p3-top-grid {
        grid-template-columns: 1fr;
    }
    
    .flyer-p3-top-badge-column {
        padding: 20px;
    }
    
    .flyer-p3-bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .flyer-p3-middle-photo {
        height: 260px;
    }
    
    .flyer-p3-energy-photo {
        min-height: 240px;
        height: 240px;
    }
}

/* Responsive Rules */
@media (max-width: 992px) {
    .flyer-quote-box {
        max-width: 90%;
        padding: 24px 28px;
        clip-path: none;
        border-radius: 0 24px 24px 0;
    }
    
    .flyer-quote-text {
        font-size: 1.25rem;
    }
    
    .abhyanga-desc-text {
        font-size: 1.18rem;
        text-align: left;
    }
    
    .flyer-page2-bottom-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .flyer-shirodhara-wrapper {
        justify-content: center;
    }
    
    .flyer-shirodhara-frame {
        width: 100%;
        max-width: 420px;
        height: 280px;
    }
}

@media (max-width: 576px) {
    .abhyanga-desc-card {
        padding: 24px 20px;
    }
    
    .abhyanga-desc-text {
        font-size: 1.08rem;
    }
    
    .flyer-shirodhara-frame {
        height: 230px;
    }
}

/* -------------------------------------------------------------
 * Hero Section
 * ------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(12, 41, 30, 0.88) 0%, rgba(22, 64, 48, 0.82) 100%), url('../assets/images/hero.jpg') center/cover no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(207, 168, 86, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(207, 168, 86, 0.2);
    border: 1px solid var(--color-gold);
    border-radius: 30px;
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 3.8rem;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    font-weight: 300;
}

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

/* Leaf Animation Effect */
.leaf-float {
    position: absolute;
    color: rgba(207, 168, 86, 0.3);
    font-size: 2.5rem;
    animation: floatLeaf 8s ease-in-out infinite alternate;
    pointer-events: none;
}
.leaf-1 { top: 15%; right: 10%; animation-duration: 9s; }
.leaf-2 { bottom: 15%; right: 25%; animation-duration: 12s; font-size: 3.5rem; }

@keyframes floatLeaf {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(15deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* -------------------------------------------------------------
 * Animated Counter Stats Section
 * ------------------------------------------------------------- */
.counter-section {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.counter-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(207, 168, 86, 0.2);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.counter-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
}

.counter-icon {
    font-size: 2.2rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* -------------------------------------------------------------
 * Feature Highlights / Badges Strip
 * ------------------------------------------------------------- */
.features-strip {
    padding: 60px 0;
    position: relative;
    z-index: 10;
    background: var(--color-sand);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--color-white);
    padding: 36px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(12, 41, 30, 0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid rgba(207, 168, 86, 0.25);
    border-bottom: 4px solid var(--color-gold);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(12, 41, 30, 0.15);
    border-color: var(--color-gold);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(207, 168, 86, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.8rem;
    flex-shrink: 0;
    border: 1px solid rgba(207, 168, 86, 0.3);
}

.feature-info h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.feature-info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}


/* -------------------------------------------------------------
 * Section Layouts & Components
 * ------------------------------------------------------------- */
.section {
    padding: 100px 0;
}

.section-bg-sand {
    background-color: var(--color-sand-card);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* -------------------------------------------------------------
 * About Us Component
 * ------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-box:hover img {
    transform: scale(1.04);
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--color-primary);
    color: var(--color-sand);
    padding: 20px 28px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--color-gold);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-experience-badge span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.about-content h3 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* -------------------------------------------------------------
 * Treatments Filter Buttons & Grid
 * ------------------------------------------------------------- */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--color-primary);
    color: var(--color-sand);
    box-shadow: var(--shadow-soft);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.treatment-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.treatment-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

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

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

.treatment-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(12, 41, 30, 0.85);
    color: var(--color-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

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

.treatment-body h4 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.treatment-body p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.treatment-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(12, 41, 30, 0.08);
    padding-top: 16px;
}

.treatment-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* -------------------------------------------------------------
 * Benefits Section
 * ------------------------------------------------------------- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-item {
    background: var(--color-sand);
    border: 1px solid rgba(12, 41, 30, 0.08);
    padding: 36px 28px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.benefit-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background: var(--color-primary);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-soft);
}

.benefit-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* -------------------------------------------------------------
 * Contact & Location Section
 * ------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info-card {
    background: var(--color-primary);
    color: var(--color-sand);
    padding: 44px 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card h3 {
    color: var(--color-white);
    font-size: 2.2rem;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(207, 168, 86, 0.2);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-text h5 {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.contact-detail-text p, .contact-detail-text a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-form-card {
    background: var(--color-white);
    padding: 44px 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(12, 41, 30, 0.15);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--color-sand);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(207, 168, 86, 0.15);
}

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

/* -------------------------------------------------------------
 * Floating WhatsApp Action Button
 * ------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulseGlow 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* -------------------------------------------------------------
 * Modal Windows
 * ------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(12, 41, 30, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px 22px;
    position: relative;
    box-sizing: border-box;
    transform: translateY(30px) scale(0.95);
    transition: var(--transition);
    box-shadow: 0 20px 60px rgba(12, 41, 30, 0.4);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--color-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-dark);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--color-primary);
    color: white;
}

/* -------------------------------------------------------------
 * Footer (Spacious & Breathable Layout)
 * ------------------------------------------------------------- */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.78);
    padding: 95px 0 45px 0;
    border-top: 4px solid var(--color-gold);
    line-height: 1.8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
    gap: 55px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.45rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.9rem;
}

/* -------------------------------------------------------------
 * Multi-Directional Scroll Reveal Animations
 * ------------------------------------------------------------- */
.reveal, .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active, .reveal-up.active, .reveal-left.active, .reveal-right.active, .reveal-zoom.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* -------------------------------------------------------------
 * Responsive Design Breakpoints
 * ------------------------------------------------------------- */
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .features-grid, .treatments-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-sand);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .counter-grid, .features-grid, .treatments-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .top-header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal-content {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px 36px 20px;
        border-radius: 28px 28px 0 0;
        max-height: 86vh;
    }

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

    .hero-title { font-size: 2.3rem; }
    .section-title { font-size: 2.1rem; }
    .page-banner-title { font-size: 2.4rem; }

    body {
        padding-bottom: 75px;
    }

    .whatsapp-float {
        bottom: 85px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.8rem;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 66px;
        background: var(--color-primary);
        z-index: 10000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
        border-top: 1px solid rgba(207, 168, 86, 0.3);
        justify-content: space-around;
        align-items: center;
        padding: 6px 0;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.72rem;
        font-weight: 600;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 4px 8px;
        border-radius: 8px;
        transition: var(--transition);
        text-decoration: none;
    }

    .mobile-nav-item i {
        font-size: 1.2rem;
    }

    .mobile-nav-item.active, .mobile-nav-item:hover {
        color: var(--color-gold);
    }

    .mobile-nav-item.mobile-book-btn {
        color: var(--color-primary);
        background: var(--color-gold);
        padding: 6px 14px;
        border-radius: 20px;
        font-weight: 700;
    }
}

.mobile-bottom-nav {
    display: none;
}

/* -------------------------------------------------------------
 * Preloader Overlay with Logo & Gold Glowing Spinner
 * ------------------------------------------------------------- */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(207, 168, 86, 0.35);
}

.preloader-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-gold);
    border-right-color: rgba(207, 168, 86, 0.35);
    animation: rotateRing 1.3s linear infinite;
}

.preloader-logo {
    width: 110px;
    height: auto;
    object-fit: contain;
    animation: logoPulse 1.8s ease-in-out infinite alternate;
}

.preloader-text {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.preloader-progress-bar {
    width: 180px;
    height: 3px;
    background: rgba(207, 168, 86, 0.2);
    border-radius: 4px;
    margin: 12px auto 0 auto;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold) 0%, #ffffff 100%);
    animation: preloaderFill 1.6s ease-in-out forwards;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoPulse {
    0% { transform: scale(0.95); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 6px 14px rgba(207,168,86,0.5)); }
}

@keyframes preloaderFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* -------------------------------------------------------------
 * Enhanced About Page Flyer-Style Elements
 * ------------------------------------------------------------- */
.about-visual-stack {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-main {
    width: 84%;
    height: 430px;
    border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
    overflow: hidden;
    border: 6px solid #005c3c;
    box-shadow: 0 16px 40px rgba(12, 41, 30, 0.22);
    position: relative;
    z-index: 1;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-sub-circle {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
    background: #ffffff;
}

.about-img-sub-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-asca-floating-badge {
    position: absolute;
    bottom: 20px;
    right: 15px;
    background: #005c3c;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 20px;
    border: 2px solid var(--color-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-asca-floating-badge i {
    font-size: 1.8rem;
    color: var(--color-gold);
}

.about-asca-floating-badge .badge-text {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-quote-box {
    background: #fbfaf6;
    border-left: 5px solid #005c3c;
    border-radius: 0 16px 16px 0;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(12, 41, 30, 0.05);
}

.about-quote-box p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1a2a22;
    margin: 0 !important;
}

.about-quote-box .green-bold {
    color: #005c3c;
    font-weight: 800;
}

.about-showcase-section {
    background: linear-gradient(135deg, #092c1e 0%, #134631 100%);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-showcase-wrap {
    max-width: 1060px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.about-showcase-wrap:hover {
    transform: scale(1.005);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

.about-showcase-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.about-principle-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(11, 92, 60, 0.12);
    box-shadow: 0 10px 30px rgba(12, 41, 30, 0.06);
    padding: 36px 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.about-principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(12, 41, 30, 0.12);
    border-color: var(--color-gold);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(11, 92, 60, 0.1);
}

.about-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #005c3c;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-card-title {
    font-size: 1.6rem;
    color: #005c3c;
    margin: 0;
}

.about-item-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-item-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
}

.about-item-list li i {
    color: #005c3c;
    margin-top: 4px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-card-bottom-photo {
    margin-top: auto;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-card-bottom-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-specialties-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.about-specialties-mosaic {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(12, 41, 30, 0.15);
    border: 3px solid rgba(11, 92, 60, 0.15);
}

.about-specialties-mosaic img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .about-principles-grid {
        grid-template-columns: 1fr;
    }
    .about-specialties-layout {
        grid-template-columns: 1fr;
    }
    .about-visual-stack {
        min-height: 380px;
        margin-bottom: 30px;
    }
    .about-img-main {
        width: 100%;
        height: 320px;
    }
    .about-img-sub-circle {
        width: 130px;
        height: 130px;
    }
}

