﻿/* ==========================================================================
   GLOBAL UTILITIES & RESET (Keeps layout clean)
   ========================================================================== */
:root {
    --primary-color: #0d6efd; /* High-converting Action Blue */
    --secondary-color: #0f172a; /* Deep Navy Trust Accent */
    --text-color: #334155; /* Soft Charcoal for easy reading */
    --light-bg: #f8fafc; /* Off-white background block */
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: var(--secondary-color);
    margin-top: 0;
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -10px auto 40px auto;
    color: #64748b;
}

/* ==========================================================================
   SECTION 1: THE HERO & BOOKING WIDGET
   ========================================================================== */
.seo-hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('images/hero-bg.jpg') no-repeat center center/cover;
    padding: 80px 20px;
    color: var(--white);
    text-align: center;
}

    .seo-hero-section h1 {
        color: var(--white);
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 800;
    }

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 40px auto;
    color: #cbd5e1;
}

.booking-widget-box {
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-color);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-items: flex-end;
}

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

    .form-group label {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--secondary-color);
    }

    .form-group input,
    .form-group select {
        padding: 12px;
        border: 1px solid #cbd5e1;
        border-radius: 4px;
        font-size: 1rem;
        outline: none;
    }

        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--primary-color);
        }

.btn-search {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

    .btn-search:hover {
        background-color: #0b5ed7;
    }

/* ==========================================================================
   SECTION 2: CORE FLEET CATEGORIES
   ========================================================================== */
.seo-fleet-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.fleet-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

    .fleet-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .fleet-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .fleet-card h3, .fleet-card p, .fleet-card a {
        padding: 0 20px;
    }

    .fleet-card h3 {
        margin-top: 20px;
        font-size: 1.3rem;
    }

    .fleet-card p {
        font-size: 0.95rem;
        flex-grow: 1;
        margin-bottom: 20px;
    }

.fleet-link {
    display: block;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

    .fleet-link:hover {
        text-decoration: underline;
    }

/* ==========================================================================
   SECTION 3: FEATURED RENTAL LOCATIONS
   ========================================================================== */
.seo-locations-section {
    background-color: var(--light-bg);
    max-width: 100%;
    text-align: center;
}

    .seo-locations-section .locations-list {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

.location-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
}

    .location-item h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .location-item p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

.location-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

    .location-link:hover {
        text-decoration: underline;
    }

.all-locations-btn-container {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    /*color: var(--primary-color);*/
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

/* ==========================================================================
   SECTION 4: VALUE PROP & HOW IT WORKS
   ========================================================================== */
.seo-value-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-prop-item {
    text-align: center;
    padding: 20px;
}

    .value-prop-item .icon {
        font-size: 2.5rem;
        display: block;
        margin-bottom: 15px;
    }

    .value-prop-item h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

/* ==========================================================================
   SECTION 5: SOCIAL PROOF & TRUST (E-E-A-T)
   ========================================================================== */
.seo-reviews-section {
    background-color: var(--light-bg);
    max-width: 100%;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: var(--border-radius);
    margin: 0;
}

.rating-stars {
    color: #ffb100;
    margin-bottom: 12px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal;
    font-size: 0.9rem;
}

/* ==========================================================================
   SECTION 6: FREQUENTLY ASKED QUESTIONS
   ========================================================================== */
.seo-faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    overflow: hidden;
}

    .faq-item summary {
        padding: 18px;
        font-size: 1.1rem;
        cursor: pointer;
        background-color: var(--white);
        user-select: none;
        color: var(--secondary-color);
    }

        .faq-item summary:hover {
            background-color: #f1f5f9;
        }

.faq-answer {
    padding: 0 18px 18px 18px;
    border-top: 1px solid #e2e8f0;
    background-color: var(--light-bg);
}

    .faq-answer p {
        margin: 15px 0 0 0;
    }

/* ==========================================================================
   SECTION 7: TRAVEL BLOG FEED
   ========================================================================== */
.seo-blog-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.blog-post-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: var(--border-radius);
}

    .blog-post-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

        .blog-post-card h3 a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }

            .blog-post-card h3 a:hover {
                color: var(--primary-color);
            }

    .blog-post-card p {
        font-size: 0.95rem;
        margin: 0;
    }


/* ==========================================================================
   PAGE: RESERVATION FORM
   ========================================================================== */
.reservation-bg {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('images/hero-bg.jpg') no-repeat center center/cover;
    text-align: center;
    color: white;
}

.reservation-card-header {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    margin-bottom: 0;
    border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.reservation-white-text-bg {
    color: var(--white) !important;
}
