/* project-root/assets/css/style.css */
:root {
    --primary-green: #5E7D2B;
    --dark-green: #2F4F2F;
    --light-bg: #F8F6F1;
    --accent-sand: #EDE6D6;
    --white: #FFFFFF;
    --text-dark: #222222;
    --shadow-sm: 0 8px 20px rgba(0,0,0,0.05);
    --shadow-md: 0 12px 30px rgba(0,0,0,0.08);
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; color: var(--dark-green); }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { font-size: 1.2rem; color: #555; max-width: 700px; margin: 0 auto; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 10px rgba(94,125,43,0.2);
}
.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}
.btn-outline:hover {
    background: var(--primary-green);
    color: white;
}
.btn-outline-light {
    border: 2px solid white;
    color: white;
}
.btn-outline-light:hover {
    background: white;
    color: var(--dark-green);
}

/* Header & Nav */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}
.logo a {
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--dark-green);
}
.main-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}
.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.nav-cta {
    color: var(--primary-green);
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.2s;
}

/* Hero */
.hero {
    background-size: cover;
    background-position: center 30%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero-subline {
    font-size: 1.3rem;
    margin: 1.5rem 0;
    opacity: 0.95;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-badges {
    margin-top: 2rem;
    display: flex;
    gap: 24px;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Grids */
.features-grid, .tours-grid, .trips-grid, .values-grid, .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.feature-card, .tour-card, .trip-card, .value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.feature-card, .value-card { padding: 2rem; text-align: center; }
.feature-card:hover, .tour-card:hover, .trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.tour-card-image, .trip-card-image { position: relative; height: 220px; overflow: hidden; }
.tour-card-image img, .trip-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.tour-card:hover img, .trip-card:hover img { transform: scale(1.03); }
.tour-duration, .trip-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.8rem;
}
.tour-card-content, .trip-card-content { padding: 1.5rem; }
.tour-highlight { color: var(--primary-green); font-weight: 500; margin: 0.5rem 0; }
.trip-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.tag { background: var(--accent-sand); padding: 4px 12px; border-radius: 30px; font-size: 0.75rem; }

/* Services */
.services-section {
    background: var(--accent-sand);
    padding: 4rem 0;
    text-align: center;
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}
.services-list li {
    background: white;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: var(--light-bg);
}
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.testimonial-track {
    display: flex;
    transition: transform 0.4s ease;
}
.testimonial-card {
    min-width: 100%;
    padding: 2rem;
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
}
.testimonial-card p { font-size: 1.2rem; font-style: italic; margin-bottom: 1rem; }
.rating { color: gold; margin-top: 0.3rem; }
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-green);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: 0.2s;
}
.slider-nav.prev { left: 10px; }
.slider-nav.next { right: 10px; }
.slider-nav:hover { background: var(--primary-green); }
.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
    color: white;
}
.final-cta h2 { color: white; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }

/* Contact Page */
.contact-section { padding: 4rem 0; }
.contact-form-wrapper, .contact-info-wrapper { background: white; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 1.2rem; }
label { display: block; font-weight: 500; margin-bottom: 0.4rem; }
input, textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 12px; font-family: inherit; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: center; }
.contact-icon { font-size: 1.8rem; }
.map-placeholder { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; }
.form-note { margin-top: 1em; font-size: .8em; }
/* About Page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-stats { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.stat { background: var(--primary-green); color: white; padding: 0.5rem 1.2rem; border-radius: 40px; }

/* Footer */
.site-footer {
    background: var(--dark-green);
    color: #eee;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand h3 { color: white; }
.footer-contact a, .footer-links a { color: #ddd; text-decoration: none; }
.footer-links ul { list-style: none; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: white;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        transition: 0.3s;
        padding: 2rem;
    }
    .main-nav.active { left: 0; }
    .main-nav ul { flex-direction: column; gap: 20px; }
    .about-grid { grid-template-columns: 1fr; }
    .hero-buttons .btn { padding: 10px 20px; }
    .container { padding: 0 20px; }
}
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; } 

/* ========== TESTIMONIALS - PREMIUM, NO PARTIAL CARDS ========== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;  /* space for side buttons */
}

.testimonial-track-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: transparent;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 100%;
    min-width: 0;  /* prevents flex overflow */
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-green);
    opacity: 0.2;
    font-family: Georgia, serif;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    pointer-events: none;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 1.5rem 0 1.2rem;
    font-style: normal;
    color: #2c2c2c;
}

.testimonial-author {
    margin-top: 1.5rem;
    border-top: 1px solid var(--accent-sand);
    padding-top: 1.2rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--dark-green);
    display: block;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #666;
    display: inline-block;
    margin-top: 0.2rem;
}

.rating {
    color: #f4b942;
    letter-spacing: 2px;
    margin: 0.4rem 0 0.2rem;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.7rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Premium slider buttons - now outside the overflow area */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    cursor: pointer;
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 20;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.96);
}

.slider-nav:hover {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-slider {
        padding: 0 40px;
    }
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
    .testimonial-card {
        padding: 1.8rem;
    }
    .review-text {
        font-size: 1rem;
    }
    .review-quote {
        font-size: 2.5rem;
        top: 0.5rem;
        left: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-slider {
        padding: 0 30px;
    }
    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}

/* Optional: add shadow-lg if not defined */
:root {
    --shadow-lg: 0 20px 35px -10px rgba(0,0,0,0.15);
} 

.contact-icon {
    font-size: 2rem;
    color: var(--primary-green);
    width: 50px;
    text-align: center;
}
.social-links a {
    display: inline-block;
    margin-right: 1rem;
    text-decoration: none;
    color: var(--dark-green);
}
.social-links a i {
    margin-right: 0.3rem;
}

/* ========== ENHANCED SECTION SPACING ========== */

/* Base section spacing – all major content sections get consistent padding */
.why-choose-us,
.day-trips-preview,
.tours-preview,
.services-section,
.testimonials-section,
.final-cta,
.about-story,
.values-section {
    padding: 5rem 0;
}

/* Page headers (used on tours, trips, contact, about) */
.page-header {
    padding: 4rem 0 2rem 0;
    text-align: center;
    background: var(--light-bg);
    margin-bottom: 0;
}
.page-header h1 {
    margin-bottom: 0.5rem;
}
.page-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero section – ensure no tight bottom margin */
.hero {
    margin-bottom: 0;
    padding: 0; /* keep full height, but content is centered */
}
/* Add extra padding to the first section after hero */
.why-choose-us {
    padding-top: 5rem;
}

/* About page specific */
.about-story {
    padding-top: 3rem;
}
.values-section {
    background: var(--accent-sand);
    margin-top: 0;
}

/* Tours & Trips grid sections – add top spacing if they follow a header */
.tours-grid-section,
.trips-grid-section,
.contact-section {
    padding: 3rem 0 5rem 0;
}

/* Final CTA – more dramatic spacing */
.final-cta {
    padding: 6rem 0;
    margin-top: 1rem;
}

/* Adjust container for better inner spacing */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .why-choose-us,
    .day-trips-preview,
    .tours-preview,
    .services-section,
    .testimonials-section,
    .final-cta,
    .about-story,
    .values-section {
        padding: 3rem 0;
    }
    .page-header {
        padding: 2.5rem 0 1.5rem 0;
    }
    .final-cta {
        padding: 3.5rem 0;
    }
    .hero-content {
        padding: 0 1rem;
    }
}

/* Ensure no double spacing between consecutive sections */
.why-choose-us + .day-trips-preview,
.day-trips-preview + .tours-preview,
.tours-preview + .services-section,
.services-section + .testimonials-section,
.testimonials-section + .final-cta {
    padding-top: 0;
}
/* But maintain bottom padding of previous section, so total spacing is balanced */
.why-choose-us {
    padding-bottom: 5rem;
}

/* optionals */

/* Section headers – more breathing room below */
.section-header {
    margin-bottom: 3rem;
}
.section-header h2 {
    margin-bottom: 0.75rem;
}

/* Cards grid – gap increase */
.features-grid, .tours-grid, .trips-grid, .values-grid, .contact-grid {
    gap: 2.5rem;
}

/* Footer top spacing */
.site-footer {
    margin-top: 0;
    padding: 4rem 0 2rem;
}

/* Values section icon styling */
.value-icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.value-card:hover .value-icon i {
    transform: translateY(-5px);
}

/* ========== ENHANCED FOOTER ========== */
.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}
.footer-social .social-icons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
}
.footer-social .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.2s;
}
.footer-social .social-icons a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}
.trust-badge {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.9;
}
.trust-badge i {
    color: #00aa6c;
    margin-right: 5px;
}
.designer-credit {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.7;
}
.designer-credit a {
    color: var(--accent-sand);
    text-decoration: none;
}
.designer-credit i {
    color: #e25555;
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ========== CONTACT PAGE ELEGANT LINKS ========== */
.contact-link {
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px dotted transparent;
}
.contact-link:hover {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}
.social-icons-footer {
    display: flex;
    gap: 1rem;
    margin: 0.8rem 0;
}
.social-icons-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--accent-sand);
    border-radius: 50%;
    color: var(--dark-green);
    font-size: 1.2rem;
    transition: all 0.2s;
    text-decoration: none;
}
.social-icons-footer a:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}
.trust-text {
    font-size: 0.85rem;
    color: #555;
    margin-top: 0.5rem;
}
.trust-text i {
    color: #00aa6c;
    margin-right: 4px;
}
/* Remove map iframe - already removed from HTML */

/* ========== LOGO STYLES ========== */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.2s;
}
.logo-img:hover {
    transform: scale(1.02);
}
.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: -0.3px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .logo-text {
        display: none; /* hide text on very small screens, only logo visible */
    }
    .logo a {
        gap: 0;
    }
}


.social-icons-footer .tripadvisor-svg,
.social-icons .tripadvisor-svg {
    width: 35px;
    max-height: 22px;
}

/* Standalone TripAdvisor element */
.trust-row {
    margin-top: 1.2rem;
}
.tripadvisor-standalone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: rgba(0,0,0,0.05);
    padding: 8px 16px;
    border-radius: 40px;
    transition: background 0.2s;
}
.tripadvisor-standalone:hover {
    background: rgba(0,0,0,0.1);
}
.tripadvisor-svg-standalone {
    height: 28px;      /* adjust as needed – wider than tall */
    width: auto;
    max-width: 100px;
}
.tripadvisor-standalone span {
    font-size: 0.85rem;
    color: var(--dark-green);
    font-weight: 500;
}

.rated { color: #ddd !important; }

footer a{ text-decoration: none !important; }

/* ========== REVIEWS GRID PAGE ========== */
.reviews-grid-section {
    padding: 3rem 0 5rem 0;
}
.reviews-stats-summary {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.summary-item {
    text-align: center;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    min-width: 150px;
}
.summary-item i {
    font-size: 2rem;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}
.summary-item strong {
    font-size: 1.8rem;
    display: block;
    color: var(--dark-green);
}
.summary-item span {
    font-size: 0.85rem;
    color: #666;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.review-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.reviewer-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}
.reviewer-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #777;
    flex-wrap: wrap;
}
.reviewer-meta i {
    margin-right: 3px;
    width: 12px;
}
.review-rating {
    color: #f4b942;
    font-size: 0.8rem;
    white-space: nowrap;
}
.review-card-body {
    flex: 1;
    margin: 0.5rem 0;
}
.review-title {
    font-size: 1rem;
    color: var(--dark-green);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.review-content {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
}
.review-card-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--accent-sand);
    font-size: 0.7rem;
    color: #888;
}
.review-source i {
    color: var(--primary-green);
    margin-right: 5px;
}
@media (max-width: 768px) {
    .reviews-stats-summary {
        gap: 1rem;
    }
    .summary-item {
        padding: 1rem 1.2rem;
        min-width: 100px;
    }
    .summary-item strong {
        font-size: 1.4rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== GALLERY PAGE ========== */
.gallery-section {
    padding: 3rem 0 5rem 0;
}
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}
.filter-btn {
    background: var(--accent-sand);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: white;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--white);
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.gallery-item a {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-caption {
    padding: 0.8rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-green);
    background: white;
    border-top: 1px solid var(--accent-sand);
}
/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Active navigation link */
.main-nav a.active {
    color: var(--primary-green);
    font-weight: 600;
    position: relative;
}
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-green);
    border-radius: 2px;
}
/* Special handling for the CTA button active state */
.main-nav a.nav-cta.active {
    background: var(--primary-green);
    padding: .4em;
    color: white;
    border-color: var(--primary-green);
}
.main-nav a.nav-cta.active::after {
    display: none;
}
/* Mobile menu active stays same as desktop */
@media (max-width: 768px) {
    .main-nav a.active::after {
        bottom: -2px;
    }
}

/* Alert messages */
.alert {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}
.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.write-review-section {
    padding: 3rem 0;
    background: var(--accent-sand);
    margin-top: 3rem;
    border-radius: var(--radius-lg);
}
.review-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}