/* Main CSS - Adventure Van Rentals */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-color: #2d5a3d;        /* Deep Forest Green */
    --secondary-color: #e86f2b;      /* Sunset Orange */
    --accent-color: #4a90a4;         /* Sky Blue */
    --neutral-color: #6b6969;        /* Warm Gray */
    --alert-color: #f4b643;          /* Golden Yellow */
    
    /* Primary Shades */
    --primary-light: #3f7b56;
    --primary-dark: #1e3d2a;
    
    /* Secondary Shades */
    --secondary-light: #f08747;
    --secondary-dark: #c55a1f;
    
    /* Accent Shades */
    --accent-light: #5ca8bf;
    --accent-dark: #3a7289;
    
    /* Neutral Shades */
    --neutral-light: #8a8888;
    --neutral-dark: #4a4848;
    
    /* Alert Shades */
    --alert-light: #f6c869;
    --alert-dark: #e5a429;
    
    /* Font Sizes - Conservative */
    --fs-h1: 2rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.5rem;
    --fs-h4: 1.25rem;
    --fs-h5: 1.1rem;
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--alert-color) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(45,90,61,0.8) 0%, rgba(74,144,164,0.6) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: var(--fs-body);
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: var(--spacing-sm);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Header Styles */
header.navbar {
    background: var(--gradient-primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

header.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 14px !important;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-size: 10px;
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero), url('../INF_images/hero-bg.webp') center/cover no-repeat;
    position: relative;
    color: #fff;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--alert-color);
    margin-bottom: var(--spacing-md);
}

.hero-section img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-5deg);
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.feature-box {
    background: var(--gradient-card);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(74,144,164,0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.feature-box h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.feature-box p {
    color: var(--neutral-color);
    font-size: var(--fs-small);
}

/* Services Section */
.services-section {
    background: #f8f9fa;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card h4 {
    padding: var(--spacing-sm) var(--spacing-md) 0;
    color: var(--primary-dark);
}

.service-card p {
    padding: 0 var(--spacing-md);
    color: var(--neutral-color);
    font-size: var(--fs-small);
}

.service-card .price {
    color: var(--secondary-color);
    font-size: var(--fs-h4);
    font-weight: 700;
    margin-top: auto;
    padding-bottom: var(--spacing-md);
}

/* Features Section */
.feature-item {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    padding: var(--spacing-md);
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-item h4 {
    color: #fff;
    margin-bottom: var(--spacing-xs);
}

.feature-item p {
    opacity: 0.95;
}

/* Price Plan Section */
.price-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-secondary);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.price-card:hover::before {
    opacity: 0.05;
}

.price-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(232,111,43,0.2);
}

.price-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.price-card ul {
    list-style: none;
    padding: var(--spacing-md) 0;
    position: relative;
    z-index: 1;
}

.price-card ul li {
    padding: var(--spacing-xs) 0;
    color: var(--neutral-color);
    font-size: var(--fs-small);
}

.price-card ul li:before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: var(--spacing-xs);
}

.price-tag {
    font-size: var(--fs-h3);
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Team Section */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--accent-light);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.1);
    border-color: var(--secondary-color);
}

.team-member h5 {
    color: var(--primary-dark);
    margin-top: var(--spacing-sm);
}

.team-member p {
    color: var(--neutral-color);
    font-size: var(--fs-small);
}

/* Reviews Section */
.reviews-slider {
    padding: var(--spacing-md) 0;
}

.review-item {
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-item p {
    font-style: italic;
    color: var(--neutral-dark);
    font-size: var(--fs-body);
    margin-bottom: var(--spacing-md);
}

.review-item h5 {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Case Studies Section */
.case-item {
    background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.case-item h4 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
}

/* Process Section */
.process-step {
    position: relative;
    padding: var(--spacing-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-h4);
    font-weight: 700;
    color: #fff;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 5px 20px rgba(232,111,43,0.3);
}

.process-step h5 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.process-step p {
    color: var(--neutral-color);
    font-size: var(--fs-small);
}

/* Timeline Section */
.timeline {
    position: relative;
    padding: var(--spacing-md) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: var(--spacing-md);
    width: 45%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: var(--spacing-md);
}

.timeline-item:nth-child(odd) {
    margin-left: auto;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
    left: -60px;
}

.timeline-item:nth-child(even)::before {
    right: -60px;
}

/* Career Section */
.career-item {
    background: #fff;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.career-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.career-item h4 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.career-item p:last-child {
    color: var(--accent-color);
    font-weight: 600;
    font-size: var(--fs-small);
}

/* Core Info Section */
.info-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: #fff;
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(45,90,61,0.3);
}

.info-box h4 {
    color: #fff;
    margin-bottom: var(--spacing-xs);
}

.info-box p {
    opacity: 0.9;
    font-size: var(--fs-small);
}

/* Contact Section */
.contact-form {
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: var(--fs-body);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(74,144,164,0.25);
}

.btn-primary {
    background: var(--gradient-secondary);
    border: none;
    padding: 12px 40px;
    font-size: var(--fs-body);
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(232,111,43,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232,111,43,0.4);
}

.contact-info p {
    color: var(--neutral-color);
    margin-bottom: var(--spacing-sm);
}

.contact-info i {
    color: var(--accent-color);
    margin-right: var(--spacing-xs);
}

/* Blog Section */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-content h4 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.blog-content p {
    color: var(--neutral-color);
    font-size: var(--fs-small);
    margin-bottom: var(--spacing-sm);
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--fs-small);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-dark);
    transform: translateX(5px);
}

/* FAQ Section */
.accordion-button {
    background: #fff;
    color: var(--primary-dark);
    font-weight: 600;
    padding: var(--spacing-md);
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent-light) 100%);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: var(--spacing-md);
    background: #f8f9fa;
}

.accordion-body p {
    color: var(--neutral-color);
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    background: #f8f9fa;
}

.gallery-section img {
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer Section */
.footer-section {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #fff;
}

.footer-section h3, .footer-section h4 {
    color: var(--alert-color);
    margin-bottom: var(--spacing-md);
}

.footer-section a {
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color) !important;
}

.footer-section hr {
    border-color: rgba(255,255,255,0.1);
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--accent-color);
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: var(--fs-body);
    font-weight: 400;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(232,111,43,0.3);
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232,111,43,0.4);
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.shadow-medium {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.shadow-hard {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Breadcrumb (for additional pages) */
.breadcrumb-section {
    background: var(--gradient-primary);
    padding: var(--spacing-sm) 0;
    margin-top: 76px;
}

.breadcrumb {
    margin: 0;
    background: transparent;
}

.breadcrumb img {
    height: 20px;
    width: auto;
    display: inline-block;
} 