/* Home Page Specific Styles */

/* Hero Layout for Home Page Only */
.hero-home {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (min-width: 1025px) {
    .hero-home {
        height: 100vh;
        padding: 0;
    }

    .hero-home .container {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 60px;
        align-items: center;
        width: 100%;
    }

    .hero-home .hero-content {
        text-align: left;
        align-items: flex-start;
    }
}

@media (max-width: 1024px) {
    .hero-home .container {
        grid-template-columns: 1fr;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .hero-home .hero-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .booking-form-wrapper {
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
    }
}

/* Booking Form */
.booking-form-wrapper {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(20px);
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: slideLeft 1s ease forwards;
}

.booking-form h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--text-gray);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
}