body, html {
    background-color: #000000 !important;
    color: #fff;
    font-family: 'Anton', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 2rem 2rem;
    min-height: calc(100vh - 120px);
    box-sizing: border-box;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #FD5A46;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.booking-header p {
    font-size: 1.2rem;
    color: #bbb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.booking-form {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h2 {
    color: #FD5A46;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #bbb;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #444;
    background-color: #222;
    color: #eee;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FD5A46;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.phone-input-group {
    display: flex;
    align-items: center;
    border: 2px solid #444;
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.phone-input-group:focus-within {
    border-color: #FD5A46;
    box-shadow: 0 0 0 3px rgba(253, 90, 70, 0.1);
}

.country-selector {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
    border-right: 2px solid #444;
    min-width: 90px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-selector:hover {
    background: linear-gradient(135deg, #444 0%, #3a3a3a 100%);
}

.country-code {
    background: transparent;
    color: #fff;
    padding: 0.9rem 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.country-code::after {
    content: '▼';
    font-size: 0.7rem;
    color: #bbb;
    transition: transform 0.3s ease;
    margin-left: 0.2rem;
}

.country-selector:hover .country-code::after {
    transform: rotate(180deg);
    color: #FD5A46;
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: -2px;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border: 2px solid #444;
    border-radius: 12px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    min-width: 100px;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-selector:hover .country-dropdown {
    display: block;
}

.country-dropdown option {
    padding: 0.6rem 1rem;
    color: #eee;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 0.1rem 0.3rem;
    font-weight: 400;
}

.country-dropdown option:hover {
    background: linear-gradient(135deg, #FD5A46 0%, #e55039 100%);
    color: white;
    transform: translateX(3px);
}

.country-dropdown option:checked {
    background: linear-gradient(135deg, #FD5A46 0%, #e55039 100%);
    color: white;
    font-weight: 600;
}

.phone-input-group input {
    border: none;
    background: transparent;
    flex: 1;
    margin: 0;
    border-radius: 0;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    color: #eee;
    transition: all 0.3s ease;
}

.phone-input-group input:focus {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: rgba(253, 90, 70, 0.05);
}

.phone-input-group input::placeholder {
    color: #888;
    transition: color 0.3s ease;
}

.phone-input-group input:focus::placeholder {
    color: #bbb;
}

/* Enhanced scrollbar for dropdown */
.country-dropdown::-webkit-scrollbar {
    width: 8px;
}

.country-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 0.5rem;
}

.country-dropdown::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FD5A46 0%, #e55039 100%);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.country-dropdown::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e55039 0%, #d44528 100%);
    transform: scale(1.1);
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
    .booking-container {
        padding: 100px 1rem 1rem;
    }

    .booking-header h1 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .country-selector {
        min-width: 80px;
    }
    
    .country-code {
        padding: 0.8rem 0.6rem;
        font-size: 0.9rem;
        min-width: 50px;
    }
    
    .country-dropdown {
        min-width: 90px;
        max-height: 200px;
    }
    
    .country-dropdown option {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .booking-header h1 {
        font-size: 2rem;
    }

    .booking-form {
        padding: 1rem;
    }

    .submit-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .country-selector {
        min-width: 80px;
    }
    
    .country-code {
        padding: 0.8rem 0.6rem;
        font-size: 0.9rem;
        min-width: 50px;
    }
    
    .country-dropdown {
        min-width: 90px;
        max-height: 200px;
    }
    
    .country-dropdown option {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}

.budget-currency-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.currency-dropdown {
    padding: 0.8rem 1rem;
    border: 1px solid #444;
    background-color: #222;
    color: #eee;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transition: border-color 0.3s;
}
.currency-dropdown:focus {
    border-color: #FD5A46;
    outline: none;
}
.budget-notice {
    color: #FD5A46;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Submit Button Enhancements */
.submit-button {
    position: relative;
    overflow: hidden;
}

.button-text, .button-loading {
    transition: opacity 0.3s ease;
}

.button-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.payment-notice-footer {
    margin-top: 1rem;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
}

.payment-notice-footer p {
    margin: 0;
    color: #90EE90;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Focus states for accessibility */
.country-selector:focus-within {
    outline: none;
    box-shadow: 0 0 0 3px rgba(253, 90, 70, 0.2);
}

.country-dropdown:focus {
    outline: none;
}

/* Smooth transitions for all interactive elements */
.country-selector *,
.phone-input-group * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.submit-button {
    background-color: #FD5A46;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Anton', sans-serif;
}

.submit-button:hover {
    background-color: #e55039;
}

.form-note {
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.success-message {
    background-color: #1a1a1a;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.success-message h2 {
    color: #FD5A46;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.success-message p {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

.contact-info {
    background-color: rgba(253, 90, 70, 0.1);
    border: 1px solid rgba(253, 90, 70, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #eee;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.contact-info p:first-child {
    color: #FD5A46;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.back-home {
    display: inline-block;
    background-color: #FD5A46;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    font-family: 'Anton', sans-serif;
}

.back-home:hover {
    background-color: #e55039;
}

.hidden {
    display: none !important;
}

@media (max-width: 700px) {
    .country-selector {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0.7rem 0.5rem;
        gap: 0.2rem;
    }
    .country-code {
        font-size: 1rem;
        padding: 0.6rem 0.7rem;
        margin: 0.1rem 0.1rem;
    }
} 