/* ============================================
   GOKTURK OTO - ANA SITE CSS
   Premium Araç Kiralama - Modern Tasarım
   ============================================ */

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

/* ---- CSS VARIABLES ---- */
:root {
    --primary: #0a1628;
    --primary-light: #142238;
    --accent: #f5a623;
    --accent-light: #f7b84b;
    --accent-dark: #e08900;
    --white: #ffffff;
    --light: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.18);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

.display-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

/* ---- NAVBAR ---- */
.navbar-custom {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(245, 166, 35, 0.15);
    transition: var(--transition);
    z-index: 1000;
}

.navbar-custom.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.brand-logo {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.brand-text .brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-text .brand-sub {
    font-size: 0.65rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent) !important;
    background: rgba(245, 166, 35, 0.1);
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary) !important;
    font-weight: 700 !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 25px !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5) !important;
    color: var(--primary) !important;
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
    color: var(--primary);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline-custom:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(245, 166, 35, 0.08);
}

.btn-dark-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.btn-dark-custom:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* ---- HERO SECTION ---- */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 40%, #1a3055 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 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='%23f5a623' fill-opacity='0.03'%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");
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

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

.hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-car-img {
    width: 100%;
    max-width: 580px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

/* ---- SECTION STYLES ---- */
.section-padding { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ---- VEHICLE CARD ---- */
.vehicle-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.vehicle-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: linear-gradient(135deg, #1e3a5f, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.vehicle-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-img-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3055 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
}

.vehicle-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vehicle-card-body {
    padding: 1.5rem;
}

.vehicle-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.vehicle-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    color: var(--gray-500);
}

.meta-item i {
    color: var(--accent);
    font-size: 0.75rem;
}

.vehicle-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
}

.price-period {
    font-size: 0.82rem;
    color: var(--gray-400);
}

.vehicle-card-footer {
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid var(--gray-100);
    padding-top: 1rem;
}

.btn-card-detail {
    flex: 1;
    padding: 0.6rem;
    border-radius: 8px;
    border: 2px solid var(--gray-200);
    background: transparent;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.btn-card-detail:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-card-reserve {
    flex: 2;
    padding: 0.6rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.btn-card-reserve:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    color: var(--primary);
}

/* ---- FEATURES SECTION ---- */
.features-section {
    background: var(--gray-100);
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent);
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.2);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.3);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ---- STATS SECTION ---- */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 60%);
}

.stat-card-dark {
    text-align: center;
    padding: 2rem;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-light {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ---- CATEGORIES SECTION ---- */
.category-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.8rem 1.2rem;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--primary);
    color: var(--accent);
}

.category-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.category-count {
    font-size: 0.78rem;
    color: var(--gray-400);
}

/* ---- HOW IT WORKS ---- */
.step-card {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.35);
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.step-text {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }

.testimonial-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name { font-weight: 700; font-size: 0.95rem; color: var(--primary); }
.author-role { font-size: 0.78rem; color: var(--gray-400); }

/* ---- FAQ ---- */
.faq-section { background: var(--gray-100); }

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    transition: var(--transition);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--gray-500);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--accent);
    color: var(--primary);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

/* ---- FOOTER ---- */
footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 0;
}

.footer-brand .brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.footer-description {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-top: 1rem;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

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

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.social-links { display: flex; gap: 0.75rem; }

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ---- VEHICLE DETAIL PAGE ---- */
.vehicle-detail-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 5rem 0 3rem;
    color: white;
}

.gallery-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.gallery-main-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, var(--primary), #1a3055);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255,255,255,0.1);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.spec-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.spec-label { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 0.15rem; }
.spec-value { font-weight: 700; color: var(--primary); font-size: 0.95rem; }

.booking-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: sticky;
    top: 100px;
}

.booking-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.booking-price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.booking-price-period {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ---- RESERVATION FORM ---- */
.reservation-section {
    background: var(--gray-100);
    min-height: 80vh;
    padding: 80px 0;
}

.reservation-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-label { font-weight: 600; font-size: 0.88rem; color: var(--gray-700); margin-bottom: 0.4rem; }

.form-control-custom {
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
    background: var(--white);
}

.form-control-custom:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.12);
}

.price-calc-card {
    background: var(--primary);
    color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.price-calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.price-calc-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 800;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    color: var(--accent);
}

/* ---- FILTER SIDEBAR ---- */
.filter-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: sticky;
    top: 90px;
}

.filter-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

/* ---- AVAILABILITY INDICATOR ---- */
.availability-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.available { background: var(--success); }
.unavailable { background: var(--danger); }

/* ---- PAGE HEADER ---- */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5a623' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.breadcrumb-custom .breadcrumb-item {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
}

.breadcrumb-custom .breadcrumb-item.active { color: var(--accent); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ---- CONFIRMATION PAGE ---- */
.confirmation-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.confirmation-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--success);
}

.ref-number {
    background: var(--gray-100);
    border-radius: 10px;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--primary);
    display: inline-block;
    margin: 1rem 0;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-up { animation: fadeInUp 0.7s ease forwards; }
.animate-fade-left { animation: fadeInLeft 0.7s ease forwards; }
.animate-fade-right { animation: fadeInRight 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; }
.delay-5 { animation-delay: 0.5s; }

/* ---- UTILITY ---- */
.text-accent { color: var(--accent) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-accent { background: var(--accent) !important; }
.rounded-custom { border-radius: var(--border-radius) !important; }
.shadow-custom { box-shadow: var(--shadow) !important; }

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 50px;
    margin: 1rem auto 0;
}

.divider-left { margin: 1rem 0 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .hero-section { min-height: auto; padding: 7rem 0 4rem; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .hero-car-img { max-width: 300px; }
    .section-padding { padding: 60px 0; }
    .booking-card { position: static; }
}

/* ---- SEARCH BAR ---- */
.hero-search-bar {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.25rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-search-field {
    flex: 1;
    min-width: 140px;
}

.hero-search-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.hero-search-input {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    width: 100%;
}

.hero-search-input::placeholder { color: rgba(255,255,255,0.5); }
.hero-search-input:focus { outline: none; border-color: var(--accent); }

/* Navbar toggler */
.navbar-toggler {
    border: none;
    padding: 0.4rem;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255%2C255%2C255%2C0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}