:root {
    --red: #BD1010;
    --red-dark: #680808;
    --black: #080808;
    --black-2: #111111;
    --gray: #8f8f8f;
    --gray-2: #d9d9d9;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--gray-2);
    background-image: url('../../../Images/Site/banner-home4.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    width: min(860px, calc(100% - 40px));
}

.parallax-section {
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: 720px;
    padding-bottom: 120px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.topbar,
.hero-content,
.cta-grid {
    position: relative;
    z-index: 1;
}

/* Modern Navbar */
.modern-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.modern-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modern-navbar .nav-center {
    display: flex;
    gap: 30px;
}

.modern-navbar .nav-link-center {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-navbar .nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.modern-navbar .mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.modern-navbar .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
}

.modern-navbar .mobile-menu {
    display: none;
}

@media (max-width: 900px) {
    .modern-navbar .nav-center,
    .modern-navbar .nav-right {
        display: none;
    }

    .modern-navbar .mobile-menu-toggle {
        display: block;
    }

    .modern-navbar .mobile-menu {
        display: none;
        flex-direction: column;
        gap: 15px;
    }

    .modern-navbar .mobile-menu .nav-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--red);
    box-shadow: 0 12px 30px rgba(189, 16, 16, .35);
}

.nav-actions,
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 780px;
    padding-top: 60px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    color: var(--white);
    line-height: .96;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(2.7rem, 6.3vw, 6.1rem);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 18px;
}

h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.hero-text {
    max-width: 620px;
    color: var(--gray-2);
    font-size: 1.08rem;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--red), #e01818);
    box-shadow: 0 16px 42px rgba(189, 16, 16, .36);
}

.btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,.38);
    background: rgba(255,255,255,.04);
}

.btn-ghost {
    color: var(--white);
    background: rgba(255,255,255,.08);
}

.stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -72px;
}

.stat-card,
.content-card,
.map-card,
details,
.table-wrap,
.lead-form {
    background: linear-gradient(180deg, rgba(28,28,28,.92), rgba(14,14,14,.92));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 26px 20px;
    text-align: center;
}

    .stat-card strong {
        display: block;
        color: var(--white);
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .stat-card span {
        color: var(--gray);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

.where,
.benefits,
.investment {
    padding: 96px 0;
}

.where {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.map-card {
    padding: 36px;
    min-height: 320px;
    display: grid;
    place-items: center;
}

.map-placeholder {
    display: grid;
    place-items: center;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    color: var(--white);
    font-size: 4rem;
    font-weight: 900;
    background: radial-gradient(circle, var(--red), var(--red-dark));
}

.section-soft {
    padding: 84px 0;
    background: #f4f4f4;
    color: #252525;
}

    .section-soft h2,
    .section-soft h3 {
        color: #151515;
    }

    .section-soft .content-card,
    .section-soft details {
        background: #ffffff;
        color: #333;
        border-color: rgba(0,0,0,.08);
        box-shadow: 0 18px 45px rgba(0,0,0,.1);
    }

.section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.cards {
    display: grid;
    gap: 22px;
}

.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.content-card {
    padding: 26px;
}

.icon-card span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    margin-bottom: 18px;
    color: var(--white);
    background: var(--red);
}

.faq details {
    padding: 22px 26px;
    margin-bottom: 14px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.faq details summary {
    cursor: pointer;
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
    list-style: none;
    position: relative;
    padding-right: 30px;
    outline: none;
}

.faq details summary::-webkit-details-marker {
    display: none;
}

.faq details summary::after {
    content: '\f107'; 
    font-family: FontAwesome;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--red-dark);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq details[open] summary::after {
    transform: rotate(180deg);
}

.faq details p {
    margin-top: 16px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.custom-table-wrap {
    overflow-x: auto;
    padding: 10px;
}

.invest-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
}

.invest-table thead th {
    background: #e8e8e8;
    color: #333;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
    vertical-align: middle;
}   

.invest-table thead th.highlight-th {
    background: var(--red-dark);
    color: #fff;
}

.invest-table tbody td {
    background: #f9f9f9;
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    color: #555;
}

.invest-table tbody tr:last-child td {
    border-bottom: none;
}

.invest-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

.invest-table tbody tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

.invest-table tbody td:first-child {
    color: var(--red-dark);
    font-weight: 800;
    font-size: 1.1rem;
    border-left: 1px solid #eaeaea;
}

.invest-table tbody td:last-child {
    border-right: 1px solid #eaeaea;
}

/* Modern Invest Table Title */
.modern-invest-table-title {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    margin-bottom: -4px;
    position: relative;
    z-index: 5;
}
.modern-invest-table-title thead th {
    background: #e6e6e6;
    color: #222;
    padding: 24px 30px;
    font-weight: 800;
    font-size: 1.25rem;
    border-right: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}
.modern-invest-table-title thead th:first-child { 
    border-radius: 999px 0 0 999px; 
    padding-left: 80px; 
}
.modern-invest-table-title thead th:last-child { 
    border-radius: 0 999px 999px 0; 
    border-right: none; 
    padding-right: 80px; 
}

/* Modern Invest Table Body */
.modern-invest-table { 
    width: 90%; 
    margin: 0 auto;
    border-collapse: separate; 
    border-spacing: 0; 
    text-align: center;
    position: relative;
    z-index: 1;
}
.modern-invest-table tbody td { 
    background: #f7f7f7; 
    padding: 24px 20px; 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: #444; 
    border-bottom: 2px solid #ebebeb; 
    position: relative;
    z-index: 1;
}


.cta {
    padding: 90px 0;
}

.logo {
    height: 19px;
}

/* Footer Style */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0;
    position: relative;
    border-top: none;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
}

.footer-column ul li a:hover {
    color: #7F0000;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: none;
}

.footer-bottom p {
    color: #999999;
    margin: 0;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #7F0000;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    .footer-top {
        gap: 30px;
        text-align: center;
    }
    .footer-links {
        gap: 25px;
        text-align: left;
    }
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .stats,
    .where,
    .two-columns,
    .three-columns,
    .footer-layout {
        grid-template-columns: 1fr !important;
    }

    .footer-layout {
        gap: 30px !important;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 64px;
    }

    .stats {
        margin-top: -42px;
    }

    body {
        background-attachment: scroll;
    }
}

@media (max-width: 620px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .btn {
        width: 100%;
    }

    .nav-actions,
    .hero-buttons {
        width: 100%;
    }
}
