/* =============================================
   Madhuban Group - MAIN STYLESHEET
   Light Theme
   ============================================= */

:root {
    --primary: #1a3c5e;
    --secondary: #c89b3c;
    --accent: #e8f0fe;
    --light-bg: #ffffff;
    --white: #ffffff;
    --text: #333333;
    --text-muted: #666666;
    --border: #dee2e6;
    --shadow: 0 4px 24px rgba(26, 60, 94, 0.10);
    --radius: 10px;
    --transition: all 0.3s ease;
}

/* ---- Base ---- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    padding: 7px 0;
}

.top-bar span {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.75);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 12px;
    transition: var(--transition);
}

.top-bar a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

/* =============================================
   NAVBAR — DESKTOP
   ============================================= */

/* ── Navbar wrapper ── */
.main-navbar {
    background: #fff !important;
    box-shadow: 0 2px 0 rgba(200, 155, 60, 0.18), 0 4px 24px rgba(26, 60, 94, 0.09);
    padding: 0;
    transition: var(--transition);
    z-index: 1050;
    border-bottom: 3px solid var(--secondary);
}

.main-navbar.scrolled {
    box-shadow: 0 4px 32px rgba(26, 60, 94, 0.16);
    padding: 0;
}

.main-navbar .container {
    min-height: 72px;
    display: flex;
    align-items: center;
}

/* ── Logo ── */
.navbar-brand {
    padding: 8px 0;
}

.navbar-brand img {
       width: 210px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 6px rgba(26, 60, 94, 0.10));
}

.navbar-brand img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 12px rgba(26, 60, 94, 0.18));
}

/* ── Desktop nav links ── */
@media (min-width: 992px) {
    .main-navbar .navbar-nav {
        gap: 2px;
        align-items: center;
    }

    .main-navbar .nav-link {
        color: var(--primary) !important;
        font-weight: 600;
        font-size: 14.5px;
        padding: 8px 16px !important;
        position: relative;
        border-radius: 8px;
        letter-spacing: 0.2px;
        transition: var(--transition);
    }

    /* Gold underline slide-in */
    .main-navbar .nav-link:not(.dropdown-toggle)::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2.5px;
        background: linear-gradient(90deg, var(--secondary), #e8b84b);
        border-radius: 2px;
        transition: width 0.28s ease;
    }

    .main-navbar .nav-link:not(.dropdown-toggle):hover::after,
    .main-navbar .nav-link:not(.dropdown-toggle).active::after {
        width: calc(100% - 24px);
    }

    .main-navbar .nav-link:hover,
    .main-navbar .nav-link.active {
        color: var(--primary) !important;
        background: rgba(26, 60, 94, 0.05);
    }

    /* ── Dropdown toggle — custom chevron, no Bootstrap caret ── */
    .main-navbar .dropdown-toggle::after {
        display: inline-block !important;
        border: none !important;
        border-top: none !important;
        width: auto !important;
        height: auto !important;
        vertical-align: middle;
        font-family: 'Font Awesome 6 Free';
        content: "\f107" !important;
        font-weight: 900;
        font-size: 11px;
        color: var(--secondary);
        margin-left: 5px;
        transition: transform 0.25s ease;
        position: static !important;
        background: none !important;
    }

    .main-navbar .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .main-navbar .dropdown-toggle[aria-expanded="true"] {
        background: rgba(26, 60, 94, 0.06) !important;
        color: var(--primary) !important;
    }

    /* ── Mega-style dropdown menu ── */
    .main-navbar .dropdown-menu {
        border: none !important;
        border-radius: 0 0 14px 14px !important;
        border-top: 3px solid var(--secondary) !important;
        box-shadow: 0 12px 40px rgba(26, 60, 94, 0.14) !important;
        min-width: 210px;
        padding: 8px 0 12px !important;
        margin-top: 0 !important;
        animation: dropFade 0.2s ease;
    }

    @keyframes dropFade {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-navbar .dropdown-item {
        font-size: 13.5px;
        padding: 10px 20px !important;
        color: var(--text);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
        border-left: 3px solid transparent;
        transition: var(--transition);
    }

    .main-navbar .dropdown-item:hover {
        background: var(--accent) !important;
        color: var(--primary) !important;
        border-left-color: var(--secondary) !important;
        padding-left: 26px !important;
    }

    .main-navbar .dropdown-item i {
        width: 18px;
        text-align: center;
        font-size: 13px;
        color: var(--secondary);
        transition: var(--transition);
    }

    .main-navbar .dropdown-item:hover i {
        color: var(--primary);
    }

    /* Divider between items */
    .main-navbar .dropdown-item+.main-navbar .dropdown-item {
        border-top: 1px solid rgba(26, 60, 94, 0.05);
    }
}

/* ── Login button ── */
.btn-login {
    background: linear-gradient(135deg, #d89536 0%, #bd7602 100%) !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 9px 24px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    border: none !important;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(26, 60, 94, 0.25) !important;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-login:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, #a07a28 100%) !important;
    box-shadow: 0 6px 20px rgba(200, 155, 60, 0.35) !important;
    transform: translateY(-2px);
    color: #fff !important;
}

/* ── Scrolled navbar shrink ── */
@media (min-width: 992px) {
    .main-navbar.scrolled .container {
        min-height: 60px;
    }

    .main-navbar.scrolled .navbar-brand img {
        height: 50px;
    }
}

/* =============================================
   NAVBAR — MOBILE STYLES  (≤ 991px)
   ============================================= */

/* Hamburger button — brand colors */
.navbar-toggler {
    border: 2px solid var(--primary) !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    transition: var(--transition);
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    background: var(--primary) !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231a3c5e' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    transition: var(--transition);
}

.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:focus .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

@media (max-width: 991px) {

    /* Mobile menu panel */
    #mainNav.collapse:not(.show),
    #mainNav.collapsing {
        border-top: none;
    }

    #mainNav.show,
    #mainNav.collapsing {
        background: var(--white);
        border-top: 3px solid var(--secondary);
        border-radius: 0 0 14px 14px;
        box-shadow: 0 8px 32px rgba(26, 60, 94, 0.13);
        padding: 10px 0 16px;
        margin-top: 4px;
    }

    /* Nav items spacing */
    #mainNav .nav-item {
        border-bottom: 1px solid rgba(26, 60, 94, 0.07);
    }

    #mainNav .nav-item:last-child {
        border-bottom: none;
        padding-top: 10px;
    }

    /* Nav links — regular (non-dropdown) */
    #mainNav .nav-link {
        padding: 12px 20px !important;
        font-size: 15px !important;
        color: var(--primary) !important;
        font-weight: 600 !important;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* Remove desktop underline pseudo-element on ALL nav-links */
    #mainNav .nav-link:not(.dropdown-toggle)::after {
        display: none !important;
    }

    /* Hover/active for plain links only */
    #mainNav .nav-link:not(.dropdown-toggle):hover,
    #mainNav .nav-link:not(.dropdown-toggle).active {
        color: var(--secondary) !important;
        background: #fff;
        border-radius: 8px;
    }

    /* Active left border for plain links */
    #mainNav .nav-link:not(.dropdown-toggle).active {
        border-left: 3px solid var(--secondary);
        padding-left: 17px !important;
    }

    /* ── Dropdown toggle: replace Bootstrap caret with FA chevron ── */
    #mainNav .dropdown-toggle {
        justify-content: space-between;
    }

    /* Remove Bootstrap's default caret completely */
    #mainNav .dropdown-toggle::after {
        display: inline-block !important;
        border: none !important;
        border-top: none !important;
        border-right: none !important;
        border-bottom: none !important;
        border-left: none !important;
        width: auto !important;
        height: auto !important;
        margin-left: auto !important;
        vertical-align: middle;
        font-family: 'Font Awesome 6 Free';
        content: "\f107" !important;
        font-weight: 900;
        font-size: 13px;
        color: var(--secondary);
        transition: transform 0.25s ease;
        position: static !important;
        background: none !important;
    }

    /* Rotate chevron when open */
    #mainNav .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    /* Dropdown toggle hover — subtle, keep text primary */
    #mainNav .dropdown-toggle:hover {
        color: var(--secondary) !important;
        background: var(--accent);
        border-radius: 8px;
    }

    /* When dropdown is open, keep the toggle highlighted */
    #mainNav .dropdown-toggle[aria-expanded="true"] {
        color: var(--secondary) !important;
        background: var(--accent);
        border-radius: 8px 8px 0 0;
    }

    /* Mobile dropdown panel */
    #mainNav .dropdown-menu {
        display: none;
        border: none !important;
        border-radius: 0 0 10px 10px !important;
        background: #eef2f7 !important;
        box-shadow: inset 0 3px 8px rgba(26, 60, 94, 0.06) !important;
        border-top: none !important;
        padding: 6px 0 10px !important;
        margin: 0 0 4px 0 !important;
        width: 100% !important;
    }

    #mainNav .dropdown-menu.show {
        display: block;
    }

    /* Sub-menu items */
    #mainNav .dropdown-item {
        font-size: 14px !important;
        padding: 11px 20px 11px 28px !important;
        color: var(--text) !important;
        font-weight: 500 !important;
        border-radius: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        border-left: 3px solid transparent;
        transition: var(--transition);
    }

    #mainNav .dropdown-item:hover {
        background: var(--accent) !important;
        color: var(--primary) !important;
        border-left-color: var(--secondary) !important;
        padding-left: 32px !important;
    }

    #mainNav .dropdown-item i {
        width: 18px;
        text-align: center;
        font-size: 13px;
    }

    /* Login button — full width on mobile */
    #mainNav .nav-item.ms-lg-2 {
        padding: 6px 16px;
    }
    #mainNav .btn-login {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 12px 22px !important;
        font-size: 15px !important;
        border-radius: 10px !important;
        background: #bb8101 !important;
        letter-spacing: 0.3px;
    }

    #mainNav .btn-login:hover {
        background: var(--secondary) !important;
    }

    #mainNav .btn-login i {
        margin-right: 6px;
    }
}

/* =============================================
   HERO SLIDER — DESKTOP
   ============================================= */
.hero-slider-desktop {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-slider-desktop .swiper {
    width: 100%;
    height: 75vh;
    min-height: 500px;
}

.desktop-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Desktop nav arrows */
.hero-slider-desktop .swiper-button-next,
.hero-slider-desktop .swiper-button-prev {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.hero-slider-desktop .swiper-button-next:hover,
.hero-slider-desktop .swiper-button-prev:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.hero-slider-desktop .swiper-button-next::after,
.hero-slider-desktop .swiper-button-prev::after {
    font-size: 15px;
    color: #fff;
    font-weight: 800;
}

/* Desktop pagination */
.hero-slider-desktop .swiper-pagination {
    bottom: 22px;
}

.hero-slider-desktop .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: var(--transition);
}

.hero-slider-desktop .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 30px;
    border-radius: 5px;
}

/* =============================================
   HERO SLIDER — MOBILE
   ============================================= */
.hero-slider-mobile {
    display: none;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* height: 100vh fallback, then override with svh where supported */
.hero-slider-mobile .swiper {
    width: 100%;
    height: 100vh;
    /* fallback for older browsers */
    height: 85svh;
    /* modern mobile browsers */
    min-height: 480px;
}

/* slides must fill the swiper height explicitly */
.hero-slider-mobile .swiper-wrapper {
    height: 100% !important;
}

.mobile-slide {
    width: 100%;
    height: 100% !important;
    min-height: 480px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
}

/* Mobile pagination */
.hero-slider-mobile .swiper-pagination {
    bottom: 20px;
    z-index: 10;
}

.hero-slider-mobile .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    transition: var(--transition);
}

.hero-slider-mobile .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 26px;
    border-radius: 4px;
}

/* force hide arrows on mobile slider — override Swiper defaults */
.hero-slider-mobile .swiper-button-next,
.hero-slider-mobile .swiper-button-prev {
    display: none !important;
}

/* =============================================
   BREAKPOINT — swap sliders at 768px
   ============================================= */
@media (max-width: 767px) {
    .hero-slider-desktop {
        display: none !important;
    }

    .hero-slider-mobile {
        display: block !important;
    }
}

/* btn utilities used in other sections */
.btn-gold {
    background: var(--secondary);
    color: #fff;
    border: 2px solid var(--secondary);
}

.btn-gold:hover {
    background: #a07a28;
    border-color: #a07a28;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

/* =============================================
   SECTION TITLE
   ============================================= */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .sub {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--primary);
    margin-bottom: 14px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}

.divider {
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 12px auto 0;
}

/* =============================================
   STATS STRIP — HOME
   ============================================= */
.stats-strip-home {
    background: linear-gradient(135deg, var(--primary) 0%, #0d2a45 100%);
    padding: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(26, 60, 94, 0.25);
}

.strip-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    position: relative;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.strip-stat:last-child {
    border-right: none;
}

.strip-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    display: block;
}

.strip-label {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    background: var(--light-bg);
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(26, 60, 94, 0.18);
    width: 100%;
    object-fit: cover;

}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), #0d2a45);
    color: #fff;
    border-radius: 16px;
    padding: 22px 26px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(26, 60, 94, 0.35);
    min-width: 130px;
}

.about-badge .num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.about-badge .label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
    font-weight: 500;
    line-height: 1.4;
}

/* Floating ISO tag on image */
.about-float-tag {
    position: absolute;
    top: 20px;
    left: -15px;
    background: var(--secondary);
    color: #fff;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(200, 155, 60, 0.4);
}

.about-float-tag i {
    font-size: 13px;
}

.about-content h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--primary);
}

.about-content .lead-text {
    font-size: 15.5px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 14px;
    border-left: 3px solid var(--secondary);
    padding-left: 14px;
    line-height: 1.7;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 14.5px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.stat-box {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 20px;
    flex: 1;
    min-width: 100px;
    box-shadow: 0 4px 16px rgba(26, 60, 94, 0.1);
    border-bottom: 3px solid var(--secondary);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 60, 94, 0.15);
}

.stat-box .num {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-box .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* =============================================
   WHY CHOOSE US — REDESIGN
   ============================================= */
.why-us-section {
    background: linear-gradient(135deg, #0d1f35 0%, var(--primary) 55%, #0f2d4a 100%);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

/* ── Background decorative shapes ── */
.wcu-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.wcu-shape-1 {
    width: 480px;
    height: 480px;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.14) 0%, transparent 70%);
}

.wcu-shape-2 {
    width: 340px;
    height: 340px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.10) 0%, transparent 70%);
}

/* Dot-grid pattern */
.wcu-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* ── Header ── */
.wcu-header {
    text-align: center;
    margin-bottom: 56px;
}

.wcu-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(200, 155, 60, 0.12);
    border: 1px solid rgba(200, 155, 60, 0.3);
    border-radius: 20px;
    padding: 5px 18px;
    margin-bottom: 16px;
}

.wcu-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.15;
}

.wcu-title span {
    color: var(--secondary);
    position: relative;
}

.wcu-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), #e8c96e);
    border-radius: 2px;
    margin: 0 auto;
}

/* ── Cards grid — 3 cols on desktop, 2 on tablet, 1 on mobile ── */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.wcu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    padding: 36px 28px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
    backdrop-filter: blur(6px);
}

.wcu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.wcu-card:hover::before {
    opacity: 1;
}

.wcu-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 155, 60, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(200, 155, 60, 0.2);
}

/* Big ghost number */
.wcu-card-num {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    letter-spacing: -2px;
    transition: color 0.35s ease;
    pointer-events: none;
}

.wcu-card:hover .wcu-card-num {
    color: rgba(200, 155, 60, 0.12);
}

/* Icon circle */
.wcu-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--secondary) 0%, #a07a28 100%);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(200, 155, 60, 0.35);
    transition: var(--transition);
}

.wcu-card:hover .wcu-card-icon {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 12px 28px rgba(200, 155, 60, 0.5);
}

.wcu-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.wcu-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* Gold accent line bottom */
.wcu-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--secondary), #e8c96e);
    border-radius: 0 0 20px 20px;
    transition: width 0.4s ease;
}

.wcu-card:hover .wcu-card-line {
    width: 100%;
}

/* ── Bottom CTA bar ── */
.wcu-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 20px 32px;
    backdrop-filter: blur(8px);
    flex-wrap: wrap;
}

.wcu-cta-bar span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.wcu-cta-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary), #a07a28);
    color: #fff;
    border-radius: 30px;
    padding: 11px 28px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(200, 155, 60, 0.4);
    transition: var(--transition);
    white-space: nowrap;
}

.wcu-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(200, 155, 60, 0.55);
    color: #fff;
}


.missionimg {
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(26, 60, 94, 0.18);
    width: 100%;
    object-fit: cover;
}


/* ── Responsive ── */
@media (max-width: 991px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .wcu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wcu-cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .wcu-title {
        font-size: 1.9rem;
    }
}

/* =============================================
   VISION SECTION
   ============================================= */
.vision-section {
    padding: 80px 0;
    overflow: hidden;
    background: #fff; /* overridden by .section-alt-bg when present */
}

.vision-section.section-alt-bg {
    background-color: #faf7f2;
}

.vision-inner {
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
}
.vision-content {
    flex: 0 0 52%;
    padding: 10px 16px 26px 10px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.vision-image {
    flex: 0 0 48%;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.vm-img-frame {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.vm-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Curved left clip on vision image */


/* ---- Shared VM Label + Heading ---- */
.vm-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.vm-heading {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 14px;
    text-transform: uppercase;
    font-style: italic;
}

.vision-heading {
    color: var(--secondary);
    text-shadow: 2px 2px 0 rgba(200, 155, 60, 0.15);
}

.vm-tagline {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.vm-tagline .gold {
    color: var(--secondary);
}

.vm-tagline .navy {
    color: var(--primary);
}

.vm-tagline .orange {
    color: #e85b26;
}

.vm-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 24px;
    max-width: 560px;
}

/* ---- Pillars (4 icons in 2x2 grid) ---- */
.vm-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-bottom: 28px;
}

.vm-pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.vm-pillar-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.navy-icon {
    background: var(--accent);
    color: var(--primary);
}

.gold-icon {
    background: #fef3cd;
    color: var(--secondary);
}

.orange-icon {
    background: #fde8de;
    color: #e85b26;
}

.green-icon {
    background: #d4edda;
    color: #1a7a3c;
}

.vm-pillar-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.5;
}

.vm-pillar-text strong {
    font-size: 12.5px;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.vm-pillar-text .gold {
    color: var(--secondary);
}

.vm-pillar-text .orange {
    color: #e85b26;
}

.vm-pillar-text .green {
    color: #1a7a3c;
}

.vm-pillar-text span {
    color: var(--text-muted);
    font-size: 12px;
}

/* ---- Vision Quote ---- */
.vm-quote {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light-bg);
    border-left: 4px solid var(--secondary);
    border-radius: 0 10px 10px 0;
    padding: 14px 20px;
    max-width: 480px;
}

.qmark {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--secondary);
    font-family: Georgia, serif;
    flex-shrink: 0;
}

.qtext {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.qtext em {
    display: block;
    font-size: 1.15rem;
    font-family: Georgia, serif;
    color: var(--primary);
    font-style: italic;
    font-weight: 600;
}

/* =============================================
   MISSION SECTION
   ============================================= */
.mission-section {
    padding: 0;
    overflow: hidden;
    background: var(--light-bg);
}

.mission-inner {
    display: flex;
    align-items: stretch;
    min-height: 520px;
}

.mission-image {
    flex: 0 0 48%;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.mission-content {
    flex: 0 0 52%;
    padding: 64px 60px 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.mission-heading {
    color: #e85b26;
    text-shadow: 2px 2px 0 rgba(232, 91, 38, 0.12);
}

/* Mission text with icon */
.mission-text-wrap {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.mission-icon-wrap {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #0d2a45);
    color: var(--secondary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(26, 60, 94, 0.2);
}

.mission-text-wrap .vm-desc {
    margin-bottom: 0;
    padding-top: 4px;
}

/* Floating target badges on mission image */
.mission-float {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mf-item {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: floatBadge 3s ease-in-out infinite alternate;
}

.mf-item:nth-child(even) {
    animation-delay: 1s;
}

.mf-item i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.mf-item span {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(26, 60, 94, 0.75);
    padding: 2px 7px;
    border-radius: 20px;
    white-space: nowrap;
}

@keyframes floatBadge {
    from {
        transform: translate(-50%, -50%) translateY(0);
    }

    to {
        transform: translate(-50%, -50%) translateY(-8px);
    }
}

/* Mission footer quote */
.mission-footer-quote {
    margin-top: 24px;
}

.mfq-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    box-shadow: 0 6px 20px rgba(26, 60, 94, 0.25);
}

.mfq-icon {
    font-size: 22px;
    color: var(--secondary);
}

/* =============================================
   VISION & MISSION — RESPONSIVE
   ============================================= */
@media (max-width: 991px) {

    .vision-inner,
    .mission-inner {
        flex-direction: column;
    }

    .vision-content,
    .mission-content {
        flex: unset;
        padding: 50px 30px;
        order: 2;
    }

    .vision-image,
    .mission-image {
        flex: unset;
        order: 1;
        min-height: 300px;
    }

    .vm-img-frame {
        position: relative;
        min-height: 300px;
        height: 300px;
    }

    .vision-frame::before,
    .mission-frame::after {
        display: none;
    }

    .vm-pillars {
        grid-template-columns: 1fr 1fr;
    }

    .mf-item {
        display: none;
    }
}

@media (max-width: 575px) {
    .vm-heading {
        font-size: 3rem;
    }

    .vision-content,
    .mission-content {
        padding: 40px 20px;
    }

    .vm-pillars {
        grid-template-columns: 1fr;
    }

    .vm-quote {
        flex-wrap: wrap;
    }
}

/* =============================================
   CORE VALUES
   ============================================= */
.core-values-section {
    background: var(--light-bg);
}

.value-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--secondary);
}

.value-card h5 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Filter buttons (kept for compatibility) */
.project-filter-btns {
    display: inline-flex;
    gap: 8px;
    background: var(--light-bg);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.filter-btn {
    background: transparent;
    border: none;
    border-radius: 50px;
    padding: 9px 22px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(26, 60, 94, 0.25);
}

/* =============================================
   PROJECTS SECTION — REDESIGN
   ============================================= */
.projects-section {
    background: #fffbf2;
    position: relative;
    overflow: hidden;
    padding: 90px 0 80px;
}

/* Subtle dot-grid background */
.proj-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 60, 94, 0.07) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Decorative glow circles */
.proj-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.proj-circle-1 {
    width: 500px;
    height: 500px;
    top: -180px;
    right: -120px;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.10) 0%, transparent 65%);
}

.proj-circle-2 {
    width: 380px;
    height: 380px;
    bottom: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(26, 60, 94, 0.08) 0%, transparent 65%);
}

/* ── Section Header ── */
.proj-header {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

.proj-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(200, 155, 60, 0.12);
    border: 1px solid rgba(200, 155, 60, 0.3);
    border-radius: 20px;
    padding: 6px 20px;
    margin-bottom: 16px;
}

.proj-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.proj-title span {
    color: var(--secondary);
    position: relative;
}

.proj-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), #e8c96e);
    border-radius: 2px;
    opacity: 0.4;
}

.proj-subtitle {
    color: var(--text-muted);
    font-size: 14.5px;
    max-width: 540px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.proj-divider {
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 0 auto;
}

/* ── Project Cards ── */
.project-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(26, 60, 94, 0.10);
    border: 1px solid rgba(26, 60, 94, 0.07);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(26, 60, 94, 0.18);
    border-color: rgba(200, 155, 60, 0.2);
}

.project-card:hover::before {
    transform: scaleX(1);
}

/* Image */
.project-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

/* Shine sweep on hover */
.project-img-shine {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.project-card:hover .project-img-shine {
    left: 130%;
}

/* Overlay */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 60, 94, 0.2) 0%, rgba(26, 60, 94, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.proj-overlay-btn {
    background: #fff;
    color: var(--primary);
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    transition: all 0.35s ease;
}

.project-card:hover .proj-overlay-btn {
    transform: translateY(0);
}

.proj-overlay-btn:hover {
    background: var(--secondary);
    color: #fff;
}

/* Badge */
.project-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(6px);
    z-index: 3;
    display: inline-flex;
    align-items: center;
}

.badge-running {
    background: rgba(255, 243, 205, 0.92);
    color: #7a5800;
    border: 1px solid rgba(200, 155, 60, 0.3);
}

.badge-complete {
    background: rgba(209, 231, 221, 0.92);
    color: #0a3622;
    border: 1px solid rgba(10, 102, 34, 0.2);
}

/* Card Body */
.project-body {
    padding: 22px 22px 18px;
}

.proj-type-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(200, 155, 60, 0.1);
    border-radius: 4px;
    padding: 3px 9px;
    margin-bottom: 8px;
}

.project-body h5 {
    font-size: 1.12rem;
    color: var(--primary);
    margin-bottom: 6px;
    font-weight: 800;
    line-height: 1.3;
}

.project-body .location {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.project-body .location i {
    color: var(--secondary);
    font-size: 12px;
}

/* Feature pills */
.proj-features {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.proj-features span {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    background: var(--light-bg);
    border: 1px solid rgba(26, 60, 94, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.proj-features span i {
    color: var(--secondary);
    font-size: 10px;
}

.project-card:hover .proj-features span {
    background: rgba(26, 60, 94, 0.06);
}

/* Footer row */
.project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(26, 60, 94, 0.08);
}

.price-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-tag i {
    color: var(--secondary);
    font-size: 12px;
}

.price-tag.text-success {
    color: #0a6640;
}

.price-tag.text-success i {
    color: #0a6640;
}

.proj-detail-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #0d2a45 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    white-space: nowrap;
}

.proj-detail-btn:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, #a07a28 100%);
    color: #fff;
    transform: translateX(3px);
}

/* ── View All CTA ── */
.proj-view-all {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.proj-view-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #0d2a45 100%);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(26, 60, 94, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.proj-view-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #a07a28 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.proj-view-btn:hover::before {
    opacity: 1;
}

.proj-view-btn span,
.proj-view-btn i {
    position: relative;
    z-index: 1;
}

.proj-view-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(200, 155, 60, 0.4);
}

/* Legacy selectors kept for compatibility */
.project-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0 14px;
}

.project-meta span {
    font-size: 11.5px;
    color: var(--text-muted);
    background: var(--light-bg);
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.project-meta span i {
    color: var(--primary);
    font-size: 10.5px;
}

/* Responsive */
@media (max-width: 767px) {
    .proj-title {
        font-size: 1.7rem;
    }

    .project-img {
        height: 200px;
    }
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 94, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 28px;
    color: #fff;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* =============================================
   CTA SECTION — LIGHT THEME REDESIGN
   ============================================= */
.cta-section {
    padding: 80px 0;
    background: #f0f4f8;
    position: relative;
    overflow: hidden;
}

/* Background decorative shapes */
.cta-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cta-shape-1 {
    width: 460px;
    height: 460px;
    top: -160px;
    right: -100px;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.12) 0%, transparent 65%);
}

.cta-shape-2 {
    width: 320px;
    height: 320px;
    bottom: -100px;
    left: -60px;
    background: radial-gradient(circle, rgba(26, 60, 94, 0.08) 0%, transparent 65%);
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 60, 94, 0.05) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Main card */
.cta-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 70px rgba(26, 60, 94, 0.13), 0 4px 20px rgba(26, 60, 94, 0.07);
    border: 1px solid rgba(26, 60, 94, 0.08);
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
}

/* Gold top accent line */
.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: ctaShimmer 3s linear infinite;
}

@keyframes ctaShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Left content block */
.cta-content {
    flex: 1 1 0;
    padding: 52px 48px 52px 52px;
    min-width: 0;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(200, 155, 60, 0.10);
    border: 1px solid rgba(200, 155, 60, 0.28);
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: 18px;
}

.cta-eyebrow i {
    font-size: 12px;
}

.cta-heading {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 14px;
}

.cta-heading span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.cta-heading span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), #e8c96e);
    border-radius: 2px;
    opacity: 0.4;
}

.cta-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 460px;
}

/* Trust pills */
.cta-trust-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary);
    background: var(--light-bg);
    border: 1px solid rgba(26, 60, 94, 0.10);
    border-radius: 20px;
    padding: 7px 14px;
    transition: var(--transition);
}

.cta-pill i {
    color: var(--secondary);
    font-size: 12px;
}

.cta-pill:hover {
    background: rgba(200, 155, 60, 0.08);
    border-color: rgba(200, 155, 60, 0.3);
}

/* Vertical divider */
.cta-divider-v {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(180deg, transparent 5%, rgba(26, 60, 94, 0.12) 30%, rgba(200, 155, 60, 0.2) 50%, rgba(26, 60, 94, 0.12) 70%, transparent 95%);
    flex-shrink: 0;
}

/* Right actions block */
.cta-actions {
    flex: 0 0 340px;
    padding: 52px 44px 52px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.cta-action-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* Primary CTA button */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #0d2a45 100%);
    color: #fff;
    border-radius: 14px;
    padding: 15px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 24px rgba(26, 60, 94, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #a07a28 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 14px;
}

.cta-btn-primary:hover::before {
    opacity: 1;
}

.cta-btn-primary i,
.cta-btn-primary span {
    position: relative;
    z-index: 1;
}

.cta-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(200, 155, 60, 0.4);
}

/* Secondary phone button */
.cta-btn-secondary {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: var(--light-bg);
    border: 2px solid rgba(26, 60, 94, 0.10);
    border-radius: 14px;
    padding: 13px 20px;
    text-decoration: none;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: rgba(26, 60, 94, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 60, 94, 0.12);
}

.cta-phone-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #0d2a45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 60, 94, 0.25);
}

.cta-phone-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.cta-phone-text small {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cta-phone-text strong {
    font-size: 16px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.cta-timing {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-timing i {
    color: var(--secondary);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .cta-card {
        flex-direction: column;
        border-radius: 22px;
    }

    .cta-content {
        padding: 44px 36px 32px;
        text-align: center;
    }

    .cta-desc {
        max-width: 100%;
    }

    .cta-trust-pills {
        justify-content: center;
    }

    .cta-divider-v {
        width: 80%;
        height: 1px;
        align-self: auto;
        background: linear-gradient(90deg, transparent, rgba(26, 60, 94, 0.12) 30%, rgba(200, 155, 60, 0.2) 50%, rgba(26, 60, 94, 0.12) 70%, transparent);
    }

    .cta-actions {
        flex: auto;
        width: 100%;
        padding: 32px 36px 44px;
    }

    .cta-heading span::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-content {
        padding: 36px 24px 28px;
    }

    .cta-actions {
        padding: 24px 24px 38px;
    }

    .cta-heading {
        font-size: 1.6rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        border-radius: 12px;
    }

    .cta-trust-pills {
        gap: 8px;
    }

    .cta-pill {
        font-size: 11.5px;
        padding: 6px 12px;
    }
}

/* Legacy selectors kept for compatibility */
.cta-inner {
    display: none;
}

.cta-badge {
    display: none;
}

.cta-features {
    display: none;
}

.cta-buttons {
    display: none;
}

.btn-cta-rounded {
    border-radius: 30px;
}

/* =============================================
   FOOTER — REDESIGN
   ============================================= */
.footer {
    background-image: url(../images/footer.jpg);
    position: relative;
    overflow: hidden;
}

/* Dot-grid overlay */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgb(255 255 255 / 0%) 1.5px, #000000c9 1.5px);
    pointer-events: none;
    z-index: 0;
}

/* Glow blobs */
.footer::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Gold shimmer accent bar on top */
.footer-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 35%, #e8c96e 50%, var(--secondary) 65%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: footerBarShimmer 4s linear infinite;
    position: relative;
    z-index: 2;
}

@keyframes footerBarShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Main content area */
.footer-main {
    padding: 70px 0 50px;
    position: relative;
    z-index: 1;
}

/* ── Brand Block ── */
.footer-brand-block {

    flex-direction: column;
    gap: 0;
}

.footer-logo {
    height: 58px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: brightness(1.08);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13.5px;
    line-height: 1.85;
    margin-bottom: 22px;
    max-width: 340px;
}

/* Trust badges */
.footer-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.ftrust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    padding: 6px 14px;
    transition: var(--transition);
}

.ftrust-item i {
    color: var(--secondary);
    font-size: 11px;
}

.ftrust-item:hover {
    background: rgba(200, 155, 60, 0.12);
    border-color: rgba(200, 155, 60, 0.3);
    color: #fff;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.65);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(200, 155, 60, 0.4);
}

/* ── Widget ── */
.footer-widget {
    position: relative;
    z-index: 1;
}

.footer-heading {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-left: 14px;
}

.footer-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, var(--secondary), #a07a28);
    border-radius: 2px;
}

/* ── Links ── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgb(255 255 255);
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a i {
    color: var(--secondary);
    font-size: 9px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* ── Contact Cards ── */
.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fcc-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 13px 16px;
    transition: var(--transition);
}

.fcc-clickable {
    cursor: pointer;
}

.fcc-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 155, 60, 0.25);
    transform: translateX(4px);
}

.fcc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(26, 60, 94, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.fcc-icon-gold {
    background: rgba(200, 155, 60, 0.15);
    border-color: rgba(200, 155, 60, 0.25);
    color: var(--secondary);
}

.fcc-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.fcc-text strong {
    font-size: 11px;
    font-weight: 700;
    color: rgb(255 255 255);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fcc-text span,
.fcc-text a {
    color: rgb(255, 255, 255);
    font-size: 13px;
    line-height: 1.55;
    text-decoration: none;
    transition: var(--transition);
}

.fcc-text a:hover {
    color: var(--secondary);
}

/* ── Horizontal divider row between main & bottom ── */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 0;
}

/* ── Footer Bottom ── */
.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgb(255 255 255);
    font-size: 13px;
    margin: 0;
}

.footer-bottom i {
    color: #e04a4a;
    font-size: 12px;
    margin: 0 3px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .footer-main {
        padding: 54px 0 40px;
    }

    .footer-brand-block {
        align-items: center;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-trust {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-main {
        padding: 44px 0 32px;
    }

    .footer-bottom {
        text-align: center;
    }

    .fcc-item {
        border-radius: 10px;
        padding: 11px 14px;
    }
}


/* =============================================
   ALTERNATE SECTION BACKGROUND
   ============================================= */

/* Warm geometric light background for alternate sections */
.section-alt-bg {
    background-color: #faf7f2;
    background-image:
        linear-gradient(135deg, rgba(200, 155, 60, 0.04) 25%, transparent 25%),
        linear-gradient(225deg, rgba(200, 155, 60, 0.04) 25%, transparent 25%),
        linear-gradient(315deg, rgba(200, 155, 60, 0.04) 25%, transparent 25%),
        linear-gradient(45deg, rgba(200, 155, 60, 0.04) 25%, transparent 25%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 0, 30px -30px, 0px 30px;
    position: relative;
}

/* Subtle top + bottom gold accent borders */
.section-alt-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(200, 155, 60, 0.25) 30%, rgba(200, 155, 60, 0.45) 50%, rgba(200, 155, 60, 0.25) 70%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.section-alt-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(200, 155, 60, 0.25) 30%, rgba(200, 155, 60, 0.45) 50%, rgba(200, 155, 60, 0.25) 70%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.section-alt-bg > * {
    position: relative;
    z-index: 1;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 18px rgba(26, 60, 94, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

/* =============================================
   UTILITIES
   ============================================= */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: #0d2a45;
    border-color: #0d2a45;
}

.text-primary {
    color: var(--primary) !important;
}

.text-gold {
    color: var(--secondary) !important;
}

.bg-primary-custom {
    background: var(--primary);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }

    .about-badge {
        right: 0;
        bottom: -15px;
    }

    .about-float-tag {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .strip-stat {
        padding: 20px 12px;
    }

    .strip-num {
        font-size: 1.7rem;
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .about-badge {
        display: none;
    }


    .top-bar .col-md-4 {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content p {
        display: none;
    }
}

/* =============================================
   PAGE BANNER (inner pages)
   ============================================= */
.page-banner {
    background: linear-gradient(135deg, #1a3c5e 0%, #0d2a45 100%);
    padding: 70px 0 50px;
}

.page-banner h1 {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   INNER PAGE SECTION PADDING
   ============================================= */
.inner-section {
    padding: 80px 0;
    background: var(--light-bg);
}

/* =============================================
   BTN GROUP OVERRIDES
   ============================================= */
.btn-group .btn {
    border-radius: 0 !important;
}

.btn-group .btn:first-child {
    border-radius: 30px 0 0 30px !important;
}

.btn-group .btn:last-child {
    border-radius: 0 30px 30px 0 !important;
}

.btn-group .btn:only-child {
    border-radius: 30px !important;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}


/* =============================================
   PAGE BANNER (common across all pages)
   ============================================= */
.page-banner-wrap {
    position: relative;
    background-image: url('../images/footer.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    overflow: hidden;
}

/* Dark overlay for readability */
.page-banner-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 42, 69, 0.88) 0%, rgba(26, 60, 94, 0.82) 100%);
    z-index: 0;
}

/* Decorative bottom border accent */
.page-banner-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #f0a500, transparent);
    z-index: 1;
}

.page-banner-wrap .container {
    position: relative;
    z-index: 2;
}

.page-banner-wrap h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-banner-wrap .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-banner-wrap .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
}

.page-banner-wrap .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "/";
}

.breadcrumb-item a,
.breadcrumb-item a.text-warning {
    color: #f0a500 !important;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #ffd966 !important;
    text-decoration: underline;
}

.breadcrumb-item.active,
.page-banner-wrap .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.90) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .page-banner-wrap {
        padding: 55px 0 40px;
        background-position: center top;
    }

    .page-banner-wrap h1 {
        font-size: 1.55rem;
    }

    .page-banner-wrap .breadcrumb-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .page-banner-wrap {
        padding: 45px 0 32px;
    }

    .page-banner-wrap h1 {
        font-size: 1.3rem;
    }
}

/* =============================================
   ABOUT PAGE — sub label
   ============================================= */
.sub-label {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =============================================
   VISION / MISSION — list items
   ============================================= */
.vm-list {
    color: var(--text-muted);
    font-size: 14px;
}

.vm-card.mission .vm-list {
    color: rgba(255, 255, 255, 0.75);
}

.vm-list li {
    margin-bottom: 8px;
}

/* =============================================
   ABOUT — "Meet Director" button
   ============================================= */
.btn-rounded {
    border-radius: 25px;
    padding: 11px 28px;
    font-weight: 600;
}

/* =============================================
   PROJECTS & CTA — rounded buttons
   ============================================= */
.btn-cta-primary {
    border-radius: 25px;
    padding: 11px 28px;
    font-weight: 600;
}

.btn-cta-outline {
    border-radius: 25px;
    padding: 11px 28px;
    font-weight: 600;
}

.btn-cta-rounded {
    border-radius: 30px;
}

/* =============================================
   BANKER PAGE
   ============================================= */
.banker-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.benefit-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(26, 60, 94, 0.08);
    height: 100%;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-icon i {
    font-size: 24px;
    color: var(--primary);
}

.benefit-card h5 {
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 13.5px;
}

.bank-card {
    background: var(--white);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 14px rgba(26, 60, 94, 0.08);
    transition: var(--transition);
    cursor: default;
    height: 100%;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 60, 94, 0.15);
}

.bank-logo-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-weight: 800;
    font-size: 12px;
}

.bank-card h6 {
    color: var(--primary);
    font-size: 13.5px;
    margin: 0;
}

.bank-card span {
    font-size: 11.5px;
    color: #888;
    margin-top: 6px;
    display: block;
}

.loan-cta-box {
    background: linear-gradient(135deg, #1a3c5e, #0d2a45);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.loan-cta-box h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.loan-cta-box p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

/* =============================================
   COMPLETE / RUNNING PROJECTS PAGE
   ============================================= */
.stats-strip {
    background: var(--secondary);
    padding: 20px 0;
}

.stats-strip .stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.stats-strip .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.completed-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.completed-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.completed-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.completed-card-img img:hover {
    transform: scale(1.06);
}

.badge-completed {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #d1e7dd;
    color: #0a3622;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
}

.completed-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.completed-card-body h5 {
    color: var(--primary);
    margin-bottom: 6px;
}

.completed-card-body .loc {
    font-size: 13px;
    color: #888;
    margin-bottom: 14px;
}

.completed-card-body .loc i {
    color: var(--secondary);
}

.meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.meta-tag {
    font-size: 12px;
    color: #555;
    background: #f1f3f5;
    padding: 4px 10px;
    border-radius: 20px;
}

.meta-tag i {
    color: var(--primary);
    margin-right: 4px;
}

.meta-tag-green {
    background: #d1e7dd;
    color: #0a3622;
}

.possession-row {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.possession-icon {
    width: 36px;
    height: 36px;
    background: #d1e7dd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.possession-icon i {
    color: #0a6640;
    font-size: 14px;
}

.possession-text {
    font-size: 13px;
    color: #0a6640;
    font-weight: 600;
}

/* Running Projects */
.running-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.running-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    height: 100%;
}

.running-card-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.running-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-construction {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff3cd;
    color: #856404;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
}

.running-card-body {
    padding: 22px;
}

.running-card-body h5 {
    color: var(--primary);
    margin-bottom: 6px;
}

.running-card-body .loc {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.running-card-body .loc i {
    color: var(--secondary);
}

.progress-section {
    margin-bottom: 16px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.progress-header .label {
    font-size: 12.5px;
    color: #555;
    font-weight: 600;
}

.progress-header .pct {
    font-size: 12.5px;
    color: var(--primary);
    font-weight: 700;
}

.progress-track {
    background: #e9ecef;
    border-radius: 10px;
    height: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.running-btns {
    display: flex;
    gap: 10px;
}

.btn-book {
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 12.5px;
    font-weight: 600;
    border: none;
    flex: 1;
    text-align: center;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--secondary);
    color: #fff;
}

.btn-visit {
    background: transparent;
    color: var(--primary);
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 12.5px;
    font-weight: 600;
    border: 2px solid var(--primary);
    flex: 1;
    text-align: center;
    transition: var(--transition);
}

.btn-visit:hover {
    background: var(--primary);
    color: #fff;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(26, 60, 94, 0.08);
    margin-bottom: 20px;
}

.contact-info-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-inner.center {
    align-items: center;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--primary);
}

.contact-info-detail h6 {
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-info-detail p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.contact-info-detail a {
    font-size: 15px;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}

.contact-info-detail a.sm {
    font-size: 14px;
}

.contact-hours-card {
    background: var(--primary);
    border-radius: 16px;
    padding: 28px;
}

.contact-hours-card h6 {
    color: var(--secondary);
    margin-bottom: 14px;
}

.hours-table {
    width: 100%;
    font-size: 13.5px;
}

.hours-table td {
    padding: 4px 0;
}

.hours-table .day {
    color: rgba(255, 255, 255, 0.75);
}

.hours-table .time {
    color: #fff;
    font-weight: 600;
    text-align: right;
}

.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-card h4 {
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-form-card .sub-text {
    color: #888;
    font-size: 14px;
    margin-bottom: 28px;
}

.form-field-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.form-field {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-field:focus {
    border-color: var(--primary);
}

.form-field-textarea {
    resize: vertical;
}

.success-box {
    background: #d1e7dd;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-box i {
    color: #0a6640;
    font-size: 20px;
}

.success-box strong {
    color: #0a3622;
}

.success-box p {
    margin: 4px 0 0;
    color: #0a6640;
    font-size: 13.5px;
}

.error-alert {
    background: #f8d7da;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #842029;
    font-size: 13.5px;
}

.btn-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 13px 36px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background: var(--secondary);
}

.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =============================================
   DIRECTOR PAGE
   ============================================= */
.director-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.director-profile-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.director-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--secondary);
    margin-bottom: 20px;
}

.director-profile-card h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.director-role {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
}

.director-company {
    color: var(--text-muted);
    font-size: 13.5px;
}

.director-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.director-social a {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.director-social a:hover {
    background: var(--secondary);
}

.director-content .msg-label {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.director-content h2 {
    color: var(--primary);
    margin: 12px 0 20px;
    font-size: 1.9rem;
}

.director-content p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 14px;
}

.director-stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(26, 60, 94, 0.08);
    border-bottom: 3px solid var(--secondary);
}

.director-stat-card .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.director-stat-card .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* =============================================
   LEGAL PAGE
   ============================================= */
.legal-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.legal-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(26, 60, 94, 0.08);
    height: 100%;
}

.legal-card.primary-border {
    border-left: 4px solid var(--primary);
}

.legal-card.gold-border {
    border-left: 4px solid var(--secondary);
}

.legal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.legal-icon.blue-bg {
    background: var(--accent);
}

.legal-icon.blue-bg i {
    font-size: 22px;
    color: var(--primary);
}

.legal-icon.gold-bg {
    background: #fff8ec;
}

.legal-icon.gold-bg i {
    font-size: 22px;
    color: var(--secondary);
}

.legal-card h4 {
    color: var(--primary);
    margin-bottom: 12px;
}

.legal-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-info-box {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 14px;
}

.legal-info-box p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

.legal-info-box p+p {
    margin-top: 6px;
}

.legal-info-box strong {
    color: var(--primary);
}

.legal-small-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(26, 60, 94, 0.08);
    height: 100%;
    text-align: center;
}

.legal-small-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.legal-small-icon i {
    font-size: 22px;
}

.legal-small-card h5 {
    color: var(--primary);
    margin-bottom: 10px;
}

.legal-small-card p {
    color: #555;
    font-size: 13.5px;
    line-height: 1.7;
}

.badge-pill-blue {
    background: var(--accent);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-pill-green {
    background: #d1e7dd;
    color: #0a6640;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-pill-yellow {
    background: #fff3cd;
    color: #856404;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.buyer-protection-box {
    background: var(--primary);
    border-radius: 16px;
    padding: 32px;
    color: #fff;
}

.buyer-protection-box h5 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.buyer-protection-box p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.8;
}

.buyer-protection-box .shield-icon {
    font-size: 3rem;
    color: var(--secondary);
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-page-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.gallery-item-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item-wrap img:hover {
    transform: scale(1.07);
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 94, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.gallery-item-wrap:hover .g-overlay {
    opacity: 1;
}

.g-overlay i {
    font-size: 26px;
    color: #fff;
    margin-bottom: 8px;
}

.g-overlay span {
    font-size: 12.5px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    padding: 0 10px;
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.lightbox-content img {
    max-height: 80vh;
    max-width: 100%;
    border-radius: 10px;
    object-fit: contain;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 14px;
    font-size: 14px;
}

/* =============================================
   LOGIN PAGE
   ============================================= */
.login-page-body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    margin: 0;
    display: flex;
    background: linear-gradient(135deg, #1a3c5e 0%, #0d2a45 100%);
}

.login-left-panel {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

@media (min-width: 992px) {
    .login-left-panel {
        display: flex;
    }
}

.login-left-inner {
    max-width: 420px;
    color: #fff;
}

.login-left-inner h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.login-left-inner p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 28px;
}

.login-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.login-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-feature-icon i {
    color: var(--secondary);
    font-size: 14px;
}

.login-feature-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.login-right-panel {
    width: 100%;
    max-width: 480px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 36px;
    min-height: 100vh;
}

.login-box-inner {
    width: 100%;
}

.login-logo-wrap {
    text-align: center;
    margin-bottom: 28px;
}

.login-logo-wrap img {
    height: 55px;
}

.login-logo-wrap h5 {
    color: var(--primary);
    margin-top: 10px;
    font-size: 1.1rem;
}

.login-form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.login-form-control {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s;
}

.login-form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 60, 94, 0.08);
}

.login-input-group .login-form-control {
    border-right: none;
    border-radius: 10px 0 0 10px;
}

.login-toggle-pwd {
    background: #fff;
    border: 1.5px solid var(--border);
    border-left: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    padding: 0 14px;
    transition: all 0.3s;
}

.login-toggle-pwd i {
    font-size: 14px;
    color: #888;
}

.btn-login-form {
    background: var(--primary);
    color: #fff;
    border: none;
    width: 100%;
    padding: 13px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 6px;
    font-family: 'Poppins', sans-serif;
}

.btn-login-form:hover {
    background: var(--secondary);
}

.login-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #555;
    cursor: pointer;
}

.remember-label input {
    accent-color: var(--primary);
}

.forgot-link {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 600;
}

.login-back-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13.5px;
    color: #888;
}

.login-back-link a {
    color: var(--primary);
    font-weight: 600;
}

.login-copy {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: #aaa;
}

.login-error-box {
    background: #fdecea;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 13.5px;
    color: #c0392b;
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =============================================
   LEGAL — small icon variants
   ============================================= */
.legal-icon-primary {
    font-size: 22px;
    color: var(--primary);
}

.legal-icon-green-bg {
    background: #d1e7dd;
}

.legal-icon-green {
    font-size: 22px;
    color: #0a6640;
}

.legal-icon-yellow-bg {
    background: #fff3cd;
}

.legal-icon-yellow {
    font-size: 22px;
    color: #856404;
}

/* =============================================
   LOGIN — brand logo in left panel
   ============================================= */
.login-brand-logo {
    height: 60px;
    margin-bottom: 28px;
}


/* =============================================
   STICKY SOCIAL WALL (Right Side)
   ============================================= */

/*
   Strategy: Each .ssw-item is position:relative on the right edge.
   The visible icon sits at right:0 always.
   The label slides in from the left of the icon via max-width animation.
   No overflow:hidden on the parent — we use max-width on the label instead.
*/

.sticky-social-wall {
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    /* keep everything flush to right */
}

/* Wrapper that grows leftward on hover */
.ssw-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    /* icon always on right */
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px 0 0 8px;
    box-shadow: -3px 2px 14px rgba(0, 0, 0, 0.22);
    transition: box-shadow 0.3s ease;
    overflow: visible;
    /* allow label to show outside tight width */
    position: relative;
}

/* The icon — always visible, fixed size */
.ssw-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    border-radius: 8px 0 0 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ssw-item:hover .ssw-icon {
    transform: scale(1.08);
}

/* Label — hidden by default, slides in from right (clipped by max-width) */
.ssw-label {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    max-width: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease,
        padding 0.35s ease;
    /* label sits LEFT of icon */
    order: -1;
}

.ssw-item:hover .ssw-label {
    max-width: 120px;
    opacity: 1;
    padding: 0 12px 0 16px;
}

/* Per-platform background colors applied to both icon AND label */
.ssw-facebook .ssw-icon,
.ssw-facebook .ssw-label {
    background: #1877f2;
}

.ssw-facebook {
    background: #1877f2;
    border-radius: 8px 0 0 8px;
}

.ssw-instagram .ssw-icon,
.ssw-instagram .ssw-label {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.ssw-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 8px 0 0 8px;
}

.ssw-youtube .ssw-icon,
.ssw-youtube .ssw-label {
    background: #ff0000;
}

.ssw-youtube {
    background: #ff0000;
    border-radius: 8px 0 0 8px;
}

.ssw-linkedin .ssw-icon,
.ssw-linkedin .ssw-label {
    background: #0077b5;
}

.ssw-linkedin {
    background: #0077b5;
    border-radius: 8px 0 0 8px;
}

.ssw-call .ssw-icon,
.ssw-call .ssw-label {
    background: #27ae60;
}

.ssw-call {
    background: #27ae60;
    border-radius: 8px 0 0 8px;
}

.ssw-whatsapp .ssw-icon,
.ssw-whatsapp .ssw-label {
    background: #25d366;
}

.ssw-whatsapp {
    background: #25d366;
    border-radius: 8px 0 0 8px;
}

/* Enquire Now — special with separator margin */
.ssw-enquire {
    background: linear-gradient(135deg, var(--primary) 0%, #0d2a45 100%);
    border-radius: 8px 0 0 8px;
    margin-top: 10px;
    box-shadow: -3px 2px 16px rgba(26, 60, 94, 0.40);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.ssw-enquire .ssw-icon {
    background: transparent;
    font-size: 17px;
}

.ssw-enquire .ssw-label {
    background: transparent;
}

.ssw-enquire:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, #a07a28 100%);
    box-shadow: -3px 2px 20px rgba(200, 155, 60, 0.50);
}

.ssw-enquire:hover .ssw-label {
    max-width: 130px;
}

/* ── Mobile: icon-only, no expansion ── */
@media (max-width: 575px) {
    .sticky-social-wall {
        top: auto;
        bottom: 72px;
        transform: none;
    }

    .ssw-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 17px;
    }

    .ssw-label {
        display: none !important;
    }

    .ssw-item:hover .ssw-label {
        display: none !important;
    }
}

/* =============================================
   ENQUIRY POPUP MODAL
   ============================================= */
.enquiry-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 40, 0.65);
    backdrop-filter: blur(4px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.enquiry-overlay.active {
    display: flex;
    animation: fadeInOverlay 0.25s ease;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.enquiry-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUpModal 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.enquiry-modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, #0d2a45 100%);
    padding: 28px 28px 22px;
    position: relative;
    text-align: center;
}

.enquiry-modal-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), #e8c96e, var(--secondary));
}

.enquiry-modal-header h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 4px;
    font-family: 'Poppins', sans-serif;
}

.enquiry-modal-header p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.enquiry-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
}

.enquiry-close:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}

.enquiry-modal-body {
    padding: 28px 28px 24px;
}

.enq-form-group {
    margin-bottom: 18px;
}

.enq-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 7px;
    font-family: 'Poppins', sans-serif;
}

.enq-form-group label span {
    color: #e74c3c;
    margin-left: 2px;
}

.enq-input {
    width: 100%;
    border: 1.5px solid #dde3ec;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    transition: all 0.25s ease;
    outline: none;
    background: #f9fafc;
}

.enq-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 60, 94, 0.08);
}

.enq-input::placeholder {
    color: #aab4c0;
}

.enq-input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.10);
}

.enq-error-msg {
    display: none;
    font-size: 12px;
    color: #e74c3c;
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
}

.enq-error-msg.show {
    display: block;
}

.btn-enq-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #0d2a45 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.4px;
    margin-top: 4px;
}

.btn-enq-submit:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, #a07a28 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 155, 60, 0.4);
}

.enq-success-msg {
    display: none;
    text-align: center;
    padding: 30px 20px 10px;
}

.enq-success-msg.show {
    display: block;
}

.enq-success-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #27ae60, #1e8449);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.35);
    animation: popIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

.enq-success-msg h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.enq-success-msg p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 480px) {
    .enquiry-modal {
        border-radius: 16px;
        max-width: 100%;
    }

    .enquiry-modal-header {
        padding: 22px 20px 18px;
    }

    .enquiry-modal-body {
        padding: 20px 20px 18px;
    }
}


/* =============================================
   AMENITIES SECTION
   ============================================= */
.amenities-section {
   
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.amenities-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 60, 94, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Amenities heading gold span ── */
.amenities-section .text-gold {
    color: var(--secondary);
}

/* ── Grid: 5 cols desktop → 3 tablet → 2 mobile → 2 small ── */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* ── Individual card ── */
.amenity-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 16px 24px;
    text-align: center;
    border: 1px solid rgba(26, 60, 94, 0.08);
    box-shadow: 0 4px 18px rgba(26, 60, 94, 0.07);
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.amenity-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 0 0 16px 16px;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26, 60, 94, 0.14);
    border-color: rgba(200, 155, 60, 0.3);
}

.amenity-card:hover::after {
    transform: scaleX(1);
}

/* ── Icon wrapper ── */
.amenity-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #0d2a45 100%);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 22px rgba(26, 60, 94, 0.25);
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon-wrap {
    background: linear-gradient(135deg, var(--secondary) 0%, #a07a28 100%);
    box-shadow: 0 10px 28px rgba(200, 155, 60, 0.40);
    transform: scale(1.1) rotate(-5deg);
}

/* ── Name label ── */
.amenity-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 575px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .amenity-card {
        padding: 24px 12px 18px;
    }

    .amenity-icon-wrap {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .amenity-name {
        font-size: 12.5px;
    }
}
