/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

/* Viewport for Responsive Scaling */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Base font for readability */
    }
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: #fff;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li a {
    color: #fff;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ffd700; /* Gold accent for adventure theme */
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* Dropdown for Tours (if used) */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    list-style: none;
    min-width: 200px;
    z-index: 1001;
}

.nav-links li:hover .dropdown {
    display: block;
}

.dropdown li a {
    display: block;
    padding: 1rem;
    color: #fff;
}

.dropdown li a:hover {
    background: #ffd700;
    color: #333;
}

/* Homepage Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-image: url('assets/Jeep116-28c2dc6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #2c5530; /* Fallback color if image fails to load */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
    position: relative; /* Ensures content stays above overlay */
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* Enhanced shadow for contrast */
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 215, 0, 0.9); /* Semi-transparent gold for visibility */
    color: #333;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s;
    backdrop-filter: blur(5px); /* Subtle blur on button */
}

.cta-button:hover {
    transform: scale(1.05);
    background: #ffd700;
}

/* Homepage Tours Section */
.tours {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tours h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-card h3 {
    padding: 1rem;
    font-size: 1.5rem;
}

.tour-card p {
    padding: 0 1rem 1rem;
}

.book-btn {
    display: block;
    background: #28a745;
    color: #fff;
    padding: 0.8rem;
    margin: 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #218838;
}

/* Homepage About Section */
.about {
    padding: 5rem 2rem;
    background: #f4f4f4;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background: #007bff;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #0056b3;
}

.contact-info {
    text-align: center;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* Tour Hero Section (Jeep Page) - Two-Column Layout */
.tour-hero {
    position: relative;
    padding: 3rem 1rem;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/Jeep116-28c2dc6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.tour-hero-wrapper {
    z-index: 2;
    max-width: 1000px;
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
}

.tour-hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.tour-hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content Grid: Left Inclusions, Right Cards */
.tour-content-grid {
    display: grid;
    grid-template-columns: 2fr 3fr; /* Left: 40%, Right: 60% - adjustable */
    gap: 2rem; /* Space between columns */
    max-width: 1000px;
    width: 100%;
    align-items: start; /* Align tops */
    z-index: 2;
    position: relative;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Left Column: Inclusions */
.inclusions-column {
    display: flex;
    flex-direction: column;
    align-self: stretch; /* Stretch to match right column height */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.inclusions-title {
    text-align: left;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5530;
    font-weight: bold;
}

.inclusions-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1; /* Fill remaining space in column */
}

.inclusion-row {
    display: flex;
    flex-direction: column; /* Stack items vertically in left column */
    gap: 0.5rem;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: background 0.3s;
    flex: none; /* Don't grow in column */
}

.inclusion-item:hover {
    background: #f0f8f0;
}

.inclusion-item.highlight {
    background: #e8f5e8;
    border-left: 4px solid #28a745;
}

.icon {
    font-size: 1.2rem;
    color: #28a745;
    min-width: 20px;
    font-weight: bold;
}

.inclusion-item span:last-child {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
}

/* Right Column: Cards */
.cards-column {
    display: flex;
    flex-direction: column;
    align-self: stretch; /* Stretch to match left column height */
}

.destination-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal cards side-by-side */
    gap: 1rem;
    flex: 1; /* Fill column height */
    height: 100%; /* Ensure cards fill the column */
}
/* About Page Styles */
.about-page {
    background: #f9f9f9;
}

/* About Hero Banner */
.about-hero {
    position: relative;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/kampot-countryside.jpg');
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Story and Community Sections */
.story-section,
.community-section {
    padding: 4rem 2rem;
    background: #fff;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c5530;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-image,
.community-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Team Bios Grid */
.team-section {
    padding: 4rem 2rem;
    background: #f4f4f4;
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c5530;
}

.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.bio-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.bio-card:hover {
    transform: translateY(-5px);
}

.bio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.bio-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.bio-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.bio-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Mobile Adjustments for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 1rem;
        min-height: 40vh;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .story-section,
    .team-section,
    .community-section {
        padding: 2rem 1rem;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bio-image {
        height: 200px;
    }

    .bio-content {
        padding: 1rem;
    }

    .section-content h2 {
        font-size: 1.8rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .bio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.destination-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #333;
    text-align: center;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}/* Kampot Adventure Page - 85% Height Grid Section */
.tour-page {
    background: #f9f9f9;
}

/* Hero Card (unchanged) */
.tour-hero-kampot {
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
}

.hero-card {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hero-card .card-content {
    padding: 2rem;
    text-align: center;
}

.hero-card h1 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* Itinerary Grid Section - 85% Height, 3 Cards Per Row */
.itinerary-grid-section {
    min-height: 85vh; /* Occupies ~85% of viewport height */
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: #f4f4f4; /* Subtle background for grid area */
    position: relative;
    overflow: hidden; /* Prevent card overflow */
}

.itinerary-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 85, 48, 0.05), rgba(255, 215, 0, 0.03)); /* Subtle overlay for theme */
    z-index: 1;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    grid-auto-rows: 1fr; /* Equal height rows */
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1; /* Fill available height */
    position: relative;
    z-index: 2;
    padding: 1rem 0; /* Internal padding for breathing room */
    height: 100%; /* Full height of section */
}

.itinerary-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.itinerary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.card-image {
    width: 100%;
    height: 180px; /* Fixed height for uniformity in 3-column grid */
    object-fit: cover;
    flex-shrink: 0; /* Prevent image shrinking */
}

.card-content {
    padding: 1.2rem;
    flex: 1; /* Grow to fill remaining card height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute content vertically */
}

.card-number {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    flex-grow: 1; /* Allow text to expand within available space */
}

.return-card {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border: 2px solid #28a745;
    grid-column: 1 / -1; /* Full width span across all 3 columns */
}

.return-card .card-number {
    color: #28a745;
    font-size: 1.5rem;
}

.return-card .card-image {
    height: 200px; /* Slightly taller for emphasis */
}

.book-btn {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    align-self: center;
    margin-top: auto; /* Push to bottom of card */
    transition: background 0.3s;
    text-align: center;
}

.book-btn:hover {
    background: #e6c200;
}

/* Mobile: 1 Column, Full Height Adjustment */
@media (max-width: 768px) {
    .tour-hero-kampot {
        padding: 1rem 0.5rem;
    }

    .hero-card .card-content {
        padding: 1.5rem;
    }

    .hero-card h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .hero-image,
    .card-image {
        height: 200px;
    }

    .itinerary-grid-section {
        min-height: auto; /* Auto on mobile to avoid excessive scroll */
        padding: 1rem 0.5rem;
    }

    .grid-container {
        grid-template-columns: 1fr; /* Single column */
        gap: 1rem;
        padding: 0.5rem 0;
        height: auto; /* Natural height on mobile */
    }

    .itinerary-card {
        min-height: auto; /* Natural card height */
    }

    .card-content {
        padding: 1rem;
    }

    .card-number {
        font-size: 1.3rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }

    .return-card .card-image {
        height: 180px;
    }
}

/* Tablet: 2 Columns, Adjusted Height */
@media (min-width: 769px) and (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 1.2rem;
        min-height: 80vh; /* Slightly less on tablet */
    }

    .card-image {
        height: 200px;
    }

    .return-card {
        grid-column: 1 / -1; /* Still full width on tablet */
    }
}

/* Large Desktop: Ensure 3 Columns Fill 85vh */
@media (min-width: 1025px) {
    .itinerary-grid-section {
        min-height: 85vh;
    }

    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .card-content p {
        font-size: 1rem; /* Slightly larger text on desktop */
    }
}

.destination-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    flex-shrink: 0;
}

.card-content {
    padding: 1rem;
    flex: 1; /* Grow to fill card space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: auto; /* Push button to bottom */
}

.explore-btn {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
    margin-top: auto; /* Push to bottom of card */
    align-self: center;
}

.explore-btn:hover {
    background: #e6c200;
    transform: scale(1.05);
}

/* Other Page Sections (Description, Itinerary, Pricing) */
.tour-description,
.itinerary,
.pricing {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.itinerary ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.itinerary li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 5px;
}

.pricing-info {
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.booking-form input,
.booking-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.booking-form button {
    background: #28a745;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.booking-form button:hover {
    background: #218838;
}

.back-btn {
    display: inline-block;
    background: #6c757d;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.back-btn:hover {
    background: #5a6268;
}

/* Mobile Navigation and Responsiveness */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    /* Homepage Hero Mobile */
    .hero {
        background-attachment: scroll;
        height: 80vh;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .hero::before {
        background: rgba(0, 0, 0, 0.6);
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        min-height: 44px;
    }

    /* Tour Hero Mobile */
    .tour-hero {
        padding: 2rem 0.5rem;
        min-height: auto;
    }

    .tour-content-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 1.5rem;
        max-width: 100%;
        padding: 0;
    }

    .inclusions-column {
        order: 1; /* Inclusions first on mobile */
        align-self: auto;
        padding: 1rem;
    }

    .cards-column {
        order: 2; /* Cards second */
        align-self: auto;
    }

    .destination-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 1rem;
    }

    .destination-card img {
        height: 180px;
    }

    .card-content {
        padding: 0.8rem;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .inclusions-grid {
        gap: 0.5rem;
    }

    .inclusion-row {
        gap: 0.3rem;
    }

    .inclusion-item {
        padding: 0.6rem;
        flex-direction: row; /* Horizontal on mobile for space */
    }

    .inclusion-item span:last-child {
        font-size: 0.9rem;
    }

    .explore-btn {
        padding: 0.6rem 1.2rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats {
        gap: 1rem;
    }

    .stat {
        font-size: 1rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .book-btn {
        padding: 0.8rem 1.5rem;
        min-height: 44px;
        margin: 0.5rem;
    }

    .tours,
    .about,
    .testimonials,
    .contact,
    .tour-description,
    .itinerary,
    .pricing {
        padding: 3rem 1rem;
    }
}

/* Larger Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .tour-content-grid {
        grid-template-columns: 1fr 1fr; /* Equal split on tablet */
        gap: 1.5rem;
    }

    .destination-grid {
        gap: 1.2rem;
    }
}

/* Large Desktop (1025px+) */
@media (min-width: 1025px) {
    .hero-content h2 {
        font-size: 4rem;
    }
}
/* Garden & Grill Page Styles */
.garden-grill-page {
    background: #f9f9f9;
}

/* Hero Section for Garden Page */
.garden-hero {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/garden-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Section Styles */
.welcome-section,
.amenities-section,
.booking-section,
.gallery-section {
    padding: 4rem 2rem;
    background: #fff;
}

.booking-section {
    background: #f4f4f4;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c5530;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Story Image */
.story-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
}

/* Booking Information */
.booking-info {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.booking-info h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.booking-info ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.booking-info li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.booking-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.garden-cta {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 2rem;
    transition: background 0.3s, transform 0.3s;
}

.garden-cta:hover {
    background: #e6c200;
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    background: #f4f4f4;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .garden-hero {
        min-height: 40vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .welcome-section,
    .amenities-section,
    .booking-section,
    .gallery-section {
        padding: 2rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .gallery-image {
        height: 200px;
    }

    .booking-info {
        padding: 1.5rem;
        margin: 1rem;
    }
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 0 0 2px rgba(44, 85, 48, 0.1);
}

.contact-form button {
    background: #2c5530;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s;
}

.contact-form button:hover:not(:disabled) {
    background: #1e3a21;
}

.contact-form button:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.contact-info {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info strong {
    color: #2c5530;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px; /* Prevent zoom */
    }
}

/* Hero Slideshow Styles */
.hero-slideshow {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
    text-align: center;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: bold;
    letter-spacing: 2px;
}

.hero-content h2:first-of-type {
    color: #ffd700;
}

.hero-content h2:last-of-type {
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 215, 0, 0.9);
    color: #333;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.cta-button:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #333;
}

/* Slideshow Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #ffd700;
    transform: scale(1.2);
}

/* Navigation Arrows */
.slideshow-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
    pointer-events: none;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
    color: #333;
}

.prev {
    margin-left: -25px;
}

.next {
    margin-right: -25px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-slideshow {
        height: 80vh;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content h2:first-of-type {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .slideshow-indicators {
        bottom: 1rem;
        gap: 0.3rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .slideshow-nav {
        padding: 0 1rem;
    }
    
    .prev {
        margin-left: -20px;
    }
    
    .next {
        margin-right: -20px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h2 {
        font-size: 3.5rem;
    }
    
    .hero-content h2:first-of-type {
        font-size: 3.2rem;
    }
}

/* Loading Animation */
.hero-slideshow {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
