/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.top-bar {
    background-color: #ffcc00;
    padding: 10px 0;
    color: #000;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 18px;
}

/* Navigation */
nav {
    background-color: #000;
    padding: 5px 0;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.nav-menu a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffcc00;
}

.nav-menu li:nth-child(2) a {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    background-image: url('../../uploads/tdmbg.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Booking Form */
.booking-form {
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
}

.tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.tab.active {
    background-color: #ffcc00;
    color: #000;
}

.tab:not(.active) {
    background-color: #f9f9f9;
    color: #333;
}

.tab i {
    margin-right: 5px;
}

/* Form Content */
.form-content {
    padding: 20px;
}

/* Airport Form */
form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group label span {
    font-weight: normal;
    color: #999;
    font-size: 0.9em;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.notes {
    flex: 2;
}

.notes-with-button {
    display: flex;
    gap: 10px;
    align-items: center;
}

.notes-with-button input {
    flex: 1;
}

.btn-next {
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.btn-next:hover {
    background-color: #e6b800;
}

/* Car Rental Options */
.car-options {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.car-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.car-option h3 {
    margin-bottom: 10px;
    font-size: 18px;
    text-align: center;
}

.car-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
}

.passengers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.car-image {
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.btn-select {
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #e6b800;
}

/* Hero Text */
.hero-text {
    text-align: center;
    color: #fff;
    margin-top: 50px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.1rem;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #ffcc00;
    color: #000;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    /* Add spacing between nav and main content on mobile without white gap */
    .hero {
        padding-top: 40px; /* Add padding instead of margin to maintain background */
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .booking-form {
        max-width: 90%;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .car-options {
        flex-direction: column;
    }
}
