:root {
    --primary: #0F172A;
    --accent: #10B981;
    --bg: #F8FAFC;
    --text-main: #1E293B;
    --glass: rgba(255, 255, 255, 0.9);
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER */
header {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #E2E8F0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--primary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-outline {
    border: 1px solid #E2E8F0;
    color: var(--primary);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.15), transparent 60%);
    pointer-events: none;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* BOOKING FORM CARD */
.booking-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    margin: -4rem auto 0;
    position: relative;
    z-index: 10;
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #475569;
}

.form-input {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
}

/* VALUE PROPS */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #64748B;
    font-size: 0.95rem;
}

/* FOOTER */
footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748B;
    font-size: 0.9rem;
}

/* VEHICLE SELECTOR */
.vehicle-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.vehicle-option {
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    user-select: none;
}

.vehicle-option:hover {
    border-color: #CBD5E1;
    background: #F8FAFC;
}

.vehicle-option.selected {
    border-color: var(--accent);
    background: #F0FDF4;
    color: var(--accent);
}

.vehicle-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.vehicle-label {
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
}

/* CHIPS */
.chips-container {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.chip {
    background: #F1F5F9;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    font-size: 0.8rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.chip:hover {
    background: white;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE */
.flex-cols {
    display: flex;
    gap: 1rem;
}

.flex-cols>* {
    flex: 1;
}

@media(max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .booking-card {
        padding: 1.5rem;
        margin-top: -3rem;
        border-radius: 20px;
    }

    .flex-cols {
        flex-direction: column;
        gap: 0;
    }
}

/* LUGGAGE COUNTER */
.luggage-counter {
    display: flex;
    align-items: center;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    overflow: hidden;
}

.luggage-btn {
    background: #F8FAFC;
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-main);
}

.luggage-btn:hover {
    background: #E2E8F0;
}

.luggage-value {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}