﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: #2e7d32;
    color: #fff;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

    .header.scrolled {
        background: rgba(46, 125, 50, 0.9);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .logo h1 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 700;
        margin: 0;
        color: #ffca28;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .logo .address {
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        font-style: italic;
        color: #fff;
        margin-top: 0.3rem;
    }

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.8rem;
}

.nav ul {
    list-style: none;
    display: flex;
    margin: 0;
}

    .nav ul li {
        margin-left: 1.5rem;
    }

        .nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            position: relative;
            transition: color 0.3s ease;
            padding: 0.8rem 1rem;
        }

            .nav ul li a.active {
                color: #ffca28;
                font-weight: 700;
            }

            .nav ul li a::after {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                bottom: -5px;
                left: 0;
                background: #ffca28;
                transition: width 0.3s ease;
            }

            .nav ul li a:hover::after {
                width: 100%;
            }

            .nav ul li a:hover {
                color: #ffca28;
            }

/* Banner */
.banner {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding-top: 80px;
}

.banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .banner-slide.active {
        opacity: 1;
    }

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    animation: fadeInUp 1s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .banner-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 3.2rem;
        font-weight: 700;
        color: #ffca28;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .banner-content .location {
        font-family: 'Roboto', sans-serif;
        font-size: 1.6rem;
        font-style: italic;
        color: #fff;
        margin-bottom: 1rem;
    }

    .banner-content p {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffca28;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

    .btn:hover {
        background: #ffa000;
        transform: scale(1.05);
    }

/* Trip Info */
.trip-info {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .trip-info.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .trip-info h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        color: #2e7d32;
        margin-bottom: 1rem;
    }

    .trip-info p {
        margin-bottom: 0.8rem;
    }

        .trip-info p strong {
            color: #2e7d32;
        }

        .trip-info p:last-child {
            margin-bottom: 0;
        }

/* Trip Suggestion */
.trip-suggestion {
    padding: 4rem 0;
    background: #f9f9f9;
    text-align: center;
}

    .trip-suggestion h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

        .trip-suggestion h2.visible {
            opacity: 1;
            transform: translateY(0);
        }

.suggestion-box {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    overflow-y: auto;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .suggestion-box.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .suggestion-box::-webkit-scrollbar {
        width: 8px;
    }

    .suggestion-box::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .suggestion-box::-webkit-scrollbar-thumb {
        background: #2e7d32;
        border-radius: 10px;
    }

        .suggestion-box::-webkit-scrollbar-thumb:hover {
            background: #1b5e20;
        }

    .suggestion-box p {
        margin-bottom: 1.2rem;
    }

        .suggestion-box p:last-child {
            margin-bottom: 0;
        }

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trip Planner */
.trip-planner {
    padding: 4rem 0;
    background: #f9f9f9;
    text-align: center;
}

    .trip-planner h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

        .trip-planner h2.visible {
            opacity: 1;
            transform: translateY(0);
        }

.trip-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .trip-form.visible {
        opacity: 1;
        transform: translateY(0);
    }

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

    .form-group label {
        display: block;
        font-size: 1.2rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 0.8rem;
        font-size: 1.1rem;
        font-family: 'Roboto', sans-serif;
        border: 1px solid #ccc;
        border-radius: 5px;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group select:focus {
            border-color: #2e7d32;
            outline: none;
        }

    .form-group select {
        appearance: none;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M6 9L1.5 4.5h9L6 9z"/></svg>') no-repeat right 0.8rem center/12px 12px;
    }

.trip-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
}

/* About (from Index.cshtml) */
.about {
    padding: 4rem 0;
    background: #f9f9f9;
    text-align: center;
}

    .about h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

    .about p {
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.2rem;
        color: #555;
    }

/* About Us */
.about-us {
    padding: 4rem 0;
    background: #f9f9f9;
    text-align: center;
}

    .about-us h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

        .about-us h2.visible {
            opacity: 1;
            transform: translateY(0);
        }

.content-box {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    overflow-y: auto;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .content-box.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .content-box::-webkit-scrollbar {
        width: 8px;
    }

    .content-box::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .content-box::-webkit-scrollbar-thumb {
        background: #2e7d32;
        border-radius: 10px;
    }

        .content-box::-webkit-scrollbar-thumb:hover {
            background: #1b5e20;
        }

    .content-box p {
        margin-bottom: 1.2rem;
    }

        .content-box p:last-child {
            margin-bottom: 0;
        }

/* Menu */
.menu {
    padding: 4rem 0;
    text-align: center;
    background: #fff;
}

    .menu h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: #1a1a1a;
    }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .menu-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .menu-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .menu-item img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .menu-item:hover img {
        transform: scale(1.1);
    }

    .menu-item h3 {
        font-size: 1.5rem;
        margin: 0.8rem 0;
        color: #1a1a1a;
    }

    .menu-item p {
        padding: 0 1rem 1rem;
        color: #666;
        font-size: 1.1rem;
    }

/* Activities Carousel */
.activities {
    padding: 4rem 0;
    text-align: center;
    background: #f9f9f9;
}

.activities-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .activities-title.visible {
        opacity: 1;
        transform: translateY(0);
    }

.activities-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .activities-carousel.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .activities-carousel .carousel-slides {
        display: flex;
        width: 100%;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .activities-carousel .carousel-slide {
        flex: 0 0 33.33%;
        width: 33.33%;
        padding: 0 10px;
        opacity: 1;
        transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    }

        .activities-carousel .carousel-slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .activities-carousel .carousel-slide:not(.active) {
            opacity: 0.5;
            transform: scale(0.9);
        }

.activity-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .activity-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .activity-item .image-wrapper {
        position: relative;
        overflow: hidden;
    }

    .activity-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.6s ease, filter 0.6s ease;
    }

    .activity-item:hover img {
        transform: scale(1.1);
        filter: brightness(0.85);
    }

    .activity-item .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(46, 125, 50, 0.4), rgba(255, 202, 40, 0.4));
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .activity-item:hover .image-overlay {
        opacity: 1;
    }

    .activity-item h3 {
        font-size: 1.5rem;
        margin: 0.8rem 0;
        color: #1a1a1a;
    }

    .activity-item p {
        padding: 0 1rem 1rem;
        color: #666;
        font-size: 1.1rem;
    }

/* Services Carousel */
.services {
    padding: 4rem 0;
    text-align: center;
    background: #fff;
}

.services-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .services-title.visible {
        opacity: 1;
        transform: translateY(0);
    }

.services-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .services-carousel.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .services-carousel .carousel-slides {
        display: flex;
        width: 100%;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .services-carousel .carousel-slide {
        flex: 0 0 33.33%;
        width: 33.33%;
        padding: 0 10px;
        opacity: 1;
        transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    }

        .services-carousel .carousel-slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .services-carousel .carousel-slide:not(.active) {
            opacity: 0.5;
            transform: scale(0.9);
        }

.service-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .service-item .image-wrapper {
        position: relative;
        overflow: hidden;
    }

    .service-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.6s ease, filter 0.6s ease;
    }

    .service-item:hover img {
        transform: scale(1.1);
        filter: brightness(0.85);
    }

    .service-item .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(46, 125, 50, 0.4), rgba(255, 202, 40, 0.4));
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .service-item:hover .image-overlay {
        opacity: 1;
    }

    .service-item h3 {
        font-size: 1.5rem;
        margin: 0.8rem 0;
        color: #1a1a1a;
    }

    .service-item p {
        padding: 0 1rem 1rem;
        color: #666;
        font-size: 1.1rem;
    }

/* Carousel Navigation */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.8rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

    .carousel-prev:hover, .carousel-next:hover {
        background: rgba(255, 202, 40, 0.3);
        color: #2e7d32;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Contact */
.contact {
    padding: 4rem 0;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

    .contact h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: #ffca28;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

        .contact h2.visible {
            opacity: 1;
            transform: translateY(0);
        }

.contact-info {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.contact-item {
    font-size: 1.2rem;
    margin: 0.8rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .contact-item:hover {
        background: rgba(255, 202, 40, 0.2);
        transform: translateY(-5px);
    }

    .contact-item i {
        margin-right: 0.8rem;
        color: #ffca28;
        font-size: 1.6rem;
    }

    .contact-item a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-item a:hover {
            color: #ffca28;
        }

.contact-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.video-container, .map-container {
    flex: 1;
    max-width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .video-container.visible, .map-container.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .video-container h3, .map-container h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        color: #ffca28;
    }

    .video-container iframe {
        width: 100%;
        max-height: 240px;
        aspect-ratio: 16 / 9;
        border: 0;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .map-container iframe {
        width: 100%;
        height: 240px;
        border: 0;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

    .footer p {
        font-size: 1.2rem;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Mobile (≤768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .header .container {
        flex-wrap: wrap;
        padding: 0.5rem 10px;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .logo .address {
        font-size: 0.85rem;
        margin-top: 0.2rem;
    }

    .hamburger {
        display: block;
        font-size: 1.8rem;
        padding: 0.6rem;
    }

    .nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

        .nav.active {
            max-height: 300px;
        }

        .nav ul {
            flex-direction: column;
            background: #2e7d32;
            padding: 1rem 0;
        }

            .nav ul li {
                margin: 0.5rem 0;
            }

                .nav ul li a {
                    font-size: 1.2rem;
                    padding: 1rem;
                    display: block;
                }

    .banner {
        height: 50vh;
        padding-top: 70px;
    }

    .banner-content h2 {
        font-size: 2.2rem;
    }

    .banner-content .location {
        font-size: 1.2rem;
    }

    .banner-content p {
        font-size: 1.2rem;
    }

    .trip-info {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

        .trip-info h3 {
            font-size: 1.6rem;
        }

    .trip-suggestion {
        padding: 3rem 0;
    }

        .trip-suggestion h2 {
            font-size: 2rem;
        }

    .suggestion-box {
        max-height: 400px;
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }

    .button-group {
        flex-direction: column;
        gap: 0.8rem;
    }

    .trip-planner {
        padding: 3rem 0;
    }

        .trip-planner h2 {
            font-size: 2rem;
        }

    .trip-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select {
        font-size: 1rem;
        padding: 0.7rem;
    }

    .trip-form .btn {
        padding: 0.8rem;
        font-size: 1.1rem;
    }

    .about {
        padding: 3rem 0;
    }

        .about h2 {
            font-size: 2rem;
        }

        .about p {
            font-size: 1.1rem;
        }

    .about-us {
        padding: 3rem 0;
    }

        .about-us h2 {
            font-size: 2rem;
        }

    .content-box {
        max-height: 400px;
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .menu {
        padding: 3rem 0;
    }

        .menu h2 {
            font-size: 2rem;
        }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .menu-item img {
        height: 160px;
    }

    .menu-item h3 {
        font-size: 1.4rem;
    }

    .menu-item p {
        font-size: 1rem;
    }

    .activities, .services {
        padding: 3rem 0;
    }

    .activities-title, .services-title {
        font-size: 2rem;
    }

    .activities-carousel .carousel-slide,
    .services-carousel .carousel-slide {
        flex: 0 0 100%;
        width: 100%;
    }

    .activity-item img, .service-item img {
        height: 180px;
    }

    .activity-item h3, .service-item h3 {
        font-size: 1.4rem;
    }

    .activity-item p, .service-item p {
        font-size: 1rem;
    }

    .carousel-prev, .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .contact {
        padding: 3rem 0;
    }

        .contact h2 {
            font-size: 2rem;
        }

    .contact-item {
        font-size: 1.1rem;
    }

        .contact-item i {
            font-size: 1.4rem;
        }

    .video-container h3, .map-container h3 {
        font-size: 1.4rem;
    }

    .video-container iframe, .map-container iframe {
        max-height: 200px;
    }

    .footer p {
        font-size: 1.1rem;
    }
}

/* Responsive - Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 12px;
    }

    .header .container {
        padding: 0.5rem 12px;
    }

    .logo h1 {
        font-size: 1.9rem;
    }

    .logo .address {
        font-size: 0.95rem;
    }

    .hamburger {
        display: block;
        font-size: 1.9rem;
        padding: 0.7rem;
    }

    .nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

        .nav.active {
            max-height: 300px;
        }

        .nav ul {
            flex-direction: column;
            background: #2e7d32;
            padding: 1rem 0;
        }

            .nav ul li {
                margin: 0.5rem 0;
            }

                .nav ul li a {
                    font-size: 1.15rem;
                    padding: 0.9rem;
                    display: block;
                }

    .banner {
        height: 50vh;
        padding-top: 70px;
    }

    .banner-content h2 {
        font-size: 2.8rem;
    }

    .banner-content .location {
        font-size: 1.4rem;
    }

    .banner-content p {
        font-size: 1.3rem;
    }

    .trip-info {
        padding: 1.8rem;
        font-size: 1.15rem;
    }

        .trip-info h3 {
            font-size: 1.7rem;
        }

    .trip-suggestion {
        padding: 3.5rem 0;
    }

        .trip-suggestion h2 {
            font-size: 2.2rem;
        }

    .suggestion-box {
        max-height: 450px;
        padding: 1.8rem;
        font-size: 1.15rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 1.15rem;
    }

    .button-group {
        gap: 1.2rem;
    }

    .trip-planner {
        padding: 3.5rem 0;
    }

        .trip-planner h2 {
            font-size: 2.2rem;
        }

    .trip-form {
        padding: 1.8rem;
    }

    .form-group label {
        font-size: 1.15rem;
    }

    .form-group input,
    .form-group select {
        font-size: 1.05rem;
        padding: 0.75rem;
    }

    .trip-form .btn {
        padding: 0.9rem;
        font-size: 1.15rem;
    }

    .about {
        padding: 3.5rem 0;
    }

        .about h2 {
            font-size: 2.2rem;
        }

        .about p {
            font-size: 1.15rem;
        }

    .about-us {
        padding: 3.5rem 0;
    }

        .about-us h2 {
            font-size: 2.2rem;
        }

    .content-box {
        max-height: 450px;
        padding: 1.8rem;
        font-size: 1.15rem;
    }

    .menu {
        padding: 3.5rem 0;
    }

        .menu h2 {
            font-size: 2.2rem;
        }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }

    .menu-item img {
        height: 170px;
    }

    .menu-item h3 {
        font-size: 1.45rem;
    }

    .menu-item p {
        font-size: 1.05rem;
    }

    .activities, .services {
        padding: 3.5rem 0;
    }

    .activities-title, .services-title {
        font-size: 2.2rem;
    }

    .activities-carousel .carousel-slide,
    .services-carousel .carousel-slide {
        flex: 0 0 50%;
        width: 50%;
    }

    .activity-item img, .service-item img {
        height: 190px;
    }

    .activity-item h3, .service-item h3 {
        font-size: 1.45rem;
    }

    .activity-item p, .service-item p {
        font-size: 1.05rem;
    }

    .carousel-prev, .carousel-next {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }

    .contact {
        padding: 3.5rem 0;
    }

        .contact h2 {
            font-size: 2.2rem;
        }

    .contact-item {
        font-size: 1.15rem;
    }

        .contact-item i {
            font-size: 1.5rem;
        }

    .video-container h3, .map-container h3 {
        font-size: 1.45rem;
    }

    .video-container iframe, .map-container iframe {
        max-height: 220px;
    }

    .footer p {
        font-size: 1.15rem;
    }
}

/* Responsive - Desktop (>1024px) */
@media (min-width: 1025px) {
    .hamburger {
        display: none;
    }

    .nav {
        max-height: none;
        overflow: visible;
    }

        .nav ul {
            flex-direction: row;
            background: none;
            padding: 0;
        }

            .nav ul li {
                margin-left: 1.5rem;
            }
}












/*Riêng đừng xoá*/
.custom-form {
    margin-bottom: 1.5rem;
    max-width: 600px; /* Giới hạn chiều rộng tối đa */
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    background-color: #fff; /* Nền trắng cho form */
    border-radius: 10px; /* Bo góc nhẹ */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Bóng nhẹ */
    transition: box-shadow 0.3s ease;
}

    .custom-form:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Bóng đậm hơn khi hover */
    }

    .custom-form label {
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 0.5rem;
        display: block;
    }

.custom-textarea {
    width: 100%;
    min-height: 200px; /* Chiều cao lớn */
    padding: 12px 15px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border: 2px solid #ccc;
    border-radius: 8px; /* Bo góc nhẹ */
    background-color: #f9f9f9; /* Màu nền nhạt */
    resize: vertical; /* Chỉ cho phép thay đổi chiều cao */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .custom-textarea:focus {
        border-color: #007bff; /* Màu viền khi focus */
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.3); /* Hiệu ứng sáng khi focus */
        outline: none;
    }

    .custom-textarea::placeholder {
        color: #999;
        font-style: italic;
    }

/* Responsive design */
@media (max-width: 768px) {
    .custom-form {
        max-width: 100%;
        padding: 10px;
    }

    .custom-textarea {
        min-height: 150px; /* Giảm chiều cao trên thiết bị di động */
    }
}