/* --- VARIABLES --- */
:root {
    --primary-green: #006B3C; 
    --accent-yellow: #FFEC00; 
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --max-width: 1200px;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-green { color: var(--primary-green); }
.bg-light { background-color: #f9f9f9; }

/* --- NAVBAR --- */
.navbar {
    background: var(--white);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-menu { display: flex; align-items: center; gap: 25px; }
.nav-link { color: var(--text-dark); font-weight: 600; transition: 0.3s; }
.nav-link:hover { color: var(--primary-green); }

.btn-highlight {
    background-color: var(--accent-yellow);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-highlight:hover { background-color: #e6d500; }

/* Style for navigation icon */
.nav-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* --- HERO SECTION (UPDATED TO WEBP) --- */
.hero {
    /* Changed from .jpg to .webp */
    background: url('images/hero-bg.webp') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    border-radius: 0 0 30px 30px; /* Rounded bottom corners */
    overflow: hidden; /* Ensure rounded corners work properly */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 30px 30px; /* Match hero rounded corners */
}

.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 20px; }
.hero-content h1 { 
    font-size: 3.1rem; 
    line-height: 1.1; /* Added: Tightens the vertical space between lines */
    margin-bottom: 10px; /* Reduced from 20px to 10px */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); 
}
.hero-content p { 
    font-size: 1.2rem; 
    margin-bottom: 30px; 
}

/* Floating Scroll Down Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down-arrow a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.scroll-down-arrow i {
    font-size: 2rem;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.scroll-down-arrow:hover i {
    transform: translateY(5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* --- BUTTONS --- */
.btn-primary {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}
.btn-primary:hover { background: #004d2b; }

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.feature-list li { margin: 15px 0; display: flex; align-items: center; gap: 10px; }
.feature-list i { color: var(--primary-green); }

/* --- CARDS (TOURS & FLEET) --- */
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.5rem; color: var(--primary-green); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    cursor: pointer;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.card-image { height: 200px; background-size: cover; background-position: center; }
.card-body { padding: 20px; }
.card-body h3 { color: var(--primary-green); margin-bottom: 10px; }
.btn-text { display: inline-block; margin-top: 15px; color: var(--primary-green); font-weight: 700; transition: color 0.3s ease; }
.card:hover .btn-text { color: #004d2b; }

/* Make entire card clickable */
.card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Ensure card body text is properly aligned */
.card-body {
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px); /* Adjust based on image height */
}

.btn-text {
    margin-top: auto;
}

/* --- GALLERY SECTION (CAROUSEL STYLES) --- */

/* New wrapper to contain the scroller and arrows */
.carousel-wrapper {
    position: relative;
    max-width: 100%; /* Ensure it respects parent container width */
}

.photo-gallery-grid {
    display: flex; /* Change from grid to flex */
    overflow-x: scroll; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Snap to items for a smooth carousel feel */
    gap: 15px;
    padding-bottom: 20px; /* Space for scrollbar */
    -webkit-overflow-scrolling: touch; /* Smoother scrolling on iOS */
    margin: 0 -20px; /* Extend to full width on mobile for better experience */
    padding: 0 20px 20px 20px; /* Adjust padding to make the snap feel better */
}

/* Hide scrollbar for a cleaner look (optional) */
.photo-gallery-grid::-webkit-scrollbar {
    display: none;
}
.photo-gallery-grid {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.gallery-item {
    min-width: 80vw; /* Display one item at a time (80% of viewport width) */
    height: 250px; /* Fixed height for consistency - CHANGED from 300px to 250px */
    flex-shrink: 0; /* Prevent items from shrinking */
    
    background-size: cover;
    background-position: center;
    border-radius: 15px; /* Increased border radius for rounder corners */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: grab; /* Indicate it can be dragged/scrolled */
    overflow: hidden;
    scroll-snap-align: start; /* Snap point */
}

/* Remove staggered look and reset height for the flex layout */
.gallery-item:nth-child(3n + 1) {
    height: 250px; /* Reset the specific height */
}

/* Adjust hover effect */
.gallery-item:hover {
    transform: none; /* Remove transform: scale(1.02) on hover */
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Arrow Button Styles */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-arrow:hover {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

/* --- CONTACT SECTION --- */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { margin-bottom: 20px; font-size: 2rem; }
.contact-info p { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.contact-info i { color: var(--primary-green); width: 20px; }

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px; 
    height: 40px;
    background: var(--accent-yellow);
    border-radius: 50%;
    transition: 0.3s;
    padding: 8px;
}

.social-icons a:hover { transform: scale(1.1); }

.social-icons a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(22%) sepia(98%) saturate(748%) hue-rotate(130deg) brightness(94%) contrast(101%);
}

.contact-form input, .contact-form textarea {
    width: 100%; 
    padding: 15px; 
    margin-bottom: 20px;
    border: 1px solid #ddd; 
    border-radius: 5px; 
    font-family: inherit;
    font-size: 1rem;
}

.contact-form button {
    width: 100%;
}

/* --- FOOTER --- */
footer { 
    background: var(--primary-green); 
    color: var(--white); 
    text-align: center; 
    padding: 20px 0; 
}

footer p {
    margin: 5px 0;
}

/* --- MOBILE RESPONSIVENESS --- */
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease-in-out; background-color: var(--text-dark); }

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu {
        position: fixed; 
        left: -100%; 
        top: 80px; 
        gap: 0;
        flex-direction: column; 
        background-color: var(--white);
        width: 100%; 
        text-align: center; 
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }
    .nav-menu.active { left: 0; }
    .nav-item { margin: 16px 0; }
    
    /* Mobile styles for the navigation button */
    .btn-highlight {
        padding: 8px 16px;
        font-size: 0.9rem;
        justify-content: center;
    }
    .nav-icon {
        width: 18px;
        height: 18px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 8px; /* Reduced for mobile as well */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
    
    .about-grid, .contact-container { grid-template-columns: 1fr; }
    
    /* Mobile adjustments for hero */
    .hero {
        border-radius: 0 0 20px 20px; /* Smaller radius on mobile */
    }
    
    .hero-overlay {
        border-radius: 0 0 20px 20px;
    }
    
    .scroll-down-arrow {
        bottom: 20px;
    }
    
    .scroll-down-arrow i {
        font-size: 1.5rem;
    }

    /* Mobile Adjustments for Gallery */
    .gallery-item {
        min-width: 90vw; /* Slightly larger image on mobile */
        height: 250px; /* Adjust height for better viewing */
    }
    
    /* FIXED: Show arrows on mobile and adjust their position */
    .carousel-arrow {
        display: flex; /* Show arrows on mobile */
        width: 40px; /* Slightly smaller on mobile */
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-arrow {
        left: 5px; /* Adjust position for mobile */
    }
    
    .next-arrow {
        right: 5px; /* Adjust position for mobile */
    }
}
/* Desktop adjustment for Gallery */
@media (min-width: 769px) {
    .photo-gallery-grid {
        margin: 0; /* Reset margins on desktop */
        padding: 0 60px 20px 60px; /* Add padding on left and right for arrows */
    }
    .gallery-item {
        min-width: 350px; /* Fixed width of 350px as requested */
        height: 250px; /* Fixed height of 250px as requested */
    }
    
    .prev-arrow {
        left: 20px;
    }

    .next-arrow {
        right: 20px;
    }
}
/* --- POPULAR TOURS PAGE STYLES --- */

/* Page Header - UPDATED */
.page-header {
    background: url('images/tour-beach.webp') no-repeat center center/cover;
    height: 60vh; /* Increased height (was 40vh) */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
    border-radius: 0 0 30px 30px; /* Rounded bottom corners */
    overflow: hidden; /* Ensure rounded corners work properly */
}

/* Header Overlay - UPDATED */
.header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Lighter overlay (was 0.6) */
    border-radius: 0 0 30px 30px; /* Match header rounded corners */
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content h1 { font-size: 3rem; margin-bottom: 10px; }
.header-content p { font-size: 1.2rem; opacity: 0.9; }

/* Tour Row Layout */
.tour-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.tour-row.reverse-layout {
    flex-direction: row-reverse;
}

.tour-img {
    flex: 1;
    position: relative;
}

.tour-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-yellow);
    color: var(--primary-green);
    padding: 10px 20px;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.per-person {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-dark);
}

.tour-details {
    flex: 1.2;
}

.tour-details h2 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 2rem;
}

.tour-desc {
    margin-bottom: 25px;
    color: #555;
}

.tour-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.info-col h4 {
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    display: inline-block;
}

/* Custom Lists */
.check-list li, .timeline-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.check-list li:before {
    content: "•";
    color: var(--primary-green);
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.timeline-list li strong {
    color: var(--primary-green);
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.includes-box {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.includes-box span i {
    color: var(--primary-green);
    margin-right: 5px;
}

.tour-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    margin: 50px 0;
}

/* Mobile Responsive for Tour Page */
@media (max-width: 768px) {
    .tour-row, .tour-row.reverse-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .tour-img {
        display: flex;
        justify-content: center;
    }
    
    .tour-img img {
        height: 250px;
        width: 90%;
        max-width: 400px;
    }
    
    .tour-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .tour-info-grid {
        grid-template-columns: 1fr;
        text-align: left;
        width: 100%;
    }
    
    .tour-footer {
        flex-direction: column;
        align-items: center;
    }
    
    .tour-footer .btn-primary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .includes-box {
        justify-content: center;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .page-header {
        border-radius: 0 0 20px 20px; /* Smaller radius on mobile */
    }
    
    .header-overlay {
        border-radius: 0 0 20px 20px;
    }
}
/* --- BOOKING FORM STYLES --- */
.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Make inputs inside groups fill the space but remove bottom margin since row handles it */
.form-group input {
    margin-bottom: 0; 
}

/* Mobile fix for form rows */
@media (max-width: 768px) {
    .form-group-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    .booking-container {
        padding: 20px;
    }
}
/* --- TOUR NAVIGATION STYLES --- */
.tour-navigation {
    background: var(--white);
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.tour-navigation h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.tour-nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tour-nav-link {
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
}

.tour-nav-link:hover {
    background: #004d2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Mobile Responsive for Tour Navigation */
@media (max-width: 768px) {
    .tour-nav-links {
        gap: 10px;
    }
    
    .tour-nav-link {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .tour-navigation {
        padding: 20px 0;
        margin-bottom: 30px;
    }
}

/* --- TOUR PAGE TYPOGRAPHY SPACING --- */
.tour-description h2 {
    margin-bottom: 15px;
    margin-top: 40px;
    color: var(--primary-green);
    font-size: 1.8rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.tour-description h2:first-child {
    margin-top: 0;
}

.tour-description h2 + p {
    margin-top: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.tour-description h2 + ul {
    margin-top: 20px;
}

.tour-description h2 + .tour-itinerary {
    margin-top: 20px;
}

/* Improved spacing for check lists in tour descriptions */
.tour-description .check-list {
    margin-top: 20px;
    margin-bottom: 30px;
}

.tour-description .check-list li {
    margin-bottom: 12px;
    padding-left: 5px;
    font-size: 1rem;
}

/* Enhanced itinerary day items spacing */
.tour-itinerary .day-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-green);
    transition: transform 0.2s ease;
}

.tour-itinerary .day-item:hover {
    transform: translateX(5px);
}

.tour-itinerary h4 {
    color: var(--primary-green);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.tour-itinerary p {
    line-height: 1.6;
    margin: 0;
}

/* --- TOUR HERO IMAGE STYLES (for detail pages) --- */
.tour-hero-image {
    position: relative;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 0 0 30px 30px; /* Rounded bottom corners */
}

.tour-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 30px 30px; /* Match container rounded corners */
}

.tour-hero-header {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 40px 20px 20px;
    border-radius: 0 0 30px 30px; /* Match image rounded corners */
}

/* Mobile adjustments for tour hero */
@media (max-width: 768px) {
    .tour-hero-image {
        border-radius: 0 0 20px 20px; /* Smaller radius on mobile */
    }
    
    .tour-hero-image img {
        border-radius: 0 0 20px 20px;
    }
    
    .tour-hero-header {
        border-radius: 0 0 20px 20px;
    }
}
/* --- TOUR PAGE NAVIGATION ARROWS --- */
.tour-navigation-arrows {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 100;
}

.tour-nav-arrow {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    pointer-events: all;
    border: 2px solid var(--primary-green);
}

.tour-nav-arrow:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.tour-nav-arrow i {
    font-size: 1.5rem;
}

.tour-nav-arrow.prev {
    margin-left: 10px;
}

.tour-nav-arrow.next {
    margin-right: 10px;
}

.tour-nav-arrow .arrow-text {
    position: absolute;
    bottom: -25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-nav-arrow:hover .arrow-text {
    opacity: 1;
}

/* Mobile adjustments for navigation arrows */
@media (max-width: 768px) {
    .tour-navigation-arrows {
        padding: 0 10px;
    }
    
    .tour-nav-arrow {
        width: 50px;
        height: 50px;
    }
    
    .tour-nav-arrow i {
        font-size: 1.2rem;
    }
    
    .tour-nav-arrow .arrow-text {
        font-size: 0.7rem;
        bottom: -20px;
    }
}
/* --- FOOTER CONTACT INFO (UPDATED) --- */
.footer-contact {
    display: flex;
    justify-content: center;
    gap: 40px; /* Increased space between items */
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.2rem; /* Text is now bigger */
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-contact a i {
    font-size: 1.5rem; /* Icons are now larger than text */
    margin-bottom: 2px; /* Vertical alignment fix */
}

.footer-contact a:hover {
    color: var(--accent-yellow);
    transform: translateY(-3px); /* Slight lift effect on hover */
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .footer-contact {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .footer-contact a {
        font-size: 1.1rem; /* Slightly smaller on mobile to fit screen */
    }
}
/* --- FLEET SECTION OVERRIDE --- */
/* Force 4 columns on large screens for the vehicle fleet */
@media (min-width: 1024px) {
    #fleet .card-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- TOUR & RENTAL SIDEBAR STYLES --- */
/* These styles ensure the booking sidebar looks good on all detail pages */

.tour-sidebar {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.price-details {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.price-details span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 10px 0;
}

.tour-sidebar ul {
    margin: 20px 0;
    padding: 0;
}

.tour-sidebar li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.tour-sidebar i {
    color: var(--primary-green);
    margin-top: 4px;
    min-width: 20px;
}

.book-now-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    display: block;
}

/* Ensure Tour Grid breaks correctly on mobile */
@media (max-width: 768px) {
    .tour-info-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-sidebar {
        position: static; /* Remove sticky on mobile */
        margin-top: 40px;
    }
}