/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #cfe7e5;
    color: #213638;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Header ===== */
.top-contact-bar {
    max-width: 1500px;
    margin: 18px auto 0;
    padding: 0 38px 14px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 26px;
    color: #213638;
    border-bottom: 1px solid #cfe7e5;
}

.top-contact-left,
.top-contact-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-contact-left a {
    font-size: 1.25rem;
    color: #213638;
    transition: color 0.3s;
}

.top-contact-left a:hover {
    color: #e5a13e;
}

.top-contact-right span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    color: #213638;
}

.top-contact-right i {
    color: #e5a13e;
}

.navbar {
    max-width: 1500px;
    margin: 0 auto;
    padding: 18px 38px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    color: #213638;
    border-bottom: 1px solid #cfe7e5;
    position: sticky;
    top: 0;
    z-index: 1100;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 8px 20px rgba(33, 54, 56, 0.12);
}

.navbar .logo img {
    width: 280px;
    max-width: 100%;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar .dropdown {
    position: relative;
}

.navbar .nav-links li a {
    color: #213638;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 6px 4px;
    transition: color 0.25s ease;
}

.navbar .nav-links li a.active,
.navbar .nav-links li a:hover {
    color: #e5a13e;
}

/* ===== Hero Section - Increased Height & Transparent Form ===== */
.hero-wrapper {
    max-width: 1500px;
    margin: 20px auto 0;
    padding: 0 28px 26px;
}

.hero {
    position: relative;
    width: 100%;
    height: 750px; /* Increased from 650px to 750px - taller image */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(33, 54, 56, 0.2);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(33, 54, 56, 0.4); /* Slightly darker overlay for better text visibility */
    z-index: 1;
    pointer-events: none;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-track {
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.hero-slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

/* Transparent Booking Form - No white background */
.booking-container {
    width: min(560px, 100%);
    background: transparent; /* Completely transparent background */
    backdrop-filter: blur(12px); /* Blur effect for readability */
    border-radius: 32px;
    padding: 32px 34px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(229, 161, 62, 0.6);
    transition: all 0.3s ease;
}

.booking-container h2 {
    color: #ffffff; /* White text for better contrast on dark overlay */
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.booking-container .subtitle {
    margin-top: 4px;
    margin-bottom: 16px;
    color: #e5a13e;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.form-group {
    flex: 1;
    min-width: 0;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #ffffff; /* White labels */
    font-weight: 600;
    margin-bottom: 6px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.form-group input,
.form-group select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    padding: 12px 16px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent background */
    color: #ffffff;
    transition: 0.2s;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #e5a13e;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px rgba(229, 161, 62, 0.2);
}

.form-group select option {
    background: #213638;
    color: #ffffff;
}

.package-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.package-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 8px 18px;
    font-size: 0.9rem;
    color: #ffffff;
    cursor: pointer;
    transition: 0.2s;
}

.package-option:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #e5a13e;
}

.package-option span {
    color: #ffffff;
}

.btn-book {
    border: none;
    border-radius: 40px;
    padding: 14px 20px;
    background: #e5a13e;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-book:hover {
    background: #213638;
    transform: translateY(-2px);
}

/* ===== About Us Section ===== */
.about-us {
    padding: 60px 20px;
    background: #ffffff;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.about-image {
    flex: 1 1 45%;
}

.about-image img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 15px 30px rgba(33, 54, 56, 0.15);
    border: 3px solid #e5a13e;
}

.about-content {
    flex: 1 1 45%;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #213638;
}

.about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #e5a13e;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #213638;
}

.about-content ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #213638;
}

/* ===== Popular Destinations ===== */
.popular-places {
    padding: 60px 50px;
    text-align: center;
    background: #cfe7e5;
}

.section-title {
    font-size: 2.5rem;
    color: #213638;
    margin-bottom: 40px;
    text-shadow: none;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e5a13e;
    margin: 12px auto 0;
    border-radius: 4px;
}

.places-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.places-row {
   overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
}

.places-track {
    display: flex;
    gap: 25px;
    width: max-content;
    will-change: transform;
}

.place-card {
    flex: 0 0 260px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(33, 54, 56, 0.08);
    transition: all 0.3s;
    border: 1px solid #e5a13e;
    text-decoration: none;
}

.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #e5a13e;
}

.place-card h3 {
    padding: 15px;
    color: #213638;
    font-size: 1.2rem;
    font-weight: 700;
}

.place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(33, 54, 56, 0.2);
    border-color: #e5a13e;
}

/* ===== Tour Packages & All Card Sections ===== */
.tour-packages,
.why-choose,
.latest-blog,
.gallery-section {
    padding: 60px 50px;
    text-align: center;
}

.tour-packages {
    background: #ffffff;
}

.why-choose {
    background: #cfe7e5;
}

.latest-blog {
    background: #ffffff;
}

.gallery-section {
    background: #cfe7e5;
}

/* Desktop & Tablet: 2 columns */
.packages-grid,
.why-grid,
.blog-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Package Cards */
.package-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #cfe7e5;
    box-shadow: 0 8px 24px rgba(33, 54, 56, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.package-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.package-info {
    padding: 20px;
}

.package-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.package-info h3 {
    font-size: 1.2rem;
    color: #213638;
    margin-bottom: 8px;
}

.package-info p {
    color: #213638;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.package-price {
    display: inline-block;
    font-weight: 800;
    color: #e5a13e;
    font-size: 1.3rem;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 40px;
    background: #213638;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}

.btn-view:hover {
    background: #e5a13e;
    color: #213638;
    transform: translateY(-2px);
}

.section-cta {
    margin-top: 30px;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(33, 54, 56, 0.15);
    border-color: #e5a13e;
}

/* Why Choose Cards */
.why-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e5a13e;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(33, 54, 56, 0.08);
    transition: 0.3s;
}

.why-card i {
    font-size: 2.8rem;
    color: #e5a13e;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.2rem;
    color: #213638;
    margin-bottom: 10px;
}

.why-card p {
    color: #213638;
    font-size: 0.9rem;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(33, 54, 56, 0.15);
}

/* Blog Cards */
.blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #cfe7e5;
    text-align: left;
    box-shadow: 0 8px 24px rgba(33, 54, 56, 0.08);
    transition: 0.3s;
}

.blog-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-info {
    padding: 20px;
}

.blog-info h3 {
    color: #213638;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: #e5a13e;
    margin-bottom: 10px;
}

.blog-meta i {
    color: #e5a13e;
    margin-right: 4px;
}

.blog-info p {
    color: #213638;
    font-size: 0.9rem;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(33, 54, 56, 0.15);
    border-color: #e5a13e;
}

/* Gallery Cards */
.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #e5a13e;
    box-shadow: 0 8px 20px rgba(33, 54, 56, 0.1);
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(33, 54, 56, 0.2);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 60px 50px;
    text-align: center;
    background: #cfe7e5;
}

.testimonials-row {
    overflow: hidden;
    border-radius: 18px;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: testimonials-scroll 28s linear infinite;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    border-left: 5px solid #e5a13e;
    padding: 20px;
    min-width: 300px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(33, 54, 56, 0.08);
}

.testimonial-card p {
    color: #213638;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.testimonial-stars {
    display: inline-flex;
    gap: 4px;
    color: #e5a13e;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.testimonial-card span {
    font-weight: 700;
    color: #213638;
    font-size: 0.9rem;
}

@keyframes testimonials-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== Counter Section ===== */
.counter-section {
    padding: 60px 50px;
    background: #213638;
    color: #ffffff;
}

.counter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.counter-box {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.counter-box i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #e5a13e;
}

.counter-box h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.counter-box p {
    color: #cfe7e5;
    font-size: 1.1rem;
}

/* ===== Tour Guide Section ===== */
.tour-guide-section {
    background: #cfe7e5;
    padding: 60px 20px;
}

.tour-guide-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-guide-text {
    flex: 1;
    min-width: 300px;
}

.tour-guide-text h2 {
    font-size: 2.2rem;
    color: #213638;
    margin-bottom: 10px;
}

.tour-guide-text h3 {
    font-size: 1.5rem;
    color: #e5a13e;
    margin-bottom: 20px;
}

.tour-guide-text p {
    font-size: 1.1rem;
    color: #213638;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tour-guide-text ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #213638;
}

.tour-guide-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tour-guide-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(33, 54, 56, 0.2);
    border: 3px solid #e5a13e;
}

/* ===== Footer ===== */
.site-footer {
    background: #213638;
    color: #cfe7e5;
    padding: 60px 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 70%;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-left p {
    color: #cfe7e5;
    line-height: 1.6;
}

.footer-center h4,
.footer-right h4 {
    color: #e5a13e;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-center ul li {
    margin: 10px 0;
}

.footer-center ul li a {
    color: #cfe7e5;
    transition: color 0.3s;
}

.footer-center ul li a:hover {
    color: #e5a13e;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.social-icons a {
    color: #cfe7e5;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e5a13e;
}

.footer-right input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5a13e;
    border-radius: 40px;
    margin: 10px 0;
    background: #ffffff;
    color: #213638;
}

.footer-right button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #e5a13e;
    color: #213638;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.footer-right button:hover {
    background: #213638;
    color: #e5a13e;
    transform: translateY(-2px);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .top-contact-bar {
        padding: 0 24px 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .navbar {
        padding: 16px 24px 10px;
    }

    .navbar .nav-links {
        gap: 14px;
    }

    .navbar .nav-links li a {
        font-size: 1rem;
    }

    .hero {
        height: 650px; /* Slightly smaller on tablet but still taller than original */
    }

    .about-container,
    .tour-guide-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
    
    .packages-grid,
    .why-grid,
    .blog-grid,
    .gallery-grid {
        gap: 25px;
        max-width: 800px;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border: 1px solid #cfe7e5;
    border-radius: 8px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background-color: #213638;
    display: block;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
    display: flex;
}

@media (max-width: 768px) {
    .popular-places {
        padding: 50px 0;
    }

    .top-contact-left {
        display: none;
    }

    .top-contact-bar {
        margin-top: 12px;
    }

    .top-contact-right {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .top-contact-right span {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .hamburger {
        display: flex;
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 24px;
        width: min(280px, calc(100vw - 48px));
        background: #ffffff;
        border: 1px solid #cfe7e5;
        border-radius: 16px;
        box-shadow: 0 10px 20px rgba(33, 54, 56, 0.16);
        padding: 12px;
        z-index: 999;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 4px 0;
    }

    .navbar .nav-links li a {
        display: block;
        padding: 8px 10px;
    }

    .navbar .dropdown-menu {
        position: static;
        min-width: 100%;
        background: #ffffff;
        box-shadow: none;
        margin-top: 6px;
        border: 1px solid #cfe7e5;
    }

    .hero-wrapper {
        padding-bottom: 40px;
    }

    .hero {
        height: auto;
        min-height: 580px; /* Auto height on mobile */
    }

    .hero-slider {
        border-radius: 24px;
        overflow: hidden;
    }

    .hero-content {
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    /* Transparent form on mobile as well */
    .booking-container {
        width: min(360px, calc(100vw - 28px));
        padding: 20px 18px;
        border-radius: 24px;
        background: transparent;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(229, 161, 62, 0.6);
    }

    .booking-container h2,
    .booking-container .subtitle {
        display: block;
        text-align: center;
    }
    
    .booking-container h2 {
        font-size: 1.4rem;
    }
    
    .booking-container .subtitle {
        font-size: 0.9rem;
    }

    .form-row {
        flex-direction: column;
        gap: 8px;
    }

    .booking-form {
        gap: 10px;
    }

    .form-group label {
        color: #ffffff;
        margin-bottom: 3px;
        font-weight: 600;
    }

    .form-group input,
    .form-group select {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 40px;
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        padding: 10px 14px;
    }
    
    .form-group select option {
        background: #213638;
        color: #ffffff;
    }

    .package-options {
        display: flex;
        gap: 14px;
    }

    .package-option {
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        padding: 6px 14px;
    }

    .package-option span {
        color: #ffffff;
    }

    .btn-book {
        margin-top: 4px;
        border-radius: 40px;
        padding: 12px 14px;
    }

    .places-grid {
        gap: 12px;
        margin: 0;
    }

    .places-row {
        display: block;
        overflow: hidden;
        border-radius: 0;
    }

    .places-track {
        display: flex;
        gap: 16px;
        width: max-content;
        padding: 0;
        animation: places-scroll 25s linear infinite;
    }
    
    .places-row.row-2 .places-track {
        animation-direction: reverse;
    }
    
    @keyframes places-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .places-row .place-card {
        min-width: 220px;
        flex-basis: 220px;
    }

    /* MOBILE: Keep 2 cards per row */
    .packages-grid,
    .why-grid,
    .blog-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .tour-packages,
    .why-choose,
    .latest-blog,
    .gallery-section {
        padding: 40px 15px;
    }
    
    .package-card img {
        height: 160px;
    }
    
    .package-info {
        padding: 12px;
    }
    
    .package-info h3 {
        font-size: 1rem;
    }
    
    .package-info p {
        font-size: 0.85rem;
    }
    
    .package-price {
        font-size: 1.1rem;
    }
    
    .btn-view {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .blog-card img,
    .gallery-grid img {
        height: 160px;
    }
    
    .blog-info {
        padding: 12px;
    }
    
    .blog-info h3 {
        font-size: 1rem;
    }
    
    .why-card {
        padding: 20px 15px;
    }
    
    .why-card i {
        font-size: 2rem;
    }
    
    .why-card h3 {
        font-size: 1rem;
    }
    
    .why-card p {
        font-size: 0.85rem;
    }

    .counter-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .counter-box {
        min-width: 0;
    }
    
    .counter-box h3 {
        font-size: 1.8rem;
    }
    
    .counter-box p {
        font-size: 0.9rem;
    }

    .footer-container {
        text-align: left;
        align-items: flex-start;
    }
    
    .testimonial-card {
        min-width: 260px;
    }
}

@media (max-width: 480px) {
    .hero-wrapper {
        padding: 0 12px 40px;
    }

    .top-contact-bar {
        padding: 0 14px 10px;
    }

    .navbar {
        padding: 14px;
    }

    .navbar .logo img {
        width: 180px;
    }

    .hero {
        min-height: 520px;
    }

    .booking-container h2 {
        font-size: 1.2rem;
    }
    
    .booking-container .subtitle {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .popular-places {
        padding: 40px 0;
    }

    .places-grid {
        gap: 10px;
    }
    
    .packages-grid,
    .why-grid,
    .blog-grid,
    .gallery-grid {
        gap: 12px;
    }
    
    .package-card img {
        height: 140px;
    }
    
    .package-info {
        padding: 10px;
    }
    
    .package-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .btn-view {
        width: 100%;
        text-align: center;
    }
    
    .blog-card img,
    .gallery-grid img {
        height: 140px;
    }
    
    .counter-box h3 {
        font-size: 1.5rem;
    }
}

/* ===== Dropdown Styling ===== */
.navbar .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    border-radius: 12px;
    border: 1px solid #cfe7e5;
    box-shadow: 0 8px 16px rgba(33, 54, 56, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1200;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #213638;
    transition: background 0.3s;
}

.navbar .dropdown-menu li a:hover {
    background-color: #cfe7e5;
    color: #e5a13e;
}

/* ===== Success Popup ===== */
#popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #213638;
    color: #e5a13e;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(33, 54, 56, 0.3);
    border-left: 4px solid #e5a13e;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== DESKTOP DRAG SCROLL FIX ===== */
.places-row {
    overflow-x: auto;     /* enable horizontal scroll */
    overflow-y: hidden;
    cursor: grab;
    scroll-behavior: smooth;
}

/* While dragging */
.places-row:active {
    cursor: grabbing;
}

/* Hide scrollbar (clean UI) */
.places-row::-webkit-scrollbar {
    height: 6px;
}

.places-row::-webkit-scrollbar-track {
    background: rgba(33, 54, 56, 0.1);
}

.places-row::-webkit-scrollbar-thumb {
    background: #e5a13e;
    border-radius: 10px;
}

/* Prevent image drag issue */
.place-card img {
    pointer-events: none;
    user-select: none;
}

/* Disable animation on desktop (VERY IMPORTANT) */
