﻿/* ================= KEY ADVANTAGES – GLASS CARD ================= */

.glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 28px 26px 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
    max-width: 460px;
    height: fit-content;
    align-self: flex-start;
    margin-top: 140px;
}

    /* Title */
    .glass-card h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 22px;
        color: #ffffff;
        letter-spacing: 0.3px;
    }

/* List */
.adv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    /* List item */
    .adv-list li {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
        font-size: 15.5px;
        color: #e5e7eb;
        line-height: 1.6;
    }

/* Dots */
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

    /* Dot colors */
    .dot.green {
        background: #22c55e;
    }

    .dot.yellow {
        background: #eab308;
    }

    .dot.red {
        background: #ef4444;
    }

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {
    .glass-card {
        max-width: 100%;
        margin-top: 0;
        padding: 24px 20px;
    }

        .glass-card h4 {
            text-align: center;
        }

    .adv-list li {
        font-size: 15px;
    }
}


/* ================= DEVELOPMENT GALLERY ================= */

.section {
    padding: 100px 20px;
    background: #fbfaf6;
}

    /* HEADER */
    .section .header {
        text-align: center;
        margin-bottom: 70px;
    }

        .section .header h2 {
            font-family: "Playfair Display", serif;
            font-size: 52px;
            font-weight: 700;
            color: #1f2937;
        }

            .section .header h2 span {
                color: #9aa06a;
            }

        .section .header p {
            font-size: 18px;
            color: #475569;
            margin-top: 12px;
        }

/* SLIDER WRAPPER */
.slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
}

/* SLIDER TRACK */
.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

    /* CARD */
    .slider-track .card {
        min-width: 33.333%;
        background: #ffffff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0,0,0,0.12);
        transition: transform 0.35s ease;
    }

        .slider-track .card:hover {
            transform: translateY(-6px);
        }

        /* IMAGE */
        .slider-track .card img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
        }

    /* CARD BODY */
    .slider-track .card-body {
        padding: 26px 28px 30px;
    }

        .slider-track .card-body h4 {
            font-family: "Playfair Display", serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1f2937;
        }

        .slider-track .card-body p {
            font-size: 16px;
            color: #475569;
            line-height: 1.6;
        }

/* ARROWS */
.arrow {
    position: absolute;
    top: 40%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}

    .arrow:hover {
        transform: scale(1.08);
        background: #ffffff;
    }

    .arrow.left {
        left: -18px;
    }

    .arrow.right {
        right: -18px;
    }

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .slider-track .card {
        min-width: 100%;
    }

    .arrow.left {
        left: 10px;
    }

    .arrow.right {
        right: 10px;
    }
}

@media (max-width: 600px) {
    .section .header h2 {
        font-size: 38px;
    }

    .slider-track .card img {
        height: 260px;
    }
}



/* ================= CONTACT SECTION ================= */

.contact-section {
    background: #2f3b4d;
    padding: 100px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT INFO */
.contact-info h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-info p {
    color: #cbd5e1;
    font-size: 17px;
    max-width: 420px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

    .info-item strong {
        display: block;
        color: #ffffff;
        font-size: 16px;
    }

    .info-item span {
        color: #d1d5db;
        font-size: 15px;
    }

/* ICONS */
.icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

    .icon.phone {
        background: #b7aa72;
    }

    .icon.email {
        background: #7fb069;
    }

    .icon.address {
        background: #d97757;
    }

/* FORM CARD */
.contact-form {
    background: #475365;
    border-radius: 18px;
    padding: 40px 36px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

    .contact-form h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 26px;
        color: #ffffff;
    }

    /* FORM */
    .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field label {
    font-size: 14px;
    color: #e5e7eb;
    margin-bottom: 6px;
    display: block;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: #5a6473;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
}

.field textarea {
    min-height: 120px;
    resize: none;
}

    .field input::placeholder,
    .field textarea::placeholder {
        color: #cbd5e1;
    }

/* SUBMIT BUTTON */
.submit-btn {
    margin-top: 10px;
    background: linear-gradient(135deg, #b5aa73, #7da36b);
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(0,0,0,0.35);
    }

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .row {
        grid-template-columns: 1fr;
    }
}

/* ================= FOOTER ================= */

.site-footer {
    background: #f9fbfc;
    padding: 70px 20px 80px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
}

/* Brand */
.footer-brand {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 600;
    color: #9aa06a;
    margin-bottom: 14px;
}

/* Tagline */
.footer-tagline {
    font-size: 18px;
    color: #334155;
    margin-bottom: 26px;
}

/* Copyright */
.footer-copy {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 8px;
}

/* Meta info */
.footer-meta {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
    .footer-brand {
        font-size: 22px;
    }

    .footer-tagline {
        font-size: 16px;
    }

    .footer-copy,
    .footer-meta {
        font-size: 14px;
    }
}





body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0f172a;
}

#typeText br {
    line-height: 0.9;
}

/* ================= NAVBAR ================= */
.navbar {
    background: #f8f8f5;
    padding: 16px 40px;
}

.navbar-brand {
    font-weight: 700;
    color: #9aa06a;
}

.nav-link {
    color: #2c2c2c !important;
    font-weight: 500;
    margin-left: 20px;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('../img/hero-storage.png') center/cover no-repeat;
    color: #fff;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(15, 23, 42, .92) 45%, rgba(15, 23, 42, .55));
    }

.hero-content {
    position: relative;
    padding: 100px 60px;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

/* ================= LEFT ================= */
.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
}

    .hero h1 span {
        color: #9aa06a;
    }

.hero p {
    margin-top: 25px;
    max-width: 620px;
    color: #d1d5db;
    font-size: 18px;
}

.stats {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.stat-box {
    background: rgba(255, 255, 255, .08);
    padding: 20px 26px;
    border-radius: 14px;
    min-width: 180px;
}

    .stat-box h3 {
        font-size: 36px;
        margin: 0;
        color: #9aa06a;
    }

    .stat-box span {
        color: #cbd5e1;
        font-size: 14px;
    }

.btn-group-custom {
    display: flex;
    gap: 16px;
}

.btn-green {
    background: #9aa06a;
    color: #000;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
}

/* ================= RIGHT ================= */
.glass-card {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    /* tighter padding */
    padding: 26px 22px 20px 26px;
    /* 🔥 THIS FIXES THE BIG BOX */
    height: fit-content;
    align-self: flex-start;
    /* optional width control */
    max-width: 460px;
    margin-top: 150px;
}


    .glass-card h4 {
        font-weight: 700;
        margin-bottom: 22px;
    }

.adv-list {
    list-style: none;
    padding: 0;
}

    .adv-list li {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
        color: #e5e7eb;
    }

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* .green {
            background: #22c55e
        } */

.yellow {
    background: #eab308
}
/* 
        .red {
            background: #ef4444
        } */

/* ================= RESPONSIVE ================= */
@media(max-width:992px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 80px 30px;
    }

    .hero h1 {
        font-size: 46px;
    }
}

/* ================= ROOT COLORS ================= */
:root {
    --sage: #9aa06a;
    --warm-stone: #c6b26e;
    --charcoal: #0f172a;
    --glass: rgba(255, 255, 255, 0.10);
}

/* ================= BASE ================= */
body {
    margin: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    background: #0b1220;
    color: #000000;
}

a {
    text-decoration: none;
}

/* ================= TYPOGRAPHY ================= */
.font-display {
    font-family: "Playfair Display", serif;
}

.text-5xl {
    font-size: 3rem
}

.text-7xl {
    font-size: 4.5rem
}

.text-xl {
    font-size: 1.25rem
}

.text-2xl {
    font-size: 1.5rem
}

.font-bold {
    font-weight: 700
}

.font-semibold {
    font-weight: 600
}

.leading-tight {
    line-height: 1.1
}

.leading-relaxed {
    line-height: 1.7
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

/* ================= COLORS ================= */
.text-gray-200 {
    color: #e5e7eb
}

.text-gray-300 {
    color: #d1d5db
}

.text-warm-stone {
    color: var(--warm-stone)
}

.text-sage {
    color: var(--sage)
}

.text-white {
    color: #fff
}

/* ================= LAYOUT ================= */
.block {
    display: block
}

.flex {
    display: flex
}

.flex-col {
    flex-direction: column
}

.sm\:flex-row {
    flex-direction: row
}

.gap-4 {
    gap: 1rem
}

.gap-6 {
    gap: 1.5rem
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* ================= GLASS CARDS ================= */
.bg-white\/10 {
    background: var(--glass);
}

.backdrop-blur-sm {
    backdrop-filter: blur(10px);
}

.rounded-lg {
    border-radius: 14px;
}

.p-4 {
    padding: 1rem;
}

/* ================= BUTTONS ================= */
.btn-primary {
    background: linear-gradient(135deg, #A0956B, #68A063);
    transition: all .3s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(154, 160, 106, .35);
    }

.border-2 {
    border: 2px solid #fff;
}

.rounded-lg {
    border-radius: 12px;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.text-lg {
    font-size: 1.125rem
}

/* .hover\:bg-white:hover {
            background: #fff;
            color:#000;
        } */

.hover\:text-charcoal:hover {
    color: var(--charcoal);
}

.transition-all {
    transition: all .3s ease;
}

/* ================= GRADIENT TEXT ================= */
.gradient-text {
    background: linear-gradient(90deg, #9aa06a, #c6b26e, #9aa06a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 200%
    }
}

/* ================= TYPEWRITER ================= */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid rgba(255, 255, 255, .75);
    animation: typing 2.5s steps(12, end), blink .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

.typed-cursor {
    display: none;
    /* optional since border cursor is used */
}

/* ================= COUNTER ================= */
.counter {
    font-size: 2rem;
    font-weight: 800;
}

/* ================= SCROLL ANIMATION ================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all .9s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px) {
    .lg\:text-7xl {
        font-size: 3.2rem
    }

    .lg\:text-2xl {
        font-size: 1.25rem
    }
}

@media(max-width:640px) {
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
}


/* ================= MOBILE VIEW FIX ================= */
@media (max-width: 768px) {

    /* Hero spacing */
    .hero-content {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
    }

    /* Headings */
    .hero h1 {
        font-size: 36px;
        text-align: center;
    }

    #typeText {
        display: block;
        text-align: center;
    }

        #typeText br {
            line-height: 1.1;
        }

    /* Paragraph */
    .hero p {
        font-size: 16px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Stats cards */
    .grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-box {
        text-align: center;
    }

    /* Buttons */
    .flex.flex-col.sm\:flex-row {
        flex-direction: column;
    }

    .btn-primary,
    .border-2 {
        width: 100%;
        text-align: center;
    }

    /* Glass card (Key Advantages) */
    .glass-card {
        max-width: 100%;
        margin-top: 0;
        padding: 22px 18px 18px 22px;
    }

        .glass-card h4 {
            text-align: center;
        }

    .adv-list li {
        font-size: 15px;
    }
}

/* ================= INVESTMENT HIGHLIGHTS ================= */
.investment-section {
    padding: 100px 20px;
    background: #f9fbfc;
}

.container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Title */
.section-title {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    font-weight: 700;
    color: #9aa06a;
    margin-bottom: 16px;
}

.section-subtitle {
    max-width: 780px;
    margin: 0 auto 70px;
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

/* Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.highlight-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 38px 32px 42px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    text-align: left;
    transition: all 0.3s ease;
}

    .highlight-card:hover {
        transform: translateY(-6px);
    }

/* Emphasis card */
.highlight-card-emphasis {
    box-shadow: 0 30px 65px rgba(0,0,0,0.12);
}

/* Icon */
.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 24px;
}

    .icon-circle.green {
        background: #e6f2e6;
        color: #4d7c4d;
    }

    .icon-circle.gold {
        background: #f4f0e6;
        color: #a58a4d;
    }

    .icon-circle.red {
        background: #f6e6e3;
        color: #c24b3a;
    }

/* Headings */
.highlight-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    margin-bottom: 14px;
    color: #1f2937;
}

/* Text */
.highlight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 28px;
}

/* Highlights */
.highlight-green {
    color: #4d7c4d;
    font-weight: 600;
}

.highlight-gold {
    color: #a58a4d;
    font-weight: 600;
}

.highlight-red {
    color: #c24b3a;
    font-weight: 600;
}

/* Stat */
.stat {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 4px;
}

    .stat.green {
        color: #4d7c4d;
    }

    .stat.gold {
        color: #a58a4d;
    }

    .stat.red {
        color: #c24b3a;
    }

.stat-label {
    font-size: 14px;
    color: #64748b;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        text-align: center;
    }

    .icon-circle {
        margin-left: auto;
        margin-right: auto;
    }
}
/* ================= PRIME LOCATION ================= */
.location-section {
    padding: 100px 20px;
    background: #fbfaf6;
}

.location-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* TITLE */
.location-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

    .location-title span {
        color: #9aa06a;
    }

/* TEXT */
.location-intro {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}

/* POINTS */
.location-points {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 40px;
}

.location-point {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

    .location-point h4 {
        font-size: 20px;
        margin-bottom: 6px;
        color: #1f2937;
    }

    .location-point p {
        color: #475569;
        font-size: 16px;
        line-height: 1.6;
    }

/* ICONS */
.icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

    .icon.green {
        background: #e6f2e6;
        color: #4d7c4d;
    }

    .icon.gold {
        background: #f4f0e6;
        color: #a58a4d;
    }

    .icon.red {
        background: #f6e6e3;
        color: #c24b3a;
    }

/* BUTTON */
.location-btn {
    display: inline-block;
    background: #9aa06a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: all .3s ease;
}

    .location-btn:hover {
        background: #8c9460;
        transform: translateY(-2px);
    }

.location-map img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,.12);
    transition: transform .3s ease;
}

    .location-map img:hover {
        transform: scale(1.02);
    }


@media (max-width: 900px) {
    .location-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .location-title {
        font-size: 36px;
        text-align: center;
    }

    .location-intro {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .location-btn {
        display: block;
        text-align: center;
        width: fit-content;
        margin: auto;
    }
}

.location-map iframe {
    width: 100%;
    height: 480px;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,.12);
}

@media (max-width: 900px) {
    .location-map iframe {
        height: 360px;
    }
}

.gallery-section {
    padding: 100px 20px;
    background: #fbfaf6;
}

.gallery-container {
    max-width: 1400px;
    margin: auto;
    text-align: center;
}


.gallery-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

    .gallery-title span {
        color: #9aa06a;
    }

.gallery-subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 60px;
}


.gallery-wrapper {
    position: relative;
    overflow: hidden;
}


.gallery-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}


.gallery-card {
    min-width: 33.333%;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    text-align: left;
    overflow: hidden;
}

    .gallery-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
    }

    .gallery-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 24px;
        margin: 22px 22px 8px;
    }

    .gallery-card p {
        font-size: 16px;
        color: #475569;
        margin: 0 22px 26px;
        line-height: 1.6;
    }

.gallery-arrow {
    position: absolute;
    top: 40%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
}

    .gallery-arrow.left {
        left: -10px;
    }

    .gallery-arrow.right {
        right: -10px;
    }


@media (max-width: 992px) {
    .gallery-card {
        min-width: 100%;
    }
}






/*Why Invest*/

.why-invest-hero {
    width: 100%;
    padding: 50px 20px;
    background: linear-gradient( 135deg, #2f3b4d 0%, #4a5568 45%, #b6b089 100% );
}

.why-invest-content {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

    .why-invest-content h1 {
        font-family: "Playfair Display", serif;
        font-size: 56px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 26px;
        line-height: 1.2;
    }

        .why-invest-content h1 span {
            color: #9aa06a;
        }

    .why-invest-content p {
        font-size: 22px;
        color: #e5e7eb;
        line-height: 1.6;
        max-width: 900px;
        margin: auto;
    }



@media (max-width: 900px) {
    .why-invest-content h1 {
        font-size: 40px;
    }

    .why-invest-content p {
        font-size: 18px;
    }

    .why-invest-hero {
        padding: 100px 20px;
    }
}

@media (max-width: 480px) {
    .why-invest-content h1 {
        font-size: 32px;
    }

    .why-invest-content p {
        font-size: 16px;
    }
}


/*2nd*/

.market-performance {
    padding: 120px 20px;
    background: #f9fbfc;
}

.market-container {
    max-width: 1200px;
    margin: auto;
}

.market-header {
    text-align: center;
    margin-bottom: 80px;
}

    .market-header h2 {
        font-family: "Playfair Display", serif;
        font-size: 48px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 18px;
    }

        .market-header h2 span {
            color: #9aa06a;
        }

    .market-header p {
        font-size: 20px;
        color: #475569;
        max-width: 820px;
        margin: auto;
        line-height: 1.6;
    }

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.market-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 42px 36px 46px;
    box-shadow: 0 22px 50px rgba(0,0,0,0.10);
    transition: transform 0.35s ease;
}

    .market-card:hover {
        transform: translateY(-6px);
    }

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 26px;
}

    .icon-circle.green {
        background: #e6f2e6;
        color: #4d7c4d;
    }

    .icon-circle.gold {
        background: #f4f0e6;
        color: #a58a4d;
    }

    .icon-circle.red {
        background: #f6e6e3;
        color: #c24b3a;
    }


.market-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    margin-bottom: 18px;
    color: #1f2937;
}

.stat {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

    .stat.green {
        color: #4d7c4d;
    }

    .stat.gold {
        color: #a58a4d;
    }

    .stat.red {
        color: #c24b3a;
    }

.stat-sub {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 22px;
}

.market-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}



@media (max-width: 1024px) {
    .market-grid {
        grid-template-columns: 1fr;
    }

    .market-card {
        text-align: center;
    }

    .icon-circle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .market-header h2 {
        font-size: 36px;
    }

    .market-header p {
        font-size: 17px;
    }

    .stat {
        font-size: 46px;
    }
}


/*3rd*/

/* ================= REGIONAL GROWTH CHART ================= */

.chart-section {
    padding: 10px 20px;
    background: #f9fbfc;
}

.chart-card {
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    border-radius: 22px;
    padding: 50px 40px 60px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.10);
}

/* Titles */
.chart-title {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 8px;
}

.chart-subtitle {
    font-size: 20px;
    text-align: center;
    color: #475569;
    margin-bottom: 40px;
}

/* Canvas */
#growthChart {
    max-height: 420px;
}
.chart-wrapper {
    position: relative;
    height: 420px; /* 🔥 REQUIRED */
}

/*4th*/


/* ================= STRATEGIC LOCATION ================= */

.strategic-location {
    padding: 120px 20px;
    background: #fbfaf6;
}

.strategic-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
}

/* LEFT */
.strategic-title {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 18px;
}

    .strategic-title span {
        color: #9aa06a;
    }

.strategic-desc {
    font-size: 18px;
    color: #475569;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* INFO CARDS */
.info-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 30px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    margin-bottom: 26px;
}

    .info-card h4 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .info-card ul {
        padding-left: 18px;
    }

    .info-card li {
        font-size: 15.5px;
        color: #475569;
        margin-bottom: 10px;
        line-height: 1.6;
    }


/* INFRA CARD */
.infra-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

    .infra-card h4 {
        font-size: 20px;
        margin-bottom: 20px;
        color: #1f2937;
    }

.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.value {
    font-size: 15px;
    color: #475569;
}

/* COLORS */
.green {
    color: #4d7c4d;
}

.gold {
    color: #a58a4d;
}

.red {
    color: #c24b3a;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
    .strategic-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .strategic-title {
        font-size: 34px;
    }

    .infra-grid {
        grid-template-columns: 1fr;
    }
}
/* BIG MAP CARD */
.map-card {
   
    border-radius: 24px;
    padding: 16px;
    margin-bottom: 40px;
}

    /* 🔥 MAKE MAP BIG */
    .map-card iframe {
        width: 100%;
        height: 600px; /* ⬅️ BIG MAP */
        border: 0;
        border-radius: 18px;
    }
@media (max-width: 768px) {
    .map-card iframe {
        height: 380px;
    }
}


/*5th*/

/* ================= INVESTMENT CALCULATOR ================= */

.investment-calculator {
    padding: 120px 20px;
    background: #f9fbfc;
}

.calc-container {
    max-width: 1200px;
    margin: auto;
}

.calc-header {
    text-align: center;
    margin-bottom: 60px;
}

    .calc-header h2 {
        font-family: "Playfair Display", serif;
        font-size: 56px;
        color: #1f2937;
    }

    .calc-header span {
        color: #9aa06a;
    }

    .calc-header p {
        font-size: 18px;
        color: #475569;
    }

.calc-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.10);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* LEFT */
.calc-left h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.calc-left label {
    font-weight: 600;
    margin-top: 18px;
    display: block;
}

.calc-left input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    margin-top: 8px;
}

.calc-left small {
    display: block;
    margin-top: 6px;
    color: #64748b;
}

.fixed-input {
    background: #f1f5f0;
    border: 1px solid #9aa06a;
    color: #4d7c4d;
}

.success-text {
    color: #4d7c4d;
    margin-top: 8px;
    display: block;
}

.calc-btn {
    margin-top: 30px;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #9aa06a, #7fa66a);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* RIGHT */
.calc-right {
    font-size: 16px;
}

#placeholderText {
    color: #64748b;
    margin-bottom: 30px;
}

#results h3 {
    margin-bottom: 20px;
}

#results p {
    margin-bottom: 12px;
}

.highlight-box {
    margin-top: 30px;
    background: #f1f5f0;
    border-radius: 16px;
    padding: 24px;
}

    .highlight-box h4 {
        color: #4d7c4d;
        margin-bottom: 14px;
    }

    .highlight-box li {
        margin-bottom: 8px;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .calc-card {
        grid-template-columns: 1fr;
    }
}

/*6th*/

/* ================= SECURITY & INNOVATION ================= */

.security-innovation {
    padding: 120px 20px;
    background: #fbfaf6;
}

.sec-container {
    max-width: 1300px;
    margin: auto;
}

/* HEADER */
.sec-header {
    text-align: center;
    margin-bottom: 70px;
}

    .sec-header h2 {
        font-family: "Playfair Display", serif;
        font-size: 48px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 16px;
    }

        .sec-header h2 span {
            color: #9aa06a;
        }

    .sec-header p {
        max-width: 720px;
        margin: auto;
        font-size: 18px;
        color: #475569;
        line-height: 1.7;
    }

/* CONTENT */
.sec-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* IMAGE */
.sec-image img {
    width: 100%;
    height: auto;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
    display: block;
}

/* FEATURES */
.sec-features {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.feature-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

    .feature-item h4 {
        font-size: 22px;
        margin-bottom: 8px;
        color: #1f2937;
    }

    .feature-item p {
        font-size: 16px;
        color: #475569;
        line-height: 1.7;
        max-width: 520px;
    }

/* ICONS */
.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

    .icon-circle.green {
        background: #e6f2e6;
        color: #4d7c4d;
    }

    .icon-circle.gold {
        background: #f4f0e6;
        color: #a58a4d;
    }

    .icon-circle.red {
        background: #f6e6e3;
        color: #c24b3a;
    }

/* RESPONSIVE */
@media (max-width: 1000px) {
    .sec-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sec-header h2 {
        font-size: 38px;
    }

    .feature-item {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .sec-header h2 {
        font-size: 32px;
    }

    .feature-item {
        gap: 18px;
    }
}
/*7th*/

/* ================= EXPERT MANAGEMENT ================= */

.expert-management {
    padding: 120px 20px;
    background: #f9fbfc;
}

.expert-container {
    max-width: 1300px;
    margin: auto;
}

/* HEADER */
.expert-header {
    text-align: center;
    margin-bottom: 70px;
}

    .expert-header h2 {
        font-family: "Playfair Display", serif;
        font-size: 48px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 16px;
    }

        .expert-header h2 span {
            color: #9aa06a;
        }

    .expert-header p {
        font-size: 18px;
        color: #475569;
        max-width: 760px;
        margin: auto;
        line-height: 1.7;
    }

/* GRID */
.expert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* CARD */
.expert-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.10);
}

    .expert-card h3 {
        font-size: 26px;
        margin-bottom: 28px;
        color: #1f2937;
    }

/* TEAM BLOCK */
.team-block {
    padding-left: 22px;
    margin-bottom: 32px;
}

    .team-block h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .team-block p {
        font-size: 15.5px;
        color: #475569;
        margin-bottom: 6px;
        line-height: 1.6;
    }

    .team-block.green {
        border-left: 4px solid #4d7c4d;
    }

    .team-block.gold {
        border-left: 4px solid #a58a4d;
    }

/* BENEFITS */
.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}

    .benefits-list li {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
        font-size: 16px;
        color: #1f2937;
    }

        .benefits-list li::before {
            content: "✓";
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
        }

/* COLORS */
.green::before {
    background: #4d7c4d;
}

.gold::before {
    background: #a58a4d;
}

.red::before {
    background: #c24b3a;
}

/* FEE BOX */
.fee-box {
    background: #f1f5f0;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.fee-value {
    font-size: 42px;
    font-weight: 800;
    color: #4d7c4d;
}

.fee-text {
    font-size: 15px;
    color: #475569;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .expert-grid {
        grid-template-columns: 1fr;
    }

    .expert-header h2 {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    .expert-header h2 {
        font-size: 32px;
    }
}
/*8th*/

/* ================= CTA SECTION ================= */

.cta-section {
    background: #2f3a4a;
    padding: 50px 20px;
    text-align: center;
}

.cta-container {
    max-width: 1000px;
    margin: auto;
}

/* TITLE */
.cta-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
}

/* TEXT */
.cta-section p {
    max-width: 820px;
    margin: 0 auto 50px;
    font-size: 20px;
    color: #e5e7eb;
    line-height: 1.7;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #9aa06a, #7fa66a);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(154,160,106,0.45);
    }

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-outline:hover {
        background: #ffffff;
        color: #2f3a4a;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 36px;
    }

    .cta-section p {
        font-size: 17px;
    }
}


/* Base */
.navbar a.nav-link {
    color: #1f2937;
    font-weight: 500;
    padding: 6px 12px;
    transition: color 0.25s ease;
}

    /* Hover */
    .navbar a.nav-link:hover {
        color: #9aa06a !important;
    }

    /* Active */
    .navbar a.nav-link.active {
        color: #9aa06a !important;
        font-weight: 600;
    }

/* Navbar base */
.navbar {
    background: #faf9f6;
    padding: 14px 24px;
    border-bottom: 1px solid #e5e7eb;
}

/* Brand */
.navbar-brand {
    font-weight: 700;
    color: #9aa06a;
    font-size: 20px;
}

/* Links */
.navbar a.nav-link {
    color: #1f2937;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.25s ease;
}

    /* Hover */
    .navbar a.nav-link:hover {
        color: #9aa06a !important;
    }

    /* Active */
    .navbar a.nav-link.active {
        color: #9aa06a !important;
        font-weight: 600;
    }

/* Mobile menu background */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #faf9f6;
        padding: 16px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
}
/* Force hamburger icon to show */
.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.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='rgba(31,41,55,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}







.booking-btn {
    background-color: #9aa06a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    border: none;
    transition: 0.3s;
}

    .booking-btn:hover {
        background-color: #9aa06a;
        color: #fff;
        transform: translateY(-2px);
    }

/*.brand-monster {
    color: #ff6600;*/ /* Orange */
    /*font-weight: 700;
}

.brand-storage {
    color: #003399;*/ /* Dark Blue */
    /*font-weight: 700;
}*/







/* ===============================
           TOP PROMO BAR
        ================================ */

.top-promo-bar {
    display: block;
    width: 100%;
    background: #111827; /* dark slate */
    color: #fde047; /* bright yellow */
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    padding: 12px 16px;
    letter-spacing: 0.3px;
    text-decoration: none;
    position: relative;
    z-index: 1050;
}

    .top-promo-bar span {
        text-decoration: underline;
    }

    /* Hover effect */
    .top-promo-bar:hover {
        background: #000;
        color: #facc15;
    }

/* Mobile tuning */
@media (max-width: 768px) {
    .top-promo-bar {
        font-size: 14px;
        padding: 10px 12px;
    }
}
.navbar-brand {
    position: relative;
    height: 64px; /* same as navbar */
    display: flex;
    align-items: center;
    padding: 0;
}

/* LOGO – VISUALLY 88px, NO LAYOUT IMPACT */
.navbar-logo {
    position: absolute;
    left: 50px;
    height: 88px; /* ✅ REAL 88px */
    width: auto;
    object-fit: contain;
    top: -20%;
    transform: translateY(-50%);
}


/* Desktop slightly larger */
@media (min-width: 992px) {
    .navbar-logo {
        transform: scale(1.6);
    }
}