/* Rooth Tours - Main Stylesheet - Warm Nature Palette */

/* CSS Variables - Warm Nature Colors */
:root {
    /* Primary - Olive/Leafy Green */
    --primary: #4A5D23;
    --primary-dark: #3a4a1c;
    --primary-light: #5c722d;
    
    /* Secondary - Warm Golden Yellow */
    --secondary: #D4A373;
    --secondary-light: #e4b88a;
    --secondary-dark: #c49464;
    
    /* Accent - Warm Orange/Terracotta */
    --accent: #E07B39;
    --accent-hover: #c86a2e;
    --accent-light: #e88f54;
    
    /* Earthy Tones */
    --earth-dark: #2C2416;
    --earth-medium: #5D4E37;
    --earth-light: #8B7355;
    
    /* Nature Greens */
    --forest: #2D5016;
    --sage: #87A878;
    --mint: #C4D7A4;
    
    /* Backgrounds */
    --light: #FDF8F3;
    --cream: #F5EDE4;
    --warm-white: #FFFCF8;
    --sand: #E8DCC4;
    
    /* Text */
    --dark: #2C2416;
    --gray: #6B5B4F;
    --light-gray: #D4C8B8;
    --white: #ffffff;
    
    /* Shadows */
    --shadow: 0 4px 20px rgba(44, 36, 22, 0.1);
    --shadow-lg: 0 10px 40px rgba(44, 36, 22, 0.15);
    --shadow-hover: 0 8px 30px rgba(74, 93, 35, 0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--warm-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.25rem;
    color: var(--gray);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--earth-dark);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(74, 93, 35, 0.95) 0%, rgba(45, 80, 22, 0.95) 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar.scrolled {
    background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary-light);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(74, 93, 35, 0.85) 0%, rgba(44, 36, 22, 0.9) 100%),
                url('../images/hero-srilanka.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d4a373" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content h1 span {
    color: var(--secondary);
    position: relative;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

/* Hero Images Collage */
.hero-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-collage {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 520px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 0.75rem;
}

/* Hero Collage Entrance Animation */
@keyframes collageEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.collage-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 36, 22, 0.3);
    transition: var(--transition-slow);
    cursor: pointer;
    opacity: 0;
    animation: collageEntrance 0.8s ease forwards;
}

.collage-main {
    animation-delay: 0.2s;
}

.collage-secondary {
    animation-delay: 0.4s;
}

.collage-tertiary {
    animation-delay: 0.6s;
}

.collage-quaternary {
    animation-delay: 0.8s;
}

.collage-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(44, 36, 22, 0.4);
    z-index: 10;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.collage-item:hover img {
    transform: scale(1.1);
}

.collage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(44, 36, 22, 0.8), transparent);
    transition: var(--transition);
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(74, 93, 35, 0.9);
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.location-tag i {
    color: var(--secondary);
}

/* Collage Item Positions */
.collage-main {
    grid-column: 1 / 8;
    grid-row: 1 / 9;
    z-index: 3;
}

.collage-secondary {
    grid-column: 7 / 13;
    grid-row: 1 / 6;
    z-index: 4;
}

.collage-tertiary {
    grid-column: 7 / 11;
    grid-row: 5 / 10;
    z-index: 5;
}

.collage-quaternary {
    grid-column: 2 / 8;
    grid-row: 7 / 13;
    z-index: 2;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(44, 36, 22, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.floating-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--earth-dark);
    line-height: 1.3;
}

.experience-badge {
    top: -10px;
    right: -20px;
    animation-delay: 0s;
}

.travelers-badge {
    bottom: 40px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Decorative Elements */
.hero-collage::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--secondary);
    border-radius: var(--border-radius-lg);
    opacity: 0.4;
    z-index: 1;
}

.hero-collage::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

/* Responsive Collage */
@media (max-width: 1024px) {
    .hero-collage {
        max-width: 450px;
        height: 450px;
    }
    
    .experience-badge {
        right: 0;
    }
    
    .travelers-badge {
        left: -10px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-collage {
        max-width: 380px;
        height: 380px;
        margin: 0 auto;
    }
    
    .floating-badge {
        padding: 0.75rem 1rem;
    }
    
    .floating-badge i {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .floating-badge span {
        font-size: 0.75rem;
    }
    
    .experience-badge {
        top: -5px;
        right: 10px;
    }
    
    .travelers-badge {
        bottom: 20px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .hero-collage {
        max-width: 320px;
        height: 320px;
        gap: 0.5rem;
    }
    
    .collage-overlay {
        padding: 0.5rem;
    }
    
    .location-tag {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }
    
    .floating-badge {
        display: none;
    }
}

/* Gallery Preview Section */
.gallery-preview {
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
    padding: 5rem 0;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-preview-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

.gallery-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 93, 35, 0.7) 0%, rgba(44, 36, 22, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-preview-item:hover .gallery-preview-overlay {
    opacity: 1;
}

.gallery-preview-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-preview-item:hover .gallery-preview-overlay i {
    transform: scale(1);
}

/* Grid Layout Variations */
.gallery-preview-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-preview-item.wide {
    grid-column: span 2;
}

.gallery-preview-cta {
    text-align: center;
}

.gallery-preview-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Gallery Preview */
@media (max-width: 1024px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 160px);
    }
    
    .gallery-preview-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-preview-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 150px);
        gap: 0.75rem;
    }
    
    .gallery-preview-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-preview-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .gallery-preview {
        padding: 3rem 0;
    }
    
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 130px);
        gap: 0.5rem;
    }
    
    .gallery-preview-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-preview-item.wide {
        grid-column: span 2;
    }
}

/* Booking Widget */
.booking-widget {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.booking-widget h3 {
    color: var(--primary);
    margin-bottom: 1.75rem;
    text-align: center;
    font-size: 1.5rem;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--earth-medium);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--sand);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--warm-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 93, 35, 0.1);
}

/* Features Strip */
.features-strip {
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
    padding: 3.5rem 0;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.feature-text {
    font-weight: 600;
    color: var(--earth-dark);
    font-size: 0.95rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.15rem;
    margin-top: 1.5rem;
}

/* Popular Tours */
.popular-tours {
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.tour-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--sand);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tour-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(44, 36, 22, 0.6), transparent);
}

.tour-content {
    padding: 1.75rem;
}

.tour-content h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.tour-meta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.tour-meta i {
    color: var(--accent);
}

.tour-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.tour-price span {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 400;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.benefit-card:hover {
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary);
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%),
                url('../images/nature-forest.jpg') center/cover no-repeat;
    background-blend-mode: multiply;
    color: var(--white);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 93, 35, 0.85);
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
    color: var(--secondary);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.75rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--earth-dark);
    font-weight: 700;
    font-size: 1.35rem;
}

.testimonial-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: var(--white);
}

.testimonial-info span {
    font-size: 0.9rem;
    opacity: 0.85;
    color: var(--secondary-light);
}

/* Trust Badges */
.trust-badges {
    background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
    padding: 3.5rem 0;
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.8;
    transition: var(--transition);
}

.badge-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.badge-icon {
    font-size: 2.25rem;
    color: var(--primary);
}

.badge-text {
    font-weight: 600;
    color: var(--earth-dark);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(74, 93, 35, 0.9) 0%, rgba(44, 36, 22, 0.95) 100%),
                url('../images/mountain-view.jpg') center/cover no-repeat;
    padding: 10rem 0 5rem;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 93, 35, 0.7);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.25rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Page */
.services-section {
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.services-list {
    display: grid;
    gap: 3.5rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--sand);
    overflow: hidden;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) > * {
    direction: ltr;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.service-content h3 {
    color: var(--primary);
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

.service-content > p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 1.75rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--earth-medium);
}

.service-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-image {
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Routes Table */
.routes-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.75rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.routes-table th,
.routes-table td {
    padding: 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--sand);
}

.routes-table th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
    color: var(--white);
    font-weight: 600;
}

.routes-table tr:hover {
    background-color: var(--cream);
}

/* Tours Page */
.tours-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--primary);
    background-color: transparent;
    color: var(--primary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
    color: var(--white);
    border-color: var(--primary);
}

.tour-card .tour-highlights {
    list-style: none;
    margin: 1.25rem 0;
}

.tour-card .tour-highlights li {
    padding: 0.35rem 0;
    font-size: 0.92rem;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.tour-card .tour-highlights li::before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* Fleet Page */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.vehicle-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--sand);
    transition: var(--transition);
}

.vehicle-card:hover {
    box-shadow: var(--shadow-hover);
}

.vehicle-image {
    background-size: cover;
    background-position: center;
    min-height: 280px;
}

.vehicle-info {
    padding: 2.25rem;
}

.vehicle-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.vehicle-specs {
    margin: 1.75rem 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--sand);
    font-size: 0.92rem;
}

.spec-label {
    color: var(--gray);
}

.spec-value {
    font-weight: 600;
    color: var(--earth-dark);
}

/* About Page */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateX(5px);
}

.value-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.value-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 2.5rem;
    box-shadow: var(--shadow);
}

.team-card h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.team-card span {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
}

.contact-info > p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-methods {
    margin: 2.5rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--sand);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.contact-method h4 {
    margin-bottom: 0.35rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-method a {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--sand);
}

.contact-form-wrapper h3 {
    color: var(--primary);
    margin-bottom: 1.75rem;
    font-size: 1.5rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.map-container {
    height: 400px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    margin-top: 2rem;
    border: 2px dashed var(--sand);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--earth-dark) 0%, #1a1610 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--earth-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .tours-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-card {
        grid-template-columns: 1fr;
    }

    .about-story,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--forest) 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tours-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .service-item:nth-child(even) {
        direction: ltr;
    }

    .service-image {
        height: 250px;
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 8rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }
    h3 { font-size: 1.5rem; }

    .hero-content h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .tours-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 280px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.bg-light { background-color: var(--light); }
.bg-primary { background-color: var(--primary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
