/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #fafcfb;
    color: #1e2b2f;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 30, 20, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0c4e3f;
    letter-spacing: -0.02em;
}

.logo span {
    font-weight: 400;
    font-size: 1rem;
    color: #547a6b;
    display: block;
    line-height: 1.2;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* desktop navigation */
.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #1e3a33;
    transition: color 0.2s;
    font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0e7b5c;
    border-bottom: 2px solid #0c4e3f;
}

/* mobile menu toggle (hidden on desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #0c4e3f;
    margin: 3px 0;
    border-radius: 3px;
    transition: 0.2s;
}

/* ===== BUTTONS ===== */
.btn {
    background-color: #0c4e3f;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid #0c4e3f;
    color: #0c4e3f;
    box-shadow: none;
}

.btn-outline:hover {
    background: #0c4e3f;
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: #1d332b;
    color: #d2e3db;
    padding: 40px 0;
    margin-top: 60px;
    border-radius: 40px 40px 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer a {
    color: #bcdbd0;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* ===== SECTION HEADINGS ===== */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0b3027;
    margin: 40px 0 16px;
}

.section-sub {
    color: #48685d;
    font-size: 1.1rem;
    margin-bottom: 40px;
    border-left: 5px solid #0c4e3f;
    padding-left: 20px;
}

/* ===== HERO (HOME) ===== */
.hero {
    background: linear-gradient(120deg, #e0f0e9 0%, #c8e0d6 100%);
    padding: 60px 0;
    border-radius: 0 0 40px 40px;
    margin-bottom: 40px;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0b3027;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: #1f4d3f;
    margin-bottom: 28px;
}

.hero-stats {
    display: flex;
    gap: 28px;
}

.stat-item {
    font-weight: 600;
    color: #0f4033;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

/* ===== ROUTE CARDS (used on home & routes) ===== */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.route-card {
    background: white;
    border-radius: 28px;
    padding: 24px 20px;
    box-shadow: 0 15px 30px -8px rgba(0, 50, 30, 0.1);
    transition: all 0.25s ease;
    border: 1px solid rgba(0, 80, 70, 0.05);
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 36px -10px rgba(20, 80, 60, 0.2);
}

.route-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px dashed #cbdcd0;
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.route-header i {
    font-size: 1.6rem;
    color: #0c4e3f;
    background: #deede7;
    padding: 10px;
    border-radius: 50%;
}

.route-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #10382e;
}

.route-distance {
    font-size: 0.9rem;
    color: #537a6b;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    padding: 8px 6px;
    border-radius: 14px;
    background: #f6fbf9;
    margin-bottom: 8px;
}

.car-size i {
    width: 24px;
    color: #0b4e3d;
}

.price {
    font-weight: 700;
    color: #1b493c;
    background: white;
    padding: 5px 16px;
    border-radius: 40px;
}

.view-all-link {
    text-align: right;
    margin-top: -20px;
    margin-bottom: 30px;
}

.view-all-link a {
    color: #0c4e3f;
    font-weight: 600;
    text-decoration: none;
}

/* ===== FLEET CARDS ===== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.fleet-card {
    background: white;
    border-radius: 32px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 40, 30, 0.08);
    transition: transform 0.2s;
}

.fleet-card:hover {
    transform: scale(1.02);
}

.fleet-card i {
    font-size: 4rem;
    color: #0c4e3f;
    background: #e0f0e9;
    padding: 20px;
    border-radius: 60px;
    margin-bottom: 20px;
}

.fleet-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b3027;
}

.fleet-card p {
    color: #3f685a;
    margin: 12px 0 20px;
}

.fleet-feature {
    background: #f2f9f6;
    border-radius: 40px;
    padding: 12px;
    margin: 8px 0;
    font-weight: 500;
}

/* ===== DRIVER CARDS ===== */
.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.driver-card {
    background: white;
    border-radius: 28px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 30px -8px rgba(0, 50, 30, 0.1);
    transition: transform 0.25s ease;
    border: 1px solid rgba(0, 80, 70, 0.05);
}

.driver-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 36px -10px rgba(20, 80, 60, 0.2);
}

.driver-avatar {
    font-size: 4rem;
    color: #0c4e3f;
    background: #e0f0e9;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.driver-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #10382e;
    margin-bottom: 8px;
}

.driver-exp {
    background: #f2f9f6;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 600;
    color: #0c4e3f;
    margin: 10px 0;
}

.driver-langs {
    color: #3f685a;
    margin: 12px 0;
    font-size: 1rem;
}

.driver-langs i {
    color: #0c4e3f;
    margin-right: 5px;
}

.driver-badge {
    background: #0c4e3f;
    color: white;
    border-radius: 40px;
    padding: 8px 16px;
    font-size: 0.9rem;
    display: inline-block;
}

/* ===== REVIEWS ===== */
.rating-summary {
    background: white;
    border-radius: 40px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
    box-shadow: 0 10px 25px rgba(0, 40, 30, 0.05);
}

.average-rating {
    text-align: center;
}

.big-star {
    font-size: 4rem;
    color: #f4b740;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0c4e3f;
    line-height: 1;
}

.total-reviews {
    color: #547a6b;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.review-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 15px 30px -8px rgba(0, 50, 30, 0.1);
    transition: transform 0.25s;
    border: 1px solid rgba(0, 80, 70, 0.05);
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar {
    background: #e0f0e9;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0c4e3f;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #10382e;
}

.review-date {
    font-size: 0.85rem;
    color: #7a9b8c;
}

.review-stars {
    color: #f4b740;
    margin: 10px 0;
    font-size: 1.1rem;
}

.review-text {
    color: #2a4d40;
    line-height: 1.6;
}

/* ===== BLOG LIST ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 30px -8px rgba(0, 50, 30, 0.1);
    transition: transform 0.25s ease;
    border: 1px solid rgba(0, 80, 70, 0.05);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 36px -10px rgba(20, 80, 60, 0.2);
}

.blog-img {
    height: 200px;
    background-color: #c8e0d6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c4e3f;
    font-size: 3rem;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
    color: #547a6b;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10382e;
    margin-bottom: 12px;
}

.blog-excerpt {
    color: #2a4d40;
    margin-bottom: 20px;
}

.read-more {
    color: #0c4e3f;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more i {
    transition: transform 0.2s;
}

.read-more:hover i {
    transform: translateX(4px);
}

/* ===== BLOG SINGLE ===== */
.blog-header {
    text-align: center;
    margin: 40px 0 20px;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #0b3027;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 20px;
}

.blog-meta {
    color: #547a6b;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.blog-meta i {
    margin-right: 6px;
    color: #0c4e3f;
}

.featured-image {
    background: #c8e0d6;
    height: 400px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c4e3f;
    font-size: 5rem;
    margin: 30px 0;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: #1e3a33;
}

.blog-content h2 {
    font-size: 2rem;
    color: #0b3027;
    margin: 40px 0 20px;
}

.blog-content blockquote {
    background: #ecf7f2;
    border-left: 6px solid #0c4e3f;
    padding: 20px 30px;
    font-style: italic;
    border-radius: 20px;
    margin: 30px 0;
}

.share-buttons {
    display: flex;
    gap: 16px;
    margin: 50px 0;
    justify-content: center;
}

.share-btn {
    background: #e0f0e9;
    color: #0c4e3f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: 0.2s;
}

.share-btn:hover {
    background: #0c4e3f;
    color: white;
}

/* ===== ESTIMATOR (HOME) ===== */
.estimator-mini {
    background: white;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 20px 30px -10px rgba(0, 60, 40, 0.1);
    margin: 50px 0;
}

.estimator-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.form-group {
    flex: 1 1 180px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1d4e3f;
    display: block;
    margin-bottom: 6px;
}

.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #dbece3;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
}

.estimated-price {
    background: #0c4e3f;
    color: white;
    border-radius: 60px;
    padding: 12px 36px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    min-width: 200px;
}

.estimated-price span {
    font-size: 1rem;
    font-weight: 400;
    display: block;
    color: #cce3da;
}

/* ===== CONTACT PAGE ===== */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #ecf7f2;
    border-radius: 40px;
    padding: 48px 40px;
    margin: 40px 0;
}

.contact-info {
    flex: 1 1 260px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #07382c;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
}

.contact-detail i {
    font-size: 1.5rem;
    background: #0c4e3f;
    color: white;
    padding: 14px;
    border-radius: 50%;
    width: 56px;
    text-align: center;
}

.booking-form {
    flex: 2 1 360px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #c2ddd0;
    border-radius: 40px;
    font-size: 0.95rem;
    font-family: "Inter", sans-serif;
}

.booking-form textarea {
    grid-column: span 2;
    border-radius: 28px;
    resize: vertical;
}

.booking-form button {
    grid-column: span 2;
    background: #0c4e3f;
    color: white;
    border: none;
    padding: 16px;
    font-weight: 700;
    border-radius: 60px;
    font-size: 1.2rem;
    cursor: pointer;
}

.booking-form button:hover {
    background: #0f6b55;
}

.map-placeholder {
    background: #d0e2d9;
    height: 250px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4e3f;
    font-size: 1.2rem;
    margin: 30px 0;
}

/* ===== PAGE TEMPLATE ===== */
.page-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0b3027;
    margin: 40px 0 20px;
}

.page-content {
    background: white;
    border-radius: 40px;
    padding: 48px;
    box-shadow: 0 15px 30px -8px rgba(0, 50, 30, 0.1);
    margin: 40px 0;
}

.page-content h2 {
    font-size: 2rem;
    color: #0b3027;
    margin: 30px 0 20px;
}

.page-content h3 {
    font-size: 1.5rem;
    color: #1d4e3f;
    margin: 25px 0 15px;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    /* header */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px 0;
        background: white;
        border-top: 1px solid #e0f0e9;
        margin-top: 12px;
    }

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

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    /* hero */
    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-grid {
        flex-direction: column;
        text-align: center;
    }

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

    /* sections */
    .section-title {
        font-size: 1.8rem;
    }

    /* estimator */
    .estimator-form {
        flex-direction: column;
    }

    .estimated-price {
        width: 100%;
    }

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

    .booking-form textarea,
    .booking-form button {
        grid-column: span 1;
    }

    /* blog */
    .blog-header h1 {
        font-size: 2rem;
    }

    .featured-image {
        height: 250px;
        font-size: 3rem;
    }

    /* page template */
    .page-title {
        font-size: 2rem;
    }

    .page-content {
        padding: 24px;
    }
}
