* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== LIGHT MODE COLORS (DEFAULT) ==================== */
:root {
    --primary-color: #FF9500;
    --primary-hover: #ff8500;
    --secondary-color: #1a1a2e;
    --light-bg: #fff9f0;
    --text-dark: #333333;
    --text-light: #666666;
    --border-light: #efefef;
    --white: #ffffff;
    --card-bg: #ffffff;
    --hero-gradient-start: #fff9f0;
    --hero-gradient-end: #fffbf5;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --footer-bg: #1a1a2e;
    --footer-text: #b0b0b0;
    --input-bg: #ffffff;
    --input-border: #efefef;
    --overlay-bg: rgba(0, 0, 0, 0.05);
    --pricing-header-bg: #FF9500;
    --table-hover: #fff9f0;
    --faq-active-bg: rgba(255, 149, 0, 0.1);
    --faq-hover-bg: rgba(255, 149, 0, 0.05);
}

/* ==================== DARK MODE COLORS ==================== */
[data-theme="dark"] {
    --primary-color: #FF9500;
    --primary-hover: #ffaa33;
    --secondary-color: #0d0d1a;
    --light-bg: #1a1a2e;
    --text-dark: #f0f0f0;
    --text-light: #b0b0b0;
    --border-light: #2d2d44;
    --white: #12121f;
    --card-bg: #1e1e32;
    --hero-gradient-start: #12121f;
    --hero-gradient-end: #1a1a2e;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --footer-bg: #0d0d1a;
    --footer-text: #888888;
    --input-bg: #1e1e32;
    --input-border: #3d3d5c;
    --overlay-bg: rgba(255, 255, 255, 0.02);
    --pricing-header-bg: #FF9500;
    --table-hover: #252540;
    --faq-active-bg: rgba(255, 149, 0, 0.15);
    --faq-hover-bg: rgba(255, 149, 0, 0.08);
}

/* ==================== THEME TRANSITION ==================== */
html {
    transition: background-color 0.3s ease, color 0.3s ease;
}

body,
.navbar,
.feature-card,
.service-card,
.fleet-card,
.testimonial-card,
.value-card,
.why-card,
.vehicle-card,
.info-card,
.sidebar-card,
.faq-item,
.booking-form-wrapper,
.contact-form-wrapper,
.location-card,
.pricing-table,
.stat-card {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ==================== THEME TOGGLE BUTTON ==================== */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.theme-toggle:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: rotate(20deg);
}

[data-theme="dark"] .theme-toggle {
    background-color: var(--card-bg);
    border-color: var(--border-light);
}

[data-theme="dark"] .theme-toggle:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ==================== NAVBAR ==================== */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-container a {
    text-decoration: none;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.navbar-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.navbar-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.navbar-logo p {
    font-size: 0.7rem;
    color: var(--text-light);
    position: relative;
    top: 2px;
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.navbar-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.icon-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    padding: 4rem 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
    border: 1px solid var(--border-light);
}

[data-theme="dark"] .badge {
    background-color: rgba(255, 149, 0, 0.15);
    border-color: rgba(255, 149, 0, 0.3);
}

.badge i {
    font-size: 0.8rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 149, 0, 0.3);
}

.btn-secondary {
    background-color: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 149, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

[data-theme="dark"] .btn-light {
    background-color: var(--card-bg);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
}

.btn-light-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-light-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.hero-image {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--card-bg);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 5px 20px var(--shadow-color);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ==================== FEATURES SECTION ==================== */
.features {
    background-color: var(--white);
    padding: 3rem 2rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background-color: var(--light-bg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-color);
    background-color: var(--card-bg);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}














.arrange-car-rate {
    display: flex;
    justify-content: space-evenly;
}


/* ==================== CAR CARD BASE ==================== */

.car-card-1 {
    width: 320px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 10px var(--shadow-color);
    font-family: Arial, sans-serif;
    color: var(--text-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-card-1:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px var(--shadow-color);
}

/* ==================== IMAGE ==================== */

.car-img-2 {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* ==================== TITLE ==================== */

.car-title-3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.car-title-3 span {
    font-weight: normal;
    color: var(--text-light);
    font-size: 14px;
}

/* ==================== PRICE BOX ==================== */

.price-box-4 {
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
}

/* Header */
.price-head-5 {
    background: var(--pricing-header-bg);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
}

/* Rows */
.price-row-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-top: 1px solid var(--border-light);
    font-size: 14px;
}

.price-row-1:hover {
    background: var(--table-hover);
}

.price-row-1.blue {
    background: var(--overlay-bg);
}

/* Price value */
.price-value-2 {
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
}

/* ==================== TERMS ==================== */

.terms-3 {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin: 8px 0;
}

/* ==================== BOOK BUTTON ==================== */

.book-btn-4 {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.book-btn-4:hover {
    background: var(--primary-hover);
}

/* ==================== RESPONSIVE CSS ==================== */

/* Mobile (up to 480px) */

@media (max-width: 1200px) {

    .arrange-car-rate {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

}

/* @media (max-width: 1024px) {

    .arrange-car-rate {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

} */

@media (max-width: 600px) {

    .arrange-car-rate {
        display: grid;
        grid-template-columns: 1fr;
    }

}





/* Mobile (up to 480px) */
@media (max-width: 480px) {


    .car-card-1 {
        width: 100%;
        padding: 12px;
        margin-top: 15px;
    }

    .car-title-3 {
        font-size: 18px;
        text-align: center;
    }

    .price-row-1 {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .price-value-2 {
        align-self: flex-end;
    }

    .book-btn-4 {
        font-size: 15px;
    }
}

/* Tablet (481px – 768px) */
@media (min-width: 481px) and (max-width: 768px) {

    .car-card-1 {
        width: 100%;
        margin: 1%;
        float: left;
    }
}

/* Desktop (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

    .car-card-1 {
        width: 100%;
        margin: 1%;
        float: left;
    }
}

/* Large Desktop (1025px+) */
@media (min-width: 1025px) {

    .car-card-1 {
        margin-top: 10px;
        width: 300px;
    }
}

/* ==================== CLEARFIX ==================== */

.clearfix-5::after {
    content: "";
    display: block;
    clear: both;
}
























/* ==================== FLEET SECTION ==================== */
.fleet {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.fleet-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.fleet-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.fleet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fleet-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.fleet-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.view-all-btn {
    text-align: center;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.stars {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.stars i {
    margin-right: 0.3rem;
}

.review {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.customer-name {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.customer-location {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

[data-theme="dark"] .footer {
    background-color: #0a0a14;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-desc {
    color: var(--footer-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 149, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    margin-bottom: 0.8rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-section p {
    color: var(--footer-text);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-section i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #808080;
    font-size: 0.9rem;
}

/* ==================== ABOUT PAGE STYLES ==================== */
.about-hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 1.5rem 0;
}

.about-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==================== STATS SECTION ==================== */
.stats {
    background-color: var(--white);
    padding: 3rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--hero-gradient-end) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.2);
}

[data-theme="dark"] .stat-card:hover {
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==================== OUR STORY SECTION ==================== */
.our-story {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
}

.our-story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.story-feature i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* ==================== CORE VALUES SECTION ==================== */
.core-values {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
    background-color: var(--card-bg);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-choose-us {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.why-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.why-number {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ==================== TEAM SECTION ==================== */
.team {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.member-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.member-image img {
    width: 95%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.team-member p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==================== SERVICES PAGE STYLES ==================== */
.services-hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 1.5rem 0;
}

.services-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==================== VEHICLE FLEET ==================== */
.vehicle-fleet {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.fleet-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.vehicle-card {
    background-color: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.vehicle-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicle-content {
    padding: 1.5rem;
}

.vehicle-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.vehicle-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.spec i {
    color: var(--primary-color);
    font-size: 1rem;
}

.vehicle-features h4 {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.vehicle-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.vehicle-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.vehicle-features i {
    color: var(--primary-color);
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
}

.pricing-table-container {
    max-width: 1200px;
    margin: 0 auto 2rem;
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card-bg);
}

.pricing-table thead {
    background-color: var(--pricing-header-bg);
    color: #ffffff;
}

.pricing-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    border: none;
}

.pricing-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
}

.pricing-table tbody tr:hover {
    background-color: var(--table-hover);
}

.pricing-table td:nth-child(3),
.pricing-table td:nth-child(4) {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-note {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-note p {
    margin: 0;
}

/* ==================== READY TO BOOK SECTION ==================== */
.ready-to-book {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
}

.ready-content {
    max-width: 700px;
    margin: 0 auto;
}

.ready-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.ready-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
}

.ready-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== BOOKING PAGE STYLES ==================== */
.book-hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.book-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 1.5rem 0;
}

.book-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==================== BOOKING FORM SECTION ==================== */
.booking-section {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.booking-form-wrapper {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--input-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF9500' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1rem;
}

/* ==================== BOOKING SIDEBAR ==================== */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-light);
}

.sidebar-card.urgent {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    border: none;
}

.sidebar-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card.urgent h4 {
    color: #ffffff;
}

.sidebar-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.sidebar-card.urgent p {
    color: rgba(255, 255, 255, 0.9);
}

.btn-phone,
.btn-whatsapp {
    width: 100%;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.btn-phone {
    background-color: var(--card-bg);
    color: var(--primary-color);
    border: 1px solid var(--border-light);
}

.btn-phone:hover {
    background-color: var(--light-bg);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.why-list i {
    color: var(--primary-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sidebar-card.urgent .why-list li {
    color: rgba(255, 255, 255, 0.9);
}

.sidebar-card.urgent .why-list i {
    color: #ffffff;
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 1.5rem 0;
}

.contact-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==================== CONTACT INFO CARDS ==================== */
.contact-info-section {
    background-color: var(--white);
    padding: 3rem 2rem;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.2);
    background-color: var(--card-bg);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==================== CONTACT FORM & LOCATION ==================== */
.contact-content {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
}

.contact-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--input-bg);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}

/* ==================== CONTACT SIDEBAR ==================== */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.location-card h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.map-container {
    width: 100%;
    height: 250px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-details {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.location-item {
    display: flex;
    gap: 1rem;
}

.location-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.location-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.location-item p:first-child {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.location-badge {
    display: inline-block;
    background-color: var(--card-bg);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.assistance-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 149, 0, 0.3);
}

.assistance-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.assistance-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--faq-hover-bg);
}

.faq-question h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    padding-bottom: 1.5rem;
    margin: 0;
}

.faq-item.active .faq-question {
    background-color: var(--faq-active-bg);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow-color);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 0.8rem 1rem;
    }

    .nav-link.active::after {
        display: none;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    .navbar-icons {
        gap: 0.5rem;
        order: 2;
    }

    .icon-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .theme-toggle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .cta-button {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .hero-image {
        order: -1;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .our-story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        order: -1;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .value-card,
    .why-card {
        padding: 1.8rem;
    }

    .story-features {
        gap: 1.5rem;
    }

    .services-title,
    .book-title {
        font-size: 2rem;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        font-size: 0.85rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem;
    }

    .ready-buttons {
        flex-direction: column;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 0.95rem;
    }

    .contact-content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-icon {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .map-container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar-container {
        padding: 0 0.8rem;
    }

    .navbar-logo {
        gap: 0.3rem;
    }

    .navbar-logo span {
        font-size: 1rem;
    }

    .navbar-logo p {
        display: none;
    }

    .navbar-logo i {
        font-size: 1.5rem;
    }

    .nav-menu {
        top: 60px;
    }

    .icon-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .theme-toggle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .cta-button {
        display: none;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .badge {
        font-size: 0.8rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .footer-container {
        gap: 1.5rem;
    }

    .about-hero {
        padding: 2rem 1rem;
        min-height: 300px;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.85rem;
    }

    .stats-container {
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-card p {
        font-size: 0.8rem;
    }

    .value-card,
    .why-card,
    .service-card {
        padding: 1.5rem;
    }

    .story-features {
        flex-direction: column;
        gap: 1rem;
    }

    .why-number {
        font-size: 2rem;
    }

    .member-image {
        height: 150px;
    }

    .services-hero,
    .book-hero {
        padding: 2rem 1rem;
        min-height: 250px;
    }

    .services-title,
    .book-title {
        font-size: 1.5rem;
    }

    .services-description,
    .book-description {
        font-size: 0.9rem;
    }

    .booking-form-wrapper {
        padding: 1.5rem;
    }

    .form-section h3 {
        font-size: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .vehicle-card {
        border-radius: 10px;
    }

    .vehicle-image {
        height: 150px;
    }

    .vehicle-content {
        padding: 1rem;
    }

    .vehicle-card h3 {
        font-size: 1rem;
    }

    .vehicle-specs {
        gap: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .spec {
        font-size: 0.8rem;
    }

    .vehicle-features ul {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .pricing-table {
        font-size: 0.75rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem 0.4rem;
    }

    .sidebar-card {
        padding: 1.5rem;
    }

    .sidebar-card h4 {
        font-size: 1rem;
    }

    .why-list li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .ready-content h2 {
        font-size: 1.8rem;
    }

    .ready-content p {
        font-size: 0.95rem;
    }

    .contact-hero {
        padding: 2rem 1rem;
        min-height: 250px;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-description {
        font-size: 0.9rem;
    }

    .contact-info-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .info-card h3 {
        font-size: 0.95rem;
    }

    .info-card a,
    .info-card p {
        font-size: 0.85rem;
    }

    .contact-form-wrapper {
        padding: 1.2rem;
    }

    .contact-form-wrapper h2 {
        font-size: 1.3rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .assistance-card {
        padding: 1.5rem;
    }

    .assistance-card h3 {
        font-size: 1rem;
    }

    .assistance-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .btn-phone,
    .btn-whatsapp {
        padding: 0.8rem;
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h4 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
        padding-bottom: 1rem;
    }

    .location-card h2 {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .map-container {
        height: 150px;
    }
}