.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: #1a3c1a;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-title-script {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    font-weight: 400;
    color: #1a3c1a;
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #1a5c1a;
    margin: 16px auto 30px;
}

/* ═══════════════════════════════════════════════════════
   HERO SLIDER (shared)
   ═══════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    background: #0d2f0d;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 20, 0, 0.45) 60%,
            rgba(0, 15, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 40px;
    margin-bottom: 100px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Booking Form */
.booking-form {
    display: flex;
    width: 1000px;
    margin: 0 auto;
    padding: 14px 18px;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: fit-content;
}

.booking-form .form-group {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 8px 14px;
}

.booking-form .form-group label {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.booking-form .form-group input,
.booking-form .form-group select {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 13px;
    color: #555;
    background: transparent;
    min-width: 80px;
    cursor: pointer;
}

.booking-form .btn-book {
    background: #1a5c1a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form .btn-book:hover {
    background: #1a6f1a;
    box-shadow: 0 4px 15px rgba(26, 92, 26, 0.4);
}

/* ═══════════════════════════════════════════════════════
   ABOUT US
   ═══════════════════════════════════════════════════════ */
.about-section {
    background: #fff;
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: #1a3c1a;
    margin-bottom: 8px;
}

.about-text .about-divider {
    width: 50px;
    height: 3px;
    background: #1a5c1a;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
}

.about-text p strong {
    color: #1a3c1a;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.about-images .img-large {
    grid-column: 1 / -1;
    border-radius: 12px;
    overflow: hidden;
    height: 240px;
}

.about-images .img-small {
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-images .img-large:hover img,
.about-images .img-small:hover img {
    transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════
   HIGHLIGHTS (marquee scroll)
   ═══════════════════════════════════════════════════════ */
.highlights-section {
    overflow: hidden;
    contain: layout style;
}

.highlights-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

.highlights-track:hover {
    animation-play-state: paused;
}

.highlight-card {
    position: relative;
    overflow: hidden;
    height: 340px;
    cursor: pointer;
    width: 300px;
    flex-shrink: 0;
}

.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    will-change: transform;
}

.highlight-card:hover img {
    transform: scale(1.1);
}

@keyframes scroll-left {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.highlight-card .highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 30, 0, 0.95) 0%, rgba(0, 30, 0, 0.5) 60%, transparent 100%);
    padding: 40px 20px 24px;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.highlight-card:hover .highlight-overlay {
    opacity: 1;
}

.highlight-card .highlight-overlay h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

.highlight-card .placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d5a2d, #1a3c1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════
   SPECIAL OFFERS
   ═══════════════════════════════════════════════════════ */
.offers-section {
    background: #fff;
}

.offers-section .section-title {
    text-align: center;
}

.offer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #e8e8e4;
    margin-bottom: 30px;
    transition: box-shadow 0.4s ease;
}

.offer-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.offer-card .offer-img {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.offer-card .offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-img img {
    transform: scale(1.03);
}

.offer-card .offer-img .placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e4, #d4d4d0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.offer-card .offer-body {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2F5218;
}

.offer-card .offer-body h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-style: italic;
}

.offer-card .offer-body .inclusion-label {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.offer-card .offer-body .offer-desc {
    font-size: 14px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 16px;
}

.offer-card .offer-body .inclusion-list {
    margin-bottom: 24px;
    padding-left: 18px;
}

.offer-card .offer-body .inclusion-list li {
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
    list-style: disc;
}

.offer-card .offer-body .offer-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.offer-card .offer-body .price-label {
    font-size: 13px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-card .offer-body .price-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.btn-book-now {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 10px 28px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: #fff;
    color: #1a5c1a;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS SLIDER
   ═══════════════════════════════════════════════════════ */
.testimonials-section {
    background: linear-gradient(to bottom, rgba(16, 41, 16, 0.85), rgba(16, 41, 16, 0.7)), url("/images/about1.jpg");
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    color: #fff;
    padding: 40px 0 50px;
}

.testimonials-section .section-title-script {
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-family: var(--font-heading);
    margin-bottom: 0px;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 8px;
}

.testimonials-section .section-divider {
    display: none;
}

.testimonial-slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin-top: 20px;
    padding-bottom: 20px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-slide {
    min-width: 33.333%;
    box-sizing: border-box;
    padding: 0 15px;
    flex-shrink: 0;
}

.testimonial-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card .t-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-card .t-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #555;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    border: 3px solid #fff;
}

.testimonial-card .t-desc {
    font-size: 16px;
    color: #f0f0f0;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 300px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.testimonial-card .t-line {
    display: none;
}

.testimonial-card .t-name {
    font-weight: 700;
    color: #ffd700;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ffd700;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer-section {
    background: #1a3c1a;
    color: #fff;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-col .footer-logo img {
    height: 45px;
    width: auto;
    border-radius: 100%;
}

.footer-col .footer-logo span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
}

.footer-col .social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-col .social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-col .social-icons a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.footer-col .social-icons a i {
    font-size: 16px;
}

.footer-col .footer-website {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
}

.footer-col p,
.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    display: block;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col .info-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-col .info-line i {
    width: 15px;
    height: 15px;
    margin-top: 3px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════
   SHARED UTILITIES
   ═══════════════════════════════════════════════════════ */
.placeholder-img {
    background: linear-gradient(135deg, #e0e0d8, #c8c8c0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══════════════════════════════════════════════════════
   BLOG SECTION (Home Page)
   ═══════════════════════════════════════════════════════ */
.blog-section {
    background: #f8f9f6;
}

.blog-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.blog-slider-container {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.blog-slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.blog-slide {
    flex-shrink: 0;
    padding: 0 10px;
    box-sizing: border-box;
}

.blog-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.blog-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c8d8c8;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.blog-slider-dot.active {
    background: #2F5218;
    transform: scale(1.3);
    box-shadow: 0 0 6px rgba(47, 82, 24, 0.5);
}

.blog-slider-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #2F5218;
    background: #fff;
    color: #2F5218;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.blog-slider-btn:hover {
    background: #2F5218;
    color: #fff;
}

.blog-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(47, 82, 24, 0.9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #1a3c1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-content .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #2F5218;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.blog-content .read-more:hover {
    gap: 12px;
    color: #1a3c1a;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .about-grid {
        gap: 30px;
    }

    .offer-card .offer-body {
        padding: 28px;
    }

    .offer-card .offer-body h3 {
        font-size: 22px;
    }

    .offer-card .offer-body .price-value {
        font-size: 20px;
    }

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

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .highlight-card {
        width: 260px;
        height: 280px;
    }

    .offer-card {
        grid-template-columns: 1fr;
    }

    .offer-card .offer-img {
        min-height: 280px;
    }

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

    .hero-content {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .section-title-script {
        font-size: 34px;
    }

    .section-padding {
        padding: 56px 0;
    }

    .container {
        padding: 0 18px;
    }

    .hero-section {
        height: 100dvh;
        min-height: 600px;
    }

    .hero-content {
        padding: 0 20px;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 34px;
        margin-bottom: 8px;
        text-align: center;
        letter-spacing: -0.5px;
    }

    /* ── Mobile Booking Form ── */
    .booking-form {
        flex-direction: column;
        gap: 10px;
        padding: 20px 18px;
        max-width: 360px;
        width: 92vw;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }

    .booking-form .form-group {
        width: 100%;
        padding: 13px 16px;
        border-radius: 10px;
        gap: 10px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    .booking-form .form-group label {
        font-size: 10px;
        font-weight: 800;
        color: #1a5c1a;
        letter-spacing: 1px;
    }

    .booking-form .form-group input,
    .booking-form .form-group select {
        font-size: 14px;
        color: #333;
        width: 100%;
    }

    .booking-form .btn-book {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
        border-radius: 10px;
        letter-spacing: 2px;
        background: #1a5c1a;
        box-shadow: 0 4px 15px rgba(26, 92, 26, 0.4);
    }

    /* About */
    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 14px;
    }

    /* Highlights */
    .highlight-card {
        height: 240px;
        width: 230px;
    }

    /* Offers */
    .offer-card .offer-body {
        padding: 24px 20px;
    }

    .offer-card .offer-body h3 {
        font-size: 20px;
    }

    /* Testimonials */
    .testimonial-slide {
        min-width: 50%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }

    .section-title-script {
        font-size: 32px;
    }

    .section-padding {
        padding: 48px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* ── Hero ── */
    .hero-section {
        height: 100dvh;
        min-height: 100dvh;
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                rgba(0, 20, 0, 0.45) 50%,
                rgba(0, 15, 0, 0.7) 100%);
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 16px;
        margin-bottom: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        line-height: 1.15;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
    }

    /* ── Redesigned Mobile Booking Form ── */
    .booking-form {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
        background: rgba(10, 30, 10, 0.55);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    }

    .booking-form .form-group {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        gap: 10px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.5);
        transition: box-shadow 0.2s ease;
    }

    .booking-form .form-group:focus-within {
        box-shadow: 0 0 0 2px rgba(26, 92, 26, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .booking-form .form-group label {
        font-size: 10px;
        font-weight: 800;
        color: #1a5c1a;
        letter-spacing: 1.2px;
        white-space: nowrap;
    }

    .booking-form .form-group input,
    .booking-form .form-group select {
        font-size: 13px;
        color: #333;
        width: 100%;
        min-width: 0;
    }

    .booking-form .btn-book {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
        border-radius: 10px;
        letter-spacing: 2.5px;
        background: linear-gradient(135deg, #1a6f1a 0%, #1a5c1a 100%);
        box-shadow: 0 4px 20px rgba(26, 92, 26, 0.5);
        margin-top: 4px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .booking-form .btn-book:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(26, 92, 26, 0.4);
    }

    /* ── About ── */
    .about-text h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-images .img-large {
        height: 200px;
    }

    .about-images .img-small {
        height: 140px;
    }

    /* ── Highlights ── */
    .highlight-card {
        height: 200px;
        width: 200px;
    }

    .highlight-card .highlight-overlay h3 {
        font-size: 11px;
        letter-spacing: 1px;
    }

    /* ── Offers ── */
    .offer-card .offer-img {
        min-height: 220px;
    }

    .offer-card .offer-body {
        padding: 20px 18px;
    }

    .offer-card .offer-body h3 {
        font-size: 20px;
    }

    .offer-card .offer-body .price-value {
        font-size: 22px;
    }

    .offer-card .offer-body .offer-price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-book-now {
        width: 100%;
        text-align: center;
    }

    /* ── Blog Section ── */
    .blog-section {
        overflow: hidden;
    }

    .blog-slider-wrapper {
        gap: 0;
        margin-top: 20px;
        padding-right: 0;
    }

    .blog-slider-container {
        overflow: hidden;
        border-radius: 0;
    }

    .blog-slider-track {
        /* Reset padding agar track tidak extend berlebih */
        padding-right: 0;
    }

    .blog-slide {
        padding: 0 8px 0 0;
        box-sizing: border-box;
    }

    .blog-card {
        border-radius: 14px;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    }

    .blog-img {
        height: 200px;
        overflow: hidden;
        border-radius: 14px 14px 0 0;
    }

    .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .blog-content {
        padding: 16px 18px 20px;
    }

    .blog-content h3 {
        font-size: 17px;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-content p {
        font-size: 13px;
        margin-bottom: 14px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-slider-dots {
        margin-top: 20px;
    }

    /* ── Testimonials ── */
    .testimonial-slide {
        min-width: 100%;
        padding: 0 24px;
    }

    .testimonial-card {
        padding: 10px 0 4px;
    }

    .testimonial-card .t-avatar,
    .testimonial-card .t-avatar-placeholder {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }

    .testimonial-card .t-name {
        font-size: 16px;
    }

    .testimonial-card .t-desc {
        font-size: 14px;
        max-width: 100%;
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }

    /* ── Footer ── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-section {
        padding: 40px 0 0;
    }
}