/*
Theme Name: Car Rental Pro
Theme URI: https://example.com/car-rental
Author: Car Rental Team
Author URI: https://example.com
Description: A professional WordPress theme for car rental services with modern dark design
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: car-rental
*/

/* ========================================
   MODERN DARK THEME - LUXURY CAR RENTAL
   ======================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Color Palette */
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1f1f1f;

    /* Gold Accent Colors */
    --accent-gold: #D4A437;
    --accent-gold-light: #E8C679;
    --accent-gold-dark: #B8901F;

    /* Text Colors */
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-dark: rgba(255, 255, 255, 0.4);

    /* Border Colors */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(212, 164, 55, 0.3);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-gold);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 164, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: #000;
}

.btn-outline-light {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-light);
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: #000;
    border-color: var(--text-white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Section Headers */
.section-subtitle {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 50px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center .section-description {
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
}

.site-title, .custom-logo-link {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 1px;
}

.site-title:hover {
    color: var(--accent-gold);
}

.custom-logo {
    max-height: 50px;
    width: auto;
}

/* Enhanced Logo */
.logo-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2px;
}

.logo-subtitle {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-top: 2px;
}

/* Navigation */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-menu a:hover::before {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-whatsapp {
    width: 45px;
    height: 45px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: #000;
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: var(--accent-gold);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-main {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.5)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23141414" width="1920" height="1080"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-subtitle {
    display: block;
    color: var(--accent-gold);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent-gold);
    color: #000;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-content {
    padding-right: 40px;
}

.about-features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 164, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-gold);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    background: var(--bg-tertiary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 164, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-gold);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-gold-light);
    padding-left: 5px;
}

/* ========================================
   BOOKING SECTION
   ======================================== */

.book-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(212, 164, 55, 0.1) 0%, rgba(10, 10, 10, 0.5) 100%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.book-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.book-wrapper h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.book-wrapper > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.booking-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 50px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--bg-tertiary);
}

.form-group input::placeholder {
    color: var(--text-dark);
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    min-height: 150px;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--bg-tertiary);
}

.form-group textarea::placeholder {
    color: var(--text-dark);
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-page {
    padding: var(--section-padding);
    background: var(--bg-primary);
    min-height: 80vh;
}

.about-page .container {
    max-width: 1000px;
}

.about-page .about-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 60px;
}

.about-page h1 {
    text-align: center;
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-page .about-text {
    color: var(--text-light);
    line-height: 1.8;
}

.about-page .about-text h2 {
    color: var(--text-white);
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
}

.about-page .about-text h2:first-of-type {
    margin-top: 2rem;
}

.about-page .about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-page .about-text ul {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.about-page .about-text ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-page .about-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.3rem;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 164, 55, 0.1);
    border-radius: 50%;
}

.about-page .about-text ul li strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.about-page .about-text a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.about-page .about-text a:hover {
    color: var(--accent-gold-light);
    border-bottom-color: var(--accent-gold);
}

.about-page img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    margin: 2rem 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-page {
    padding: var(--section-padding);
    background: var(--bg-primary);
    min-height: 80vh;
}

.contact-page .container {
    max-width: 900px;
}

.contact-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 60px;
}

.contact-content h1 {
    text-align: center;
    color: var(--text-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 2rem;
}

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

.submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: var(--accent-gold);
    color: #000;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 164, 55, 0.3);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #25D366;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* ========================================
   CAR ARCHIVE / CATEGORY PAGES
   ======================================== */

.cars-archive {
    padding: var(--section-padding);
    background: var(--bg-primary);
    min-height: 80vh;
}

.archive-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.archive-header h1 {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.archive-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.car-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.car-card .car-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--bg-tertiary);
    transition: transform 0.6s ease;
}

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

.car-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.car-info h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.car-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.car-info strong {
    color: var(--accent-gold);
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0;
}

.spec-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
    white-space: nowrap;
}

.car-price {
    margin-top: auto;
    padding-top: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    border-top: 1px solid var(--border-light);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

/* ========================================
   SINGLE CAR PAGE - REDESIGNED
   ======================================== */

/* Hero Section */
.single-car-hero {
    position: relative;
    background: var(--bg-primary);
}

.car-hero-image {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-car-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-car-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 0 40px;
    z-index: 2;
}

.car-category-badges {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.category-badge:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 164, 55, 0.3);
}

.hero-car-title {
    color: var(--text-white);
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-car-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.price-amount {
    color: var(--accent-gold);
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Car Details Section */
.car-details-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.car-content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.car-main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Quick Specs */
.quick-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.quick-spec-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.quick-spec-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.quick-spec-item svg {
    color: var(--accent-gold);
    width: 32px;
    height: 32px;
}

.quick-spec-item .spec-label {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.quick-spec-item .spec-value {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Full Specifications */
.full-specifications {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
}

.full-specifications h2 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-gold);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.spec-item .spec-label {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.spec-item .spec-value {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Description */
.car-description {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
}

.car-description h2 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.car-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* Booking Card (Sidebar) */
.car-sidebar {
    position: relative;
}

.booking-card {
    position: sticky;
    top: 100px;
    background: var(--bg-card);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    overflow: hidden;
}

.booking-card-header {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    padding: 30px;
    text-align: center;
}

.booking-card-header h3 {
    color: #000;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.booking-card-header p {
    color: rgba(0,0,0,0.8);
    font-size: 1rem;
    margin: 0;
}

.booking-card-body {
    padding: 30px;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-feature svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.booking-feature span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.book-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: #25D366;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.book-now-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-alternative {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.contact-alternative p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.phone-link {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: var(--accent-gold-light);
}

/* ========================================
   FLEET SECTION
   ======================================== */

.fleet-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.fleet-carousel {
    position: relative;
}

.carousel-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.fleet-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: #000;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet-content {
    padding: 30px;
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.fleet-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.fleet-price {
    text-align: right;
}

.price-amount {
    display: block;
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 5px;
}

.fleet-specs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.fleet-specs .spec {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fleet-specs .spec i {
    font-style: normal;
}

.fleet-actions {
    display: flex;
    gap: 15px;
}

.fleet-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.85rem;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

/* ========================================
   CAR TYPES SECTION
   ======================================== */

.car-types-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.car-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.type-card {
    position: relative;
    height: 350px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
}

.type-card:hover {
    transform: scale(1.03);
    border-color: var(--accent-gold);
}

.type-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 1;
}

.type-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
}

.type-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.type-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.type-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(212, 164, 55, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.type-card:hover .type-arrow {
    background: var(--accent-gold);
    color: #000;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: #000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.step-icon {
    font-size: 4rem;
    margin: 30px 0 20px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   VIDEO SECTION
   ======================================== */

.video-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.video-wrapper {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, rgba(212, 164, 55, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%),
                var(--bg-card);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 30%, rgba(10, 10, 10, 0.7) 100%);
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 15px;
}

.video-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.testimonial-quote {
    font-size: 5rem;
    color: var(--accent-gold);
    line-height: 1;
    opacity: 0.3;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    color: var(--text-white);
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   NEWS SECTION
   ======================================== */

.news-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-gold);
    color: #000;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-white);
}

.news-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.news-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--accent-gold-light);
    padding-left: 5px;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(212, 164, 55, 0.15) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BRANDS SECTION
   ======================================== */

.brands-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}

.brand-item {
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.brand-item:hover {
    opacity: 1;
}

.brand-item span {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: var(--font-secondary);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: var(--bg-primary);
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(212, 164, 55, 0.1) 0%, rgba(10, 10, 10, 0.5) 100%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 60px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.newsletter-text p {
    color: var(--text-muted);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--bg-tertiary);
}

.newsletter-form input::placeholder {
    color: var(--text-dark);
}

/* Footer Main */
.footer-main {
    padding: 80px 0 50px;
    background: var(--bg-secondary);
}

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

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.brand-tagline {
    color: var(--accent-gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--bg-primary);
    padding: 25px 0;
    border-top: 1px solid var(--border-light);
}

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

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-bottom-links span {
    color: var(--text-dark);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding-right: 0;
    }

    .services-grid,
    .process-grid,
    .testimonials-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .car-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    header {
        padding: 15px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        max-width: 90%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 30px 20px;
        border-radius: 15px 0 0 15px;
        border: 1px solid var(--border-light);
        border-right: none;
        flex-direction: column;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-main {
        min-height: 600px;
    }

    .services-grid,
    .process-grid,
    .car-types-grid,
    .testimonials-grid,
    .news-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .fleet-actions {
        flex-direction: column;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        padding: 40px 30px;
    }

    .contact-content h1 {
        font-size: 2rem;
    }

    .about-page .about-content {
        padding: 40px 30px;
    }

    .about-page h1 {
        font-size: 2.2rem;
    }

    .about-page .about-text h2 {
        font-size: 1.6rem;
    }

    .car-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .archive-header h1 {
        font-size: 2.2rem;
    }

    .car-hero-image {
        height: 50vh;
        min-height: 400px;
    }

    .hero-car-title {
        font-size: 2.5rem;
    }

    .price-amount {
        font-size: 2.2rem;
    }

    .car-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-card {
        position: static;
    }

    .quick-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .carousel-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding: 30px 20px;
    }

    .contact-content h1 {
        font-size: 1.75rem;
    }

    .about-page .about-content {
        padding: 30px 20px;
    }

    .about-page h1 {
        font-size: 1.8rem;
    }

    .about-page .about-text h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    .about-page .about-text p {
        font-size: 1rem;
    }

    .about-page .about-text ul li {
        font-size: 1rem;
        padding-left: 30px;
    }

    .archive-header h1 {
        font-size: 1.8rem;
    }

    .archive-header {
        padding: 20px 0;
        margin-bottom: 40px;
    }

    .car-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .car-card .car-image {
        height: 220px;
    }

    .car-info {
        padding: 20px;
    }

    .car-info h3 {
        font-size: 1.3rem;
    }

    .car-price {
        font-size: 1.5rem;
    }

    .car-hero-image {
        height: 40vh;
        min-height: 350px;
    }

    .hero-car-info {
        padding: 40px 0 30px;
    }

    .hero-car-title {
        font-size: 2rem;
    }

    .hero-car-price {
        flex-wrap: wrap;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .price-period {
        font-size: 1rem;
    }

    .car-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .quick-specs {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quick-spec-item {
        padding: 20px;
    }

    .full-specifications {
        padding: 30px 20px;
    }

    .full-specifications h2 {
        font-size: 1.5rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .spec-item {
        padding: 15px;
    }

    .car-description {
        padding: 30px 20px;
    }

    .car-description h2 {
        font-size: 1.5rem;
    }

    .booking-card-header {
        padding: 25px 20px;
    }

    .booking-card-header h3 {
        font-size: 1.5rem;
    }

    .booking-card-body {
        padding: 25px 20px;
    }

    .book-now-btn {
        font-size: 1rem;
        padding: 16px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
