/* ============================================================
   PM MITRA Park – Main Stylesheet  (Refined v2)
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
/* ===== INDEX PAGE HERO SECTION - Screenshot Fix ===== */
.hero-section {
    background: linear-gradient(135deg, #001f3f 0%, #0074D9 100%);
    color: white;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-inner {
    padding: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(3rem, 8vw, 5rem) !important;
    font-weight: 800;
    margin: 20px 0 !important;
    line-height: 1.1;
    text-align: left;
}

.t-accent {
    color: #FFD700 !important;
}

.t-green {
    color: #00ff88 !important;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn-hero-primary, .btn-hero-outline {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #001f3f;
}

.hero-stats {
    display: flex !important;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-stat {
    text-align: center;
    min-width: 120px;
}

.h-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 5px;
}

.fivef-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
}

.fivef-chain {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fivef-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.fivef-tag {
    margin-left: auto;
    font-weight: 700;
    color: #FFD700;
    font-size: 0.8rem;
}

.spv-card {
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.spv-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.spv-shares {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.spv-share {
    text-align: center;
}

.sp-pct {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
}

/* STAT BAR - Fixed */
.stat-bar {
    background: rgba(0,31,63,0.9);
    padding: 40px 0;
}

.stat-box {
    text-align: center;
}

.s-num {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
}

/* Row/Grid Fix */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-7, .col-lg-5 {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 992px) {
    .col-lg-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .hero-stats {
        justify-content: center !important;
    }

    .hero-title {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 15px 60px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .spv-shares {
        flex-direction: column;
        gap: 15px;
    }
}

:root {
    --primary: #0f2744;
    --primary-mid: #1a3c5e;
    --accent: #e8891a;
    --accent-hover: #cf7610;
    --accent-light: #fdf3e7;
    --accent-glow: rgba(232,137,26,0.18);
    --text-dark: #131b2e;
    --text-mid: #4a5568;
    --text-light: #ffffff;
    --bg-light: #f7f8fc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(15,39,68,0.07);
    --shadow-md: 0 6px 28px rgba(15,39,68,0.12);
    --shadow-lg: 0 16px 48px rgba(15,39,68,0.18);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.25s ease;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

h4 {
    font-size: 1.05rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    color: var(--text-mid);
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-family: var(--font-body);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

    .top-bar span,
    .top-bar a {
        color: rgba(255,255,255,0.8);
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: color var(--transition);
    }

        .top-bar a:hover {
            color: var(--accent);
        }

    .top-bar .top-bar-right {
        display: flex;
        gap: 20px;
        align-items: center;
    }

/* ============================================================
   NAVBAR
   ============================================================ */
.main-navbar {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

    .main-navbar.is-sticky {
        box-shadow: 0 1px 0 var(--border), var(--shadow-md);
    }

    .main-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 24px;
        max-width: 1200px;
        margin: 0 auto;
    }

/* --- Brand --- */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.brand-emblem {
    width: 46px;
    height: 46px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(15,39,68,0.3);
}

.brand-5f {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 900;
    font-family: var(--font-display);
    letter-spacing: -1px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
    font-family: var(--font-display);
}

.brand-sub {
    font-size: 0.7rem;
    color: var(--text-mid);
    font-family: var(--font-body);
    letter-spacing: 0.2px;
}

/* --- Nav Links --- */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-body);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary);
        background: var(--accent-light);
    }

    /* Invest Now */
    .nav-link.btn-invest {
        background: var(--accent);
        color: #fff !important;
        border-radius: var(--radius-sm);
        padding: 9px 22px;
        font-weight: 700;
        margin-left: 8px;
        box-shadow: 0 3px 12px rgba(232,137,26,0.35);
        transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }

        .nav-link.btn-invest:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 5px 18px rgba(232,137,26,0.45);
        }

/* --- Dropdown --- */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 210px;
    padding: 8px;
    display: none;
    z-index: 999;
    animation: dropIn 0.18s ease;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 14px;
    font-size: 0.87rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    font-weight: 500;
}

    .dropdown-item:hover {
        background: var(--accent-light);
        color: var(--primary);
    }

.dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.65rem;
}

/* --- Hamburger --- */
.navbar-toggler {
    display: none;
    background: none;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 7px 10px;
    cursor: pointer;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .toggler-icon span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        transition: transform var(--transition);
    }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 90vh;
    background: radial-gradient(ellipse 70% 60% at 75% 50%, rgba(232,137,26,0.13) 0%, transparent 65%), radial-gradient(ellipse 50% 70% at 5% 80%, rgba(255,255,255,0.05) 0%, transparent 60%), linear-gradient(140deg, #0a1e35 0%, var(--primary) 40%, var(--primary-mid) 100%);
    display: flex;
    align-items: center;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

    /* Subtle texture overlay */
    .hero-section::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 1;
    }

    .hero-section .container {
        position: relative;
        z-index: 2;
    }

.hero-content {
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,137,26,0.15);
    border: 1px solid rgba(232,137,26,0.38);
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 22px;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.hero-title {
    color: #ffffff;
    margin-bottom: 6px;
}

    .hero-title span {
        color: var(--accent);
    }

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.65);
    font-style: italic;
    font-family: var(--font-display);
    margin-bottom: 18px;
}

.hero-desc {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.68);
    max-width: 520px;
    margin-bottom: 36px;
    font-family: var(--font-body);
    line-height: 1.75;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.btn-primary-hero {
    background: var(--accent);
    color: #fff;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.97rem;
    font-family: var(--font-body);
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    display: inline-block;
    box-shadow: 0 4px 16px rgba(232,137,26,0.4);
}

    .btn-primary-hero:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(232,137,26,0.5);
    }

.btn-outline-hero {
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.97rem;
    font-family: var(--font-body);
    border: 2px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    display: inline-block;
}

    .btn-outline-hero:hover {
        border-color: rgba(255,255,255,0.8);
        background: rgba(255,255,255,0.08);
    }

/* Stats */
.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    font-family: var(--font-display);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 5px;
}

/* 5F Panel */
.hero-5f-panel {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .hero-5f-panel h4 {
        color: var(--accent);
        font-size: 0.72rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        margin-bottom: 18px;
        font-family: var(--font-body);
        font-weight: 700;
    }

.f-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

    .f-item:last-child {
        border-bottom: none;
    }

.f-icon {
    font-size: 1.5rem;
    width: 38px;
    text-align: center;
    flex-shrink: 0;
}

.f-code {
    font-size: 0.65rem;
    color: var(--accent);
    font-weight: 800;
    font-family: var(--font-body);
    display: block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.f-name {
    font-size: 0.93rem;
    color: #fff;
    font-weight: 600;
    font-family: var(--font-body);
    display: block;
}

/* ============================================================
   TWO-COLUMN HERO GRID
   ============================================================ */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
section {
    padding: 88px 0;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    font-family: var(--font-body);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    color: var(--primary);
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-mid);
    max-width: 620px;
    font-size: 1rem;
}

/* ============================================================
   HIGHLIGHT STRIP
   ============================================================ */
.highlight-strip {
    background: var(--primary);
    padding: 44px 0;
    position: relative;
    overflow: hidden;
}

    .highlight-strip::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,137,26,0.08) 0%, transparent 70%);
    }

    .highlight-strip .strip-inner {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
        text-align: center;
        position: relative;
        z-index: 1;
    }

.hs-item {
    padding: 0 20px;
}

    .hs-item + .hs-item {
        border-left: 1px solid rgba(255,255,255,0.1);
    }

    .hs-item .hs-num {
        font-size: 2.4rem;
        font-weight: 900;
        color: var(--accent);
        font-family: var(--font-display);
        display: block;
    }

    .hs-item .hs-label {
        font-size: 0.76rem;
        color: rgba(255,255,255,0.6);
        font-family: var(--font-body);
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-top: 6px;
        display: block;
    }

/* ============================================================
   INFO / ABOUT CARDS
   ============================================================ */
.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.info-card-icon {
    width: 54px;
    height: 54px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.info-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.info-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ============================================================
   FACILITY CARDS
   ============================================================ */
.facility-card {
    background: var(--bg-light);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 22px 22px 22px 24px;
    margin-bottom: 14px;
    transition: box-shadow var(--transition);
}

    .facility-card:hover {
        box-shadow: var(--shadow-sm);
    }

    .facility-card h4 {
        margin-bottom: 6px;
        font-size: 0.97rem;
        color: var(--primary);
    }

    .facility-card p {
        font-size: 0.86rem;
        color: var(--text-mid);
    }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    border: 1px solid var(--border);
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.06);
    }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

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

    .form-group label {
        display: block;
        font-size: 0.84rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 7px;
        font-family: var(--font-body);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        font-size: 0.94rem;
        color: var(--text-dark);
        font-family: var(--font-body);
        background: var(--bg-light);
        transition: border-color var(--transition), box-shadow var(--transition);
        outline: none;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(15,39,68,0.1);
            background: #fff;
        }

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

.btn-submit {
    background: var(--primary);
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

    .btn-submit:hover {
        background: var(--accent);
        transform: translateY(-1px);
    }

/* ============================================================
   PAGE HERO (About / Facilities etc.)
   ============================================================ */
.about-hero,
.page-hero {
    background: linear-gradient(130deg, var(--primary) 0%, var(--primary-mid) 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

    .about-hero h1,
    .page-hero h1 {
        color: #fff;
    }

    .about-hero p,
    .page-hero p {
        color: rgba(255,255,255,0.68);
        max-width: 580px;
        margin: 14px auto 0;
        font-family: var(--font-body);
    }

.breadcrumb-bar {
    background: var(--bg-light);
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    font-family: var(--font-body);
    color: var(--text-mid);
}

    .breadcrumb-bar a {
        color: var(--primary);
    }

        .breadcrumb-bar a:hover {
            color: var(--accent);
        }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background: #081929;
    color: rgba(255,255,255,0.72);
}

.footer-top {
    padding: 64px 0 44px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

    .footer-bottom a {
        color: var(--accent);
    }

        .footer-bottom a:hover {
            color: #fff;
        }

    .footer-bottom .container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
    }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-5f-footer {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent);
    background: rgba(232,137,26,0.12);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    border: 1px solid rgba(232,137,26,0.25);
}

.footer-brand-text {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-display);
}

.footer-widget p {
    font-size: 0.86rem;
    line-height: 1.7;
    margin-top: 8px;
    color: rgba(255,255,255,0.58);
}

.footer-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.stat-pill {
    background: rgba(232,137,26,0.12);
    border: 1px solid rgba(232,137,26,0.3);
    color: var(--accent);
    font-size: 0.73rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-body);
}

.footer-heading {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--font-body);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links li,
    .footer-links a {
        font-size: 0.86rem;
        color: rgba(255,255,255,0.58);
        font-family: var(--font-body);
        transition: color var(--transition);
        display: flex;
        align-items: flex-start;
        gap: 7px;
    }

        .footer-links a:hover {
            color: var(--accent);
        }

.text-accent {
    color: var(--accent) !important;
}

.footer-gov-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.gov-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.6);
    font-size: 0.74rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-body);
}

/* ============================================================
   GRID HELPERS
   ============================================================ */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.col-md-6 {
    width: 50%;
    padding: 0 12px;
}

.col-md-4 {
    width: 33.333%;
    padding: 0 12px;
}

.col-md-3 {
    width: 25%;
    padding: 0 12px;
}

.col-lg-4 {
    width: 33.333%;
    padding: 0 12px;
}

.col-lg-3 {
    width: 25%;
    padding: 0 12px;
}

.col-lg-2 {
    width: 16.666%;
    padding: 0 12px;
}

.g-4 > * {
    margin-bottom: 24px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.ms-3 {
    margin-left: 16px;
}

.me-1 {
    margin-right: 6px;
}

.me-2 {
    margin-right: 8px;
}

.me-3 {
    margin-right: 16px;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-4 {
    gap: 24px;
}

.py-5 {
    padding: 48px 0;
}

.bg-light {
    background: var(--bg-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr 340px;
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-5f-panel {
        margin-top: 36px;
    }

    .col-lg-4, .col-lg-3, .col-lg-2 {
        width: 50%;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 12px 0;
    }

        .navbar-collapse.open {
            display: flex;
        }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0 12px;
    }

    .nav-link {
        padding: 11px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

        .nav-link.btn-invest {
            margin-left: 0;
            margin-top: 8px;
        }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        border-radius: var(--radius-sm);
        display: none;
        padding: 4px 0;
    }

    .nav-item.dropdown.open .dropdown-menu {
        display: block;
    }

    .main-navbar .container {
        position: relative;
    }
}

@media (max-width: 767px) {
    .col-md-6, .col-md-4, .col-md-3,
    .col-lg-4, .col-lg-3, .col-lg-2 {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        gap: 22px;
    }

    .top-bar .top-bar-right {
        display: none;
    }

    section {
        padding: 56px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 70px 0;
    }

    .hs-item + .hs-item {
        border-left: none;
    }

    .contact-form {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-primary-hero, .btn-outline-hero {
        text-align: center;
    }
}
