/* CSS Variables - Clean Light Theme */
:root {
    --primary-blue: #E20015;
    --primary-hover: #C40012;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --dark-text: #1a1a1a;
    --grey-text: #6c757d;
    --light-border: #e9ecef;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.partner-link {
    color: var(--dark-text);
    font-weight: 600 !important;
}

/* Buttons */
.btn-primary, .btn-primary-sm {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover, .btn-primary-sm:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-primary-sm { padding: 10px 20px; font-size: 0.9rem; }

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(0, 102, 255, 0.05);
}

.full-width { width: 100%; }

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(248,249,250,0.9), rgba(233,236,239,0.9)), url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    padding: 100px 5%;
    text-align: center;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--grey-text);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

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

/* Booking Widget */
.booking-section {
    padding: 60px 5%;
    background: var(--white);
}

.relative-container {
    position: relative;
    max-width: 800px;
    margin: -100px auto 0 auto; /* Pull it up into the hero */
}

.booking-widget {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.booking-widget h2 {
    margin-bottom: 30px;
    font-weight: 700;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--grey-text);
}

.input-group input, .partner-form input, .partner-form select {
    padding: 15px;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--off-white);
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus, .partner-form input:focus, .partner-form select:focus {
    border-color: var(--primary-blue);
    background: var(--white);
}

.input-row {
    display: flex;
    gap: 20px;
}
.half { flex: 1; }

.vehicle-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.vehicle-card input { display: none; }

.card-inner {
    border: 2px solid var(--light-border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}

.vehicle-card input:checked + .card-inner {
    border-color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.05);
}

.v-title { display: block; font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; }
.v-desc { display: block; font-size: 0.8rem; color: var(--grey-text); margin-bottom: 10px; }
.v-price { display: block; font-size: 0.85rem; font-weight: 600; color: var(--primary-blue); }

.price-result {
    background: var(--off-white);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid var(--light-border);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-left { display: flex; flex-direction: column; }
.price-label { font-weight: 700; font-size: 1.1rem; }
.price-note { font-size: 0.8rem; color: var(--grey-text); }
.main-price { font-size: 1.8rem; font-weight: 800; color: var(--dark-text); }

.hidden { display: none !important; }

/* Partner Section */
.partner-section {
    background: linear-gradient(rgba(0,11,26,0.9), rgba(0,11,26,0.9)), url('images/partner.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 5%;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.partner-text h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
.partner-text p { color: #a0aec0; font-size: 1.1rem; margin-bottom: 30px; }

.check-list { list-style: none; }
.check-list li {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #e2e8f0;
}

.partner-form-wrapper {
    background: var(--white);
    color: var(--dark-text);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.partner-form-wrapper h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 5px; }
.subtitle { color: var(--grey-text); font-size: 0.95rem; margin-bottom: 30px; }

.partner-form input, .partner-form select {
    width: 100%;
    margin-bottom: 15px;
}

.file-upload {
    background: var(--off-white);
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed var(--light-border);
    margin-bottom: 15px;
}
.file-upload label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }

.terms-text { font-size: 0.75rem; color: var(--grey-text); text-align: center; margin-top: 15px; }

/* Footer */
.site-footer {
    background: #00050f;
    color: var(--white);
    padding: 60px 5% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-grid h4 { margin-bottom: 15px; font-weight: 600; }
.footer-grid p, .footer-grid a { color: #a0aec0; font-size: 0.9rem; line-height: 1.8; }
.footer-grid a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #718096;
    font-size: 0.85rem;
}

/* Animations */
.fade-in { animation: fadeIn 0.8s ease-out; }
.slide-up { animation: slideUp 0.8s ease-out forwards; opacity: 0; transform: translateY(30px); }
.slide-up.appear { opacity: 1; transform: translateY(0); }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

@media(max-width: 768px) {
    .container-split { grid-template-columns: 1fr; }
    .vehicle-options { grid-template-columns: 1fr; }
    .input-row { flex-direction: column; gap: 0; }
    .hero-content h1 { font-size: 2.5rem; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 24px; }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(-5deg);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
