/* --- Variables & Reset --- */
:root {
    --primary-green: #386C47;
    --light-cream: #FDF4EA;
    --earth-brown: #9F7D4D;
    --text-dark: #333;
    --white: #ffffff;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--primary-green);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-cream {
    background-color: var(--light-cream);
}

.text-center {
    text-align: center;
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--earth-brown);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 20px;
}

/* --- Navbar --- */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--earth-brown);
}

.nav-links .btn-nav {
    background: var(--earth-brown);
    color: white !important;
    padding: 8px 15px;
    border-radius: 4px;
}

.btn-nav:hover {
    color: white !important;
}

.btn-nav:active {
    color: white !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero --- */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: var(--earth-brown);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* --- Packages with Images --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.package-card-modern {
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    border: none;
    transition: transform 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-card-modern:hover {
    transform: translateY(-10px);
}

.package-card-modern.premium {
    border: 2px solid var(--earth-brown);
}

.slider-container {
    position: relative;
    overflow: hidden;
    height: 200px;
    /* Keeps the original image height */
}

/* The sliding element – holds all images in a row */
.slider {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
    /* Smooth slide transition */
}

/* Each image fills the container and keeps aspect ratio */
.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    /* Prevents images from shrinking */
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.card-badge.gold {
    background: var(--earth-brown);
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 1.4rem;
    margin: 0;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.card-price .per {
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
}

/* Discount badge */
.discount-badge {
    background: #e74c3c;
    /* red accent – stands out but doesn't clash with green */
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

/* Card footer to arrange badge and button */
.card-footer {
    margin-top: auto;
    text-align: center;
}

.card-price .currency {
    font-size: 1rem;
    vertical-align: top;
    margin-top: 5px;
    display: inline-block;
}

.card-price .per {
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
    vertical-align: middle;
}

.card-features {
    flex-grow: 1;
}

.card-features li {
    margin-bottom: 12px;
    color: #555;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.card-features i {
    color: var(--earth-brown);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

/* --- Visual Itinerary (Flowing Arrows) --- */
.itinerary-wrapper {
    margin: 20px auto;
}

.visual-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    flex-wrap: wrap;
}

.v-step {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.v-step:hover {
    transform: translateY(-5px);
}

.step-img {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-time {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.step-content {
    padding: 15px;
}

.step-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--primary-green);
}

.step-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    color: var(--earth-brown);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* --- Why Choose Us (Spacious) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: -15px 15px 0px var(--earth-brown);
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--earth-brown);
    margin: 20px 0 30px;
}

.features-spacious {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.f-icon {
    width: 50px;
    height: 50px;
    background: var(--light-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.f-desc h5 {
    margin: 0 0 5px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.f-desc p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

/* --- Transport with Images --- */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.transport-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.transport-card:hover {
    transform: translateY(-5px);
}

.t-img-box {
    height: 160px;
}

.t-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transport-info {
    padding: 25px;
    text-align: center;
}

.t-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--earth-brown);
    margin: 8px 0;
}

/* --- Footer (Clean & Grid) --- */
footer {
    background: #1a3c26;
    color: #e0e0e0;
    padding-top: 60px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-col p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col i {
    color: var(--earth-brown);
    width: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: 0.3s;
    color: #aaa;
}

.footer-links a:hover {
    color: var(--earth-brown);
    padding-left: 5px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    background: #11291a;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    color: #888;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    /* Image on top for mobile */

    .visual-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .arrow {
        display: none;
    }

    /* Hide horizontal arrows on mobile */
    .v-step {
        width: 100%;
        display: flex;
        text-align: left;
        height: auto;
        align-items: center;
    }

    .step-img {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }

    .step-time {
        display: none;
    }

    .step-content {
        padding: 10px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Limit logo width on mobile so it doesn't push the menu button */
    .logo-img {
        height: 50px;
        /* Slightly smaller than desktop (60px) for better fit */
        width: auto;
        /* Maintain aspect ratio */
        max-width: none;
        /* Remove the previous max-width constraint */
    }

    /* Optional: adjust spacing if needed */
    .nav-container {
        padding: 0 10px;
        /* Slightly reduce side padding */
        gap: 5px;
        /* Smaller gap between logo and toggle */
    }

    /* Optional: increase tap target size for menu toggle */
    .menu-toggle {
        font-size: 1.6rem;
        /* Reduce from 1.8rem */
        padding: 4px;
    }

    /* If the logo and button are too close, add a gap */
    .nav-container {
        gap: 10px;
        /* Creates space between logo and toggle */
    }

    /* Ensure no hidden overflow on body or navbar */
    body {
        overflow-x: hidden;
        /* Prevent horizontal scroll just in case */
    }

    /* If the navbar background stretches full width, keep it */
    .navbar {
        width: 100%;
        box-sizing: border-box;
        /* Already applied globally, but safe to restate */
    }
}

/* --- Animation --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    width: 95%;
    max-width: 480px;
    border-radius: 15px;
    padding: 25px;
    animation: slideIn 0.3s;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.modal-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.radio-group {
    display: flex;
    gap: 10px;
}

.radio-box {
    flex: 1;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.radio-box input {
    width: auto;
}

.price-summary {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.summary-row.highlight {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
    border-top: 1px dashed #ccc;
    padding-top: 5px;
    margin-top: 5px;
}


/* --- Updated Itinerary Section --- */
.itinerary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.day-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.day-header {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.day-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.day-header h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.timeline-list {
    padding: 20px;
}

.timeline-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.time-badge {
    min-width: 80px;
    background: var(--light-cream);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 30px;
    text-align: center;
    font-family: var(--font-heading);
}

.item-content h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.item-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Services & discounts row */
.services-discounts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 50px 0 20px;
    align-items: center;
}

.services-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.services-box h4 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.services-list i {
    width: 24px;
    color: var(--earth-brown);
    font-size: 1.1rem;
}

.discount-note {
    background: var(--earth-brown);
    color: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.discount-note i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.discount-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.discount-note strong {
    font-size: 1.2rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .itinerary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-discounts {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 5px;
    }

    .time-badge {
        align-self: flex-start;
    }
}

/* Navbar overlay for mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    transition: opacity 0.3s;
    cursor: pointer;
}

.nav-overlay.active {
    display: block;
}

/* Mobile menu slide animation */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: 0;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
        /* always flex, hidden by transform */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Ensure the toggle button stays above overlay */
    .menu-toggle {
        z-index: 1000;
        position: relative;
    }
}

/* Nearby attractions grid */
.attraction-item {
    background: var(--light-cream);
    padding: 25px 15px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.attraction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.attraction-item i {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--earth-brown);
}

/* Nearby Attractions - Photo Cards */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.attraction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.attraction-img {
    height: 200px;
    overflow: hidden;
}

.attraction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.attraction-card:hover .attraction-img img {
    transform: scale(1.1);
}

.attraction-info {
    padding: 20px;
    text-align: center;
}

.attraction-info h3 {
    margin: 0 0 5px;
    color: var(--primary-green);
    font-size: 1.3rem;
}

.attraction-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Responsive: single column on very small screens */
@media (max-width: 600px) {
    .attractions-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Dropdown Menu --- */
.dropdown {
    position: relative;
}

.dropdown .dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown .dropbtn i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content li {
    display: block;
    margin: 0;
}

.dropdown-content a {
    padding: 10px 20px;
    display: block;
    color: var(--text-dark);
    font-weight: 400;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: var(--light-cream);
    color: var(--primary-green);
}

.dropdown-content a.active {
    background: var(--light-cream);
    color: var(--primary-green);
    font-weight: 600;
}

/* Mobile Responsive Dropdown */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .dropdown .dropbtn {
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        margin-top: 5px;
        padding: 0;
        display: none;
        /* hidden by default, can be toggled with JS if needed */
    }

    /* Optional: open on click via JS – for now we'll keep it simple */
    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding-left: 30px;
    }

    /* If you want the chevron to rotate on click, add a class with JS */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    /* 4 columns, map gets extra space */
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile: stack all columns */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Location Blocks Enhancement */
.location-block {
    background: rgba(253, 244, 234, 0.6);
    /* light cream with transparency */
    border-radius: 30px;
    padding: 30px 20px 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(159, 125, 77, 0.1);
    transition: box-shadow 0.3s;
}

.location-block:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--earth-brown);
    flex-wrap: wrap;
}

.location-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.location-title-wrapper {
    flex: 1;
}

.location-title {
    font-size: 2.2rem;
    margin: 0 0 5px;
    color: var(--primary-green);
    letter-spacing: 1px;
}

.location-desc {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .location-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .location-title {
        font-size: 1.8rem;
    }
}