/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    gap: 40px;
}

.navbar-logo {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--green-dark);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
    height: 100%;
}

.navbar-nav > li {
    position: relative;
    height: 60%;
    display: flex;
    align-items: center;
}

.navbar-nav > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    padding: 0 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    position: relative;
}

.navbar-nav > li > a:hover,
.navbar-nav > li:hover > a {
    color: var(--green-dark);
}

.navbar-nav > li > a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--green-logo);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav > li.active > a {
    font-weight: 600;
}

.navbar-nav > li.active > a::after {
    transform: scaleX(1);
}

.navbar-nav > li.has-dropdown > a .chevron {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.navbar-nav > li.has-dropdown:hover > a .chevron {
    transform: rotate(225deg) translateY(-2px);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: 2px solid var(--green-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 200;
    padding: 8px 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        visibility 0.2s;
    will-change: opacity, visibility;
}

.navbar-nav > li.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown.dropdown-align-right {
    left: auto;
    right: 0;
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition:
        background 0.12s,
        color 0.12s;
    white-space: nowrap;
}

.dropdown a:hover {
    background: #f4f8f5;
    color: var(--green-dark);
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
        gap: 20px;
    }

    .navbar-nav > li > a {
        padding: 0 12px;
        font-size: 0.8rem;
    }

    .dropdown.dropdown-align-right {
        right: 0;
        left: auto;
        min-width: 200px;
    }

    .dropdown a {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    background-image: url("/images/chander-mohan-arO-dPwRolA-unsplash.jpg");
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 48px;
}

.hero-title {
    font-size: 52px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    font-weight: 400;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn-outline-transparent,
.btn-outline-white {
    display: inline-block;
    padding: 16px 32px;
    border: 1.5px solid #fff;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.15s,
        color 0.15s;
}

.btn-outline-transparent {
    color: #fff;
    background: transparent;
}

.btn-outline-transparent:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-outline-white {
    color: rgb(46, 94, 78);
    background: rgb(243, 237, 224);
}

.btn-outline-white:hover {
    background: rgba(243, 237, 224, 0.9);
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
    width: 100%;
    /* height: 60vh; */
    overflow: hidden;
    background-image: url("/images/kate-sade-2zZp12ChxhU-unsplash.jpg");
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 48px;
}

.about-title {
    font-size: 52px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.about-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    font-weight: 400;
    max-width: 500px;
}

/* ═══════════════════════════════════════
   ABOUT BAND
═══════════════════════════════════════ */
.about-band {
    background-color: var(--green-bg);
    color: #fff;
    text-align: center;
    padding: 56px 80px;
}

.about-band-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.35;
}

.about-band-subtitle {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 700px;
    margin: 0 auto 16px;
}

.stats-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-counter {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-counter-title {
    font-size: 14px;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stats-wrapper {
        gap: 40px;
    }
}

/* ═══════════════════════════════════════
   INVESTMENT CARDS SECTION
═══════════════════════════════════════ */
.investment-section {
    background: var(--off-white);
    padding: 72px 60px;
}

.investment-section-header {
    margin-bottom: 48px;
}

.investment-section-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.investment-section-header p {
    font-size: 0.9rem;
    color: var(--text-mid);
    max-width: 520px;
    line-height: 1.65;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card-wrapper {
    position: relative;
    width: 100%;
}

.card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 25px 50px -20px rgba(20, 60, 40, 0.18);
    z-index: 1;
    height: 100%;
}

.card-image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    background: #ddd;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.card:hover .card-image img {
    transform: scale(1.04);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 10px;
}

.card-type {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-mid);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.card-desc {
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--text-light);
    /* margin-bottom: 20px; */
    flex: 1;
}

.btn-card {
    align-self: flex-start;
    background: var(--green-mid);
    color: #fff;
    border: none;
    padding: 11px 22px;
    border-radius: 999px;
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 24px -6px rgba(45, 106, 79, 0.45);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s;
    letter-spacing: 0.02em;
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -6px rgba(45, 106, 79, 0.6);
    background: var(--green-dark);
}

.btn-card:active {
    transform: translateY(0);
}

@media (max-width: 900px) {
    .cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .investment-section {
        padding: 56px 32px;
    }
}

@media (max-width: 600px) {
    .cards-row {
        grid-template-columns: 1fr;
    }

    .investment-section {
        padding: 48px 20px;
    }
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section {
    background: var(--sage-bg);
    padding: 72px 40px;
}

.contact-card {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(30, 77, 53, 0.35);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.contact-form-side {
    background: var(--green-dark);
    color: #fff;
    padding: 44px 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-brand {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
}

.contact-brand span,
.navbar-logo span {
    color: #7fcca0;
}

.contact-heading {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin: 4px 0 2px;
}

.contact-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cf-field label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
}

.cf-field input,
.cf-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    padding: 7px 2px;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.cf-field input:focus,
.cf-field textarea:focus {
    border-bottom-color: #fff;
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin-top: 2px;
}

.check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.78rem;
    cursor: pointer;
    user-select: none;
    color: rgba(255, 255, 255, 0.88);
}

.check input {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: transparent;
    margin: 0;
    flex-shrink: 0;
    transition:
        background 0.15s,
        border-color 0.15s;
}

.check input:checked {
    background: #7fcca0;
    border-color: #7fcca0;
}

.check input:checked::after {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--green-dark);
    border-radius: 1px;
}

.btn-contact-submit {
    margin-top: 8px;
    background: #fff;
    color: var(--green-dark);
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.15s,
        box-shadow 0.2s;
    letter-spacing: 0.01em;
}

.btn-contact-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px -10px rgba(0, 0, 0, 0.35);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

.contact-image-side {
    background: #6a9e7e url("/images/nordwood-themes-yyMJNPgQ-X8-unsplash.jpg")
        center / cover no-repeat;
    min-height: 540px;
}

@media (max-width: 860px) {
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-image-side {
        min-height: 220px;
        order: -1;
    }

    .contact-form-side {
        padding: 32px 28px;
    }

    .contact-heading {
        font-size: 1.8rem;
    }
}

/* ═══════════════════════════════════════
   LOCATION
═══════════════════════════════════════ */
.location-section {
    background: #3a3a3a;
    color: #fff;
}

.location-header {
    text-align: center;
    padding: 32px 40px 0;
}

.location-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.map-container {
    width: 100%;
    height: 360px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content, .about-band, .about-content, .contact-section {
        padding: 40px 20px;
    }
    .about-content, .about-subtitle {
        max-width: 100% !important;
    }
    .scroll-top {
        width: 32px !important;
        height: 32px !important;
    }
}