.hero-section {
    position: relative;
    height: var(--hero-height);
    padding-top: 80px;
    /* Header space */
    display: flex;
    align-items: center;
    background-color: var(--primary);
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(7, 21, 39, 0.4) 0%, rgba(7, 21, 39, 0.8) 100%);
    z-index: 1;
}

.trust-badges {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
    opacity: 0;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    max-width: 600px;
    margin-top: 200px;
}

.hero-title {
    color: var(--bg-white);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 45px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Booking Box */
.floating-booking {
    background: rgba(255, 255, 255, 0.85);
    /* Slightly darker white for contrast */
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 40px;
    border-radius: 24px;
    /* More rounded */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    border: none;
    width: 480px;
    /* Slightly wider */
    position: absolute;
    right: calc((100% - var(--container-width)) / 2 + 20px);
    top: 50%;
    transform: translateY(-50%);
    margin-top: 40px;
    z-index: 10;
}

.floating-booking h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Custom internal inputs for the floating box for an elegant look */
.floating-booking .form-control,
.floating-booking .form-select {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.floating-booking .form-control:focus,
.floating-booking .form-select:focus {
    background-color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
    outline: none;
}

.floating-booking .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Global Form Elements moved to base.css */

.btn-floating-submit {
    width: 100%;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #0a4ebd 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-floating-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(13, 110, 253, 0.4);
    background: linear-gradient(135deg, #0a4ebd 0%, var(--primary) 100%);
}

/* Pricing Results - Hidden initially */
.pricing-results-container {
    display: none;
    background: var(--bg-white);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.price-card.popular::before {
    content: "En Çok Tercih Edilen";
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
}

.car-img {
    height: 120px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.price-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.car-specs {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
}

.price-amount span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-gray);
}