/* Form Section Styles */
.form-section-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.form-section-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.form-section-left {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.form-section-title-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-section-title {
    padding: 30px 40px;
    transform: rotate(-2deg);
    outline: 7px solid #FC0606;
    outline-offset: -3.5px;
    color: #FC0606;
    font-size: 44px;
    font-family: 'Stardos Stencil', cursive;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 52px;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
}

.form-section-hours {
    width: 100%;
    max-width: 394px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    /* min-height: 235px; */
}

.form-section-hours-label {
    transform: rotate(-90deg);
    transform-origin: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 28px;
    white-space: nowrap;
}

.form-section-hours-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.form-section-day {
    color: white;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 24px;
}

.form-section-time {
    color: white;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 25px;
}

.form-section-right {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.form-section-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.form-section-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.form-section-message-group {
    flex: 1;
    min-height: 180px;
}

.form-section-label {
    color: white;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 24px;
    width: 100%;
}

.form-section-input,
.form-section-textarea {
    width: 100%;
    min-width: 240px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    outline: 1px solid #E7E7E7;
    outline-offset: -0.5px;
    border: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.form-section-textarea {
    min-height: 130px;
    resize: vertical;
    flex: 1;
}

.form-section-submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.form-section-submit-btn {
    padding: 16px 18px;
    background: linear-gradient(0deg, white 0%, #ECECEC 50%, white 50%, #ECECEC 100%);
    color: #6D6D6D;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 16px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-section-submit-btn:hover {
    background: linear-gradient(0deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 50%, #e0e0e0 100%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media screen and (max-width: 1100px) {
    .form-section-content {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .form-section-content {
        flex-direction: column;
    }

    .form-section-left,
    .form-section-right {
        max-width: 100%;
    }

    .form-section-title {
        font-size: 38px;
        padding: 25px 30px;
    }
}

@media screen and (max-width: 480px) {
    .form-section-title {
        font-size: 32px;
        line-height: 40px;
        padding: 20px 25px;
    }

    .form-section-hours {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-section-hours-label {
        transform: none;
        margin: auto;
        margin-bottom: 15px;
    }

    .form-section-right {
        padding: 30px 20px;
    }

    .form-section-hours-details {

        width: 80%;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
}