:root{
    --primary:#1F2937;
    --gold:#C9A227;
    --white:#ffffff;
    --border:#e5e7eb;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:9999;
    border-bottom:1px solid var(--border);
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.nav-container{
    height:75px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    text-decoration:none;
    color:var(--primary);
    font-size:26px;
    font-weight:700;
}

.logo span{
    color:var(--gold);
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-menu a{
    text-decoration:none;
    color:var(--primary);
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.nav-menu a:hover{
    color:var(--gold);
}

.nav-btn{
    text-decoration:none;
    background:var(--primary);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.nav-btn:hover{
    transform:translateY(-2px);
}

.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.menu-toggle span{
    width:26px;
    height:3px;
    background:var(--primary);
    margin:3px 0;
    border-radius:10px;
}

.mobile-btn{
    display:none;
}

/* MOBILE */

@media(max-width:991px){

    .nav-btn{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

    .nav-menu{
        position:fixed;
        top:75px;
        right:-100%;
        width:100%;
        height:calc(100vh - 75px);
        background:#fff;
        flex-direction:column;
        justify-content:flex-start;
        padding-top:40px;
        gap:25px;
        transition:.4s ease;
    }

    .nav-menu.active{
        right:0;
    }

    .nav-menu a{
        font-size:18px;
    }

    .mobile-btn{
        display:inline-block;
        background:var(--primary);
        color:#fff !important;
        padding:14px 30px;
        border-radius:50px;
        margin-top:10px;
    }
}
.hero{
    padding:140px 0 80px;
    background:#fff;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    background:#f8f8f8;
    border:1px solid #e5e7eb;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:500;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.1;
    color:#1F2937;
    margin-bottom:20px;
}

.hero-content h1 span{
    color:#C9A227;
}

.hero-content p{
    color:#6B7280;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.primary-btn{
    background:#1F2937;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
}

.secondary-btn{
    border:1px solid #d1d5db;
    color:#1F2937;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
}

.hero-stats{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.hero-stats h3{
    color:#C9A227;
    font-size:24px;
}

.hero-stats span{
    color:#6B7280;
    font-size:14px;
}

.hero-form{
    background:#fff;
    border:1px solid #e5e7eb;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.hero-form h3{
    margin-bottom:25px;
    color:#1F2937;
}

.hero-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.hero-form input{
    height:55px;
    padding:0 15px;
    border:1px solid #d1d5db;
    border-radius:10px;
    outline:none;
}

.hero-form button{
    height:55px;
    border:none;
    border-radius:10px;
    background:#C9A227;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

/* Mobile */

@media(max-width:991px){

    .hero{
        padding-top:120px;
    }

    .hero-wrapper{
        grid-template-columns:1fr;
        gap:35px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-stats{
        gap:25px;
    }

    .hero-form{
        padding:25px;
    }
}

.media-section{
    padding:80px 0;
    background:#f9fafb;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading h2{
    font-size:38px;
    color:#1F2937;
    margin-bottom:10px;
}

.section-heading p{
    color:#6B7280;
}

.media-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.media-card{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.media-card img{
    width:100%;
    height:100%;
    min-height:320px;
    object-fit:cover;
    display:block;
}

.video-card iframe{
    width:100%;
    height:320px;
    border:none;
    display:block;
}

/* Mobile */

@media(max-width:991px){

    .media-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:28px;
    }

    .media-card img,
    .video-card iframe{
        min-height:250px;
        height:250px;
    }
}

.overview-section{
    padding:80px 20px;
    background:#ffffff;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 50px;
}

.section-tag{
    display:inline-block;
    background:#f8f8f8;
    border:1px solid #e5e7eb;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    color:#C9A227;
    margin-bottom:15px;
}

.section-header h2{
    font-size:42px;
    color:#1F2937;
    margin-bottom:15px;
    line-height:1.2;
}

.section-header p{
    color:#6B7280;
    font-size:18px;
    line-height:1.8;
}

.overview-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.overview-card ul{
    list-style:none;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.overview-card li{
    position:relative;
    padding-left:28px;
    color:#374151;
    line-height:1.7;
}

.overview-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#C9A227;
    font-weight:700;
}

/* Mobile */

@media(max-width:991px){

    .section-header h2{
        font-size:30px;
    }

    .section-header p{
        font-size:16px;
    }

    .overview-card{
        padding:25px;
    }

    .overview-card ul{
        grid-template-columns:1fr;
    }
}

.features-section{
    padding:80px 20px;
    background:#f9fafb;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.feature-box{
    background:#fff;
    padding:25px;
    border-radius:16px;
    border:1px solid #e5e7eb;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box h3{
    font-size:16px;
    line-height:1.6;
    color:#1F2937;
}

/* Tablet */

@media(max-width:991px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */

@media(max-width:576px){

    .features-grid{
        grid-template-columns:1fr;
    }

    .feature-box{
        padding:20px;
    }
}

.content-image-section{
    padding:80px 20px;
    background:#ffffff;
}

.content-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.image-box img{
    width:100%;
    display:block;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.content-box .section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#f9fafb;
    border:1px solid #e5e7eb;
    color:#C9A227;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.content-box h2{
    font-size:35px;
    color:#1F2937;
    line-height:1.2;
    margin-bottom:20px;
}

.content-box p{
    font-size:14px;
    color:#6B7280;
    line-height:1.9;
    margin-bottom:30px;
}

.section-btn{
    display:inline-block;
    text-decoration:none;
    background:#1F2937;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.section-btn:hover{
    transform:translateY(-3px);
}

/* Mobile First */

@media(max-width:991px){

    .content-wrapper{
        grid-template-columns:1fr;
        gap:30px;
    }

    .content-box h2{
        font-size:30px;
    }

    .content-box p{
        font-size:14px;
    }
}

.location-profile-section{
    padding:80px 20px;
    background:#ffffff;
}

.location-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.location-content h2{
    font-size:42px;
    color:#1F2937;
    line-height:1.2;
    margin-bottom:20px;
}

.location-content p{
    color:#6B7280;
    line-height:1.9;
    margin-bottom:30px;
    font-size:17px;
}

.location-points{
    list-style:none;
}

.location-points li{
    position:relative;
    padding-left:28px;
    margin-bottom:15px;
    line-height:1.7;
    color:#374151;
}

.location-points li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#C9A227;
    font-weight:700;
}

.location-image img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* Mobile */

@media(max-width:991px){

    .location-wrapper{
        grid-template-columns:1fr;
    }

    .location-content{
        order:1;
    }

    .location-image{
        order:2;
    }

    .location-content h2{
        font-size:30px;
    }

    .location-content p{
        font-size:16px;
    }
}

.gallery-section{
    padding:80px 20px;
    background:#f9fafb;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* Tablet */

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */

@media(max-width:576px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:240px;
    }
}

.opportunities-section{
    padding:80px 20px;
    background:#ffffff;
}

.opportunities-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.opportunities-content h2{
    font-size:42px;
    line-height:1.2;
    color:#1F2937;
    margin-bottom:20px;
}

.opportunities-content p{
    font-size:17px;
    color:#6B7280;
    line-height:1.9;
    margin-bottom:30px;
}

.highlight-points{
    display:grid;
    gap:14px;
}

.point{
    padding:14px 18px;
    background:#f9fafb;
    border:1px solid #e5e7eb;
    border-radius:12px;
    color:#374151;
    font-size:15px;
}

.opportunities-image img{
    width:100%;
    display:block;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* Mobile */

@media(max-width:991px){

    .opportunities-wrapper{
        grid-template-columns:1fr;
        gap:35px;
    }

    .opportunities-content{
        order:1;
    }

    .opportunities-image{
        order:2;
    }

    .opportunities-content h2{
        font-size:30px;
    }

    .opportunities-content p{
        font-size:16px;
    }
}

.status-section{
    padding:80px 20px;
    background:#ffffff;
}

.status-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.status-content h2{
    font-size:42px;
    color:#1F2937;
    line-height:1.2;
    margin:15px 0 20px;
}

.status-desc{
    font-size:17px;
    line-height:1.8;
    color:#6B7280;
    margin-bottom:30px;
}

.status-points{
    display:grid;
    gap:14px;
}

.status-point{
    background:#f9fafb;
    border:1px solid #e5e7eb;
    padding:15px 18px;
    border-radius:12px;
    color:#374151;
    transition:.3s;
}

.status-point:hover{
    transform:translateX(5px);
}

.status-image img{
    width:100%;
    display:block;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* Mobile */

@media(max-width:991px){

    .status-wrapper{
        grid-template-columns:1fr;
        gap:35px;
    }

    .status-content{
        order:1;
    }

    .status-image{
        order:2;
    }

    .status-content h2{
        font-size:30px;
    }

    .status-desc{
        font-size:16px;
    }
}

.invest-section{
    padding:80px 20px;
    background:#f9fafb;
}

.section-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.section-header h2{
    font-size:42px;
    color:#1F2937;
    margin:15px 0;
}

.section-header p{
    color:#6B7280;
    line-height:1.8;
}

.invest-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.invest-card{
    background:#fff;
    padding:30px 25px;
    border-radius:18px;
    border:1px solid #e5e7eb;
    transition:.4s;
    text-align:center;
}

.invest-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    background:#f5f5f5;
    border-radius:50%;
}

.invest-card h3{
    font-size:20px;
    color:#1F2937;
    margin-bottom:12px;
}

.invest-card p{
    color:#6B7280;
    font-size:15px;
    line-height:1.7;
}

/* Tablet */

@media(max-width:991px){

    .invest-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:32px;
    }
}

/* Mobile */

@media(max-width:576px){

    .invest-grid{
        grid-template-columns:1fr;
    }

    .invest-card{
        padding:25px;
    }

    .section-header h2{
        font-size:28px;
    }
}

.infrastructure-section{
    padding:80px 20px;
    background:#ffffff;
}

.infra-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.infra-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px 25px;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
}

.infra-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.infra-card h3{
    font-size:20px;
    color:#1F2937;
    margin-bottom:15px;
    line-height:1.4;
}

.infra-card p{
    color:#6B7280;
    line-height:1.8;
    font-size:15px;
}

/* Tablet */

@media(max-width:991px){

    .infra-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */

@media(max-width:576px){

    .infra-grid{
        grid-template-columns:1fr;
    }
}

.faq-section{
    padding:80px 20px;
    background:#f9fafb;
}

.faq-container{
    max-width:900px;
    margin:50px auto 0;
}

.faq-item{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:15px;
    margin-bottom:15px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    padding:22px 25px;
    border:none;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    color:#1F2937;
    text-align:left;
}

.faq-question span{
    font-size:24px;
    color:#C9A227;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
}

.faq-answer p{
    padding:0 25px 25px;
    color:#6B7280;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

.footer{
    background:#111827;
    color:#ffffff;
    padding:70px 20px 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-col h3{
    margin-bottom:20px;
    font-size:20px;
    color:#C9A227;
}

.footer-col p{
    color:#d1d5db;
    line-height:1.8;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
    color:#d1d5db;
}

.footer-col a{
    color:#d1d5db;
    text-decoration:none;
    transition:.3s;
}

.footer-col a:hover{
    color:#C9A227;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px;
    padding-top:25px;
    text-align:center;
}

.footer-bottom p{
    color:#9ca3af;
    line-height:1.8;
}

.disclaimer{
    margin-top:15px;
    font-size:14px;
    max-width:1000px;
    margin-left:auto;
    margin-right:auto;
}

/* Mobile */

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:576px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer{
        text-align:center;
    }
}