:root {
    --green: #075b2b;
    --deep: #063b1d;
    --gold: #efce01;
    --soft: #f5f8f3;
    --muted: #68736b;
    --ink: #172019;
    --line: #e2eae2;
    --shadow: 0 15px 40px #092d1716;
}
* {
    box-sizing: border-box;
}
.row{
    margin-right: 0 !important;
    margin-left: 0 !important;
    }
html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
}
img {
    max-width: 100%;
    display: block;
}
.brand b {
    color: var(--green);
}
.brand span {
    color: #c58e00;
}
.topbar {
    background: var(--deep);
    color: #eaf2eb;
    font-size: 13px;
}
.topbar i {
    color: var(--gold);
}
.topbar a {
    color: #fff;
    text-decoration: none;
}
.navbar {
    box-shadow: 0 2px 15px #0001;
}
.navbar-brand {
    font-size: 23px;
    font-weight: 800;
}
.navbar .nav-link {
    font-size: 14px;
    font-weight: 600;
}
.navbar .nav-link:hover {
    color: var(--green);
}
.btn-success {
    background: var(--green);
    border-color: var(--green);
}
.btn-success:hover {
    background: var(--deep);
    border-color: var(--deep);
}
.btn-warning {
    background: var(--gold);
    border-color: var(--gold);
}
.section {
    padding: 18px 0;
}
.soft {
    background: var(--soft);
}
.tag {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}
.title {
    font-size: clamp(29px, 4vw, 45px);
    font-weight: 800;
    line-height: 1.15;
}
.title em {
    font-family: "Playfair Display";
    font-style: normal;
    color: var(--green);
}
.sub {
    color: var(--muted);
    max-width: 680px;
}
.hero .hero-item {
    line-height: 0;
}
.hero img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.hero .owl-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
}
.hero .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
.hero .owl-nav button {
    background: #ffffff66 !important;
    color: #fff !important;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    font-size: 24px !important;
}
.owl-theme .owl-dots .owl-dot.active span {
    background: var(--gold);
    width: 28px;
}
.stats {
    background: var(--green);
    color: #fff;
}
.stats strong {
    display: block;
    color: var(--gold);
    font-size: 28px;
}
.stats small {
    font-size: 12px;
}
.shadow-card {
    box-shadow: var(--shadow);
    border: 0;
}
.location-card {
    transition: 0.25s;
}
.location-card:hover {
    transform: translateY(-5px);
}
.location-card img {
    height: 210px;
    object-fit: cover;
}
.pill {
    background: #e7f4e9;
    color: var(--green);
    font-size: 11px;
}
.check-list li {
    margin: 11px 0;
    font-size: 14px;
}
.check-list i {
    color: var(--green);
}
.icon-card {
    transition: 0.25s;
    border: 1px solid var(--line);
}
.icon-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}
.icon-card i {
    font-size: 28px;
    color: var(--green);
}
.price-card {
    border: 1px solid var(--line);
    transition: 0.25s;
}
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.price-card.featured {
    border: 2px solid var(--gold);
}
.price {
    font-size: 27px;
    font-weight: 800;
    color: var(--green);
}
.price small {
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
}
.price-card li {
    font-size: 13px;
    color: var(--muted);
    margin: 8px 0;
}
.price-card li i {
    color: var(--green);
}
.booking-section {
    background: linear-gradient(125deg, var(--deep), var(--green));
}
.booking-section .text-white-50 {
    color: #dbe9dd !important;
}
.booking-card {
    border: 0;
    box-shadow: var(--shadow);
}
.form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}
.form-control,
.form-select {
    min-height: 45px;
    border-radius: 8px;
}
.slot-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
}
.slot {
    padding: 8px 2px;
    border: 1px solid #afd2b4;
    background: #f5fff6;
    color: var(--green);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
}
.slot.booked {
    background: #fde9e9;
    border-color: #efbebe;
    color: #b52222;
    text-decoration: line-through;
    cursor: not-allowed;
}
.slot.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}
.total-box {
    background: var(--soft);
}
.enquiry-box {
    background: var(--soft);
    border-radius: 15px;
}
.notice {
    border-left: 4px solid var(--gold);
    background: #fff8e6;
    color: #735a09;
    font-size: 13px;
}
.legend {
    font-size: 13px;
    color: var(--muted);
}
.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.available {
    background: var(--green);
}
.dot.booked {
    background: #c62828;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: 180px;
    gap: 13px;
}
.gallery-grid figure {
    overflow: hidden;
    position: relative;
    margin: 0;
    border-radius: 14px;
}
.gallery-grid figure:first-child {
    grid-row: span 2;
}
.gallery-grid figure:nth-child(4) {
    grid-column: span 2;
}
.gallery-grid img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.gallery-grid figure:hover img {
    transform: scale(1.08);
}
.gallery-grid figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    color: #fff;
    background: linear-gradient(transparent, #000b);
    font-size: 13px;
}
.amenity {
    border: 1px solid var(--line);
    transition: 0.25s;
}
.amenity:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.amenity i {
    font-size: 23px;
    color: var(--green);
}
.amenity h6 {
    font-size: 15px;
}
.amenity p {
    font-size: 12.5px;
    color: var(--muted);
}
.testimonial-section {
    background: var(--deep);
}
.testimonial-card {
    min-height: 205px;
    margin: 8px;
    box-shadow: var(--shadow);
}
.testimonial-card p {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
}
.stars {
    color: var(--gold);
}
.avatar {
    width: 46px !important;
    height: 46px;
    object-fit: cover;
}
.instagram-grid {
    --reel-height: 555px;
}

.instagram-grid .instagram-tile {
    display: block;
        border: 1px solid #035319;
    height: var(--reel-height);
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(7, 91, 43, 0.08);
    background: #edf2ee;
}

.instagram-grid img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease, opacity 0.35s ease;
    display: block;
}

.instagram-grid .instagram-tile:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}
.faq-item {
    cursor: pointer;
    border-bottom: 1px solid var(--line);
}
.faq-answer {
    display: none;
    color: var(--muted);
    font-size: 13px;
}
.faq-item.open .faq-answer {
    display: block;
}
.cta {
    background: var(--gold);
}
.footer {
    background: #004f16;
    color: #c7d0c8;
}
.footer h5 {
    color: #fff;
}
.footer a {
    color: #c7d0c8;
    text-decoration: none;
}
.footer a:hover {
    color: var(--gold);
}
@media (max-width: 767px) {
    .topbar .container {
        display: block;
    }
    .social-icons {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .hero .owl-nav {
        display: none;
    }
    .instagram-grid {
        --reel-height: 260px;
    }
    .instagram-grid .instagram-tile {
        border-radius: 10px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }
    .gallery-grid figure:first-child {
        grid-row: span 2;
    }
    .gallery-grid figure:nth-child(4) {
        grid-column: span 1;
    }
    .slot-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.promo-strip-wrap {
    width: 100%;
    overflow: hidden;
    background: #004c14;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-strip {
    display: flex;
    width: max-content;
    align-items: stretch;
    animation: coworkingScroll 35s linear infinite;
}

.promo-strip:hover {
    animation-play-state: paused;
}

.promo-item {
    min-width: 245px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    color: #ffffff;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.promo-item:hover {
    background: #efce01;
    color: #ffffff;
}

.promo-item i {
    width: 22px;
    color: #f4b900;
    font-size: 18px;
    text-align: center;
}

.promo-item span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.promo-item .sub {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    font-weight: 500;
    text-transform: none;
}

@keyframes coworkingScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .promo-item {
        min-width: 215px;
        padding: 12px 20px;
    }

    .promo-item span {
        font-size: 12px;
    }

    .promo-item .sub {
        font-size: 10px;
    }
}

.location-card {
    overflow: hidden;
    border: 1px solid #004e15;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(7, 91, 43, 0.06);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-7px);
    border-color: #b7d7bd;
    box-shadow: 0 18px 40px rgba(7, 91, 43, 0.14);
}

.location-image-wrapper {
    position: relative;
    overflow: hidden;
}

.location-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.location-card:hover .location-image-wrapper img {
    transform: scale(1.06);
}

.location-status {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #e7f7eb;
    color: #087333;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.location-status i {
    font-size: 7px;
}

.location-status.coming-soon {
    background: #fff6d9;
    color: #9a7100;
}

.location-title {
    color: #172019;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.location-description {
    line-height: 1.7;
    /* min-height: 78px; */
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.location-tags .pill {
    background: #edf7ef;
    color: #075b2b;
    border: 1px solid #d4ead7;
    font-size: 10px;
    font-weight: 600;
    padding: 6px 10px;
}

.location-btn {
    width: 100%;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 15px;
    transition: all 0.25s ease;
}

.location-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    /* .location-image-wrapper img {
        height: 200px;
    } */

    .location-description {
        min-height: auto;
    }
}
.location-btn {
    width: 100%;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 15px;
    transition: all 0.3s ease;
}

.location-btn:hover,
.location-btn:focus,
.location-btn:active {
    background-color: #005016 !important;
    border-color: #005016 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #005218 !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
        var(--bs-accordion-border-color);
}
@media screen and (max-width: 992px) {
 .section {
    padding: 18px 0;
}
}
