:root {
    --primary: #009141;
    --secondary: linear-gradient(
        to right,
        #5b3210 0%,
        #573f2b 50%,
        #5b3210 100%
    );
    --dark: #1d1d1d;
    --light: #f8faf9;
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, sans-serif;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}

section {
    padding: 110px 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: auto;
}

.navbar {
    padding: 22px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    color: var(--primary);
    font-size: 22px;
}

.nav-link {
    color: #333;
    font-weight: 600;
    margin-left: 24px;
}

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

/*Hero*/
.hero {
    position: relative;
    padding-top: 50px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fbfcfb, #f4faf5);
}

.hero::before {
    content: "";
    position: absolute;
    top: -300px;
    right: -250px;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 145, 65, 0.12),
        transparent 70%
    );
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(91, 50, 16, 0.06), transparent);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    max-width: 650px;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero p {
    font-size: 20px;
    color: #666;
    max-width: 620px;
    line-height: 1.8;
}

.hero .badge {
    background: rgba(0, 145, 65, 0.08);
    color: var(--primary);
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero img {
    width: 100%;
    border-radius: 40px;
    object-fit: cover;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.14);
    transform: rotate(2deg);
    transition: 1s;
}

.hero img:hover {
    transform: rotate(0) scale(1.03);
}

.hero .btn-success {
    margin-top: 24px;
    padding: 18px 36px;
}

.hero .btn-success::after {
    content: " →";
}

@media (max-width: 992px) {
    .hero {
        text-align: center;
        padding-top: 120px;
    }
    .hero h1 {
        font-size: 58px;
    }
    .hero img {
        margin-top: 50px;
        transform: none;
    }
}
/*End Hero*/

.info-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    text-align: center;
    padding: 40px;
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-8px);
}

.info-box i {
    font-size: 48px;
    color: var(--primary);
}

.info-box h5 {
    margin-top: 18px;
}

#location {
    background: var(--light);
}

iframe {
    border: none;
    border-radius: 30px;
}

.feature-card {
    background: var(--secondary);
    color: #fff;
    padding: 60px;
    border-radius: 28px;
    text-align: center;
    transition: 0.3s;
}

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

.feature-card i {
    font-size: 48px;
    margin-bottom: 20px;
}

.product-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 28px;
    border-radius: 20px;
    font-weight: 700;
    transition: 0.3s;
}

.product-item:hover {
    background: var(--primary);
    color: #fff;
}

.package-card {
    background: var(--secondary);
    color: #fff;
    padding: 80px 50px;
    border-radius: 30px;
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-8px);
}

footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

footer h5 {
    color: #00ba56;
}

@media (max-width: 992px) {
    .hero {
        text-align: center;
    }
    .hero h1 {
        font-size: 48px;
    }
    .section-title h2 {
        font-size: 34px;
    }
    .hero img {
        margin-top: 50px;
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(to right, #009141, #00ba56);
    z-index: 99999;
    transition: 0.2s;
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s;
}

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

.nav-link.active {
    color: var(--primary) !important;
}

.floating-leaf {
    position: fixed;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 145, 65, 0.12), transparent);
    border-radius: 999px;
    pointer-events: none;
    animation: float 12s infinite ease-in-out;
    z-index: -1;
}

.leaf-1 {
    top: 15%;
    left: 5%;
}

.leaf-2 {
    right: 5%;
    top: 50%;
}

.leaf-3 {
    bottom: 10%;
    left: 30%;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0);
    }
}

.info-box,
.feature-card,
.product-item,
.package-card {
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.info-box:before,
.product-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transition: 1s;
}

.info-box:hover:before,
.product-item:hover:before {
    left: 100%;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    display: flex;
    align-items: end;
    padding: 30px;
    color: white;
}

.stats {
    background: var(--secondary);
    color: white;
    text-align: center;
}

.stats h2 {
    font-size: 40px;
    font-weight: 900;
}

.product-card {
    display: block;
    position: relative;
    height: 460px;
    border-radius: 32px;
    overflow: hidden;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}
.product-card:hover {
    transform: translateY(-12px);
}
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}
.product-card:hover img {
    transform: scale(1.08);
}
.product-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
}
.product-content span {
    display: inline-flex;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 16px;
}
.product-content h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}
.product-content p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.7;
}

footer {
    background: linear-gradient(135deg, #1b1b1b, #111);
    color: #fff;
    padding: 100px 0 40px;
}
.footer-logo {
    height: 64px;
    margin-bottom: 24px;
}
.footer-desc {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    align-items: center;
}
.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: 0.3s;
}
.footer-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
.footer-line {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 50px 0;
}
footer h5 {
    font-size: 34px;
    font-weight: 800;
}
footer small {
    color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 992px) {
    footer {
        text-align: center;
    }
    .footer-desc {
        margin: auto;
    }
}

.attraction-card {
    background: #fff;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transition: 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}
.attraction-img {
    background: #f4f7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
    overflow: hidden;
    flex-shrink: 0;
}
.attraction-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.6s;
}
.attraction-card:hover .attraction-img img {
    transform: scale(1.04);
}
.attraction-content {
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.attraction-content span {
    display: inline-flex;
    width: max-content;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 145, 65, 0.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}
.attraction-content h4 {
    font-size: 26px;
    font-weight: 900;
    color: #222;
    line-height: 1.15;
    margin-bottom: 8px;
}
.attraction-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.attraction-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}
.attraction-actions a,
.attraction-actions button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}
.btn-detail {
    background: var(--primary);
    color: #fff;
}
.btn-detail:hover {
    background: #007a35;
    color: #fff;
    transform: translateY(-2px);
}
.btn-gallery {
    background: rgba(0, 145, 65, 0.08);
    color: var(--primary);
}
.btn-gallery:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 992px) {
    .attraction-img {
        height: 340px;
    }
    .attraction-content h4 {
        font-size: 22px;
    }
}
@media (max-width: 576px) {
    .attraction-img {
        height: 280px;
    }
    .attraction-actions {
        flex-direction: column;
    }
    .attraction-actions a,
    .attraction-actions button {
        justify-content: center;
    }
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.gallery-modal.active {
    display: flex;
}
.gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}
.gallery-panel {
    position: relative;
    width: 90vw;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 2;
    padding: 8px;
    transition: 0.3s;
    opacity: 0.7;
}
.gallery-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: none;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    opacity: 0.7;
}
.gallery-nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
}
.gallery-prev {
    left: -70px;
}
.gallery-next {
    right: -70px;
}
.gallery-view {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
    width: 100%;
}
.gallery-view img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    user-select: none;
}
.gallery-counter {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}
@media (max-width: 992px) {
    .gallery-panel {
        width: 95vw;
    }
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .gallery-prev {
        left: 4px;
    }
    .gallery-next {
        right: 4px;
    }
    .gallery-close {
        top: -44px;
        font-size: 24px;
    }
}
/* End Gallery Modal */

#food {
    padding: 140px 0;
    background: linear-gradient(180deg, #f8fcf9, #fff);
}
.coming-food {
    max-width: 900px;
    margin: auto;
    padding: 90px 50px;
    text-align: center;
    border-radius: 40px;
    background: linear-gradient(135deg, #ffffff, #f7fbf8);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}
.coming-food::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(0, 145, 65, 0.06);
}
.coming-icon {
    width: 120px;
    height: 120px;
    margin: auto auto 40px;
    border-radius: 999px;
    background: rgba(0, 145, 65, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.coming-icon i {
    font-size: 52px;
    color: var(--primary);
}
.coming-food h2 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
}
.coming-food p {
    max-width: 650px;
    margin: auto;
    color: #666;
    font-size: 19px;
    line-height: 1.9;
}
.coming-food span {
    display: inline-flex;
    margin-top: 36px;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
}

#cta {
    padding: 140px 0;
}
.cta-box {
    padding: 90px 60px;
    border-radius: 40px;
    background: linear-gradient(135deg, #0c8d42, #056630);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}
.cta-badge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    margin-bottom: 30px;
}
.cta-box h2 {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    margin-bottom: 24px;
}
.cta-box > p {
    max-width: 720px;
    margin: auto;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.9;
}
.cta-contact {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 50px 0;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    text-align: left;
}
.contact-item i {
    font-size: 32px;
}
.contact-item small {
    display: block;
    opacity: 0.7;
}
.contact-item strong {
    display: block;
}
.cta-action {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-weight: 800;
    transition: 0.3s;
}
.cta-btn:hover {
    transform: translateY(-4px);
}
.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.cta-note {
    margin-top: 40px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

.cta-note a {
    font-weight: bold;
    color: #fff;
}

@media (max-width: 992px) {
    .cta-box {
        padding: 60px 30px;
    }
    .cta-contact {
        flex-direction: column;
    }
    .contact-item {
        text-align: center;
        justify-content: center;
    }
}
