
/* =========================================================
   ROOT
========================================================= */

:root {
    --primary: #00612b;
    --primary-dark: #004720;
    --primary-light: #0a8a41;
    --gold: #f7941d;
    --gold-dark: #e07a00;
    --gold-light: #ffc94d;
    --yellow: #ffd400;
    --dark: #16241a;
    --text: #5c6b60;
    --light: #f8f7f0;
    --white: #ffffff;
    --border: #e7e2d3;
    --shadow: 0 15px 45px rgba(0,54,20,.10);
    --shadow-gold: 0 12px 30px rgba(240,148,29,.35);
    --radius: 16px;
    --gradient-gold: linear-gradient(135deg, #f7941d 0%, #ffb133 55%, #ffd400 100%);
    --gradient-green: linear-gradient(135deg, #00612b 0%, #00832f 100%);
}

/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1200px, 92%);
    margin: auto;
}

section {
    padding: 90px 0;
}

.section-title {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-title.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title span {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    margin: 12px 0 20px;
}

.section-title p {
    color: #777;
}

/* =========================================================
   RUNNING BAR
========================================================= */

.topbar {
    height: 40px;
    background: var(--gradient-green);
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-size: 13px;
    letter-spacing: .3px;
    border-bottom: 2px solid var(--gold);
}

.topbar .marquee span {
    color: var(--gold-light);
    font-weight: 700;
}

.marquee {
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    height: 88px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0,54,20,.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: auto;
    height: 62px;
    display: flex;
    align-items: center;
}

.logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-wa {
    background: var(--gradient-gold);
    color: var(--dark) !important;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(240,148,29,.45);
}

.menu-btn {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    height: min(760px, calc(100vh - 120px));
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    height: 100%;
    object-fit: cover;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.72),
        rgba(0,0,0,.25),
        rgba(0,0,0,.05)
    );
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    max-width: 650px;
}

.hero-content span {
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-content span::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--gold-light);
    display: inline-block;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    margin: 15px 0;
}

.hero-content p {
    font-size: 18px;
    max-width: 550px;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(240,148,29,.45);
}

.btn-secondary {
    background: var(--gradient-green);
    color: white;
    box-shadow: 0 12px 30px rgba(0,97,43,.30);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0,97,43,.42);
}

.btn-outline {
    border: 1.5px solid white;
    color: white;
    margin-left: 10px;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.hero-dots {
    position: absolute;
    z-index: 5;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 35px;
    height: 4px;
    background: rgba(255,255,255,.5);
    cursor: pointer;
}

.hero-dot.active {
    background: white;
}

/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-badge {
    position: absolute;
    bottom: 25px;
    right: -25px;
    background: white;
    padding: 25px;
    box-shadow: var(--shadow);
    border-radius: 12px;
}

.about-badge strong {
    font-size: 30px;
    color: var(--primary);
    display: block;
}

/* =========================================================
   VIDEO
========================================================= */

.video-section {
    background: var(--light);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================================
   VIDEO CAROUSEL (5 video, autoplay & auto-rotate)
========================================================= */

.video-carousel {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    background: #0a1a10;
}

.video-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
}

.video-slide.active {
    opacity: 1;
    visibility: visible;
}

.video-slide iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-carousel-caption {
    position: absolute;
    z-index: 4;
    left: 22px;
    bottom: 18px;
    background: rgba(10,26,16,.72);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.video-dots {
    position: absolute;
    z-index: 5;
    right: 18px;
    bottom: 18px;
    display: flex;
    gap: 7px;
}

.video-dot {
    width: 26px;
    height: 4px;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    border-radius: 2px;
}

.video-dot.active {
    background: var(--gold);
}

@media (max-width: 720px) {
    .video-carousel-caption {
        font-size: 11px;
        padding: 8px 14px;
    }
}

.projects {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 35px rgba(0,54,20,.07);
    border: 1px solid transparent;
    transition: .4s;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.project-image {
    height: 230px;
    overflow: hidden;
}

.project-image img {
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.project-card:hover .project-image img {
    transform: scale(1.07);
}

.project-info {
    padding: 22px;
}

.project-info h3 {
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.project-info p {
    font-size: 14px;
    margin-bottom: 18px;
}

.project-actions {
    display: flex;
    gap: 8px;
}

.project-actions .btn {
    padding: 10px 14px;
    font-size: 12px;
}

/* =========================================================
   CLUSTER
========================================================= */

.cluster-section {
    background: var(--light);
}

.cluster-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cluster-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: .4s;
}

.cluster-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.cluster-card img {
    height: 250px;
    object-fit: cover;
}

.cluster-info {
    padding: 22px;
}

.cluster-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 21px;
}

.price {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 17px;
    margin: 8px 0 15px;
}

.cluster-actions {
    display: flex;
    gap: 8px;
}

.cluster-actions .btn {
    padding: 10px 14px;
    font-size: 12px;
}

/* =========================================================
   WHY
========================================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: .3s;
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.why-icon {
    font-size: 35px;
    margin-bottom: 20px;
}

.why-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

/* =========================================================
   NEWS
========================================================= */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: white;
}

.news-card img {
    height: 230px;
    object-fit: cover;
}

.news-info {
    padding: 25px;
}

.news-info small {
    color: var(--primary);
}

.news-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin: 8px 0;
}

/* =========================================================
   BAijan
========================================================= */

.baijan {
    background: var(--gradient-green);
    color: white;
    position: relative;
    overflow: hidden;
}

.baijan::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(255,212,0,.12), transparent 45%),
        radial-gradient(circle at 5% 90%, rgba(255,212,0,.10), transparent 45%);
    pointer-events: none;
}

.baijan .section-title span {
    color: var(--gold-light);
}

.baijan .section-title h2,
.baijan .section-title p {
    color: white;
}

.baijan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.baijan-card {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
    background: rgba(255,255,255,.04);
    transition: .3s;
}

.baijan-card:hover {
    border-color: var(--gold);
    background: rgba(255,255,255,.08);
    transform: translateY(-4px);
}

.baijan-card h3 {
    margin: 15px 0 8px;
}

/* =========================================================
   AWARDS
========================================================= */

.awards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.award {
    height: 150px;
    border: 1px solid var(--border);
    border-radius: 15px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    background: white;
}

.award strong {
    color: var(--dark);
}

/* =========================================================
   GALLERY
========================================================= */

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery img {
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: .3s;
}

.gallery img:hover {
    transform: scale(1.02);
}

/* =========================================================
   CTA
========================================================= */

.cta {
    background:
    linear-gradient(rgba(0,20,8,.78),rgba(0,60,25,.72)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1920&q=85")
    center/cover;
    color: white;
    text-align: center;
}

.cta span {
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(35px, 5vw, 58px);
    margin-bottom: 20px;
}

/* =========================================================
   FAQ
========================================================= */

.faq {
    max-width: 850px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: var(--dark);
    font-weight: 700;
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-item {
    margin: 20px 0;
}

.contact-item strong {
    display: block;
    color: var(--dark);
}

.contact-form {
    background: white;
    padding: 35px;
    box-shadow: var(--shadow);
    border-radius: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 8px;
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* =========================================================
   FOOTER
========================================================= */

footer {
    background: linear-gradient(160deg, #04150c 0%, #00612b 55%, #014a22 100%);
    color: #cfe3d5;
    padding: 70px 0 25px;
    border-top: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 8%, rgba(255,212,0,.10), transparent 45%),
        radial-gradient(circle at 4% 96%, rgba(10,138,65,.35), transparent 50%);
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    height: 78px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    background: white;
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 22px;
}

.footer-brand strong {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 25px;
}

footer h4 {
    color: white;
    margin-bottom: 20px;
}

footer h4::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    margin-top: 8px;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 10px;
}

footer a:hover {
    color: var(--gold-light);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
}

/* =========================================================
   FLOATING WA
========================================================= */

.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    animation: wa-pulse 2.4s ease-in-out infinite;
}

.wa-float svg {
    width: 32px;
    height: 32px;
}

.wa-status {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 15px;
    height: 15px;
    background: #2ecc57;
    border: 2.5px solid white;
    border-radius: 50%;
    animation: wa-status-blink 2.4s ease-in-out infinite;
}

@keyframes wa-status-blink {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,87,.7); }
    50% { box-shadow: 0 0 0 5px rgba(46,204,87,0); }
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.55); }
    50% { box-shadow: 0 10px 30px rgba(0,0,0,.25), 0 0 0 12px rgba(37,211,102,0); }
}

/* =========================================================
   POPUP
========================================================= */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6,26,14,.72);
    backdrop-filter: blur(3px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup {
    background: white;
    max-width: 480px;
    width: 100%;
    max-height: 92vh;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    animation: popup .45s cubic-bezier(.2,.8,.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0,20,10,.35);
    overflow-y: auto;
}

.popup-image {
    position: relative;
    height: 200px;
    flex-shrink: 0;
}

.popup-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.popup-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,40,15,0) 45%, rgba(0,30,12,.88) 100%);
}

.popup-image-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 16px;
    color: white;
    z-index: 2;
}

.popup-image-caption strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 4px;
}

.popup-image-caption span {
    font-size: 11px;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.popup-content {
    padding: 28px 30px 26px;
    text-align: left;
}

.popup-eyebrow {
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.popup-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 26px;
    margin: 8px 0 10px;
    line-height: 1.25;
}

.popup-content > p {
    font-size: 14px;
    margin-bottom: 20px;
}

.popup-form .form-group {
    margin-bottom: 14px;
}

.popup-form label {
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
    font-weight: 600;
    font-size: 13px;
}

.popup-form input,
.popup-form select {
    width: 100%;
    border: 1.5px solid var(--border);
    padding: 12px 14px;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    background: var(--light);
    transition: .25s;
}

.popup-form input:focus,
.popup-form select:focus {
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(247,148,29,.15);
}

.popup-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.popup-form .btn {
    margin-top: 6px;
    font-size: 15px;
    padding: 15px 25px;
    gap: 10px;
}

.popup-privacy {
    font-size: 11.5px;
    color: #8a9490;
    margin-top: 12px;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,.9);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 18px;
    z-index: 3;
    color: var(--dark);
    transition: .25s;
}

.popup-close:hover {
    background: var(--gold);
    color: white;
    transform: rotate(90deg);
}

@keyframes popup {
    from {
        transform: translateY(30px) scale(.97);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .popup {
        max-height: 94vh;
    }
    .popup-image {
        height: 150px;
    }
    .popup-form-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 1000px) {

    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 120px);
        background: white;
        flex-direction: column;
        padding: 40px;
        align-items: flex-start;
        transition: .3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-btn {
        display: block;
        color: var(--primary);
    }

    .projects,
    .cluster-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .baijan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 600px) {

    section {
        padding: 65px 0;
    }

    .hero {
        height: 700px;
    }

    .hero-content {
        padding: 0 5%;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }

    .projects,
    .cluster-slider,
    .why-grid,
    .baijan-grid,
    .news-grid,
    .gallery,
    .awards {
        grid-template-columns: 1fr;
    }

    .gallery img {
        height: 260px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 400px;
    }

}

/* =========================================================
   SUB-PAGE HERO (halaman selain Home)
========================================================= */

.hero.hero-sub {
    height: min(440px, 62vh);
    min-height: 340px;
}

.hero.hero-sub .hero-content h1 {
    font-size: clamp(34px, 5vw, 54px);
}

/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb {
    font-size: 13px;
    color: #8a978d;
    padding: 22px 0 0;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 600;
}

/* =========================================================
   PROMO CARDS
========================================================= */

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.promo-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 10px 35px rgba(0,54,20,.07);
    transition: .35s;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.promo-card .promo-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.promo-card .promo-image img {
    height: 100%;
    object-fit: cover;
}

.promo-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient-gold);
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 6px 12px;
    border-radius: 50px;
}

.promo-info {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-info small {
    color: var(--primary);
    font-weight: 700;
}

.promo-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin: 8px 0 10px;
    font-size: 20px;
}

.promo-info p {
    font-size: 14px;
    margin-bottom: 18px;
}

.promo-info .btn {
    margin-top: auto;
}

/* =========================================================
   GALLERY TABS + LIGHTBOX
========================================================= */

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-tab {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    transition: .25s;
    background: white;
}

.gallery-tab.active,
.gallery-tab:hover {
    background: var(--gradient-green);
    color: white;
    border-color: transparent;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,15,9,.92);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

/* =========================================================
   MAP BOX (Contact page)
========================================================= */

.map-box {
    height: 360px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.55) contrast(1.05);
}

/* =========================================================
   NEWS CATEGORY FILTER (News & Event page)
========================================================= */

.news-cat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .hero.hero-sub {
        height: 460px;
    }
}
