/* --- VARIABLES --- */
:root {
    --primary-color: #1a1a1a; /* Dark premium */
    --primary-dark: #000000;
    --accent-color: #d4af37; /* Gold / Orange premium */
    --accent-hover: #b5952f;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f4f7fb;
    --white: #ffffff;
    --border-color: #e1e5ee;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.3);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-accent:hover {
    background-color: #e66e00;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 123, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 14px 24px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* --- TOPBAR --- */
.topbar {
    background-color: var(--white);
    color: var(--text-color);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left span {
    margin-right: 20px;
    font-weight: 500;
}

.topbar-left i {
    margin-right: 5px;
    color: var(--accent-color);
}

.topbar-right a {
    color: var(--text-color) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.topbar-right a:hover {
    color: var(--accent-color) !important;
}

/* --- NAVBAR --- */
.navbar {
    background-color: var(--primary-dark); /* Black background */
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 110px;
    padding: 10px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-viral {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-33 {
    color: var(--accent-color);
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 10px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* --- HERO SECTION & SEARCH WIDGET --- */
.hero {
    position: relative;
    background: url('images/Gemini_Generated_Image_1hgaf31hgaf31hga.png') center center/cover no-repeat;
    background-color: #cccccc; /* fallback */
    min-height: 500px;
    padding: 60px 0;
    display: flex;
    align-items: center;
}

/* Subtle overlay if the image is too bright */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    padding-right: 20px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.95;
}

.search-widget {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    width: 100%;
    max-width: 520px;
    box-shadow: var(--shadow-lg);
}

.booking-form .form-row {
    margin-bottom: 20px;
}

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

.form-group label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"] {
    width: 100%;
    padding: 16px 18px; /* Increased padding */
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1.05rem; /* Increased font size */
    outline: none;
    transition: border-color 0.3s;
}



.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.dates-row {
    display: flex;
    gap: 15px;
}

.half-width {
    flex: 1;
}

.datetime-inputs {
    display: flex;
    gap: 10px;
}

.datetime-inputs input {
    flex: 1;
    min-width: 0;
}

/* --- FEATURES SECTION --- */
.features {
    background-color: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

/* --- FLEET SECTION --- */
.fleet-section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.car-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.car-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: none;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.car-image {
    position: relative;
    height: 220px;
    background-color: #f4f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.car-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.car-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-details h3 {
    font-size: 1.15rem;
    margin-bottom: 2px;
    color: #2c3e50;
    font-weight: 700;
}

.car-year {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.car-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #7f8c8d;
    font-size: 0.9rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f2f6;
}

.car-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-specs i {
    color: #005bb5;
    font-size: 1.1rem;
}

.car-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #005bb5;
}

.price-period {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

.btn-blue {
    background-color: #005bb5;
    color: white;
    border-radius: 25px;
    padding: 10px 0;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
}

.btn-blue:hover {
    background-color: #004488;
    color: white;
}

/* --- FOOTER --- */
.footer {
    background-color: #1a2233;
    color: #a0aec0;
    padding: 60px 0 0;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #a0aec0;
}

.footer-col ul a:hover {
    color: var(--white);
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #a0aec0;
}

.contact-list i {
    margin-top: 4px;
    color: var(--accent-color);
}

.footer-bottom {
    background-color: #111722;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .navbar .btn { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .dates-row {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .car-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- HORIZONTAL WIDGET --- */
.horizontal-widget {
    max-width: 1000px !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 20px !important;
}

@media (max-width: 768px) {
    .horizontal-widget .booking-form {
        flex-direction: column;
    }
    .horizontal-widget .form-group {
        width: 100%;
    }
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* --- BADGES PROMO --- */
.badge-promo {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
}
.badge-new {
    background: #27ae60;
}
