/* =========================
   GLOBAL STYLES
========================= */

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

:root {
    --primary: #7dbb28;
    --secondary: #111111;
    --white: #ffffff;
    --text: #d8d8d8;
    --glass: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 5%;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(15px);
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
}

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

.book-btn {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.book-btn:hover {
    transform: translateY(-3px);
}

.mobile-menu {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

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

.hero {
    position: relative;

    width: 100%;
    height: 100vh;

    background: url("image/hero.png") center center/cover no-repeat;

    display: flex;
    align-items: center;

    padding: 0 7%;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .35));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.welcome {
    color: var(--primary);
    font-size: 40px;
    font-family: cursive;
}

.hero h1 {
    color: #fff;
    font-size: 70px;
    line-height: 1.1;
    margin-top: 10px;
}

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

.hero p {
    color: #e4e4e4;
    margin-top: 25px;
    line-height: 1.8;
    font-size: 18px;
    max-width: 600px;
}

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

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    text-decoration: none;

    padding: 15px 30px;
    border-radius: 10px;

    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-secondary {
    border: 2px solid #fff;

    color: #fff;
    text-decoration: none;

    padding: 15px 30px;
    border-radius: 10px;

    font-weight: 600;
    transition: .3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #111;
}

/* =========================
   FEATURE ICONS
========================= */

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 35px;

    flex-wrap: wrap;
}

.hero-features div {
    color: #fff;
    font-size: 16px;
}

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

.popup {

    position: absolute;

    right: 8%;
    top: 120px;

    width: 340px;

    padding: 25px;

    border-radius: 25px;

    background:
        rgba(0, 0, 0, .45);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .15);

    color: #fff;

    z-index: 5;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .35);

    display: none;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 18px;

    font-size: 24px;
    cursor: pointer;
}

.popup h3 {
    text-align: center;
    color: #ffb347;
    margin-bottom: 15px;
}

.popup p {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

.popup ul {
    list-style: none;
    margin-bottom: 20px;
}

.popup ul li {
    margin-bottom: 10px;
    color: #d7ffd2;
}

.popup-whatsapp {
    display: block;
    width: 100%;

    background: #4CAF50;
    color: #fff;

    text-decoration: none;
    text-align: center;

    padding: 14px;
    border-radius: 10px;

    margin-bottom: 12px;
    font-weight: 600;
}

.popup-enquiry {
    display: block;
    width: 100%;

    background: #fff;
    color: #111;

    text-decoration: none;
    text-align: center;

    padding: 14px;
    border-radius: 10px;

    font-weight: 600;
}

/* =========================
   FLOATING WHATSAPP
========================= */

.floating-whatsapp {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 70px;
    height: 70px;

    background: #25D366;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    z-index: 9999;

    box-shadow:
        0 10px 30px rgba(37, 211, 102, .5);

    animation: pulse 2s infinite;
}

.floating-whatsapp i {
    color: #fff;
    font-size: 35px;
}

@keyframes pulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

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

@media(max-width:991px) {

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .popup {
        right: 20px;
        left: 20px;
        width: auto;
    }
}

@media(max-width:768px) {

    .hero h1 {
        font-size: 38px;
    }

    .welcome {
        font-size: 28px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .floating-whatsapp {
        width: 60px;
        height: 60px;
    }

    .floating-whatsapp i {
        font-size: 28px;
    }
}

.nav-links.active {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    padding: 30px;
    display: flex;
    gap: 20px;
}

/* ==========================
TRUST BAR
========================== */

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;

    padding: 20px;

    background: #fff;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a5a5a;
    font-weight: 500;
}

.trust-item i {
    color: #7dbb28;
    font-size: 20px;
}

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

.about-section {
    padding: 100px 8%;
    background: #fafafa;
}

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

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.section-tag {
    color: #7dbb28;
    font-weight: 600;
}

.about-content h2 {
    font-size: 38px;
    margin: 15px 0;
    color: #222;
}

.about-content p {
    line-height: 1.9;
    color: #666;
    margin-bottom: 30px;
}

.about-btn {
    background: #7dbb28;
    padding: 14px 28px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}

/* ==========================
STATS
========================== */

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;

    display: flex;
    align-items: center;
    gap: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.stat-icon {
    font-size: 32px;
    color: #7dbb28;
}

.stat-box h3 {
    font-size: 32px;
    color: #222;
}

.stat-box p {
    color: #666;
}

/* ==========================
FEATURES
========================== */

.features-section {
    padding: 80px 8%;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 38px;
    color: #222;
}

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

.feature-card {
    background: #fff;

    padding: 30px;

    text-align: center;

    border-radius: 18px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);

    transition: .4s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 40px;
    color: #7dbb28;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #333;
}

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

@media(max-width:991px) {

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

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

}

@media(max-width:768px) {

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

    .trust-bar {
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-content h2 {
        font-size: 28px;
    }

}

/* ==========================
SECTION HEADER
========================== */

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

.section-header span {
    color: #7dbb28;
    font-weight: 600;
}

.section-header h2 {
    font-size: 42px;
    margin-top: 15px;
    color: #222;
}

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

.gallery-section {
    padding: 100px 8%;
    background: #fafafa;
}

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

.gallery-filter button {
    padding: 12px 25px;
    border: none;
    background: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.gallery-filter .active {
    background: #7dbb28;
    color: #fff;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ==========================
EXPERIENCE
========================== */

.experience-section {
    padding: 100px 8%;
    background: #fff;
}

.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-content span {
    color: #7dbb28;
    font-weight: 600;
}

.experience-content h2 {
    font-size: 46px;
    margin: 20px 0;
    color: #222;
}

.experience-content p {
    line-height: 1.9;
    color: #666;
    margin-bottom: 25px;
}

.experience-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.experience-content ul li {
    margin-bottom: 12px;
    font-size: 18px;
}

.experience-btn {
    background: #7dbb28;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
}

.experience-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

/* ==========================
FOOD
========================== */

.food-section {
    padding: 100px 8%;
    background: #fafafa;
}

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

.food-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
}

.food-card:hover {
    transform: translateY(-10px);
}

.food-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.food-content {
    padding: 25px;
}

.food-content h3 {
    margin-bottom: 10px;
    color: #222;
}

.food-content p {
    color: #666;
    line-height: 1.7;
}

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

@media(max-width:991px) {

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

    .experience-container {
        grid-template-columns: 1fr;
    }

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

}

@media(max-width:768px) {

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

    .section-header h2 {
        font-size: 30px;
    }

    .experience-content h2 {
        font-size: 32px;
    }

}

/* ==========================
ATTRACTIONS
========================== */

.attractions-section {
    padding: 100px 8%;
    background: #fff;
}

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

.attraction-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.attraction-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.attraction-card h3 {
    padding: 20px 20px 10px;
}

.attraction-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* ==========================
TESTIMONIALS
========================== */

.testimonial-section {
    padding: 100px 8%;
    background: #fafafa;
}

.testimonial-slider {
    max-width: 800px;
    margin: auto;
}

.testimonial-card {
    display: none;
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.testimonial-card.active {
    display: block;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ==========================
BOOKING
========================== */

.booking-section {
    padding: 100px 8%;
    background: #fff;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form input,
.booking-form textarea {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: Poppins;
}

.booking-form button {
    background: #7dbb28;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* ==========================
MAP
========================== */

.map-section iframe {
    width: 100%;
    height: 500px;
    border: none;
}

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

.footer {
    background: #111;
    color: #fff;
    padding: 80px 8% 30px;
}

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

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #ddd;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #7dbb28;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

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

@media(max-width:991px) {

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

    .booking-container {
        grid-template-columns: 1fr;
    }

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

}

@media(max-width:768px) {

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

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

}

.preloader {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: #111;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 99999;

}

.loader-logo img {

    width: 140px;

    animation: pulseLogo 1.5s infinite;

}

@keyframes pulseLogo {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }

}

#lightbox {

    display: none;

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .95);

    justify-content: center;
    align-items: center;

    z-index: 99999;

}

#lightboxImg {

    max-width: 90%;
    max-height: 90%;

    border-radius: 20px;

}

#closeLightbox {

    position: absolute;

    top: 30px;
    right: 40px;

    font-size: 50px;
    color: white;
    cursor: pointer;

}