/* =======================================================
   SOLAX AGRO FOODS (PVT) LTD - PREMIUM MODERN EXPORT STYLES
   Version: 2.0 (High-End UI/UX)
======================================================== */

:root {
    --color-primary: #15803d;
    --color-primary-dark: #0f5132;
    --color-primary-light: #22c55e;
    --color-primary-subtle: #dcfce7;
    --color-secondary: #0f172a;
    --color-accent: #f59e0b;
    --color-accent-hover: #d97706;
    --color-bg-light: #f8fafc;
    --color-bg-white: #ffffff;
    --color-text-dark: #0f172a;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(15, 81, 50, 0.12);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-primary-dark);
}

/* =======================================================
   GLOBAL UNIFIED LUXURY BUTTON SYSTEM (HERO-STYLE BUTTONS)
======================================================== */
.btn:not(.btn-close):not(.dock-arrow):not(.carousel-control-prev):not(.carousel-control-next) {
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px !important;
    padding: 11px 26px;
    font-size: 0.96rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-width: 2px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, box-shadow;
}

/* Smooth Interactive Lift & Press */
.btn:not(.btn-close):not(.dock-arrow):not(.carousel-control-prev):not(.carousel-control-next):hover {
    transform: translateY(-3px);
}

.btn:not(.btn-close):not(.dock-arrow):not(.carousel-control-prev):not(.carousel-control-next):active {
    transform: translateY(-1px) scale(0.97);
}

/* Sizing Modifiers */
.btn-lg {
    padding: 14px 34px !important;
    font-size: 1.05rem !important;
}

.btn-sm {
    padding: 7px 18px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
}

.btn-xs {
    padding: 5px 12px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
}

/* Hero-Style Ambient Shimmer Animation on Solid Primary Buttons */
.btn-theme-primary::after,
.btn-primary:not(.btn-outline-primary)::after,
.btn-success:not(.btn-outline-success)::after,
.btn-warning:not(.btn-outline-warning)::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 45%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: heroBtnShimmer 4.8s infinite ease-in-out;
    pointer-events: none;
}

/* Quick Sheen Flash on Hover */
.btn:hover::after {
    animation: btnHoverSheen 0.75s ease-in-out forwards !important;
}

@keyframes btnHoverSheen {
    0% { left: -70%; }
    100% { left: 160%; }
}

/* Icon Micro-Transitions on Button Hover */
.btn i, .btn svg {
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    vertical-align: middle;
}

.btn:hover i.bi-arrow-right,
.btn:hover i.bi-arrow-right-circle,
.btn:hover i.bi-chevron-right,
.btn:hover i.bi-send,
.btn:hover i.bi-send-fill,
.btn:hover i.bi-arrow-up-right {
    transform: translateX(4px);
}

.btn:hover i.bi-arrow-left,
.btn:hover i.bi-chevron-left {
    transform: translateX(-4px);
}

.btn:hover i.bi-envelope-check,
.btn:hover i.bi-file-earmark-text,
.btn:hover i.bi-grid-fill,
.btn:hover i.bi-compass,
.btn:hover i.bi-person-badge,
.btn:hover i.bi-check-circle-fill,
.btn:hover i.bi-cart-fill,
.btn:hover i.bi-eye-fill {
    transform: scale(1.15);
}

.btn:hover i.bi-whatsapp {
    transform: rotate(12deg) scale(1.12);
}

/* 1. Primary Emerald Button (Theme Primary, Primary, Success) */
.btn-theme-primary,
.btn-primary:not(.btn-outline-primary),
.btn-success:not(.btn-outline-success) {
    background: #22c55e !important;
    border-color: #22c55e !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.32) !important;
}

.btn-theme-primary:hover,
.btn-primary:not(.btn-outline-primary):hover,
.btn-success:not(.btn-outline-success):hover {
    background: #16a34a !important;
    border-color: #16a34a !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.5) !important;
}

/* 2. Outline Emerald (btn-outline-success, btn-outline-theme, btn-outline-primary) */
.btn-outline-success,
.btn-outline-theme,
.btn-outline-primary {
    background: rgba(34, 197, 94, 0.05) !important;
    border-color: #22c55e !important;
    color: #15803d !important;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.12) !important;
}

.btn-outline-success:hover,
.btn-outline-theme:hover,
.btn-outline-primary:hover {
    background: #22c55e !important;
    border-color: #22c55e !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.42) !important;
}

/* 3. Outline Neutral / Light Border (btn-outline-secondary) */
.btn-outline-secondary {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: #cbd5e1 !important;
    color: #334155 !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04) !important;
}

.btn-outline-secondary:hover {
    background: #0f172a !important;
    border-color: #0f172a !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.22) !important;
}

/* 4. Warning / Accent Gold (btn-warning, btn-theme-secondary) */
.btn-warning,
.btn-theme-secondary {
    background: #f59e0b !important;
    border-color: #f59e0b !important;
    color: #0f172a !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3) !important;
}

.btn-warning:hover,
.btn-theme-secondary:hover {
    background: #d97706 !important;
    border-color: #d97706 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.45) !important;
}

/* 5. Light Pill Button (btn-light, btn-outline-light) */
.btn-light {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #0f5132 !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08) !important;
}

.btn-light:hover {
    background: #22c55e !important;
    border-color: #22c55e !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.38) !important;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2) !important;
}

.btn-outline-light:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #064e3b !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3) !important;
}

/* 6. Danger Outline (btn-outline-danger) */
.btn-outline-danger {
    background: rgba(239, 68, 68, 0.05) !important;
    border-color: #ef4444 !important;
    color: #dc2626 !important;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.12) !important;
}

.btn-outline-danger:hover {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.38) !important;
}

/* ==========================================
   TOP BAR & HEADER
=========================================== */
/* ==========================================
   TOP BAR (NOTIFICATION & CONTACT)
=========================================== */
.top-bar {
    background-color: #071f12;
    color: #e2e8f0;
    padding: 7px 0;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-link {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.top-link:hover {
    color: #4ade80;
}

.social-icon-sm {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11.5px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon-sm:hover {
    background: #22c55e;
    color: #fff;
    transform: translateY(-2px);
}

.admin-portal-link {
    color: #94a3b8;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
}

.admin-portal-link:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

/* ==========================================
   MAIN NAVBAR & STICKY HEADER (FROSTED GLASS BLUR)
=========================================== */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 6px 0;
}

.header-sticky.header-scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 3px 0;
}

.site-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar-brand:hover .site-logo {
    transform: scale(1.02);
}

/* Navbar Links & Clean Pill Styling */
.main-navbar .nav-link {
    font-family: var(--font-heading);
    font-size: 0.93rem;
    font-weight: 600;
    color: #334155;
    padding: 8px 14px !important;
    border-radius: 50px;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.main-navbar .nav-link:hover {
    color: #16a34a;
    background-color: rgba(22, 163, 74, 0.07);
}

.main-navbar .nav-link.active {
    color: #15803d;
    background-color: rgba(22, 163, 74, 0.12);
    font-weight: 700;
}

/* Eliminate Bootstrap default caret (avoid double arrows) */
.main-navbar .dropdown-toggle::after {
    display: none !important;
}

/* Smooth Chevron Rotation on Dropdown Hover / Open */
.nav-chevron {
    display: inline-block;
    font-size: 0.72rem;
    margin-left: 4px;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown.show .nav-chevron,
.dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Desktop Dropdown Animations & Glassmorphic Elevation */
@media (min-width: 992px) {
    .main-navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px) scale(0.97);
        transform-origin: top center;
        transition: opacity 0.24s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
                    visibility 0.24s;
        pointer-events: none;
        border: 1px solid rgba(0, 0, 0, 0.07);
        box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.14), 0 0 1px rgba(0, 0, 0, 0.08);
        margin-top: 8px;
    }

    .main-navbar .dropdown:hover > .dropdown-menu,
    .main-navbar .dropdown.show > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
}

/* Modern Products Dropdown Styling */
.modern-dropdown {
    min-width: 325px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
}

.modern-dropdown .dropdown-item {
    padding: 9px 12px;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

.modern-dropdown .dropdown-item:hover {
    background-color: rgba(240, 253, 244, 0.85);
    transform: translateX(4px);
}

.modern-dropdown .dropdown-item:hover .drop-icon {
    transform: scale(1.1);
}

.drop-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-right: 12px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

/* Language Dropdown Styling */
.lang-menu {
    min-width: 220px;
    padding: 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
}

.lang-menu .dropdown-item {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.18s ease;
}

.lang-menu .dropdown-item:hover {
    background-color: #f0fdf4;
    color: #15803d;
    transform: translateX(3px);
}

/* Action Buttons (WhatsApp & Get Quote) */
.btn-whatsapp-header {
    background-color: #25d366;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border: none;
    white-space: nowrap;
}

.btn-whatsapp-header:hover {
    background-color: #20ba5a;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.38);
}

.btn-quote-nav {
    background: linear-gradient(135deg, #15803d, #0f5132);
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(21, 128, 61, 0.28);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-quote-nav:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 128, 61, 0.4);
}

/* Animated 3-Bar Mobile Hamburger */
.custom-toggler {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    background: rgba(22, 163, 74, 0.08);
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.custom-toggler:hover {
    background: rgba(22, 163, 74, 0.16);
}

.toggler-bar {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #0f5132;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animate into 'X' when menu is open */
.custom-toggler:not(.collapsed) .bar-top {
    transform: translateY(7px) rotate(45deg);
}

.custom-toggler:not(.collapsed) .bar-mid {
    opacity: 0;
    transform: scaleX(0);
}

.custom-toggler:not(.collapsed) .bar-bot {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Responsiveness for Header */
@media (max-width: 991.98px) {
    .top-bar {
        font-size: 11.5px;
        padding: 6px 0;
    }

    .site-logo {
        max-height: 40px;
    }

    .main-navbar .navbar-collapse {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-radius: 18px;
        padding: 16px 18px 20px;
        margin-top: 10px;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.6);
        animation: mobileMenuSlide 0.26s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes mobileMenuSlide {
        0% {
            opacity: 0;
            transform: translateY(-8px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-navbar .navbar-nav {
        gap: 2px;
    }

    .main-navbar .nav-link {
        padding: 10px 14px !important;
        width: 100%;
        border-radius: 10px;
        font-size: 0.96rem;
    }

    /* Mobile Dropdown Open & Close Smooth Animations (Products & Language) */
    .main-navbar .navbar-nav .dropdown-menu {
        display: block !important;
        position: static !important;
        float: none !important;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transform: translateY(-6px);
        transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.24s cubic-bezier(0.4, 0, 0.2, 1),
                    padding 0.24s ease,
                    margin 0.24s ease,
                    visibility 0.24s ease !important;
        background: #f8fafc !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        border-radius: 14px !important;
        box-shadow: none !important;
        padding: 0 6px !important;
        margin: 0 !important;
        border-width: 0 !important;
    }

    .main-navbar .navbar-nav .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        overflow: visible;
        transform: translateY(0);
        padding: 6px !important;
        margin: 4px 0 10px !important;
        border-width: 1px !important;
    }

    /* Products Dropdown smooth height */
    .main-navbar .navbar-nav .modern-dropdown.show {
        max-height: 560px;
    }

    /* Language Dropdown smooth height */
    .main-navbar .navbar-nav .lang-menu.show {
        max-height: 400px;
    }

    /* Smooth 180deg animated chevron rotation on active/open state */
    .nav-chevron {
        display: inline-block;
        font-size: 0.72rem;
        margin-left: 6px;
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .main-navbar .nav-item.dropdown.show .nav-chevron,
    .main-navbar .dropdown-toggle[aria-expanded="true"] .nav-chevron,
    .main-navbar .dropdown-toggle.show .nav-chevron {
        transform: rotate(180deg) !important;
    }

    /* Subtle smooth stagger reveal for mobile dropdown items */
    .main-navbar .dropdown-menu.show .dropdown-item {
        animation: mobileDropdownItemIn 0.24s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes mobileDropdownItemIn {
        from {
            opacity: 0;
            transform: translateX(-6px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .header-actions-container {
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .btn-whatsapp-header,
    .btn-quote-nav {
        width: 100%;
        padding: 11px 18px;
        font-size: 0.94rem;
    }
}

.z-index-2 {
    position: relative !important;
    z-index: 5 !important;
}

/* ==========================================
   CLEAN & ELEGANT HERO SLIDER
=========================================== */
.hero-slider-section {
    position: relative;
    background-color: #05140b;
    overflow: hidden;
}

/* Hero Slide Loading Progress Bar (4.5s countdown animation per slide) */
.hero-progress-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 35 !important;
    overflow: hidden;
    pointer-events: none;
}

.hero-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #10b981 0%, #22c55e 50%, #38bdf8 100%);
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.85), 0 0 6px rgba(56, 189, 248, 0.7);
    border-radius: 0 2px 2px 0;
    will-change: width;
}

.hero-progress-bar.is-animating {
    animation: heroSlideProgressAnim 4.5s linear forwards;
}

@keyframes heroSlideProgressAnim {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Hero Carousel Slide Item with Ken Burns Ambient Motion */
.hero-slide-item {
    height: 88vh;
    min-height: 600px;
    max-height: 820px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-color: #05140b;
}

/* Pseudo-element ambient Ken Burns smooth zoom */
.hero-slide-item::before {
    content: '';
    position: absolute;
    inset: -15px;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 5.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    z-index: 0;
}

.carousel-item.active.hero-slide-item::before {
    transform: scale(1.07);
}

.carousel-fade .hero-slide-item {
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Layered Contrast & Vignette */
.hero-backdrop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(5, 18, 11, 0.92) 0%, 
        rgba(7, 24, 15, 0.78) 50%, 
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1 !important;
    pointer-events: none !important;
}

.hero-content-box {
    position: relative;
    z-index: 10 !important;
    padding: 40px 0;
}

/* Simple & Elegant Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 7px 18px;
    border-radius: 50px;
    color: #fef08a;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Hero Typography */
.hero-heading {
    font-size: clamp(2.3rem, 4.8vw, 3.8rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.16;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-heading .highlight {
    color: #4ade80;
}

.hero-lead {
    font-size: clamp(1.02rem, 1.6vw, 1.2rem) !important;
    color: #e2e8f0 !important;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 680px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Action Buttons */
.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.btn-hero-primary {
    background: #22c55e !important;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700 !important;
    padding: 14px 34px !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    border: 2px solid #22c55e !important;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35) !important;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Primary Button Loading / Shimmer Light Sheen */
.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 45%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: heroBtnShimmer 4.5s infinite ease-in-out;
    pointer-events: none;
}

@keyframes heroBtnShimmer {
    0%, 35% {
        left: -70%;
    }
    65%, 100% {
        left: 150%;
    }
}

.btn-hero-primary:hover {
    background: #16a34a !important;
    border-color: #16a34a !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5) !important;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700 !important;
    padding: 14px 30px !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.btn-hero-outline:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #064e3b !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3) !important;
}

/* Synchronized Fluid Entrance Motion (Runs during transition, NO post-change delay) */
.hero-content-box .hero-badge,
.hero-content-box .hero-heading,
.hero-content-box .hero-lead,
.hero-content-box .hero-btn-group {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Active & Incoming Transitions */
.carousel-item.active .hero-badge,
.carousel-item.active .hero-heading,
.carousel-item.active .hero-lead,
.carousel-item.active .hero-btn-group,
.carousel-item-next.carousel-item-start .hero-badge,
.carousel-item-next.carousel-item-start .hero-heading,
.carousel-item-next.carousel-item-start .hero-lead,
.carousel-item-next.carousel-item-start .hero-btn-group,
.carousel-item-prev.carousel-item-end .hero-badge,
.carousel-item-prev.carousel-item-end .hero-heading,
.carousel-item-prev.carousel-item-end .hero-lead,
.carousel-item-prev.carousel-item-end .hero-btn-group {
    opacity: 1;
    transform: translateY(0);
}

/* Natural Cascade Timing */
.carousel-item.active .hero-badge,
.carousel-item-next.carousel-item-start .hero-badge,
.carousel-item-prev.carousel-item-end .hero-badge {
    transition-delay: 0.05s;
}

.carousel-item.active .hero-heading,
.carousel-item-next.carousel-item-start .hero-heading,
.carousel-item-prev.carousel-item-end .hero-heading {
    transition-delay: 0.10s;
}

.carousel-item.active .hero-lead,
.carousel-item-next.carousel-item-start .hero-lead,
.carousel-item-prev.carousel-item-end .hero-lead {
    transition-delay: 0.16s;
}

.carousel-item.active .hero-btn-group,
.carousel-item-next.carousel-item-start .hero-btn-group,
.carousel-item-prev.carousel-item-end .hero-btn-group {
    transition-delay: 0.22s;
}

/* Left / Right Carousel Controls */
.custom-slider-nav {
    width: 60px;
    opacity: 0.85;
    z-index: 20 !important;
    transition: var(--transition-smooth);
}

.nav-arrow-box {
    width: 46px;
    height: 46px;
    background: rgba(4, 18, 10, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.custom-slider-nav:hover .nav-arrow-box {
    background: #22c55e;
    border-color: #22c55e;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
}

/* ==========================================
   SIMPLE & ELEGANT HERO SLIDER CONTROLS
=========================================== */
.hero-slider-dock {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25 !important;
}

.slider-dock-simple {
    background: rgba(6, 20, 13, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.slider-dock-simple:hover {
    background: rgba(6, 20, 13, 0.88);
    border-color: rgba(74, 222, 128, 0.35);
}

.dock-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 0;
}

.dock-arrow:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: #ffffff;
    transform: scale(1.08);
}

.dock-indicators {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dock-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dock-dot.active {
    width: 24px;
    border-radius: 10px;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
    position: relative;
    overflow: hidden;
}

.dock-dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: dockDotShimmer 2.2s infinite ease-in-out;
}

@keyframes dockDotShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.dock-count {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0 2px;
    white-space: nowrap;
}

.dock-count #dockSlideNumber {
    color: #4ade80;
    font-weight: 800;
}

/* Dock Live Beacon Indicator */
.dock-live-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.8);
    animation: dockBeaconPulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    flex-shrink: 0;
}

@keyframes dockBeaconPulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.8);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN ADAPTATIONS (AUTHENTIC DESKTOP VIEW SCALED FOR MOBILE)
=========================================== */
@media (max-width: 991.98px) {
    .hero-slide-item {
        height: auto;
        min-height: 560px;
        padding: 50px 0 90px;
        display: flex;
        align-items: center;
    }

    .hero-content-box {
        text-align: left;
        padding: 20px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-slider-section {
        min-height: auto;
    }

    /* Balanced hero height that fits mobile viewports naturally */
    .hero-slide-item {
        height: 84vh;
        min-height: 520px;
        max-height: 680px;
        padding: 30px 0 75px;
        display: flex;
        align-items: center;
    }
    
    /* Clean, full-bleed gradient overlay preserving desktop vibrancy and contrast */
    .hero-backdrop-overlay {
        background: linear-gradient(
            180deg,
            rgba(5, 18, 11, 0.88) 0%,
            rgba(7, 24, 15, 0.72) 45%,
            rgba(5, 18, 11, 0.88) 100%
        ) !important;
    }

    .hero-backdrop-overlay::after {
        display: none !important;
    }

    /* Keep the desktop float aesthetic - NO box, NO card, NO border-radius */
    .hero-content-box {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0 !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        text-align: left !important;
    }
    
    /* Desktop badge scaled for mobile */
    .hero-badge {
        display: inline-flex !important;
        align-items: center !important;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.22) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        padding: 6px 14px !important;
        font-size: 0.78rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.4px !important;
        color: #fef08a !important;
        margin-bottom: 16px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Desktop heading scaled for mobile */
    .hero-heading {
        font-size: clamp(1.85rem, 6.8vw, 2.45rem) !important;
        font-weight: 800 !important;
        line-height: 1.18 !important;
        margin-bottom: 14px !important;
        letter-spacing: -0.02em !important;
        color: #ffffff !important;
        text-shadow: 0 3px 16px rgba(0, 0, 0, 0.7) !important;
    }

    .hero-heading .highlight {
        color: #4ade80 !important;
    }
    
    /* Desktop lead paragraph scaled for mobile */
    .hero-lead {
        font-size: 0.92rem !important;
        color: #e2e8f0 !important;
        line-height: 1.6 !important;
        margin-bottom: 22px !important;
        max-width: 100% !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
    }
    
    /* Desktop inline-flex buttons scaled for mobile (NOT bulky full-width blocks) */
    .hero-btn-group {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 12px !important;
        width: auto !important;
    }

    .btn-hero-primary {
        background: #22c55e !important;
        color: #ffffff !important;
        font-family: var(--font-heading);
        font-weight: 700 !important;
        padding: 12px 22px !important;
        border-radius: 50px !important;
        font-size: 0.9rem !important;
        border: 2px solid #22c55e !important;
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        transition: var(--transition-smooth);
    }

    .btn-hero-outline {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
        font-family: var(--font-heading);
        font-weight: 700 !important;
        padding: 12px 20px !important;
        border-radius: 50px !important;
        font-size: 0.9rem !important;
        border: 2px solid rgba(255, 255, 255, 0.35) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        transition: var(--transition-smooth);
    }

    .btn-hero-primary:active,
    .btn-hero-outline:active {
        transform: scale(0.97) !important;
    }
    
    /* Authentic Desktop Slider Dock with all 10 dots, arrows and counter scaled for mobile */
    .hero-slider-dock {
        position: absolute;
        bottom: 20px !important;
        left: 50%;
        transform: translateX(-50%);
        z-index: 25 !important;
        width: auto;
        max-width: 95%;
    }

    .slider-dock-simple {
        background: rgba(6, 20, 13, 0.75) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        border-radius: 50px;
        padding: 5px 12px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    }

    .dock-indicators {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
    }

    .dock-dot {
        width: 6px !important;
        height: 6px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.35) !important;
        border: none !important;
        padding: 0 !important;
    }

    .dock-dot.active {
        width: 18px !important;
        border-radius: 10px !important;
        background: #22c55e !important;
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.5) !important;
    }

    .dock-arrow {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.14) !important;
        color: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .dock-count {
        color: rgba(255, 255, 255, 0.6) !important;
        font-family: var(--font-heading);
        font-size: 0.78rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }

    .dock-count #dockSlideNumber {
        color: #4ade80 !important;
        font-weight: 800 !important;
    }
    
    .custom-slider-nav {
        display: none;
    }
}

/* ==========================================
   ABOUT INTRO SECTION
=========================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-primary);
    background: var(--color-primary-subtle);
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.25;
}

.accent-separator {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 4px;
}

/* About Section Facility Image & Composition */
.about-image-composition {
    position: relative;
    padding-bottom: 20px;
}

.main-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.22);
    background: #0b1524;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-img-cover {
    width: 100%;
    height: auto;
    max-height: 680px;
    object-fit: cover;
    object-position: center 35% !important;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-image-wrap:hover .hero-img-cover {
    transform: scale(1.02);
}

.experience-card-floating {
    position: absolute;
    bottom: 0px;
    right: 8px;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.96), rgba(21, 128, 61, 0.96));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    z-index: 5;
    max-width: 290px;
    transition: var(--transition-smooth);
}

.experience-card-floating:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
}

@media (max-width: 991.98px) {
    .hero-img-cover {
        max-height: 520px;
        object-position: center 40% !important;
    }
}

@media (max-width: 575.98px) {
    .experience-card-floating {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        max-width: 100%;
    }
}

/* ==========================================
   INTERACTIVE WORLD EXPORT MAP
=========================================== */
.bg-dark-map {
    background: linear-gradient(145deg, #020617 0%, #0a1628 35%, #0c1e35 65%, #030712 100%);
    position: relative;
}

.bg-dark-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 65% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 30% 25%, rgba(56, 189, 248, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.map-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 45% 55% at 67% 65%, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.bg-dark-subtle-box {
    background: linear-gradient(160deg, rgba(8, 15, 30, 0.92) 0%, rgba(5, 10, 22, 0.97) 100%);
    backdrop-filter: blur(24px);
}

/* ==========================================
   INTERACTIVE WORLD MAP - CYBER-LOGISTICS SUITE
=========================================== */
.interactive-world-map-wrapper {
    background: radial-gradient(circle at 65% 55%, #0d1b2e 0%, #080f1e 50%, #040813 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow: 
        0 30px 90px -15px rgba(0, 0, 0, 0.8),
        0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.map-top-bar {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
}

.pulse-beacon-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    animation: beaconBlink 1.8s infinite;
}

@keyframes beaconBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

/* Region Filter Pills */
.map-region-filter .btn-filter {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    padding: 5px 12px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    background: transparent;
}

.map-region-filter .btn-filter:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.map-region-filter .btn-filter.active {
    color: #ffffff;
    background: #16a34a;
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

/* SVG World Map Styling */
.world-map-svg-container {
    background: transparent;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.world-map-stage-canvas {
    position: relative;
    width: 100%;
}

.world-map-svg {
    filter: drop-shadow(0 0 35px rgba(14, 165, 233, 0.05));
    display: block;
    height: auto;
}

/* Continents & Countries */
.world-continents-group .country-shape {
    transition: fill 0.35s ease, stroke 0.35s ease, filter 0.35s ease;
}

.world-continents-group .country-regular {
    fill: #131d2e;
    stroke: rgba(148, 163, 184, 0.16);
    stroke-width: 0.5px;
}

.world-continents-group .country-regular:hover {
    fill: #1e304b;
    stroke: rgba(56, 189, 248, 0.4);
}

.world-continents-group .country-destination {
    fill: #172d47;
    stroke: rgba(56, 189, 248, 0.5);
    stroke-width: 0.7px;
    filter: drop-shadow(0 0 2px rgba(56, 189, 248, 0.2));
    cursor: pointer;
    transition: fill 0.3s ease, stroke 0.3s ease, stroke-width 0.3s ease, filter 0.3s ease;
}

.world-continents-group .country-destination path {
    fill: #172d47;
    stroke: rgba(56, 189, 248, 0.5);
    stroke-width: 0.7px;
    filter: none !important;
    cursor: pointer;
    transition: fill 0.3s ease, stroke 0.3s ease, stroke-width 0.3s ease;
}

.world-continents-group .country-destination:hover,
.world-continents-group .country-destination.active-country {
    fill: #0284c7 !important;
    stroke: #38bdf8 !important;
    stroke-width: 1.1px;
    filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.55));
}

.world-continents-group .country-destination:hover path,
.world-continents-group .country-destination.active-country path {
    fill: #0284c7 !important;
    stroke: #38bdf8 !important;
    stroke-width: 1.1px;
    filter: none !important;
}

/* Subtle, crisp outline glow for archipelagos with multiple islands */
.world-continents-group #country-ca.country-destination:hover,
.world-continents-group #country-ca.country-destination.active-country,
.world-continents-group #country-jp.country-destination:hover,
.world-continents-group #country-jp.country-destination.active-country {
    filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.4)) !important;
}

.world-continents-group .country-origin {
    fill: #22c55e !important;
    stroke: #ffffff !important;
    stroke-width: 1.2px;
    filter: drop-shadow(0 0 14px rgba(34, 197, 94, 0.85));
}

/* Trade Routes */
.trade-routes-layer {
    pointer-events: none;
}

.trade-route-group {
    transition: opacity 0.35s ease, stroke-width 0.35s ease;
}

.trade-route-group .route-bg {
    fill: none;
    stroke: rgba(56, 189, 248, 0.14);
    stroke-width: 1.2px;
}

.trade-route-group .route-laser {
    fill: none;
    stroke: url(#routeGradient);
    stroke-width: 1.8px;
    stroke-dasharray: 6, 6;
    filter: url(#routeGlow);
}

.trade-route-group .route-endpoint {
    fill: #fbbf24;
    filter: drop-shadow(0 0 6px #fbbf24);
}

.route-animated {
    animation: dashLaser 2.2s linear infinite;
}

@keyframes dashLaser {
    from { stroke-dashoffset: 48; }
    to { stroke-dashoffset: 0; }
}

.trade-routes-layer.has-active-route .trade-route-group {
    opacity: 0.18;
}

.trade-routes-layer.has-active-route .trade-route-group.active-route {
    opacity: 1;
}

.trade-routes-layer.has-active-route .trade-route-group.active-route .route-laser {
    stroke-width: 2.6px;
    stroke-dasharray: 8, 4;
    filter: drop-shadow(0 0 10px #38bdf8);
}

/* Sri Lanka Origin Hub Pulse */
.origin-pulse-wave-1 {
    animation: radarRipple1 2.8s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
}

.origin-pulse-wave-2 {
    animation: radarRipple2 2.8s cubic-bezier(0.2, 0.6, 0.4, 1) infinite 0.7s;
}

@keyframes radarRipple1 {
    0% { r: 5; opacity: 0.95; }
    60% { r: 24; opacity: 0.3; }
    100% { r: 42; opacity: 0; }
}

@keyframes radarRipple2 {
    0% { r: 5; opacity: 0.95; }
    60% { r: 18; opacity: 0.3; }
    100% { r: 32; opacity: 0; }
}

.origin-hub-label text {
    user-select: none;
    pointer-events: none;
}

/* HTML Interactive Map Pins Overlay */
.map-pins-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.market-pin.pin-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, -50%) scale(0.4);
}

.pin-marker {
    position: relative;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: radial-gradient(circle, #fde047 10%, #f59e0b 90%);
    border: 2px solid #ffffff;
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.9), 0 0 6px rgba(245, 158, 11, 0.6);
    z-index: 2;
    transition: all 0.25s ease;
}

.pin-pulse-ring {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.4);
    animation: pinPulseRingAnim 2.2s cubic-bezier(0.1, 0.7, 0.5, 1) infinite;
}

@keyframes pinPulseRingAnim {
    0% { transform: scale(0.6); opacity: 1; }
    70% { transform: scale(2.4); opacity: 0.15; }
    100% { transform: scale(3); opacity: 0; }
}

.market-pin:hover .pin-dot,
.market-pin.active-pin .pin-dot {
    background: radial-gradient(circle, #ffffff 0%, #22c55e 100%);
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(34, 197, 94, 1), 0 0 8px rgba(34, 197, 94, 0.8);
    transform: scale(1.35);
}

.market-pin:hover .pin-pulse-ring,
.market-pin.active-pin .pin-pulse-ring {
    background: rgba(34, 197, 94, 0.4);
}

/* Pin Popover Cards */
.pin-card-popover {
    position: absolute;
    width: 290px;
    background: rgba(9, 15, 30, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 16px;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    z-index: 30;
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(34, 197, 94, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Adaptive Directional Positions */
.market-pin.tooltip-top .pin-card-popover {
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
}

.market-pin.tooltip-top-right .pin-card-popover {
    bottom: 28px;
    left: -20px;
    transform: translateY(12px);
}

.market-pin.tooltip-top-left .pin-card-popover {
    bottom: 28px;
    right: -20px;
    transform: translateY(12px);
}

.market-pin.tooltip-bottom .pin-card-popover {
    top: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
}

.market-pin.tooltip-bottom-right .pin-card-popover {
    top: 28px;
    left: -20px;
    transform: translateY(-12px);
}

.market-pin.tooltip-right .pin-card-popover {
    top: 50%;
    left: 28px;
    transform: translateY(-50%) translateX(-12px);
}

/* Active & Hover Card Visibility */
.market-pin:hover .pin-card-popover,
.market-pin.active-pin .pin-card-popover {
    opacity: 1;
    pointer-events: auto;
}

.market-pin.tooltip-top:hover .pin-card-popover,
.market-pin.tooltip-top.active-pin .pin-card-popover {
    transform: translateX(-50%) translateY(0);
}

.market-pin.tooltip-top-right:hover .pin-card-popover,
.market-pin.tooltip-top-right.active-pin .pin-card-popover,
.market-pin.tooltip-top-left:hover .pin-card-popover,
.market-pin.tooltip-top-left.active-pin .pin-card-popover {
    transform: translateY(0);
}

.market-pin.tooltip-bottom:hover .pin-card-popover,
.market-pin.tooltip-bottom.active-pin .pin-card-popover {
    transform: translateX(-50%) translateY(0);
}

.market-pin.tooltip-bottom-right:hover .pin-card-popover,
.market-pin.tooltip-bottom-right.active-pin .pin-card-popover {
    transform: translateY(0);
}

.market-pin.tooltip-right:hover .pin-card-popover,
.market-pin.tooltip-right.active-pin .pin-card-popover {
    transform: translateY(-50%) translateX(0);
}

.pin-flag-emoji {
    font-size: 19px;
    line-height: 1;
}

.pin-country-name {
    font-size: 14px;
    color: #ffffff;
}

.pin-transit-badge {
    font-size: 10px;
    background: rgba(34, 197, 94, 0.15) !important;
    color: #4ade80 !important;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.pin-card-row {
    font-size: 11px;
    line-height: 1.45;
}

.pin-row-label {
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.btn-gradient-theme {
    background: linear-gradient(135deg, #16a34a, #059669);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
    transition: all 0.25s ease;
}

.btn-gradient-theme:hover {
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

/* Bottom Tray & Market Pills */
.map-bottom-tray {
    background: rgba(255, 255, 255, 0.02);
}

.btn-market-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-market-pill:hover,
.btn-market-pill.active {
    background: rgba(34, 197, 94, 0.18);
    border-color: #22c55e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.market-pill-flag {
    font-size: 14px;
    line-height: 1;
}

/* ==========================================
   MOBILE RESPONSIVENESS: INTERACTIVE WORLD MAP
=========================================== */
@media (max-width: 991px) {
    .map-top-bar {
        padding: 0.85rem 1rem !important;
    }
}

@media (max-width: 768px) {
    .interactive-world-map-wrapper {
        border-radius: 1.25rem !important;
    }

    .map-top-bar {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.65rem !important;
        padding: 0.75rem 0.75rem !important;
    }

    .map-hub-status-col {
        width: 100% !important;
        justify-content: center !important;
    }

    .status-indicator-pill {
        width: 100% !important;
        justify-content: center !important;
        padding: 6px 12px !important;
        font-size: 11px;
    }

    .map-region-filter-wrapper {
        width: 100% !important;
    }

    /* Clean 3-column grid for region filters on mobile */
    .map-region-filter {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 5px !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.04) !important;
        padding: 5px !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .map-region-filter .btn-filter {
        width: 100% !important;
        text-align: center !important;
        white-space: nowrap !important;
        font-size: 10.5px !important;
        padding: 6px 4px !important;
        border-radius: 8px !important;
        line-height: 1.2 !important;
    }

    /* Entire map fits 100% inside card with ZERO horizontal scrolling */
    .world-map-svg-container {
        width: 100% !important;
        overflow: hidden !important;
        position: relative !important;
        padding: 0 !important;
    }

    .world-map-svg {
        width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        display: block !important;
    }

    .map-pins-overlay {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 0 !important;
        pointer-events: none !important;
    }

    /* Sharp, crisp pin dots without giant yellow glowing blobs */
    .pin-marker {
        width: 14px !important;
        height: 14px !important;
    }

    .pin-dot {
        width: 7px !important;
        height: 7px !important;
        border: 1.5px solid #ffffff !important;
        box-shadow: 0 0 6px rgba(245, 158, 11, 0.8) !important;
    }

    .pin-pulse-ring {
        inset: -3px !important;
        opacity: 0.35 !important;
    }

    /* Mobile Popover: Clean bottom card overlay */
    .market-pin .pin-card-popover {
        position: fixed !important;
        bottom: 24px !important;
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        transform: translate(-50%, 20px) !important;
        width: calc(100% - 32px) !important;
        max-width: 360px !important;
        border-radius: 16px !important;
        background: rgba(9, 15, 30, 0.98) !important;
        border: 1.5px solid rgba(34, 197, 94, 0.5) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9) !important;
        padding: 14px !important;
        z-index: 1050 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.25s ease, transform 0.25s ease !important;
    }

    .market-pin.active-pin .pin-card-popover {
        transform: translate(-50%, 0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .pin-card-header {
        margin-bottom: 6px !important;
    }

    .pin-country-name {
        font-size: 13px !important;
    }

    .pin-transit-badge {
        font-size: 9px !important;
    }

    .pin-card-row {
        font-size: 10.5px !important;
    }

    /* Bottom Tray Mobile Spacing */
    .map-bottom-tray {
        padding: 0.85rem 0.75rem 2.25rem 0.75rem !important;
    }

    .map-tray-header {
        font-size: 12px;
    }

    .btn-market-pill {
        padding: 5px 10px !important;
        font-size: 11px !important;
        gap: 4px !important;
    }
}

@media (max-width: 576px) {
    .wa-float-container {
        bottom: 16px !important;
        left: 16px !important;
    }

    .wa-float-bubble {
        width: 48px !important;
        height: 48px !important;
        font-size: 25px !important;
    }

    .btn-back-to-top {
        bottom: 16px !important;
        right: 16px !important;
        width: 42px !important;
        height: 42px !important;
        font-size: 18px !important;
    }
}

/* ==========================================
   PRODUCT CARDS
=========================================== */
.product-card-modern {
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover) !important;
}

.product-card-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-modern:hover .product-card-img {
    transform: scale(1.06);
}

.product-img-wrapper {
    overflow: hidden;
}

.bg-theme-accent {
    background-color: var(--color-primary-dark);
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
}

.btn-theme-primary {
    background: linear-gradient(135deg, #15803d, #0f5132);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-theme-primary:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================
   PRODUCT CARDS & RESPONSIVE FOOTER BUTTONS
=========================================== */
.product-card-modern {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid #eef2f6 !important;
}

.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.12) !important;
    border-color: #86efac !important;
}

.product-card-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card-modern:hover .product-card-img {
    transform: scale(1.04);
}

.product-card-footer {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(226, 232, 240, 0.85) !important;
}

.product-card-footer .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap !important;
    border-radius: 50rem !important;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.44rem 0.65rem;
    line-height: 1.25;
    height: 38px;
    transition: all 0.2s ease;
}

.product-card-footer .btn-details {
    flex: 0 0 auto;
    border: 1.5px solid #cbd5e1 !important;
    color: #334155 !important;
    background: #ffffff !important;
    padding: 0.44rem 0.75rem;
}

.product-card-footer .btn-details:hover {
    background: #f8fafc !important;
    border-color: #94a3b8 !important;
    color: #0f172a !important;
    transform: translateY(-1px);
}

.product-card-footer .btn-quote {
    flex: 1 1 auto;
    background: #22c55e !important;
    border: 1.5px solid #22c55e !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.28) !important;
    padding: 0.44rem 0.75rem;
}

.product-card-footer .btn-quote:hover {
    background: #16a34a !important;
    border-color: #16a34a !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.4) !important;
    transform: translateY(-1px);
}

.product-card-footer .btn i {
    font-size: 0.825rem;
    flex-shrink: 0;
}

/* Ensure seamless desktop responsiveness (especially 1200px - 1320px screens) */
@media (min-width: 1200px) and (max-width: 1320px) {
    .product-card-footer {
        gap: 0.35rem;
    }
    .product-card-footer .btn {
        font-size: 0.765rem;
        padding: 0.4rem 0.5rem;
    }
    .product-card-footer .btn i {
        margin-right: 0.2rem !important;
    }
}

/* ==========================================
   BLOG CARDS
=========================================== */
.blog-card-modern {
    transition: var(--transition-smooth);
}

.blog-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover) !important;
}

.blog-card-img {
    height: 210px;
    object-fit: cover;
}

/* ==========================================
   FOOTER & WHATSAPP FLOATING
=========================================== */
/* ==========================================
   FOOTER - CLEAN, MODERN & SOPHISTICATED
=========================================== */
.solax-main-footer {
    background-color: #0a0f1d !important;
    color: #94a3b8;
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer-body {
    background-color: #0a0f1d !important;
}

.footer-logo {
    max-height: 46px;
    filter: brightness(0) invert(1);
}

.footer-widget .widget-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #ffffff !important;
    margin-bottom: 1.25rem;
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-cert-pill {
    font-size: 0.75rem;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-cert-pill .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #22c55e;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.92rem;
    display: inline-block;
    margin-bottom: 10px;
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #22c55e;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    color: #94a3b8;
}

.footer-contact-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-item a:hover {
    color: #22c55e;
}

.footer-contact-icon {
    color: #22c55e;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.social-circle {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
}

.social-circle:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}

.social-circle.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* Bottom Bar - Completely Seamless & No White Lines */
.footer-bottom-bar {
    background-color: #060a14 !important;
    border-top: none !important;
    border-bottom: none !important;
    margin: 0 !important;
    padding: 1.25rem 0 1.75rem 0 !important;
}

.footer-bottom-bar p,
.footer-bottom-bar span {
    font-size: 0.85rem;
    color: #64748b;
}

/* Prevent any white gap under footer on large screens or mobile */
html {
    background-color: #060a14 !important;
}

.goog-te-banner-frame {
    display: none !important;
}
.skiptranslate:not(.dropdown) {
    display: none !important;
}

/* Floating WhatsApp Widget */
.wa-float-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.wa-float-bubble {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.wa-float-bubble:hover {
    transform: scale(1.1);
}

.wa-badge-pulse {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background-color: #ef4444;
    border: 2px solid #fff;
    border-radius: 50%;
}

.wa-popup-box {
    position: absolute;
    bottom: 75px;
    left: 0;
    width: 320px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: none;
    animation: slideUp 0.3s ease;
}

.wa-popup-box.active {
    display: block;
}

.wa-popup-header {
    background-color: #0f5132;
    padding: 16px;
    color: #fff;
}

.wa-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
}

.status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
}

.wa-popup-body {
    background: #e5ddd5;
    padding: 16px;
}

.wa-msg-bubble {
    background: #fff;
    padding: 12px 14px;
    border-radius: 12px 12px 12px 2px;
    font-size: 13px;
    color: #1e293b;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.wa-msg-time {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #94a3b8;
    margin-top: 4px;
}

/* Back to Top */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 990;
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* Helper Utilities */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .me-1, [dir="rtl"] .me-2, [dir="rtl"] .me-3 {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
}

[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

/* ==========================================
   VISION & MISSION SECTION STYLES
=========================================== */
.vision-card, .mission-card {
    position: relative;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(21, 128, 61, 0.12);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(21, 128, 61, 0.12);
    border-color: rgba(21, 128, 61, 0.3);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #15803d, #22c55e);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #15803d);
}

.vm-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.commitment-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    transition: var(--transition-smooth);
}

.commitment-item:hover {
    background: #ffffff;
    border-color: #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.12);
    transform: translateX(4px);
}

/* ==========================================
   CORPORATE TAGLINE / PROMISE BANNER
=========================================== */
.tagline-banner {
    background: #0b2416 url('../images/tea-estate-sri-lanka_114775-28.jpg') center center / cover no-repeat;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 36px -10px rgba(11, 36, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tagline-banner .tagline-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 28, 16, 0.88) 0%, rgba(13, 61, 32, 0.82) 100%);
    pointer-events: none;
}

.tagline-banner-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.tagline-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 50rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
}

.tagline-title {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 0.65rem;
}

.tagline-quote {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #fef08a;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   OUR FOUNDATIONS / CORE VALUES CARDS
=========================================== */
.foundation-card {
    border: 1px solid #e2e8f0 !important;
    border-radius: 1.25rem !important;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.foundation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px -8px rgba(21, 128, 61, 0.14);
    border-color: #86efac !important;
}

.foundation-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(21, 128, 61, 0.08);
    color: #15803d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.foundation-card:hover .foundation-icon-wrapper {
    background: #15803d;
    color: #ffffff;
    transform: scale(1.06);
}

.foundation-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.foundation-desc {
    color: #64748b;
    line-height: 1.65;
    font-size: 0.92rem;
}

/* ==========================================
   CHAIRMAN'S MESSAGE SECTION STYLES
=========================================== */
.chairmans-card {
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.chairmans-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 160px;
    font-family: Georgia, serif;
    color: rgba(21, 128, 61, 0.06);
    line-height: 1;
    pointer-events: none;
}

.chairmans-quote-callout {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    font-style: italic;
    color: #0f5132;
    font-weight: 500;
}

.signature-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
}

/* ==========================================
   MAP & LOCATION SECTION STYLES
=========================================== */
.map-embed-wrapper {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

.map-quick-action-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* ==========================================
   EXPORT FAQ ACCORDION - MODERN & ANIMATED
=========================================== */
.faqs-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.accordion-custom {
    max-width: 860px;
    margin: 0 auto;
}

.accordion-custom .accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), 
                border-color 0.3s ease;
}

.accordion-custom .accordion-item:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 197, 94, 0.35) !important;
    box-shadow: 0 10px 25px -4px rgba(15, 23, 42, 0.08);
}

/* Active / Open Card Highlight */
.accordion-custom .accordion-item:has(.accordion-button:not(.collapsed)),
.accordion-custom .accordion-item.is-open {
    border-color: rgba(34, 197, 94, 0.4) !important;
    box-shadow: 0 12px 30px -4px rgba(34, 197, 94, 0.1), 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Question Header Button */
.accordion-custom .accordion-button {
    background: #ffffff !important;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.25s ease;
}

.accordion-custom .accordion-button:hover {
    color: #16a34a;
}

.accordion-custom .accordion-button:not(.collapsed) {
    color: #15803d !important;
    padding-bottom: 0.85rem;
}

/* Custom Animated Rotating Chevron Arrow */
.accordion-custom .accordion-button::after {
    background-image: none !important;
    content: "\F282" !important;
    font-family: "bootstrap-icons" !important;
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                background-color 0.25s ease, 
                color 0.25s ease;
}

.accordion-custom .accordion-button:hover::after {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg) !important;
    background: #16a34a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
}

/* Smooth Collapse Height & Slide Animation */
.accordion-custom .collapsing {
    transition: height 0.38s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.accordion-custom .accordion-collapse.show .accordion-body {
    animation: faqFadeSlideIn 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes faqFadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accordion Body Content */
.accordion-custom .accordion-body {
    padding: 0 1.5rem 1.4rem 1.5rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}

.accordion-custom .faq-divider {
    border-top: 1px dashed rgba(226, 232, 240, 0.9);
    margin-bottom: 0.85rem;
}

/* FAQ Bottom Help Pill Box */
.faq-help-card {
    background: #ffffff;
    border: 1px dashed rgba(34, 197, 94, 0.4);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* ==========================================
   FOOTER TOP CTA BANNER - CINEMATIC & ANIMATED
=========================================== */
.footer-top-cta {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    background-color: #062c17;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background Image Container & Ken Burns Zoom */
.cta-bg-image-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.cta-bg-image {
    position: absolute;
    inset: -45px;
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
    animation: ctaKenBurns 20s ease-in-out infinite alternate;
    will-change: transform;
    filter: brightness(0.95) contrast(1.08) saturate(1.1);
}

@keyframes ctaKenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.07) translate(-1%, -0.5%);
    }
    100% {
        transform: scale(1.14) translate(1%, 0.5%);
    }
}

/* Atmospheric Overlays */
.cta-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(105deg, 
        rgba(3, 20, 11, 0.88) 0%, 
        rgba(6, 42, 22, 0.78) 50%, 
        rgba(4, 16, 28, 0.82) 100%
    );
    pointer-events: none;
}

.cta-mesh-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at 85% 30%, rgba(34, 197, 94, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

/* Badge */
.cta-badge {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(251, 191, 36, 0.45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 8px #fbbf24;
    animation: beaconBlink 1.6s infinite;
}

.cta-badge-text {
    color: #fbbf24;
}

/* Headings */
.cta-heading {
    line-height: 1.25;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.cta-text-gradient {
    background: linear-gradient(135deg, #ffffff 40%, #86efac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subheading {
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 620px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Primary CTA Button: Request a Quote */
.btn-cta-primary {
    position: relative;
    background: #ffffff;
    color: #0f5132 !important;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 9999px;
    padding: 14px 30px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg);
}

.btn-cta-primary:hover::before {
    left: 170%;
    transition: left 0.75s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(34, 197, 94, 0.5);
    color: #15803d !important;
}

.btn-cta-primary .btn-arrow {
    transition: transform 0.25s ease;
}

.btn-cta-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Secondary CTA Button: WhatsApp Chat */
.btn-cta-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 9999px;
    padding: 14px 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.btn-cta-whatsapp:hover {
    background: linear-gradient(135deg, #2ae370 0%, #15a392 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
    color: #ffffff !important;
}

.btn-cta-whatsapp:hover .bi-whatsapp {
    animation: waIconWiggle 0.45s ease infinite alternate;
}

@keyframes waIconWiggle {
    0% { transform: rotate(-10deg); }
    100% { transform: rotate(10deg); }
}

/* Trust Bar */
.cta-trust-bar span {
    letter-spacing: 0.3px;
    font-weight: 500;
}

/* ==========================================
   GLOBAL SCROLL-TRIGGERED LOADING ANIMATIONS
=========================================== */

/* Top Scroll Progress Indicator Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #16a34a, #22c55e, #38bdf8, #fbbf24);
    z-index: 99999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
    pointer-events: none;
}

/* Base Scroll Reveal (Fade Up) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Variation: Fade In from Left */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal-left.is-revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Variation: Fade In from Right */
.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal-right.is-revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Variation: Subtle Zoom In */
.scroll-reveal-zoom {
    opacity: 0;
    transform: scale(0.93) translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal-zoom.is-revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Staggered Cascade Delays for Grids */
.scroll-delay-1 { transition-delay: 0.08s; }
.scroll-delay-2 { transition-delay: 0.16s; }
.scroll-delay-3 { transition-delay: 0.24s; }
.scroll-delay-4 { transition-delay: 0.32s; }
.scroll-delay-5 { transition-delay: 0.40s; }
.scroll-delay-6 { transition-delay: 0.48s; }
.scroll-delay-7 { transition-delay: 0.56s; }
.scroll-delay-8 { transition-delay: 0.64s; }

/* Respect User Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal-left,
    .scroll-reveal-right,
    .scroll-reveal-zoom {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .scroll-progress-bar {
        display: none !important;
    }
}

/* ==========================================
   STAT CARDS & ANIMATED NUMBER COUNTER STYLES
=========================================== */
.stat-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    border-radius: 18px !important;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), 
                box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.3s ease;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05) !important;
    position: relative;
    overflow: hidden;
}

.why-item {
    transition: all 0.25s ease;
}

.why-item:hover {
    transform: translateX(4px);
}

.why-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

.why-item:hover .why-icon-box {
    background: #16a34a;
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: 0 6px 16px -2px rgba(22, 163, 74, 0.3);
}

.stat-card {
    position: relative;
    border: 1px solid #e2e8f0 !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px -6px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(34, 197, 94, 0.35) !important;
}

.stat-card .stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    margin-bottom: 0.85rem;
    background: rgba(34, 197, 94, 0.08);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.18);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover .stat-icon {
    background: #16a34a;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 8px 18px -3px rgba(22, 163, 74, 0.35);
}

.stat-card .counter-val {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #0f172a;
    display: inline-block;
    transition: color 0.3s ease;
}

.stat-card:hover .counter-val {
    color: #15803d;
}

/* =======================================================
   SUBPAGE HEADER HERO BANNER & DARK THEME UTILITIES
======================================================== */
.page-hero-banner,
.bg-dark-theme {
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #04140b;
}

/* Background Image with Ambient Ken Burns Zoom Animation */
.page-hero-banner::before {
    content: '';
    position: absolute;
    inset: -35px;
    background-image: url('../images/tea-estate-sri-lanka_114775-28.jpg');
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
    animation: ctaKenBurns 22s ease-in-out infinite alternate;
    will-change: transform;
    filter: brightness(0.85) contrast(1.12) saturate(1.15);
    z-index: 0;
}

/* Atmospheric Emerald & Dark Slate Vignette Overlay */
.page-hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(3, 20, 11, 0.90) 0%,
        rgba(5, 34, 18, 0.82) 50%,
        rgba(3, 14, 24, 0.88) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.page-hero-banner .container-fluid,
.page-hero-banner .container-xl,
.page-hero-banner .container {
    position: relative;
    z-index: 2;
}

.page-hero-banner h1 {
    color: #ffffff !important;
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.page-hero-banner .lead,
.page-hero-banner p {
    color: #d1fae5 !important;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 720px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Breadcrumb Styling */
.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: #4ade80 !important;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #fef08a !important;
    font-weight: 600;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* =======================================================
   CONTACT PAGE & HUBS MODERN STYLING
======================================================== */
.contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.09);
    border-color: rgba(34, 197, 94, 0.35);
}

.contact-icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-info-card:hover .contact-icon-box {
    transform: scale(1.1);
}

.contact-icon-box.emerald {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.22);
}

.contact-icon-box.amber {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.22);
}

.contact-icon-box.sky {
    background: rgba(14, 165, 233, 0.12);
    color: #0284c7;
    border: 1px solid rgba(14, 165, 233, 0.22);
}

.hover-green:hover {
    color: #16a34a !important;
}

/* WhatsApp Priority Card */
.contact-wa-card {
    background: linear-gradient(135deg, #06381e 0%, #0d5430 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 26px;
    color: #ffffff;
    box-shadow: 0 14px 35px rgba(6, 56, 30, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.contact-wa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(6, 56, 30, 0.35);
}

/* Form Container Card */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.08);
}

@media (max-width: 767.98px) {
    .contact-form-card {
        padding: 20px 16px;
        border-radius: 18px;
    }
    .contact-form-card .form-control,
    .contact-form-card .form-select {
        font-size: 16px !important; /* Prevents auto-zoom on mobile */
        padding: 10px 14px;
        border-radius: 10px;
    }
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 12px;
    border: 1.5px solid #cbd5e1;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #0f172a;
    background-color: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: #22c55e;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.contact-form-card .form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

/* Google Map Embed Wrapper */
.map-embed-wrapper {
    position: relative;
    width: 100%;
    min-height: 420px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    display: block;
}

.map-quick-action-card {
    border-radius: 20px;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* ==========================================
   PAGE LOADING & ENTRANCE ANIMATIONS
=========================================== */
@keyframes pageFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-anim-hero {
    animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-anim-card-1 {
    animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
}

.page-anim-card-2 {
    animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.page-anim-card-3 {
    animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.page-anim-card-4 {
    animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}

.page-anim-card-5 {
    animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both;
}

.page-anim-form {
    animation: pageFadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.page-anim-map {
    animation: pageFadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

/* Products & Blog Grid Card Staggered Reveal */
.card-anim-1 { animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both; }
.card-anim-2 { animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.10s both; }
.card-anim-3 { animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.card-anim-4 { animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.20s both; }
.card-anim-5 { animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both; }
.card-anim-6 { animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both; }
.card-anim-7 { animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both; }
.card-anim-8 { animation: pageFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.40s both; }

/* =======================================================
   GLOBAL BRAND GRADIENTS & UTILITIES
======================================================== */
.bg-gradient-success {
    background: linear-gradient(135deg, #072413 0%, #15803d 100%) !important;
}

/* =======================================================
   GLOBAL EXPORT QUOTE MODAL (RESPONSIVE UI/UX)
======================================================== */
#quoteModal .modal-dialog {
    max-width: 720px;
    margin: 1.25rem auto;
}

#quoteModal.modal {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#quoteModal .quote-modal-content {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(11, 36, 22, 0.35);
    overflow: hidden;
}

#quoteModal .modal-header {
    background: linear-gradient(135deg, #072413 0%, #15803d 100%) !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    align-items: flex-start;
}

#quoteModal .modal-header .modal-title {
    color: #ffffff !important;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.25;
}

#quoteModal .quote-header-badge {
    background: #ffffff !important;
    color: #15803d !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 9999px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#quoteModal .quote-header-desc {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.84rem;
    line-height: 1.4;
}

#quoteModal .btn-close-white {
    opacity: 0.9;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 8px;
    transition: all 0.25s ease;
    margin-top: 2px;
}

#quoteModal .btn-close-white:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

#quoteModal .modal-body {
    background-color: #ffffff;
}

#quoteModal .form-label {
    font-size: 0.86rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 4px;
}

#quoteModal .form-control,
#quoteModal .form-select {
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    padding: 10px 14px;
    font-size: 0.92rem;
    color: #0f172a;
    background-color: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#quoteModal .form-control:focus,
#quoteModal .form-select:focus {
    border-color: #22c55e;
    background-color: #ffffff;
    box-shadow: 0 0 0 3.5px rgba(34, 197, 94, 0.15);
}

#quoteModal .form-control::placeholder {
    color: #94a3b8;
    font-size: 0.88rem;
}

/* Mobile Responsiveness for Quote Modal */
@media (max-width: 575.98px) {
    #quoteModal .modal-dialog {
        margin: 0.5rem auto;
        width: calc(100% - 1rem);
        max-height: calc(100dvh - 1rem);
    }

    #quoteModal .quote-modal-content {
        border-radius: 16px;
        max-height: calc(100dvh - 1rem);
    }

    #quoteModal .modal-header {
        padding: 14px 16px !important;
    }

    #quoteModal .modal-header .modal-title {
        font-size: 1.15rem;
    }

    #quoteModal .quote-header-badge {
        font-size: 0.72rem;
        padding: 3px 8px;
    }

    #quoteModal .quote-header-desc {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    #quoteModal .modal-body {
        padding: 14px 14px !important;
        max-height: calc(100dvh - 140px);
        overflow-y: auto;
    }

    #quoteModal .form-label {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }

    #quoteModal .form-control,
    #quoteModal .form-select {
        font-size: 16px !important; /* Prevents auto-zoom on mobile browsers */
        padding: 9px 12px;
        border-radius: 8px;
    }

    #quoteModal .quote-modal-actions {
        width: 100%;
    }

    #quoteModal .quote-modal-actions button {
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 0.95rem;
    }
}

/* =======================================================
   PARTNERS & GLOBAL NETWORK AUTO-SCROLLING MARQUEE
   (SIMPLE BORDERLESS CLEAN STYLE, CONTAINED WIDTH)
======================================================== */
.partners-marquee-section {
    background: #ffffff;
    border-top: 1px solid rgba(226, 232, 240, 0.7);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    position: relative;
    padding: 2.75rem 0;
    overflow: hidden;
}

.partners-marquee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.partners-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
    display: flex;
    user-select: none;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
    will-change: transform;
}

/* Pause scroll when hovering */
.partners-marquee-wrapper:hover .partners-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-marquee-group {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
    flex-shrink: 0;
}

/* Simple Clean Logo Item (No Card / No Border) */
.partner-logo-item,
.partner-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.partner-logo-item:hover,
.partner-logo-card:hover {
    transform: scale(1.1);
}

.partner-logo-img {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: opacity(0.92);
    transition: filter 0.3s ease, transform 0.3s ease;
    display: block;
}

.partner-logo-item:hover .partner-logo-img,
.partner-logo-card:hover .partner-logo-img {
    filter: opacity(1);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .partners-marquee-section {
        padding: 2.2rem 0;
    }
    .partners-marquee-container {
        padding: 0 1rem;
    }
    .partners-marquee-group {
        gap: 36px;
        padding-right: 36px;
    }
    .partner-logo-img {
        height: 65px;
        max-width: 150px;
    }
    .partners-marquee-track {
        animation-duration: 24s;
    }
}

@media (max-width: 576px) {
    .partners-marquee-section {
        padding: 1.8rem 0;
    }
    .partners-marquee-group {
        gap: 24px;
        padding-right: 24px;
    }
    .partner-logo-img {
        height: 50px;
        max-width: 120px;
    }
    .partners-marquee-track {
        animation-duration: 18s;
    }
}



