/* ============================================================
   1. GLOBAL SYSTEM VARIABLES & THEME ENGINE
   ============================================================ */
:root {
    /* Brand Green Palette */
    --brand-green: #99BFA4;
    --brand-green-leaf: #B4D4BE;
    --brand-green-dark: #699375;
    --brand-green-deep: #3B5943;
    --brand-green-light: #EBF2ED;
    --brand-green-lighter: #F5F9F6;
    --brand-green-gradient: linear-gradient(135deg, var(--brand-green-leaf) 0%, var(--brand-green-dark) 100%);
    /* Classic & Accents Palette */
    --accent-gold: #D6C7A1;
    --accent-gold-light: #F4F1E6;
    --classic-navy: #1B2A38;
    --classic-gold: #C2A36B;
    --faint-green: #E8EFEA;
    --soft-green: #A3B8A8;
    --dark-green: #405747;
    --bg-surface: #F0F5F1;
    /* Slate Grey Palette */
    --slate-grey: #4A5550;
    --slate-light: #8E9994;
    /* Theme Typography & Backgrounds */
    --bg-main: #FCFDFB;
    --bg-surface: #F0F5F1;
    --text-main: #2E4233;
    --text-muted: #688570;
    --text-light: #9BB3A2;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    /* Border Radii & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-classic: 8px;
    --border-visible: #0F7D5A;
    --border-light-visible: #1A8A65;
    --border-subtle: #C5D9D0;
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 12px rgba(59, 89, 67, 0.05);
    --shadow-md: 0 12px 24px -4px rgba(59, 89, 67, 0.08);
    --shadow-lg: 0 20px 60px rgba(105, 147, 117, 0.15);
    --shadow-xl: 0 30px 80px rgba(105, 147, 117, 0.20);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   2. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes goldFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes goldSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes goldGlow {
    0% {
        box-shadow: 0 0 5px rgba(214, 199, 161, 0.4);
    }

    100% {
        box-shadow: 0 0 20px rgba(214, 199, 161, 0.8);
    }
}

/* ============================================================
   3. BASE RESETS & REVEAL ANIMATIONS
   ============================================================ */
body {
    font-family: var(--font-primary);
    color: var(--text-main);
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
   
}

.main-content {
    margin-top: 82px;
    min-height: calc(100vh - 400px);
}

.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    transition: var(--transition-smooth);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.95);
}

    .reveal-up.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active,
    .reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
        opacity: 1;
        transform: translate(0) scale(1);
    }

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

/* Slate Utilities */
.bg-slate {
    background-color: var(--slate-grey) !important;
    color: #FFFFFF !important;
}

.text-slate {
    color: var(--slate-grey) !important;
}

.border-slate {
    border-color: var(--slate-grey) !important;
}

.badge-slate {
    background-color: rgba(74, 85, 80, 0.1) !important;
    color: var(--slate-grey) !important;
    border: 1px solid rgba(74, 85, 80, 0.25) !important;
}

/* ============================================================
   4. NAVIGATION & HEADER
   ============================================================ */
.header {
    padding: 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

    .header.scrolled {
        background: rgba(252, 253, 251, 0.95);
        backdrop-filter: blur(12px);
        padding: 10px 0;
        box-shadow: var(--shadow-sm);
        border-bottom: 1px solid var(--brand-green-light);
    }

    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

    .logo:hover {
        opacity: 0.85;
    }

.logo-img-wrapper {
    width: 55px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 6px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

    .logo-img-wrapper img {
        height: 120%;
        object-fit: contain;
    }

.logo-text {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.02em;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-text {
    color: var(--brand-green-deep);
}

.logo-text small {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--brand-green-dark);
    text-transform: uppercase;
    margin-top: 2px;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .nav-menu a {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        transition: var(--transition-smooth);
        position: relative;
        letter-spacing: 0.02em;
    }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2.5px;
            background: var(--classic-gold, #D4A359) !important;
            transition: var(--transition-smooth);
            border-radius: 4px;
        }

        /* Active & Hover: Expand golden line to full width */
        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100% !important;
        }

        /* Active link text stays Gold */
        .nav-menu a.active {
            color: var(--classic-gold, #D4A359) !important;
        }

        .nav-menu a:hover {
            color: var(--classic-gold, #D4A359);
        }

/* Scrolled state: Keep active link text and underline golden */
.header.scrolled .nav-menu a {
    color: #fff;
}

    .header.scrolled .nav-menu a.active {
        color: #A6852D !important; /* Slightly deeper gold for white/light scrolled background */
    }

    .header.scrolled .nav-menu a:hover {
        color: #A6852D;
    }

        .header.scrolled .nav-menu a.active::after,
        .header.scrolled .nav-menu a:hover::after {
            background: #A6852D !important;
        }}

.nav-menu .btn-nav {
    background: var(--brand-green-dark);
    color: #0B3621;
    padding: 10px 28px;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(105, 147, 117, 0.25);
    letter-spacing: 0.04em;
}

    .nav-menu .btn-nav::after {
        display: none;
    }

    .nav-menu .btn-nav:hover {
        background: var(--brand-green-deep);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(59, 89, 67, 0.35);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    background: transparent;
    border: none;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 2.5px;
        background: var(--text-main);
        transition: var(--transition-smooth);
        border-radius: 4px;
    }

.header.scrolled .hamburger span {
    background: var(--brand-green-deep);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Header Transparency Override (Hero Page) */
#header.hero-visible {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
    padding: 12px 0;
}

    #header.hero-visible .logo-img-wrapper {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    #header.hero-visible .nav-menu .btn-nav {
        background: var(--classic-gold) !important;
    }

        #header.hero-visible .nav-menu .btn-nav:hover {
            background: #B8963A !important;
        }

    #header.hero-visible .nav-menu a::after {
        background: var(--classic-gold) !important;
    }







/* Background Icons Container */
.banner-bg-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

    /* Base style for all background icons */
    .banner-bg-icons i {
        position: absolute;
        color: #eab515; /* Gold accent tone */
        opacity: 0.07; /* Faded/subtle look over green */
        filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.1));
    }

    /* Icon 1: Tilted Diamond (Top Left) */
    .banner-bg-icons .icon-1 {
        position: absolute;
        top: 15%;
        left: 8%;
        font-size: 100px;
        animation: float-gentle 6s ease-in-out infinite;
    }

        /* 2. Inner icon handles rotation */
        .banner-bg-icons .icon-1 i {
            display: inline-block;
            transform: rotate(-45deg); /* Rotates 45 degrees counter-clockwise */
        }

    /* Icon 2: Tilted Gold Coins (Bottom Left) */
    .banner-bg-icons .icon-2 {
        position: absolute;
        top: 50%;
        left: 15%;
        font-size: 100px;
        animation: float-gentle 6s ease-in-out infinite;
    }

    /* Icon 3: Tilted Gold Bar / Cube (Top Right) */
    .banner-bg-icons .icon-3 {
        position: absolute;
        top: 15%;
        left: 80%;
        font-size: 100px;
        animation: float-gentle 6s ease-in-out infinite;
    }

    /* Icon 4: Tilted Pearl / Medal (Bottom Right) */
    .banner-bg-icons .icon-4 {
        position: absolute;
        top: 75%;
        left: 70%;
        font-size: 70px;
        animation: float-gentle 6s ease-in-out infinite;
    }

    .banner-bg-icons .icon-4 i {
        display: inline-block;
        transform: rotate(45deg); /* Rotates 45 degrees counter-clockwise */
    }

/* Mobile Responsiveness: Scale down or hide on very small screens */
@media (max-width: 768px) {
    .banner-bg-icons i {
        opacity: 0.05; /* Extra faint on small screens to avoid clutter */
    }

    .banner-bg-icons .icon-1 {
        font-size: 36px;
        left: 4%;
    }

    .banner-bg-icons .icon-3 {
        font-size: 40px;
        right: 4%;
    }

    .banner-bg-icons .icon-2,
    .banner-bg-icons .icon-4,
    .banner-bg-icons .icon-5 {
        display: none;
    }
}
/* Hero Banner Slider */
.hero-banner {
    margin-top: -100px;
    min-height: 210vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--classic-navy);
    position: relative;
}

.slider-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

    .slider-slide.active {
        opacity: 1;
        z-index: 1;
    }

    .slider-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: slowZoom 15s linear infinite alternate;
    }

.slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 40%, transparent 80%), radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
}

.slider-overlay-top-right {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 100%);
    pointer-events: none;
}

.slider-content {
    position: absolute;
    bottom: 8%;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 0 40px;
    max-width: 750px;
}

    .slider-content .brand-tag {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        background: rgba(0, 0, 0, 0.25);
        color: var(--classic-gold);
        padding: 6px 16px;
        border-radius: 4px;
        margin-bottom: 14px;
        border: 1px solid rgba(194, 163, 107, 0.3);
        backdrop-filter: blur(4px);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .slider-content h1 {
        font-size: clamp(32px, 5vw, 58px);
        font-weight: 700;
        line-height: 1.15;
        color: #FFFFFF;
        margin-bottom: 14px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

        .slider-content h1 .gold {
            color: var(--classic-gold);
            font-style: italic;
        }

    .slider-content p {
        font-size: clamp(15px, 1.6vw, 18px);
        color: rgba(255, 255, 255, 0.95);
        max-width: 560px;
        line-height: 1.7;
        margin-bottom: 28px;
        font-weight: 500;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    }

    .slider-content .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        position: relative;
        z-index: 10;
        pointer-events: auto;
    }

.slider-counter {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 10;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    background: rgba(0,0,0,0.3);
    padding: 4px 12px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.12);
}

    .slider-counter .current-slide {
        color: var(--classic-gold);
    }

.banner-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.8);
    transform-origin: center center;
    animation: float-gentle 4s ease-in-out infinite;
}

.banner-image {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.feature-img {
    max-width: 100%;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* ============================================================
   6. COMMON SECTION TYPOGRAPHY & BUTTONS
   ============================================================ */
.section-padding {
    padding: 30px ;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-green-dark);
    background: var(--brand-green-light);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-family: 'Georgia', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 14px;
}

    .section-title .highlight {
        color: var(--brand-green);
    }

.section-subtitle {
    font-size: clamp(15px, 2vw, 16px);
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 0;
}

.text-center .section-subtitle {
    margin: 0 auto;
}

.btn-primary-custom {
    display: inline-block;
    padding: 14px 36px;
    background: var(--brand-green-gradient);
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition-smooth);
    font-size: 15px;
    border: none;
    text-decoration: none;
    letter-spacing: 0.02em;
}

    .btn-primary-custom:hover {
        background: var(--brand-green-deep);
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(59, 89, 67, 0.3);
        color: #FFFFFF;
    }

.btn-gold-custom {
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent-gold);
    color: var(--brand-green-deep);
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition-smooth);
    font-size: 15px;
    border: none;
    text-decoration: none;
    letter-spacing: 0.02em;
}

    .btn-gold-custom:hover {
        background: var(--accent-gold-light);
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(214, 199, 161, 0.4);
        color: var(--brand-green-deep);
    }

.btn-gold {
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent-gold);
    color: var(--brand-green-deep);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
    font-size: 15px;
    border: none;
    text-decoration: none;
    animation: goldGlow 2s infinite alternate ease-in-out;
}

    .btn-gold:hover {
        background: var(--accent-gold-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(214, 199, 161, 0.3);
    }

.btn-solid-dark {
    display: inline-block;
    padding: 12px 30px;
    background: var(--dark-green);
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
    font-size: 14px;
    border: none;
    text-decoration: none;
    letter-spacing: 0.02em;
}

    .btn-solid-dark:hover {
        background: var(--classic-navy);
        color: #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(27,42,56,0.2);
    }

.btn-outline-light {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.4);
    text-decoration: none;
    letter-spacing: 0.02em;
}

    .btn-outline-light:hover {
        background: #FFFFFF;
        color: var(--classic-navy);
        border-color: #FFFFFF;
    }

/* CTA Faint Box */
.cta-box, .cta-box-faint {
    background: var(--brand-green-deep);
    border-radius: var(--radius-lg);
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 36, 26, 0.15);
    border-top: 5px solid var(--accent-gold);
}

    .cta-box-faint::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: rgba(255,255,255,0.03);
        border-radius: 50%;
    }

.cta-box-classic {
    background: url('/img/bg.jpg') center/cover no-repeat;
    border-radius: var(--radius-classic);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(27, 42, 56, 0.12);
    border-top: 5px solid var(--classic-gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

    .cta-box-classic::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(13, 42, 29, 0.85) 0%, rgba(5, 20, 14, 0.75) 100%);
        backdrop-filter: blur(1px);
        z-index: 1;
    }

    .cta-box-classic::after {
        content: '';
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(212, 163, 89, 0.25) 0%, transparent 70%);
        opacity: 0.8;
        z-index: 1;
        border-radius: 50%;
    }

/* ============================================================
   7. VERTICAL CARDS & TEAM MODULES
   ============================================================ */
.vertical-card-about {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    border: 1px solid var(--brand-green-light);
    transition: var(--transition-smooth);
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

    .vertical-card-about:hover {
        transform: translateY(-6px);
        border-color: var(--brand-green);
        box-shadow: var(--shadow-lg);
    }

    .vertical-card-about .logo-wrap {
        margin: 0 auto 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-md);
        padding: 12px;
        transition: var(--transition-smooth);
    }

    /*.vertical-card-about:hover .logo-wrap {
        transform: scale(1.05) rotate(-2deg);
        border-color: var(--brand-green);
    }*/

    .vertical-card-about .logo-wrap img {
        max-height: 150%;
        object-fit: contain;
    }

    .vertical-card-about h5 {
        font-size: clamp(17px, 2vw, 20px);
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 10px;
    }

    .vertical-card-about p {
        color: var(--text-muted);
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 0;
    }

.badge-about {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.badge-gold {
    background: rgba(214, 199, 161, 0.15);
    color: #B39E63;
    border: 1px solid rgba(214, 199, 161, 0.3);
}

.badge-green {
    background: var(--brand-green-light);
    color: var(--brand-green);
    border: 1px solid rgba(95, 139, 80, 0.2);
}

.badge-blue {
    background: rgba(26, 107, 138, 0.08);
    color: #1A6B8A;
    border: 1px solid rgba(26, 107, 138, 0.15);
}

.badge-orange {
    background: rgba(232, 93, 58, 0.08);
    color: #D15332;
    border: 1px solid rgba(232, 93, 58, 0.15);
}

/* Stat Boxes */
.stat-box {
    background: var(--bg-main);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--brand-green-light);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

    .stat-box:hover {
        transform: translateY(-4px);
        border-color: var(--brand-green);
        box-shadow: var(--shadow-md);
    }

    .stat-box .icon {
        font-size: 36px;
        margin-bottom: 12px;
        display: block;
    }

    .stat-box h5 {
        font-weight: 700;
        color: var(--text-main);
        font-size: clamp(16px, 1.8vw, 18px);
        margin-bottom: 6px;
    }

    .stat-box p {
        font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 0;
    }

/* Member Cards */
.member-card {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--brand-green-light);
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

    .member-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--brand-green);
        opacity: 0;
        transition: var(--transition-smooth);
    }

    .member-card:hover::before {
        opacity: 1;
    }

    .member-card:hover {
        transform: translateY(-6px);
        border-color: var(--brand-green);
        box-shadow: var(--shadow-lg);
    }

    .member-card .member-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 14px;
        border: 3px solid var(--brand-green-light);
        transition: var(--transition-smooth);
    }

    .member-card:hover .member-img {
        border-color: var(--brand-green);
        transform: scale(1.05);
    }

    .member-card .member-img.gold-border {
        border-color: var(--accent-gold);
    }

    .member-card h6 {
        font-size: 17px;
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 4px;
    }

    .member-card .designation {
        font-size: 13px;
        color: var(--brand-green);
        font-weight: 600;
        margin-bottom: 6px;
    }

        .member-card .designation.gold-text {
            color: #A6852D;
        }

    .member-card .small-text {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.6;
    }

/* Tabs */
.tab-btn {
    padding: 14px 12px;
    background: var(--bg-main);
    border: 1px solid var(--brand-green-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    font-weight: 600;
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--text-muted);
    width: 100%;
    box-shadow: var(--shadow-sm);
}

    .tab-btn:hover {
        border-color: var(--brand-green);
        color: var(--brand-green);
        transform: translateY(-2px);
    }

    .tab-btn.active {
        background: var(--brand-green);
        border-color: var(--brand-green);
        color: var(--bg-main);
        box-shadow: 0 8px 24px rgba(95, 139, 80, 0.25);
        transform: translateY(-2px);
    }

    .tab-btn i {
        display: block;
        font-size: 24px;
        margin-bottom: 4px;
    }

.member-panel {
    display: none;
}

    .member-panel.show {
        display: block;
        animation: panelFadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

/* Brand Ambassador */
.brand-ambassador-section {
    background: var(--bg-light, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.ambassador-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(194, 163, 107, 0.25);
}

.ambassador-img-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid #FFFFFF;
}

.ambassador-img {
    width: 100%;
    max-width: 420px;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ambassador-img-wrapper:hover .ambassador-img {
    transform: scale(1.03);
}

.badge-overlay {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-green-deep, #1B4D3E);
    color: var(--classic-gold, #C2A36B);
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: 1px solid var(--classic-gold, #C2A36B);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sub-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--classic-gold, #C2A36B);
    background: rgba(194, 163, 107, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
}

.text-gold {
    color: var(--classic-gold, #C2A36B);
}

.lead-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
}

.description-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

.achievement-grid {
    display: flex;
    gap: 16px;
}

.achievement-item {
    flex: 1;
    min-width: 120px;
    background: #FDFBF7;
    border: 1px solid rgba(194, 163, 107, 0.2);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-green-deep, #1B4D3E);
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #777777;
    text-transform: uppercase;
}

.ambassador-quote {
    background: rgba(27, 77, 62, 0.04);
    border-left: 3px solid var(--classic-gold, #C2A36B);
    padding: 12px 16px;
    font-size: 13px;
    font-style: italic;
    color: #444444;
    border-radius: 0 8px 8px 0;
    margin: 0;
}

.quote-icon {
    color: var(--classic-gold, #C2A36B);
}

.about-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.about-story-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain !important;
}

/* ============================================================
   8. CONTACT FORM, MAPS & LOCATIONS
   ============================================================ */
.contact-card {
    background: var(--bg-main);
    border-radius: var(--radius-classic);
    padding: 20px;
    border: 2px solid var(--border-subtle);
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: 0 4px 15px rgba(10, 36, 26, 0.02);
}

    .contact-card:hover {
        transform: translateY(-4px);
        border-color: var(--border-visible);
        box-shadow: 0 12px 30px rgba(59, 89, 67, 0.08);
    }

    .contact-card .icon-box {
        width: 48px;
        height: 48px;
        background: var(--bg-surface);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-green-dark);
        font-size: 18px;
        margin-bottom: 14px;
        border: 2px solid var(--border-subtle);
        transition: var(--transition-smooth);
    }

    .contact-card:hover .icon-box {
        background: var(--brand-green-light);
        border-color: var(--border-visible);
        transform: scale(1.1);
    }

    .contact-card h5 {
        font-weight: 700;
        color: var(--text-main);
        font-size: 17px;
        margin-bottom: 6px;
    }

    .contact-card p, .contact-card a {
        color: var(--text-success);
        font:bold;
        font-size: 14px;
        margin-bottom: 0;
        text-decoration: none;
        transition: var(--transition-smooth);
    }


        .contact-card a:hover {
            color: var(--brand-green-dark);
        }

.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-classic);
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
    background: var(--bg-main);
    font-size: 15px;
    color: var(--text-main);
}

    .form-control-custom:focus {
        outline: none;
        border-color: var(--border-visible);
        box-shadow: 0 0 0 4px rgba(15, 125, 90, 0.12);
    }

    .form-control-custom::placeholder {
        color: var(--text-light);
    }

.form-label-custom {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-main);
    margin-bottom: 6px;
    display: block;
}

.btn-submit {
    padding: 16px 40px;
    background: var(--brand-green-dark);
    color: #FFFFFF;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 8px 24px rgba(105, 147, 117, 0.25);
}

    .btn-submit:hover {
        background: var(--brand-green-deep);
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(10, 36, 26, 0.35);
    }

.region-btn {
    padding: 14px 18px;
    background: var(--bg-main);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-classic);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    width: 100%;
    box-shadow: 0 4px 12px rgba(10, 36, 26, 0.02);
}

    .region-btn:hover {
        border-color: var(--border-visible);
        color: var(--brand-green-dark);
        transform: translateX(4px);
    }

    .region-btn.active-tab {
        background: var(--brand-green-dark);
        border-color: var(--brand-green-dark);
        color: #FFFFFF;
        box-shadow: 0 4px 16px rgba(105, 147, 117, 0.25);
    }

    .region-btn i {
        margin-right: 8px;
        color: var(--accent-gold);
    }

.branch-panel {
    display: none;
    animation: fadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .branch-panel.show {
        display: block;
    }

.branch-card {
    background: var(--bg-main);
    border-radius: var(--radius-classic);
    border: 2px solid var(--border-subtle);
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(10, 36, 26, 0.02);
    height: 100%;
}

    .branch-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(59, 89, 67, 0.08);
        border-color: var(--border-visible);
    }

    .branch-card .branch-body {
        padding: 24px;
    }

        .branch-card .branch-body h5 {
            font-size: 19px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 10px;
        }

        .branch-card .branch-body .address {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

.badge-region {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--accent-gold-light);
    color: var(--brand-green-deep);
    border: 2px solid var(--accent-gold);
}

.map-wrapper {
    border-radius: var(--radius-classic);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 36, 26, 0.08);
    border: 2px solid var(--border-subtle);
    background: var(--bg-surface);
    width: 100%;
    /* Set a explicit height on the container */
    height: 400px;
}

    .map-wrapper iframe {
        width: 100%;
        height: 100% !important;
        min-height: 400px; /* Forces full frame visibility */
        border: 0;
        display: block;
    }

.branch-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .branch-stack .branch-card {
        margin-bottom: 0;
    }

.region-card-sticky {
    top: 100px;
    border-radius: var(--radius-classic);
    background: var(--bg-main);
    border: 2px solid var(--border-subtle) !important;
    box-shadow: 0 4px 20px rgba(10, 36, 26, 0.04);
}

    .region-card-sticky .border-bottom-custom {
        border-bottom: 2px solid var(--border-subtle);
    }

.form-container {
    background: var(--bg-surface);
    padding: 32px 24px;
    border-radius: var(--radius-classic);
    border: 2px solid var(--border-subtle);
    box-shadow: 0 4px 15px rgba(10, 36, 26, 0.02);
}

/* ============================================================
   9. HOME TABBED SHOWCASE & MARQUEE SCROLLER
   ============================================================ */
.verticals-section {
    padding: 30px 0;
    background-color: #faf9f5;
    font-family: 'Inter', system-ui, sans-serif;
}

.verticals-header {
    margin-bottom: 25px;
}

.verticals-main-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #0d2a1d;
    margin-bottom: 8px;
}

.header-line {
    width: 45px;
    height: 3px;
    background-color: #d4a359;
    margin: 0 auto;
    border-radius: 2px;
}

.verticals-tabs {
    border-bottom: 1px solid #e5e2d9;
    margin-bottom: 45px;
    gap: 15px;
}

    .verticals-tabs .nav-link {
        border: none;
        background: transparent;
        color: #6c757d;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 12px 20px;
        position: relative;
        transition: color 0.3s ease;
    }

        .verticals-tabs .nav-link:hover {
            color: #0d2a1d;
        }

        .verticals-tabs .nav-link.active {
            color: #0d2a1d;
            background: transparent;
        }

            .verticals-tabs .nav-link.active::after {
                content: '';
                position: absolute;
                bottom: -1px;
                left: 0;
                width: 100%;
                height: 2px;
                background-color: #d4a359;
            }

.vertical-img-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .vertical-img-card img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        display: block;
    }

.v-badge {
    display: inline-block;
    background-color: #fbe3be;
    color: #b0701a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.v-title {
    font-family: 'Georgia', serif;
    font-size: 34px;
    font-weight: 700;
    color: #0d2a1d;
    margin-bottom: 16px;
}

.v-desc {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.v-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

    .v-tags span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border: 1px solid #dcd8cc;
        border-radius: 20px;
        padding: 6px 14px;
        font-size: 12px;
        font-weight: 600;
        color: #4a4a4a;
        background: #ffffff;
    }

        .v-tags span i {
            color: #d4a359;
            font-size: 12px;
        }

.v-btn {
    display: inline-flex;
    align-items: center;
    background-color: #0d2a1d;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .v-btn:hover {
        background-color: #17422f;
        color: #ffffff;
        transform: translateY(-2px);
    }

/* Classic Glass Cards Section */
.classic-navy-section {
    position: relative;
    padding: 60px 0;
    color: #FFFFFF;
    background-image: linear-gradient(135deg, rgba(9, 44, 30, 0.92) 0%, rgba(14, 61, 42, 0.88) 50%, rgba(5, 20, 14, 0.95) 100%), url('/img/bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

    .classic-navy-section::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1;
        pointer-events: none;
    }

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #e5c158;
    padding: 28px 20px;
    border-radius: var(--radius-classic);
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
}

    .glass-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--classic-gold);
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: left;
    }

    .glass-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #e5c158;
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    }

        .glass-card:hover::before {
            transform: scaleX(1);
        }

.glass-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    background: rgba(212, 175, 55, 0.12);
    color: #e5c158;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 22px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.glass-card:hover .glass-icon {
    background: #e5c158;
    color: #092c1e;
    transform: translateY(-4px);
    box-shadow: 0 4px 15px #e5c158;
}

.section-heading-light {
    font-family: 'Georgia', serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    margin-top: 8px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background-color: #faf9f5;
}

.stat-card {
    background-color: #f7f6f0;
    border: 1px solid #eae8df;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

    .stat-card.active, .stat-card:hover {
        background-color: #0d2a1d;
        border-color: #0d2a1d;
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(13, 42, 29, 0.18);
    }

        .stat-card.active .stat-number, .stat-card:hover .stat-number {
            color: #c49a45;
        }

        .stat-card.active .stat-label {
            color: #e2e8f0;
        }

        .stat-card:hover .stat-label {
            color: #ffffff;
        }

/* Marquee Scroller */
.verticals-scroller-section {
    padding: 50px 0;
    background-color: #faf9f5;
    border-top: 1px solid #eae8df;
    border-bottom: 1px solid #eae8df;
    overflow: hidden;
}

.scroller-title-wrap {
    margin-bottom: 30px;
}

.scroller-badge {
    color: var(--dark-green, #0d2a1d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
}

.scroller-heading {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--classic-navy, #1b2a38);
    margin: 0;
}

.logo-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

    .logo-marquee-container::before, .logo-marquee-container::after {
        content: '';
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .logo-marquee-container::before {
        left: 0;
        background: linear-gradient(to right, #faf9f5 0%, rgba(250, 249, 245, 0) 100%);
    }

    .logo-marquee-container::after {
        right: 0;
        background: linear-gradient(to left, #faf9f5 0%, rgba(250, 249, 245, 0) 100%);
    }

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.logo-marquee-container:hover .logo-marquee-track {
    animation-play-state: paused;
}

.logo-card {
    background: #ffffff;
    border: 1px solid #eae8df;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

    .logo-card img {
        height: 70px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
        margin-bottom: 10px;
        transition: transform 0.3s ease;
    }

    .logo-card span {
        font-size: 13px;
        font-weight: 700;
        color: var(--dark-green, #0d2a1d);
        white-space: nowrap;
    }

    .logo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(13, 42, 29, 0.12);
        border-color: var(--classic-gold, #d4a359);
    }

        .logo-card:hover img {
            transform: scale(1.05);
        }

/* ============================================================
   10. PHOTO GALLERY & MODALS
   ============================================================ */
.gallery-card {
    background: var(--bg-main);
    border-radius: var(--radius-classic);
    overflow: hidden;
    border: 1px solid var(--brand-green-light);
    transition: var(--transition-smooth);
    cursor: pointer;
    height: 100%;
    box-shadow: 0 4px 15px rgba(10, 36, 26, 0.02);
    position: relative;
    display: flex;
    flex-direction: column;
}

    .gallery-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--brand-green-dark);
        opacity: 0;
        transition: var(--transition-smooth);
        z-index: 10;
    }

    .gallery-card:hover::before {
        opacity: 1;
    }

    .gallery-card:hover {
        transform: translateY(-8px);
        border-color: var(--brand-green);
        box-shadow: 0 15px 35px rgba(59, 89, 67, 0.08);
    }

    .gallery-card .img-container {
        height: 280px;
        overflow: hidden;
        background: var(--bg-surface);
        position: relative;
    }

        .gallery-card .img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

    .gallery-card:hover .img-container img {
        transform: scale(1.08);
    }

    .gallery-card .img-container .overlay {
        position: absolute;
        inset: 0;
        background: rgba(10, 36, 26, 0.6);
        backdrop-filter: blur(2px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition-smooth);
    }

    .gallery-card:hover .img-container .overlay {
        opacity: 1;
    }

    .gallery-card .img-container .overlay i {
        font-size: 42px;
        color: var(--bg-main);
        transform: scale(0.5);
        transition: var(--transition-smooth);
    }

    .gallery-card:hover .img-container .overlay i {
        transform: scale(1);
    }

    .gallery-card .card-body {
        padding: 24px;
        text-align: center;
        background: var(--bg-main);
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .gallery-card .card-body h5 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
        }

        .gallery-card .card-body small {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            color: var(--slate-grey);
            background: var(--bg-surface);
            padding: 6px 16px;
            border-radius: 4px;
            border: 1px solid var(--brand-green-light);
        }

/* Modal Custom Rules */
.modal-content-custom {
    background: var(--bg-main);
    border-radius: var(--radius-classic);
    border: none;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.modal-header-custom {
    background: var(--bg-surface);
    padding: 16px 24px;
    border-bottom: 1px solid var(--brand-green-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .modal-header-custom .modal-title {
        color: var(--text-main);
        font-weight: 700;
        font-size: 18px;
        margin: 0;
    }

    .modal-header-custom .btn-close {
        opacity: 0.5;
        transition: var(--transition-smooth);
    }

        .modal-header-custom .btn-close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }

.modal-body-custom {
    padding: 15px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item {
    text-align: center;
}

    .carousel-item img {
        max-height: 80vh;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        border-radius: var(--radius-classic);
        box-shadow: var(--shadow-sm);
        object-fit: contain;
        display: inline-block;
    }

.carousel-control-prev, .carousel-control-next {
    width: 10%;
    opacity: 1;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--brand-green-dark);
    border-radius: 4px;
    width: 48px;
    height: 48px;
    background-size: 45% 45%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

    .carousel-control-prev-icon:hover, .carousel-control-next-icon:hover {
        background-color: var(--accent-gold);
        transform: scale(1.1);
    }

/* Gold Specialized Modals & Feature Cards */
.gold-content-section {
    padding: 80px 0;
    background: #fcfdfb;
    position: relative;
}

    .gold-content-section .image-wrapper {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(10, 36, 26, 0.12);
    }

        .gold-content-section .image-wrapper img {
            width: 100%;
            height: 100%;
            min-height: 350px;
            max-height: 350px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .gold-content-section .image-wrapper:hover img {
            transform: scale(1.03);
        }

    .gold-content-section .gold-accent-border {
        position: absolute;
        bottom: -8px;
        right: -8px;
        width: 60%;
        height: 6px;
        background: linear-gradient(90deg, #d4af37, #aa771c);
        border-radius: 4px;
    }

.feature-cards-section {
    padding: 100px 0;
    position: relative;
    background-image: linear-gradient(135deg, rgba(9, 44, 30, 0.92) 0%, rgba(14, 61, 42, 0.88) 50%, rgba(5, 20, 14, 0.95) 100%), url('/img/bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

    .feature-cards-section .feature-card {
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 16px;
        padding: 32px 24px 28px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

        .feature-cards-section .feature-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
        }

.gold-verticals-section {
    padding: 80px 0;
    background: #fcfdfb;
}

    .gold-verticals-section .gold-vertical-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px 28px 28px;
        border: 1px solid #e6eeeB;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(10, 36, 26, 0.04);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

        .gold-verticals-section .gold-vertical-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(10, 36, 26, 0.1);
            border-color: #d4af37;
        }

.gold-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 36, 26, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

    .gold-modal-overlay.active {
        display: flex;
    }

.gold-modal-content {
    background: #ffffff;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    animation: goldSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid #e6eeeB;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 28px 0;
}

.gold-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3a28;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

    .gold-modal-close:hover {
        background: #e85d3a;
        color: #ffffff;
        border-color: #e85d3a;
        transform: rotate(90deg);
    }

/* Horizontal Cards Grid */
.gd-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.gd-card-wrapper {
    flex: 0 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
    box-sizing: border-box;
}

.gd-card-body-horizontal {
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: flex-start;
    height: 100%;
}

.gd-card-img-box {
    width: 160px;
    min-width: 160px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background: #faf9f5;
    border: 1px solid rgba(212, 175, 55, 0.15);
    flex-shrink: 0;
}

    .gd-card-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gd-card-info-right {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.gd-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0e3d2a;
    margin-bottom: 8px;
    line-height: 1.2;
}

.gd-card-feature-badge {
    font-size: 11px;
    font-weight: 700;
    color: #0e3d2a;
    background: linear-gradient(135deg, #f7e7a9 0%, #d4af37 100%);
    border: 1px solid #c59b27;
    border-radius: 20px;
    padding: 5px 12px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.2);
}

.gd-card-desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: #6b7f74;
    margin-bottom: 14px;
    flex-grow: 1;
}

.gd-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #0e3d2a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
}

/* ============================================================
   11. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   ============================================================ */

/* Large Desktops / Laptops (min-width: 992px) */
@media (min-width: 992px) {
    .section-padding {
        padding: 30px;
    }

    .form-container {
        padding: 48px;
    }

    .cta-box, .cta-box-faint {
        padding: 60px;
    }

    .vertical-card-about {
        padding: 40px 32px;
    }

        .vertical-card-about .logo-wrap {
            width: 100px;
            height: 100px;
            padding: 16px;
        }

    .member-card {
        padding: 32px 24px;
    }

        .member-card .member-img {
            width: 120px;
            height: 120px;
        }

    .stat-box {
        padding: 32px 24px;
    }

    .branch-card .branch-body {
        padding: 28px 24px;
    }

    .branch-stack {
        gap: 24px;
    }

    .map-wrapper {
        min-height: 390px;
    }
        .map-wrapper iframe {
            min-height: 390px;
        }

    .hero-banner {
        min-height: 110vh;
    }

    .pro-vertical-section {
        padding: 90px 0;
    }

    .main-v-image {
        height: 430px;
        max-height: 430px;
    }

    .cta-box-classic {
        padding: 50px 60px;
    }

    .classic-navy-section {
        padding: 90px 0;
    }

    .slider-content {
        padding: 0 60px;
        bottom: 12%;
        max-width: 720px;
    }

    .dropdown:hover .dropdown-menu-custom {
        display: block;
    }
}

/* Medium Devices & Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .nav-menu {
        gap: 24px;
    }

        .nav-menu a {
            font-size: 13px;
        }

        .nav-menu .btn-nav {
            padding: 8px 20px;
            font-size: 13px;
        }

    .footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .pro-vertical-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pro-vertical-section .row {
        flex-direction: column-reverse;
    }

    .overlap-image-wrapper {
        margin-bottom: 24px;
    }

        .overlap-image-wrapper::before {
            display: none;
        }

    .slider-content {
        padding: 0 24px;
        bottom: 8%;
    }

    .hero-banner {
        min-height: 95vh;
    }

    .slider-overlay-top-right {
        width: 80%;
        height: 100px;
    }

    .page-banner {
        padding: 100px 0 60px;
        min-height: 50vh;
    }

        .page-banner h1 {
            font-size: 36px;
        }

    .gold-content-section {
        padding: 60px 0;
    }

        .gold-content-section .content-wrapper {
            padding-left: 0;
            margin-top: 20px;
        }

        .gold-content-section .main-heading {
            font-size: 32px;
        }

        .gold-content-section .image-wrapper img {
            min-height: 280px;
            max-height: 400px;
        }

    .feature-cards-section {
        padding: 60px 0;
    }

        .feature-cards-section .feature-cards-header {
            margin-bottom: 40px;
        }

        .feature-cards-section .feature-card {
            padding: 28px 20px 24px;
        }

        .feature-cards-section .feature-card-icon {
            width: 60px;
            height: 60px;
            font-size: 26px;
        }

        .feature-cards-section .feature-card-title {
            font-size: 17px;
        }

        .feature-cards-section .feature-card-desc {
            font-size: 13px;
        }

        .feature-cards-section .feature-card-number {
            font-size: 40px;
        }

    .gold-verticals-section {
        padding: 60px 0;
    }

        .gold-verticals-section .gold-vertical-card {
            padding: 28px 20px 24px;
        }

        .gold-verticals-section .card-title {
            font-size: 18px;
        }

    .gold-modal-content {
        flex-direction: column;
        padding: 0;
        align-items: center;
    }

    .gold-modal-img-box {
        width: 160px;
        min-width: 160px;
        height: 160px;
        min-height: 160px;
        margin: 24px auto 0 auto;
        border: 2px solid rgba(212, 175, 55, 0.25);
        border-radius: 12px;
        padding: 8px;
    }

    .gold-modal-body {
        padding: 24px;
    }

        .gold-modal-body .modal-title {
            font-size: 24px;
        }

        .gold-modal-body .modal-details-grid {
            grid-template-columns: 1fr 1fr;
        }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .header .container {
        padding: 0 20px;
    }

    .header, .header.scrolled {
        padding: 12px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 80%;
        height: 100vh;
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        padding: 40px 32px;
        box-shadow: -10px 0 40px rgba(59, 89, 67, 0.08);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 8px;
        z-index: 999;
    }

        .nav-menu.open {
            right: 0;
        }

        .nav-menu a {
            color: var(--text-main) !important;
            font-size: 16px;
            padding: 12px 0;
            border-bottom: 1px solid var(--brand-green-light);
            width: 100%;
        }

            .nav-menu a::after {
                display: none;
            }

        .nav-menu .btn-nav {
            background: var(--brand-green-dark) !important;
            color: white !important;
            text-align: center;
            margin-top: 16px;
            border-bottom: none;
            padding: 14px 20px;
            border-radius: 100px;
        }

            .nav-menu .btn-nav:hover {
                background: var(--brand-green-deep) !important;
                transform: none;
            }

    body.menu-open {
        overflow: hidden;
    }

    .footer {
        padding: 56px 0 0;
    }

        .footer .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 32px;
        }

    .footer-brand p {
        margin: 0 auto 24px;
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info-list li {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

        .contact-info-list li div {
            align-items: center;
        }

    .footer ul li a:hover {
        transform: translateX(0);
        color: var(--accent-gold);
    }

    .page-banner {
        padding: 60px;
        margin-top: -65px;
        min-height: 40vh;
    }

        .page-banner h1 {
            font-size: 28px;
        }

        .page-banner p {
            font-size: 15px;
        }

    .banner-tag {
        font-size: 10px;
        padding: 6px 16px;
    }

    .page-banner::before, .page-banner::after {
        display: none;
    }

    .section-padding {
        padding: 50px 0;
    }

    .cta-box, .cta-box-faint {
        padding: 35px 24px;
    }

    .vertical-card-about {
        padding: 28px 18px;
    }

    .member-card {
        padding: 22px 16px;
    }

    .tab-btn {
        padding: 12px 10px;
    }

        .tab-btn i {
            font-size: 22px;
        }

    .about-story-img {
        height: 320px;
        max-width: 85%;
        margin: 0 auto;
    }

    .stat-box {
        padding: 24px 16px;
    }

    .form-container {
        padding: 28px 20px;
    }

    .branch-card .branch-body {
        padding: 20px 18px;
    }

    .region-card-sticky {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 20px;
    }

        .region-card-sticky .d-flex {
            flex-direction: row !important;
            flex-wrap: wrap;
            gap: 8px;
        }

            .region-card-sticky .d-flex .region-btn {
                flex: 1 1 auto;
                min-width: 100px;
                width: auto;
            }

    .branch-stack {
        gap: 18px;
    }

    .map-wrapper {
        min-height: 220px;
    }

        .map-wrapper iframe {
            min-height: 220px;
        }

    .social-links {
        justify-content: center !important;
    }

    .hero-banner {
        min-height: 80vh;
    }

    .slider-content {
        padding: 0 20px;
        bottom: 8%;
    }

        .slider-content h1 {
            font-size: 28px;
        }

        .slider-content p {
            font-size: 14px;
        }

    .slider-counter {
        bottom: 16px;
        right: 16px;
        font-size: 11px;
        padding: 4px 10px;
    }

    .pro-vertical-section {
        padding: 45px 0;
    }

    .v-content-title {
        font-size: 24px;
    }

    .v-content-desc {
        font-size: 13.5px;
    }

    .main-v-image {
        max-height: 250px;
    }

    .classic-navy-section {
        padding: 45px 0;
    }

    .glass-card {
        padding: 22px 14px;
    }

    .glass-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .cta-box-classic {
        padding: 28px 16px;
        text-align: center;
    }

        .cta-box-classic h2 {
            font-size: 22px !important;
        }

        .cta-box-classic p {
            font-size: 14px !important;
        }

    .btn-solid-dark, .btn-outline-light {
        padding: 10px 20px;
        font-size: 13px;
    }

    .slider-content .hero-actions {
        flex-direction: column;
        width: 100%;
    }

        .slider-content .hero-actions a {
            width: 100%;
            text-align: center;
        }

    .slider-overlay-top-right {
        width: 100%;
        height: 80px;
    }

    #header.hero-visible .nav-menu {
        background: #0B3621;
    }

        #header.hero-visible .nav-menu a {
            color: #FFFFFF !important;
        }

        #header.hero-visible .nav-menu .btn-nav {
            background: var(--classic-gold) !important;
            color: #ffffff;
        }

    .gallery-card .img-container {
        height: 220px;
    }

    .carousel-item img {
        max-height: 60vh;
    }

    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 36px;
        height: 36px;
    }

    .gold-content-section {
        padding: 40px 0;
    }

        .gold-content-section .row {
            flex-direction: column-reverse;
        }

        .gold-content-section .image-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin: 0 auto;
        }

            .gold-content-section .image-wrapper img {
                display: block;
                width: 100%;
                max-width: 480px;
                height: auto;
                min-height: 220px;
                max-height: 300px;
                margin: 0 auto;
                object-fit: cover;
            }

        .gold-content-section .gold-accent-border {
            left: 50%;
            right: auto;
            transform: translateX(-50%);
            width: 40%;
            height: 4px;
            bottom: -4px;
        }

        .gold-content-section .main-heading {
            font-size: 28px;
        }

        .gold-content-section .sub-heading {
            font-size: 15px;
        }

        .gold-content-section .description {
            font-size: 14px;
        }

        .gold-content-section .section-label {
            font-size: 10px;
            padding: 4px 14px;
        }

        .gold-content-section .feature-tags .tag {
            font-size: 11px;
            padding: 6px 14px;
        }

    .feature-cards-section {
        padding: 50px 0;
        background-attachment: scroll;
    }

        .feature-cards-section .feature-cards-header {
            margin-bottom: 30px;
        }

        .feature-cards-section .feature-cards-subtitle {
            font-size: 14px;
            padding: 0 20px;
        }

        .feature-cards-section .feature-card {
            padding: 24px 18px 20px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.08);
        }

        .feature-cards-section .feature-card-icon {
            width: 52px;
            height: 52px;
            font-size: 22px;
            margin-bottom: 14px;
        }

        .feature-cards-section .feature-card-title {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .feature-cards-section .feature-card-desc {
            font-size: 13px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        .feature-cards-section .feature-card-number {
            font-size: 34px;
            bottom: 6px;
            right: 12px;
        }

        .feature-cards-section .feature-card:hover {
            transform: translateY(-4px);
        }

        .feature-cards-section::before, .feature-cards-section::after {
            display: none;
        }

    .gold-verticals-section {
        padding: 50px 0;
    }

        .gold-verticals-section .gold-vertical-card {
            padding: 24px 16px 20px;
            border-radius: 12px;
        }

        .gold-verticals-section .plan-details {
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .gold-verticals-section .plan-value {
            font-size: 16px;
        }

        .gold-verticals-section .card-title {
            font-size: 17px;
        }

        .gold-verticals-section .btn-view-details {
            width: 100%;
            justify-content: center;
            padding: 12px 20px;
        }

    .gold-modal-overlay {
        padding: 12px !important;
        align-items: center;
    }

    .gold-modal-content {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 94vh !important;
        padding: 22px !important;
        border-radius: 20px !important;
        flex-direction: column;
        align-items: center;
    }

        .gold-modal-content > div:first-of-type {
            gap: 16px !important;
            padding-right: 55px !important;
            margin-bottom: 20px !important;
        }

    .gold-modal-img-box {
        width: 150px !important;
        min-width: 150px !important;
        height: 110px !important;
        min-height: 150px;
        margin: 20px auto 0 auto;
        border: 2px solid rgba(212, 175, 55, 0.25);
        border-radius: 10px;
        padding: 8px;
    }

    .gold-modal-body {
        padding: 20px 16px;
    }

        .gold-modal-body .modal-title {
            font-size: 22px;
        }

        .gold-modal-body .modal-details-grid {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .gold-modal-body .modal-detail-item .value {
            font-size: 17px;
        }

        .gold-modal-body .modal-cta {
            width: 100%;
            justify-content: center;
        }

    .gold-modal-close {
        width: 42px !important;
        height: 42px !important;
        top: 12px !important;
        right: 12px !important;
        font-size: 20px !important;
    }

    .gd-card-wrapper {
        flex: 0 1 100%;
        max-width: 100%;
    }

    .gd-card-body-horizontal {
        flex-direction: column;
    }

    .gd-card-img-box {
        width: 100%;
        height: 160px;
    }

    .reveal-left {
        width: 100%;
        display: flex;
        justify-content: center;
        transform: translateX(-40px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-left .image-wrapper {
            width: 100%;
            display: flex;
            justify-content: center;
            position: relative;
        }

            .reveal-left .image-wrapper img, .reveal-left img {
                display: block;
                width: 100%;
                max-width: 480px;
                height: auto;
                margin: 0 auto;
            }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu-custom {
        position: static;
        width: 100%;
        background: #14442e;
        box-shadow: none;
        border-radius: 0;
        margin-top: 8px;
    }

    .dropdown.open .dropdown-menu-custom {
        display: block;
    }

    .dropdown-menu-custom a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .page-banner .page-banner-text {
        color: #ffffff;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 100%;
    }
}

/* Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {
    .page-banner {
        padding: 110px 0 40px;
    }

        .page-banner h1 {
            font-size: 28px;
        }

        .page-banner p {
            font-size: 15px;
        }

    .section-padding {
        padding: 40px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .vertical-card-about {
        padding: 24px 16px;
    }

        .vertical-card-about .logo-wrap {
            width: 64px;
            height: 64px;
            padding: 8px;
        }

        .vertical-card-about h5 {
            font-size: 16px;
        }

    .stat-box {
        padding: 20px 12px;
    }

        .stat-box .icon {
            font-size: 30px;
        }

        .stat-box h5 {
            font-size: 15px;
        }

    .member-card {
        padding: 20px 14px;
    }

        .member-card .member-img {
            width: 80px;
            height: 80px;
        }

        .member-card h6 {
            font-size: 15px;
        }

    .tab-btn {
        padding: 10px 8px;
        font-size: 11px;
    }

        .tab-btn i {
            font-size: 20px;
        }

    .cta-box, .cta-box-faint {
        padding: 30px 20px;
        text-align: center;
    }

        .cta-box h2, .cta-box-faint h2 {
            font-size: 24px !important;
        }

    .btn-cta, .btn-gold {
        padding: 12px 28px !important;
        font-size: 14px !important;
    }

    .section-tag {
        font-size: 10px;
        padding: 4px 14px;
    }

    .badge-about {
        font-size: 9px !important;
        padding: 3px 12px !important;
    }

    .about-story-img {
        height: 250px !important;
    }

    .form-container {
        padding: 20px 16px;
    }

    .branch-card .branch-body {
        padding: 18px 16px;
    }

        .branch-card .branch-body h5 {
            font-size: 17px;
        }

        .branch-card .branch-body .address {
            font-size: 14px;
        }

    .branch-stack {
        gap: 16px;
    }

    .map-wrapper {
        min-height: 180px;
    }

        .map-wrapper iframe {
            min-height: 180px;
        }

    .region-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .contact-card {
        padding: 16px;
    }

        .contact-card .icon-box {
            width: 42px;
            height: 42px;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .contact-card h5 {
            font-size: 16px;
        }

        .contact-card p, .contact-card a {
            font-size: 13px;
            text-align: center !important;
        }

    .btn-submit {
        padding: 14px 30px;
        font-size: 14px;
    }

    .form-control-custom {
        font-size: 14px;
        padding: 10px 14px;
    }

    .badge-region {
        font-size: 9px;
        padding: 2px 8px;
    }

    .social-links a {
        width: 40px !important;
        height: 40px !important;
        font-size: 14px !important;
    }

    .gd-card-body-horizontal {
        flex-direction: column;
        align-items: stretch;
    }

    .gd-card-img-box {
        width: 100%;
        height: 140px;
    }

    .gold-modal-overlay {
        padding: 8px !important;
        align-items: center !important;
    }

    .gold-modal-content {
        width: 100% !important;
        max-height: 96vh !important;
        padding: 18px !important;
        border-radius: 18px !important;
    }

        .gold-modal-content > div:first-of-type {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            gap: 14px !important;
            padding-right: 0 !important;
            margin-bottom: 20px !important;
            text-align: center !important;
        }

    .gold-modal-img-box {
        width: 100% !important;
        max-width: 285px !important;
        height: 180px !important;
        flex: none !important;
        margin: 0 auto !important;
        padding: 8px !important;
    }

        .gold-modal-img-box img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            border-radius: 10px !important;
            display: block !important;
        }

    .gold-modal-content > div:first-of-type > div:last-child {
        width: 100% !important;
        text-align: center !important;
    }

    .gold-modal-content h2 {
        font-size: 25px !important;
        line-height: 1.2 !important;
        margin-bottom: 7px !important;
    }

        .gold-modal-content h2 + p {
            font-size: 14px !important;
            line-height: 1.45 !important;
        }

    .gold-modal-close {
        width: 38px !important;
        height: 38px !important;
        top: 10px !important;
        right: 10px !important;
        font-size: 17px !important;
    }

    .modal-description, .modal-description p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .gold-modal-content a[href*="wa.me"] {
        width: 100% !important;
        min-width: 0 !important;
        padding: 12px 15px !important;
        font-size: 15px !important;
        border-radius: 9px !important;
    }
}

/* Extra Small Phones (max-width: 480px) */
@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }

        .header.scrolled {
            padding: 8px 0;
        }

    .logo-img-wrapper {
        width: 36px;
        height: 36px;
        padding: 4px;
    }

    .logo-text {
        font-size: 14px;
    }

        .logo-text small {
            font-size: 8px;
        }

    .nav-menu {
        width: 280px;
        padding: 30px 24px;
    }

    .main-content {
        margin-top: 60px;
    }

    .footer {
        padding: 40px 0 0;
    }

        .footer .footer-grid {
            gap: 24px;
            padding-bottom: 24px;
        }

    .footer-brand .logo-text {
        font-size: 20px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 16px 0;
    }

    .hero-banner {
        min-height: 70vh;
    }

    .slider-content {
        bottom: 6%;
        padding: 0 16px;
    }

        .slider-content h1 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .slider-content p {
            font-size: 13px;
            margin-bottom: 16px;
        }

        .slider-content .brand-tag {
            font-size: 9px;
            padding: 3px 10px;
            margin-bottom: 8px;
        }

    .slider-counter {
        bottom: 10px;
        right: 10px;
        font-size: 10px;
        padding: 2px 8px;
    }

    .btn-solid-dark, .btn-outline-light {
        padding: 8px 16px;
        font-size: 12px;
    }

    .pro-vertical-section {
        padding: 35px 0;
    }

    .main-v-image {
        max-height: 200px;
    }

    .slider-overlay-top-right {
        height: 70px;
    }

    .page-banner {
        padding: 70px 0 30px;
        min-height: 35vh;
        margin-top: -55px;
    }

        .page-banner h1 {
            font-size: 24px;
        }

        .page-banner p {
            font-size: 14px;
        }

    .gallery-card .img-container {
        height: 180px;
    }

    .carousel-item img {
        max-height: 50vh;
    }

    .gold-content-section {
        padding: 30px 0;
    }

        .gold-content-section .image-wrapper img {
            min-height: 180px;
            max-height: 250px;
            border-radius: 12px;
        }

        .gold-content-section .main-heading {
            font-size: 24px;
        }

        .gold-content-section .sub-heading {
            font-size: 13px;
            margin-bottom: 14px;
        }

        .gold-content-section .description {
            font-size: 13px;
            line-height: 1.7;
        }

            .gold-content-section .description p {
                margin-bottom: 12px;
            }

        .gold-content-section .section-label {
            font-size: 9px;
            padding: 3px 12px;
            letter-spacing: 1px;
        }

        .gold-content-section .feature-tags {
            gap: 8px;
            margin-top: 20px;
        }

            .gold-content-section .feature-tags .tag {
                font-size: 10px;
                padding: 4px 12px;
                gap: 6px;
            }

                .gold-content-section .feature-tags .tag i {
                    font-size: 11px;
                }

        .gold-content-section .gold-accent-border {
            display: none;
        }

    .feature-cards-section {
        padding: 40px 0;
    }

        .feature-cards-section .feature-cards-header {
            margin-bottom: 24px;
        }

        .feature-cards-section .feature-badge {
            font-size: 9px;
            padding: 4px 14px;
            letter-spacing: 2px;
        }

        .feature-cards-section .feature-cards-title {
            font-size: 24px;
        }

        .feature-cards-section .feature-cards-subtitle {
            font-size: 13px;
            padding: 0 10px;
        }

        .feature-cards-section .feature-card {
            padding: 18px 14px 16px;
            border-radius: 10px;
        }

        .feature-cards-section .feature-card-icon {
            width: 44px;
            height: 44px;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .feature-cards-section .feature-card-title {
            font-size: 14px;
            margin-bottom: 6px;
        }

        .feature-cards-section .feature-card-desc {
            font-size: 12px;
            line-height: 1.5;
        }

        .feature-cards-section .feature-card-number {
            font-size: 28px;
            bottom: 4px;
            right: 10px;
        }

        .feature-cards-section .header-line {
            width: 36px;
            height: 2px;
        }

    .gold-verticals-section {
        padding: 40px 0;
    }

        .gold-verticals-section .gold-vertical-card {
            padding: 20px 14px 18px;
            border-radius: 10px;
        }

        .gold-verticals-section .plan-details {
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .gold-verticals-section .plan-item {
            padding: 10px 12px;
        }

        .gold-verticals-section .plan-value {
            font-size: 15px;
        }

        .gold-verticals-section .plan-label {
            font-size: 9px;
        }

        .gold-verticals-section .card-title {
            font-size: 16px;
            margin-bottom: 14px;
        }

        .gold-verticals-section .card-description {
            font-size: 13px;
        }

        .gold-verticals-section .section-badge {
            font-size: 9px;
            padding: 4px 14px;
        }

        .gold-verticals-section .section-main-title {
            font-size: 24px;
        }

        .gold-verticals-section .section-sub-desc {
            font-size: 13px;
            padding: 0 10px;
        }

    .gold-modal-content {
        padding: 0;
        border-radius: 10px;
        align-items: center;
    }

    .gold-modal-img-box {
        width: 130px;
        min-width: 130px;
        height: 130px;
        min-height: 130px;
        margin: 16px auto 0 auto;
        border: 2px solid rgba(212, 175, 55, 0.25);
        border-radius: 8px;
        padding: 6px;
    }

    .gold-modal-body {
        padding: 16px 12px;
    }

        .gold-modal-body .modal-title {
            font-size: 20px;
        }

        .gold-modal-body .modal-details-grid {
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .gold-modal-body .modal-detail-item {
            padding: 12px;
        }

            .gold-modal-body .modal-detail-item .value {
                font-size: 15px;
            }

        .gold-modal-body .modal-description {
            font-size: 14px;
        }
}

/* Micro Devices (max-width: 380px) */
@media (max-width: 380px) {
    .gold-modal-content {
        padding: 15px !important;
        border-radius: 16px !important;
    }

    .gold-modal-img-box {
        max-width: 290px !important;
        height: 110px !important;
    }

    .gold-modal-content h2 {
        font-size: 22px !important;
    }

        .gold-modal-content h2 + p {
            font-size: 13px !important;
        }

    .modal-description, .modal-description p {
        font-size: 13.5px !important;
    }

    .gold-modal-close {
        width: 35px !important;
        height: 35px !important;
        font-size: 15px !important;
    }
}
/* Tag Fixes - Prevents stretching into vertical pillars */
.banner-tag, .section-tag {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    max-width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: nowrap !important;
    line-height: normal !important;
}

.banner-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 24px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-green-dark);
    background: var(--brand-green-light);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid var(--border-subtle);
}

/* Ensure Row Elements Wrap Properly */
.page-banner .row,
.section-padding .row {
    display: flex;
    flex-wrap: wrap;
}

/* Social Buttons Alignment */
.social-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-surface);
    border-radius: var(--radius-classic);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green-dark);
    text-decoration: none;
    border: 2px solid var(--border-subtle);
}

.green-textured-bg {
    background-image: linear-gradient(135deg, rgba(9, 44, 30, 0.94) 0%, rgba(14, 61, 42, 0.88) 50%, rgba(5, 20, 14, 0.96) 100%), url('/img/bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

    /* Ambient Circle Overlays */
    .green-textured-bg::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 50%;
        pointer-events: none;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .green-textured-bg::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -5%;
        width: 350px;
        height: 350px;
        background: linear-gradient(135deg, rgba(212, 163, 89, 0.08) 0%, transparent 100%);
        border-radius: 50%;
        pointer-events: none;
    }

/* Header & Tag Typography */
.section-tag-gold {
    display: inline-block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 24px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title-light {
    font-family: 'Georgia', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
    margin-top: 10px;
    margin-bottom: 12px;
}

    .section-title-light .gold-text {
        color: #D4A359 !important; /* Solid warm gold accent */
    }

.section-subtitle-light {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(15px, 1.8vw, 16px);
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    line-height: 1.6;
}

/* Glassmorphism Stat Cards for Dark Green Background */
.stat-box-glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 28px 18px;
    text-align: center;
    border: 1px solid rgba(212, 163, 89, 0.25); /* Subtle gold border */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    height: 100%;
}

    .stat-box-glass:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.12);
        border-color: #D4A359;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .stat-box-glass .icon-gold {
        font-size: 32px;
        color: #D4A359;
        margin-bottom: 14px;
        display: block;
        transition: transform 0.3s ease;
    }

    .stat-box-glass:hover .icon-gold {
        transform: scale(1.1);
    }

    .stat-box-glass h5 {
        font-family: 'Inter', system-ui, sans-serif;
        font-weight: 700;
        color: #FFFFFF;
        font-size: clamp(15px, 1.8vw, 18px);
        margin-bottom: 8px;
    }

    .stat-box-glass p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.78);
        margin-bottom: 0;
        line-height: 1.5;
        text-align: center;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .green-textured-bg {
        background-attachment: scroll;
    }

    .stat-box-glass {
        padding: 20px 12px;
    }

        .stat-box-glass .icon-gold {
            font-size: 26px;
            margin-bottom: 10px;
        }
}

/* ============================================================
   GOLD & DIAMONDS CONTENT SECTION STYLING
   ============================================================ */

.gold-content-section {
    padding: 90px 0;
    background: #FCFDFB; /* Crisp light organic background */
    position: relative;
    overflow: hidden;
}

/* ===== LEFT COLUMN: IMAGE CONTAINER & ACCENTS ===== */
.gold-img-container {
    position: relative;
    padding: 10px;
}

.gold-content-section .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 50px rgba(10, 36, 26, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .gold-content-section .image-wrapper:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(10, 36, 26, 0.15);
    }

.gold-content-section .gold-feature-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gold-content-section .image-wrapper:hover .gold-feature-img {
    transform: scale(1.04);
}

/* Gold Gradient Accent Border */
.gold-content-section .gold-accent-border {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, #D4AF37 0%, #AA771C 50%, #D4AF37 100%);
}

/* ===== RIGHT COLUMN: TEXT CONTENT ===== */
.gold-content-section .content-wrapper {
    padding-left: 15px;
}

/* Section Label Badge */
.gold-content-section .section-label {
    display: inline-block;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A6852D;
    background: #F5F2E9;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 8px rgba(166, 133, 45, 0.06);
}

/* Main Heading */
.gold-content-section .main-heading {
    font-family: 'Georgia', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: #0A241A;
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

    .gold-content-section .main-heading .highlight {
        background: linear-gradient(135deg, #D4AF37 30%, #AA771C 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

/* Sub Heading */
.gold-content-section .sub-heading {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 22px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Description Text */
.gold-content-section .description {
    color: #526B60;
    font-size: 15px;
    line-height: 1.8;
}

    .gold-content-section .description p {
        margin-bottom: 16px;
        text-align: justify;
    }

        .gold-content-section .description p:last-child {
            margin-bottom: 0;
        }

    .gold-content-section .description strong {
        color: #0A241A;
        font-weight: 700;
    }

/* Feature Tags / Highlights */
.gold-content-section .feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

    .gold-content-section .feature-tags .tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #F8FAF9;
        border: 1px solid rgba(212, 175, 55, 0.25);
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        color: #0A241A;
        transition: all 0.3s ease;
        box-shadow: 0 2px 6px rgba(10, 36, 26, 0.03);
    }

        .gold-content-section .feature-tags .tag i {
            color: #D4AF37;
            font-size: 13px;
        }

        .gold-content-section .feature-tags .tag:hover {
            background: #FCF8F0;
            border-color: #D4AF37;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(212, 175, 55, 0.15);
        }

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 992px) {
    .gold-content-section {
        padding: 60px 0;
    }

        .gold-content-section .content-wrapper {
            padding-left: 0;
            margin-top: 20px;
        }

        .gold-content-section .gold-feature-img {
            max-height: 380px;
        }
}

@media (max-width: 576px) {
    .gold-content-section {
        padding: 45px 0;
    }

        .gold-content-section .gold-feature-img {
            max-height: 280px;
        }

        .gold-content-section .section-label {
            font-size: 10px;
            padding: 5px 14px;
        }

        .gold-content-section .feature-tags .tag {
            font-size: 11px;
            padding: 6px 14px;
        }
}

/* ============================================================
   SECTION HEADER - TYPOGRAPHY & GOLD STYLING
   ============================================================ */

.section-header {
    margin-bottom: 45px;
    position: relative;
}

/* Badge Tag Pill */
.section-badge-luxury {
    display: inline-block;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #A6852D;
    background: #F5F2E9;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 2px 8px rgba(166, 133, 45, 0.06);
}

/* Main Heading Title */
.section-main-title-serif {
    font-family: 'Georgia', 'Times New Roman', serif !important;
    font-size: clamp(30px, 4vw, 44px) !important;
    font-weight: 800 !important;
    color: #0A241A !important; /* Deep forest green */
    line-height: 1.2 !important;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

    /* Gold Text Highlight */
    .section-main-title-serif .gold-highlight-solid {
        color: #D4A359 !important; /* Solid warm gold */
        font-family: 'Georgia', 'Times New Roman', serif !important;
        font-weight: 800 !important;
        display: inline-block;
    }

/* Sub-description Paragraph */
.section-sub-desc-clean {
    font-family: var(--font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(15px, 1.8vw, 17px) !important;
    font-weight: 400 !important;
    color: #526B60 !important;
    max-width: 620px;
    margin: 0 auto 16px auto !important;
    line-height: 1.6;
    text-align: center !important;
}

/* Centered Gold Divider Line */
.title-line-gold {
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37 0%, #AA771C 100%);
    margin: 0 auto;
    border-radius: 3px;
}

/* Responsive Scaling */
@media (max-width: 576px) {
    .section-badge-luxury {
        font-size: 10px;
        padding: 5px 16px;
        letter-spacing: 2px;
    }

    .title-line-gold {
        width: 40px;
        height: 2px;
    }
}

/* ============================================================
   VERTICALS DIRECTORY & ENLARGED MODAL
   ============================================================ */

/* Section Tag */
.section-tag-global {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-green-dark);
    background: var(--brand-green-light);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid var(--border-subtle);
}

/* Sticky Filter Navigation Bar */
.filter-section {
    position: sticky;
    top: 70px;
    z-index: 95;
    background: var(--bg-main);
    padding: 12px 0;
    transition: var(--transition-smooth);
    border-radius: var(--radius-md);
}

    .filter-section.scrolled {
        background: rgba(252, 253, 251, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-sm);
        border-bottom: 1px solid var(--border-subtle);
    }

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

    .filter-btn .icon {
        font-size: 12px;
        color: var(--classic-gold);
    }

    .filter-btn .count {
        font-size: 11px;
        font-weight: 700;
        background: rgba(0, 0, 0, 0.05);
        color: var(--text-main);
        padding: 2px 7px;
        border-radius: 12px;
    }

    .filter-btn:hover {
        color: var(--brand-green-deep);
        border-color: var(--border-visible);
        transform: translateY(-2px);
    }

    .filter-btn.active {
        background: var(--brand-green-deep);
        color: #FFFFFF;
        border-color: var(--brand-green-deep);
        box-shadow: 0 4px 14px rgba(10, 36, 26, 0.2);
    }

        .filter-btn.active .icon,
        .filter-btn.active .count {
            color: var(--classic-gold);
            background: rgba(255, 255, 255, 0.12);
        }

/* Staggered Vertical Card Rows */
.vertical-row-card {
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

    .vertical-row-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--classic-gold);
    }

/* Card Image Box */
.row-img-col {
    width: 100%;
    height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .row-img-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .row-img-col:hover img {
        transform: scale(1.03);
    }

/* Card Content Area */
.row-content-col h3 {
    font-family: 'Georgia', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--text-main);
    margin: 8px 0 12px 0;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--brand-green-light);
    color: var(--brand-green-dark);
    border: 1px solid var(--border-subtle);
}

    .category-pill i {
        color: var(--classic-gold);
    }

.description-snippet {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Key Feature Badge Inside Card */
.key-feature-badge {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.feature-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(214, 199, 161, 0.2);
    color: #A6852D;
    font-size: 13px;
}

.feature-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

/* Action Button Inside Card */
.badge-btn-explore {
    border: none;
    background: var(--brand-green-deep);
    color: #FFFFFF;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

    .badge-btn-explore:hover {
        background: var(--brand-green-dark);
        color: #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(10, 36, 26, 0.2);
    }

/* Empty State Message */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border-subtle);
}

    .empty-state i {
        font-size: 42px;
        color: var(--brand-green-dark);
        margin-bottom: 12px;
    }

/* ============================================================
   ENLARGED DETAIL MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 36, 26, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 16px;
}

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.modal-content-detail {
    background: #FFFFFF;
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow-y: auto;
    padding: 28px;
    transform: translateY(20px) scale(0.97);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-subtle);
}

.modal-overlay.active .modal-content-detail {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: none;
    background: var(--bg-surface);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

    .modal-close-btn:hover {
        background: #E85D3A;
        color: #FFFFFF;
        transform: rotate(90deg);
    }

/* Modal Header Header */
.modal-top-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 20px;
}

.compact-img-box {
    width: 75px;
    height: 75px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-surface);
    flex-shrink: 0;
    border: 1px solid var(--border-subtle);
}

    .compact-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.modal-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-green-dark);
    background: var(--brand-green-light);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 4px;
}

.modal-main-title {
    font-family: 'Georgia', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

/* Modal Card Blocks */
.modal-reading-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.content-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.card-heading {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.text-brand {
    color: var(--brand-green-dark);
}

.text-gold {
    color: #A6852D;
}

.description-full-text,
.content-text-block {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-main);
}

.text-muted-custom {
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

.content-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Modal WhatsApp Action Button */
.modal-action-footer {
    margin-top: 20px;
}

.btn-modal-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #25D366;
    color: #FFFFFF;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-smooth);
}

    .btn-modal-action:hover {
        background: #1EBC57;
        color: #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    }

/* Responsive Overrides */
@media (max-width: 768px) {
    .vertical-row-card {
        padding: 18px;
    }

    .row-img-col {
        height: 200px;
    }

    .content-grid-two {
        grid-template-columns: 1fr;
    }

    .badge-btn-explore {
        width: 100% !important;
    }

    .modal-top-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ============================================================
   INVESTMENT PLAN CARDS (IMAGE 1 DESIGN)
   ============================================================ */

.plans-grid-wrapper {
    margin-top: 30px;
    margin-bottom: 50px;
}

.plan-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 18px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #ECEEEB;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

    .plan-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(10, 36, 26, 0.08);
        border-color: #D4AF37;
    }

/* Left Image Box */
.plan-card-img {
    width: 170px;
    min-width: 170px;
    border-radius: 14px;
    overflow: hidden;
    background: #F8FAF9;
    cursor: pointer;
    flex-shrink: 0;
}

    .plan-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

.plan-card:hover .plan-card-img img {
    transform: scale(1.05);
}

/* Right Content Box */
.plan-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.plan-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 800;
    color: #0E3D2A; /* Deep Forest Green */
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

/* Golden Highlight Pill */
.plan-gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E8BE53; /* Warm golden-yellow */
    color: #1A382A;
    padding: 6px 12px;
    border-radius: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    width: fit-content;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.2);
}

    .plan-gold-badge i {
        font-size: 11px;
        color: #1A382A;
    }

/* Snippet Description */
.plan-desc-snippet {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12.5px;
    color: #556B60;
    line-height: 1.5;
    margin-bottom: 14px;
    flex-grow: 1;
}

/* Dark Green Full-Width Button */
.btn-plan-details {
    width: 100%;
    background: #0E3D2A;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-plan-details:hover {
        background: #17543B;
        color: #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(14, 61, 42, 0.25);
    }

    .btn-plan-details i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .btn-plan-details:hover i {
        transform: translateX(4px);
    }

/* ============================================================
   DETAIL POP-UP MODAL (IMAGE 2 DESIGN)
   ============================================================ */

.plan-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 24, 18, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .plan-modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.plan-modal-card {
    background: #FFFFFF;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    border-radius: 24px;
    padding: 32px 36px 28px 36px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.plan-modal-overlay.active .plan-modal-card {
    transform: translateY(0) scale(1);
}

/* Close Icon Button */
.plan-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E8ECE9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1A382A;
    font-size: 16px;
    transition: all 0.25s ease;
    z-index: 10;
}

    .plan-modal-close:hover {
        background: #E85D3A;
        border-color: #E85D3A;
        color: #FFFFFF;
        transform: rotate(90deg);
    }

/* Modal Header: Image Thumbnail + Title */
.modal-header-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
    padding-right: 40px; /* Space for close button */
}

.modal-thumb-box {
    width: 160px;
    height: 105px;
    border-radius: 12px;
    border: 2px solid #E8D9AE;
    overflow: hidden;
    background: #FDFBF7;
    flex-shrink: 0;
    padding: 4px;
}

    .modal-thumb-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }

.modal-header-info {
    flex-grow: 1;
}

.modal-badge-category {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0E3D2A;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

    .modal-badge-category i {
        color: #C59B27;
        font-size: 12px;
    }

.modal-title-serif {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 800;
    color: #0E3D2A;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.modal-subtitle {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13.5px;
    color: #526B60;
    margin: 0;
    line-height: 1.4;
}

/* Modal Gold Banner Box */
.modal-gold-bar {
    background: #FEF6DE;
    border: 1px solid #F3E0A2;
    border-left: 4px solid #C59B27;
    border-radius: 8px;
    padding: 10px 16px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1A382A;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

    .modal-gold-bar i {
        color: #C59B27;
        font-size: 15px;
    }

/* Modal Content & List Items */
.modal-body-details {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14.5px;
    line-height: 1.8;
    color: #1A382A;
    margin-bottom: 28px;
}

    .modal-body-details ul {
        list-style-type: disc;
        padding-left: 20px;
        margin: 0 0 16px 0;
    }

    .modal-body-details p {
        margin-bottom: 8px;
    }

/* Green WhatsApp Button */
.btn-whatsapp-enquire {
    background: #25D366;
    color: #FFFFFF !important;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    border: none;
}

    .btn-whatsapp-enquire:hover {
        background: #1EBE5D;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
    }

    .btn-whatsapp-enquire i {
        font-size: 18px;
    }

/* ============================================================
   RESPONSIVE (MOBILE & TABLET)
   ============================================================ */

@media (max-width: 768px) {
    .plan-card {
        flex-direction: column;
        gap: 14px;
    }

    .plan-card-img {
        width: 100%;
        height: 180px;
    }

    .plan-title {
        font-size: 18px;
    }

    .modal-header-flex {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 0;
        gap: 14px;
    }

    .modal-thumb-box {
        width: 100%;
        height: 160px;
    }

    .plan-modal-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .modal-title-serif {
        font-size: 22px;
    }

    .btn-whatsapp-enquire {
        width: 100%;
        justify-content: center;
    }
}