/* Main container styles */
.andalusia-booking-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* Booking tabs styles */
.booking-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.booking-tab {
    padding: 12px 24px;
    border: none;
    background-color: #f0f0f0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
    white-space: nowrap;
}

.booking-tab.active {
    background-color: #ffd700;
    color: #000;
}

/* Package selection styles */
.package-selection,
.season-selection {
    margin-bottom: 30px;
}

h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.package-types,
.season-types {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.package-type,
.season-type {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.package-type.active,
.season-type.active {
    border-color: #ffd700;
    background-color: #fff9e6;
}

.package-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.package-price {
    color: #666;
    font-size: 14px;
}

/* Travelers selection styles */
.travelers-selection {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 30px;
}

.traveler-group {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.traveler-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

.counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter button {
    width: 36px;
    height: 36px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.counter button:hover {
    background-color: #f0f0f0;
}

.counter input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
}

/* Submit button styles */
.submit-booking {
    width: 100%;
    padding: 15px;
    background-color: #0088cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-booking:hover {
    background-color: #006699;
}

/* Responsive styles */
@media (max-width: 768px) {
    .andalusia-booking-form {
        padding: 15px;
    }

    .booking-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .booking-tab {
        flex: 0 0 auto;
    }

    .package-types,
    .season-types {
        grid-template-columns: 1fr;
    }

    .travelers-selection {
        grid-template-columns: 1fr;
    }

    .counter button {
        width: 32px;
        height: 32px;
    }
}
