/*
Theme Name: Michel Rent a Car
Theme URI: https://michelrentacar.com
Author: Michel Rent a Car Lebanon
Author URI: https://michelrentacar.com
Description: Premium car rental WordPress theme for Michel Rent a Car - Lebanon's trusted car rental service with 3 locations.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: michel-rentacar
Tags: car-rental, business, responsive, custom-menu, featured-images, full-width-template
*/

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

:root {
    --red:        #D0021B;
    --red-dark:   #A80015;
    --navy:       #0A1F5C;
    --navy-light: #1A3080;
    --white:      #FFFFFF;
    --off-white:  #F8F8F8;
    --gray-light: #EEEEEE;
    --gray:       #999999;
    --gray-dark:  #444444;
    --black:      #111111;

    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;

    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
    --shadow-lg:  0 16px 48px rgba(0,0,0,0.18);

    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:     6px;
    --radius-lg:  12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gray-dark);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray);
    margin-top: 14px;
    max-width: 560px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(208,2,27,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
}

/* =============================================
   HEADER / NAVIGATION
============================================= */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.header-top-bar {
    background: var(--red);
    padding: 8px 0;
}

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

.top-bar-contact {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.92);
}

.top-bar-contact a { color: inherit; }
.top-bar-contact a:hover { color: var(--white); }

.top-bar-contact span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    transition: color var(--transition);
}
.top-bar-social a:hover { color: var(--white); }

.header-main {
    background: rgba(10, 31, 92, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-michel {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--white);
    letter-spacing: 1px;
}

/* Navigation */
#main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

#main-nav ul li a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

#main-nav ul li a:hover,
#main-nav ul li.current-menu-item > a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

#main-nav ul li.menu-cta a {
    background: var(--red);
    color: var(--white);
    padding: 10px 20px;
}

#main-nav ul li.menu-cta a:hover {
    background: var(--red-dark);
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* =============================================
   HERO SECTION
============================================= */
#hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,31,92,0.9) 0%,
        rgba(10,31,92,0.7) 50%,
        rgba(208,2,27,0.3) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.015) 40px,
            rgba(255,255,255,0.015) 80px
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(208,2,27,0.2);
    border: 1px solid rgba(208,2,27,0.4);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b7a;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 900;
    color: var(--white);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-title .accent { color: var(--red); }

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Booking Widget */
.hero-booking {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-light);
}

.booking-form .form-group {
    margin-bottom: 16px;
}

.booking-form label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--gray-dark);
    transition: border-color var(--transition);
    background: var(--white);
    appearance: none;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--navy);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    font-size: 16px;
    padding: 16px;
}

/* =============================================
   FLEET SECTION
============================================= */
#fleet {
    padding: 100px 0;
    background: var(--off-white);
}

.section-header {
    margin-bottom: 56px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.car-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--gray-light);
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.car-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--gray-light);
}

.car-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card:hover .car-card-image img {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.car-card-body {
    padding: 24px;
}

.car-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.car-category {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.car-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-dark);
}

.spec-icon {
    color: var(--navy);
    font-size: 14px;
}

.car-pricing {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.price-from {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.price-period {
    font-size: 13px;
    color: var(--gray);
    margin-left: 4px;
}

/* Filter tabs */
.fleet-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

/* =============================================
   WHY CHOOSE US
============================================= */
#why-us {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

#why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(208,2,27,0.08);
}

#why-us .section-title { color: var(--white); }
#why-us .section-subtitle { color: rgba(255,255,255,0.6); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.feature-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(208,2,27,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--red);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* =============================================
   LOCATIONS SECTION
============================================= */
#locations {
    padding: 100px 0;
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.location-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.location-map-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
}

.location-map-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.location-number {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    z-index: 2;
}

.location-body {
    padding: 28px;
}

.location-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.location-area {
    font-size: 13px;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-dark);
}

.location-detail-icon {
    color: var(--navy);
    margin-top: 2px;
    flex-shrink: 0;
}

.location-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    border: 2px solid var(--red);
    padding: 8px 18px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.location-directions:hover {
    background: var(--red);
    color: var(--white);
}

/* =============================================
   TESTIMONIALS
============================================= */
#testimonials {
    padding: 100px 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 56px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--red);
    opacity: 0.15;
    line-height: 1;
}

.stars {
    color: #F5A623;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
}

.author-location {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   CTA BANNER
============================================= */
#cta-banner {
    padding: 80px 0;
    background: var(--red);
    position: relative;
    overflow: hidden;
}

#cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

#cta-banner::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

#cta-banner .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content .cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 8px;
}

.cta-content .cta-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
}

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-white {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* =============================================
   FOOTER
============================================= */
#site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-michel { font-size: 24px; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 24px;
    color: rgba(255,255,255,0.55);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--red);
    color: var(--white);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    font-size: 12px;
    opacity: 0;
    transform: translateX(-4px);
    transition: var(--transition);
}

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

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact-icon {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    transition: color var(--transition);
}

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

/* =============================================
   SINGLE CAR PAGE
============================================= */
.car-single-hero {
    background: var(--navy);
    padding: 140px 0 80px;
    position: relative;
}

.car-single-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.car-single-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.car-single-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.car-single-info h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.car-single-price-box {
    background: var(--red);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}

.car-specs-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.spec-full-item {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =============================================
   ABOUT PAGE
============================================= */
.about-hero {
    background: var(--navy);
    padding: 140px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 90px);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
}

.about-story {
    padding: 100px 0;
}

.about-story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: var(--red);
    border-radius: var(--radius);
    z-index: -1;
}

/* =============================================
   CONTACT PAGE
============================================= */
.contact-section {
    padding: 100px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 15px;
    background: var(--white);
    transition: border-color var(--transition);
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-content .container {
        grid-template-columns: 1fr;
    }

    .hero-booking {
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    #main-nav { display: none; }
    #main-nav.open { display: block; }
    #main-nav ul { flex-direction: column; padding: 16px 0; }
    .nav-toggle { display: flex; }

    .header-main .container { flex-wrap: wrap; }

    .hero-stats { gap: 24px; }

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

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

    .about-story .container,
    .contact-layout,
    .car-single-layout { grid-template-columns: 1fr; }

    #cta-banner .container { text-align: center; justify-content: center; }

    .footer-bottom { justify-content: center; text-align: center; }

    .top-bar-contact { font-size: 12px; gap: 12px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .fleet-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; }
}

/* =============================================
   UTILITY CLASSES
============================================= */
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 14px auto 0; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

.hidden { display: none; }

/* Fade-in animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
