@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* ============================
   HEADER
============================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease;
}

.header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

/* Nav links */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5ec97a;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #124d29;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    background: #124d29;
}

/* CTA button */
.nav-cta {
    text-decoration: none;
    background: linear-gradient(135deg, #2d8c4e, #124d29);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 14px rgba(18, 77, 41, 0.35);
    flex-shrink: 0;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 77, 41, 0.45);
    background: linear-gradient(135deg, #3aad62, #1a6b3a);
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(18, 77, 41, 0.06);
    border: 1px solid rgba(18, 77, 41, 0.15);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger:hover,
.hamburger.active {
    background: rgba(18, 77, 41, 0.12);
    border-color: rgba(18, 77, 41, 0.3);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #124d29;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.mobile-nav-cta {
    display: none;
}

/* ============================
   HERO SECTION
============================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    background-image: url('images/6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Light overlay — just enough to make green text pop */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 1;
}

/* Hero text — right side */
.hero-text {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    text-align: center;
    animation: slideInRight 1s ease-out forwards;
    opacity: 0;
    margin: 0 auto;

    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.hero-text h1 {
    font-size: 3.8rem;
    color: #3ecf65;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-sub {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.4rem;
    overflow-wrap: break-word;
}

.hero-sub.line2 {
    margin-bottom: 2.4rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    padding: 15px 42px;
    background: linear-gradient(135deg, #2d8c4e, #124d29);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 20px rgba(18, 77, 41, 0.4);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #3aad62, #1a6b3a);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(18, 77, 41, 0.5);
}

.hero-btn-outline {
    display: inline-block;
    padding: 15px 42px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #d4a843;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hero-btn-outline:hover {
    background: #d4a843;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.landowner-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.land-share-icon {
    width: 35px;
    height: auto;
}

/* ============================
   ANIMATIONS
============================ */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

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

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

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

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 992px) {
    .hero {
        justify-content: center;
        padding: 120px 5% 60px;
    }

    .hero-text {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        padding: 40px 30px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-overlay {
        background: rgba(0, 15, 8, 0.55);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 4% 60px;
        min-height: 75vh;
    }

    .nav,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav.open {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, rgba(12, 45, 24, 0.98), rgba(7, 30, 16, 0.98));
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 1.8rem 1.5rem 2.2rem;
        gap: 0.6rem;
        border-bottom: 2px solid rgba(62, 207, 101, 0.35);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
        animation: navSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .nav.open .nav-link {
        color: #ffffff !important;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav.open .nav-link::after {
        display: none;
    }

    .nav.open .nav-link:hover,
    .nav.open .nav-link.active {
        color: #3ecf65 !important;
        background: rgba(255, 255, 255, 0.1);
    }

    .nav.open .mobile-nav-cta {
        display: inline-block;
        text-decoration: none;
        background: linear-gradient(135deg, #3aad62, #124d29);
        color: #ffffff;
        padding: 14px 32px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        margin-top: 0.6rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .nav.open .mobile-nav-cta:hover {
        background: linear-gradient(135deg, #44c26f, #1a6b3a);
        transform: translateY(-2px);
    }

    .hero-text {
        width: 100%;
        max-width: 520px;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .hero-text h1 {
        font-size: 1.95rem;
        line-height: 1.18;
        margin-bottom: 0.6rem;
    }

    .hero-sub {
        font-size: 0.95rem;
        line-height: 1.45;
        margin-bottom: 0.25rem;
    }

    .hero-sub.line2 {
        margin-bottom: 1.2rem;
    }

    .hero-actions {
        gap: 0.75rem;
    }

    .hero-btn,
    .hero-btn-outline {
        padding: 10px 24px;
        font-size: 0.88rem;
    }

    .landowner-share {
        margin-top: 18px;
        font-size: 0.88rem;
        gap: 8px;
    }

    .land-share-icon {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 110px 10px 50px;
        min-height: 80vh;
    }

    .hero-text {
        padding: 14px 12px;
        border-radius: 14px;
        width: 90%;
        max-width: 300px;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    }

    .hero-text h1 {
        font-size: 1.35rem;
        margin-bottom: 0.3rem;
        line-height: 1.18;
    }

    .hero-sub {
        font-size: 0.78rem;
        line-height: 1.35;
        margin-bottom: 0.15rem;
    }

    .hero-sub.line2 {
        font-size: 0.74rem;
        margin-bottom: 0.6rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.4rem;
    }

    .hero-btn,
    .hero-btn-outline {
        width: 100%;
        max-width: 200px;
        text-align: center;
        padding: 7px 14px;
        font-size: 0.78rem;
    }

    .landowner-share {
        margin-top: 8px;
        font-size: 0.7rem;
        letter-spacing: 0.05em;
        gap: 5px;
    }

    .land-share-icon {
        width: 18px;
    }

    .logo-img {
        height: 38px;
    }
}

@media (max-width: 360px) {
    .hero-text {
        padding: 12px 10px;
        max-width: 270px;
    }

    .hero-text h1 {
        font-size: 1.25rem;
    }

    .hero-sub {
        font-size: 0.74rem;
    }

    .hero-sub.line2 {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .hero-btn,
    .hero-btn-outline {
        max-width: 180px;
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

/* ============================
   ABOUT SECTION
============================ */
.about {
    background-color: #f9faf7;
    background-image: url('images/awardbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 5% 80px;
}

/* Centered section header at top */
.about-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.about-header .section-divider {
    margin: 0 auto;
}

/* Two-column split */
.about-container {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Image column ── */
.about-image-col {
    flex: 0 0 48%;
}

.about-img-wrapper {
    position: relative;
}

/* ── Scroll-triggered fade animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.delay {
    transition-delay: 0.3s;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-img-bg {
    width: 100%;
    height: 560px;
    background-image: url('images/building.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Floating badge on image */
.about-img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: #124d29;
    color: #fff;
    border-radius: 16px;
    padding: 18px 28px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(18, 77, 41, 0.35);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ── Content column ── */
.about-content-col {
    flex: 1;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #124d29;
    background: rgba(18, 77, 41, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, #124d29, #5ec97a);
    border-radius: 4px;
    margin: 0 auto 1.6rem;
}

.about-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 2rem;
}

/* Highlight list */
.about-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 3px;
}

.about-highlights li div strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.about-highlights li div p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA link */
.about-cta {
    display: inline-block;
    color: #124d29;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    border-bottom: 2px solid #124d29;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease, letter-spacing 0.3s ease;
}

.about-cta:hover {
    color: #2d8c4e;
    border-color: #2d8c4e;
    letter-spacing: 0.08em;
}

/* ── Stats row ── */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(18, 77, 41, 0.1);
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
    gap: 6px;
    transition: background 0.3s ease;
}

.stat-item:hover {
    background: rgba(18, 77, 41, 0.04);
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #124d29;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #777;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(18, 77, 41, 0.15);
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }

    .about-image-col {
        flex: 0 0 100%;
        width: 100%;
    }

    .about-img {
        height: 380px;
    }

    .about-img-badge {
        bottom: -18px;
        right: 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 0;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(18, 77, 41, 0.1);
    }
}

@media (max-width: 480px) {
    .about {
        padding: 70px 5%;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .stat-item {
        flex: 0 0 50%;
    }

    .stat-num {
        font-size: 2rem;
    }
}

/* ============================
   STATS SECTION
============================ */
.stats-section {
    width: 100%;
    min-height: 420px;
    background-image: url('images/about.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    margin-top: 0;
}

.stats-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(18, 77, 41, 0.08);
    width: 100%;
    max-width: 860px;
    overflow: hidden;
}

.stats-card .stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 6px;
    transition: background 0.3s ease;
}

.stats-card .stat-item:hover {
    background: rgba(18, 77, 41, 0.04);
}

.stats-card .stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #124d29;
    line-height: 1;
}

.stats-card .stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #777;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stats-card .stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(18, 77, 41, 0.15);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .stats-card {
        flex-wrap: wrap;
    }

    .stats-card .stat-item {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(18, 77, 41, 0.1);
    }

    .stats-card .stat-divider {
        display: none;
    }
}

/* ============================
   PROJECT OVERVIEW SECTION
============================ */
.overview {
    background-color: #f9faf7;
    background-image: url('images/awardbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 5%;
}

.overview-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* 3-column layout: card | image | card */
.overview-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Info cards (left & right) */
.overview-card {
    flex: 0 0 28%;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(18, 77, 41, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ov-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(18, 77, 41, 0.08);
}

.ov-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ov-row:first-child {
    padding-top: 0;
}

.ov-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c49a28;
}

.ov-value {
    font-size: 0.98rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Center image */
.overview-img-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .overview-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .overview-card {
        flex: 0 0 100%;
        width: 100%;
    }

    .overview-img-wrap {
        width: 100%;
    }
}

/* Vision / Mission Section */
.vm-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 80px auto 0;
}

.vm-content-col {
    flex: 1;
}

.vm-image-col {
    flex: 0 0 45%;
    display: flex;
    justify-content: flex-end;
}

.vm-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.vm-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
}

.vm-tab {
    padding: 12px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    border-radius: 8px;
    margin-right: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.vm-tab.active {
    background: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.vm-tab:not(.active):hover {
    background: rgba(0, 0, 0, 0.04);
}

.vm-panel {
    display: none;
    background: #ffffff;
    border-left: 5px solid #c49a28;
    border-radius: 12px;
    padding: 32px 40px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.vm-panel.active {
    display: block;
    animation: fadeUpTab 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUpTab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.vm-panel p {
    font-size: 1.15rem;
    color: #2c3e50;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.vm-panel p strong {
    color: #c49a28;
    font-weight: 700;
    font-size: 1.25rem;
}

@media (max-width: 992px) {
    .vm-container {
        flex-direction: column;
        gap: 2.5rem;
        margin-top: 50px;
    }

    .vm-image-col {
        flex: 0 0 100%;
        justify-content: center;
    }

    .vm-panel {
        padding: 28px 32px;
    }

    .vm-panel p {
        font-size: 1.05rem;
        line-height: 1.65;
    }

    .vm-panel p strong {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .vm-container {
        margin-top: 35px;
        gap: 1.8rem;
    }

    .vm-tabs {
        justify-content: center;
        gap: 10px;
        margin-bottom: 18px;
    }

    .vm-tab {
        padding: 10px 22px;
        font-size: 0.82rem;
        margin-right: 0;
        flex: 1;
        max-width: 160px;
        text-align: center;
    }

    .vm-panel {
        padding: 20px 22px;
        border-left-width: 4px;
        border-radius: 10px;
    }

    .vm-panel p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .vm-panel p strong {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vm-container {
        margin-top: 25px;
    }

    .vm-tab {
        padding: 8px 16px;
        font-size: 0.78rem;
        letter-spacing: 0.05em;
    }

    .vm-panel {
        padding: 16px 18px;
    }

    .vm-panel p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .vm-panel p strong {
        font-size: 0.95rem;
    }
}

/* ============================
   AMENITIES (Circular Gallery)
============================ */
.amenities {
    padding: 100px 5% 40px;
    background-color: #ffffff;
    overflow: hidden;
}

.amenities-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.gallery-container {
    perspective: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    padding-bottom: 0;
}

.circular-gallery {
    position: relative;
    width: 300px;
    height: 200px;
    transform-style: preserve-3d;
    animation: rotateGallery 25s linear infinite;
}

.circular-gallery:hover {
    animation-play-state: paused;
}

.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform: rotateY(calc(var(--i) * 45deg)) translateZ(400px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s;
}

.gallery-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes rotateGallery {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@media (max-width: 768px) {
    .gallery-container {
        perspective: 800px;
        height: 300px;
    }

    .circular-gallery {
        width: 200px;
        height: 130px;
    }

    .gallery-item {
        transform: rotateY(calc(var(--i) * 45deg)) translateZ(250px);
    }
}

/* ============================
   MASTER PLAN SECTION
============================ */
.masterplan {
    padding: 60px 5% 100px;
    background-color: #f9faf7;
    /* Soft background to contrast with white amenities section */
    text-align: center;
}

.masterplan-header {
    margin-bottom: 60px;
}

.masterplan-header .section-tag {
    color: #c49a28;
    /* Gold color */
    margin-bottom: 12px;
}

.masterplan-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.masterplan-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================
   LOCATION SECTION
============================ */
.location-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

.location-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.location-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-image-col {
    flex: 0 0 50%;
}

.location-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.location-content-col {
    flex: 1;
}

.location-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #124d29;
    color: #ffffff;
    border: 2px solid #124d29;
}

.btn-primary:hover {
    background-color: transparent;
    color: #124d29;
}

.btn-secondary {
    background-color: transparent;
    color: #c49a28;
    border: 2px solid #c49a28;
}

.btn-secondary:hover {
    background-color: #c49a28;
    color: #ffffff;
}

@media (max-width: 992px) {
    .location-container {
        flex-direction: column;
        gap: 3rem;
    }

    .location-image-col {
        flex: 0 0 100%;
    }
}

/* ============================
   CONTACT SECTION
============================ */
.contact-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.contact-left {
    flex: 1;
    max-width: 500px;
}

.contact-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #a88a53;
    display: block;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1a2a3a;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.contact-info {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.office-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.office-address {
    margin-bottom: 25px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #a88a53;
}

.contact-phone svg {
    color: #1a2a3a;
}

.contact-phone a {
    color: #a88a53;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-phone a:hover {
    color: #c49a28;
}

.contact-right {
    flex: 1;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background-color: #f8f9fa;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #a88a53;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.submit-btn {
    padding: 16px;
    background-color: #1a202c;
    color: #ffffff;
    border: none;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #2d3748;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-left {
        max-width: 100%;
    }
}

/* ============================
   FOOTER SECTION
============================ */
.footer {
    background-color: #124d29;
    /* Deep green */
    color: #ffffff;
    padding: 80px 5% 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Make logo white for dark background */
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #c49a28;
    /* Gold */
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a,
.footer-contact li,
.footer-contact li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links li a:hover,
.footer-contact li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits {
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-credits a:hover {
    color: #c49a28;
}

/* ============================
   FLOATING ENQUIRE TAB
============================ */
.enquire-tab {
    position: fixed;
    right: 0;
    top: 62%;
    transform: translateY(-50%);
    z-index: 9000;

    /* Vertical text — no rotation math needed */
    writing-mode: vertical-rl;
    text-orientation: mixed;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;

    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 8px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: inherit;
    cursor: pointer;
    border-radius: 8px 0 0 8px;
    box-shadow: -3px 0 14px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    user-select: none;
}

.enquire-tab:hover {
    background: #124d29;
    box-shadow: -6px 0 28px rgba(18, 77, 41, 0.55);
    transform: translateY(-50%) translateX(-3px);
}

.enquire-tab svg {
    /* rotate arrow to point downward in vertical context */
    transform: rotate(90deg);
    flex-shrink: 0;
}

/* ============================
   ENQUIRY POPUP MODAL
============================ */
.enquiry-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.enquiry-overlay.active {
    opacity: 1;
    visibility: visible;
}

.enquiry-modal {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 36px 36px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(18,77,41,0.2) transparent;
}

.enquiry-overlay.active .enquiry-modal {
    transform: translateY(0) scale(1);
}

/* Close button */
.enquiry-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.enquiry-close:hover {
    background: rgba(0, 0, 0, 0.12);
    transform: rotate(90deg);
}

/* Header */
.enquiry-header {
    text-align: center;
    margin-bottom: 28px;
}

.enquiry-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.enquiry-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #124d29;
    margin-bottom: 6px;
}

.enquiry-header p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

/* Form groups */
.enquiry-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.enquiry-form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.03em;
}

.enquiry-form-group input,
.enquiry-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1a1a1a;
    background: #fafafa;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.enquiry-form-group input:focus,
.enquiry-form-group select:focus {
    border-color: #2d8c4e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45, 140, 78, 0.12);
}

.enquiry-form-group input::placeholder {
    color: #bbb;
    font-size: 0.9rem;
}

/* Submit button */
.enquiry-submit {
    width: 100%;
    padding: 14px;
    margin-top: 6px;
    background: linear-gradient(135deg, #2d8c4e, #124d29);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(18, 77, 41, 0.35);
}

.enquiry-submit:hover {
    background: linear-gradient(135deg, #3aad62, #1a6b3a);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(18, 77, 41, 0.45);
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .enquiry-modal {
        padding: 32px 20px 28px;
        border-radius: 16px;
    }

    .enquiry-header h3 {
        font-size: 1.25rem;
    }

    .enquiry-logo {
        height: 38px;
    }
}

/* ============================
   WHATSAPP FLOATING BUTTON
============================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 46px;
        height: 46px;
    }

    .enquire-tab {
        top: 65%;
        padding: 10px 6px;
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }
}