.event-form-section {
    background: var(--bg-gray-4);
    padding: 20px;
}

.modal .event-form-section {
    margin-top: 32px;
    margin-bottom: 24px;
}

.event-form-section .event-form {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header .title {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--form-accent-color);
    margin: 0 0 32px 0;
}

.form-header .subtitle {
    color: #666;
    line-height: 1.6;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 60px;
}

.event-form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field--title {
    width: 15%;
}

.form-field--name {
    width: calc(50% - 80px);
}

.form-field--phone {
    width: 35%;
}

.form-field--date,
.form-field--number {
    width: 20%;
}

.form-field--button {
    width: calc(25% - 110px);
}

.modal .form-field--phone {
    width: 30%;
}

.modal .form-field--button {
    width: calc(30% - 110px);
}

.form-field label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--form-text-color);
    font-weight: 500;
}

.form-field .toggle-switch label {
    margin-top: 8px;
    margin-bottom: 0px;
}

.form-field select,
.form-field input[type="text"],
.form-field input[type="number"] {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 1rem;
    box-sizing: border-box;
    font-weight: 400;
    background: transparent;
}

.form-field .input-wrapper {
    position: relative;
    width: 100%;
    height: 52px;
}

.form-field .input-wrapper .input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #999;
}

.form-field .input-wrapper input {
    padding-left: 50px !important;
}

.submit-btn {
    width: 100%;
    height: 50px;
    background-color: var(--form-accent-color);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #000;
}

/* === SỬA LẠI NÚT GẠT TOGGLE SWITCH === */
.form-field--toggle .toggle-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 40px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray);
    border: 1px solid var(--gray);
    border-radius: 25px;
    transition: .4s;
}

.toggle-switch .slider:before {
    position: absolute;
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #fff;
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    transition: .4s;
}

.toggle-switch .slider:after {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #aaa;
}

.toggle-switch input:checked + .slider {
    background-color: var(--form-accent-color);
}

.toggle-switch input:checked + .slider:before {
    transform: translateX(38px);
    content: "";
}

.toggle-switch input:checked + .slider:after {
    content: "";
    left: 15px;
    right: auto;
    color: #aaa;
}

@media (max-width: 992px) {
    .form-field--phone {
        width: 35%;
    }

    .form-field--date {
        width: 30%;
    }

    .form-field--number {
        width: calc(35% - 80px)
    }

    .form-field--button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .event-form-section .event-form {
        padding: 0 4px;
    }

    .form-field {
        width: 100% !important;
    }

    .form-header .title {
        font-size: 1.6rem;
    }

    .form-header .subtitle {
        font-size: 0.78rem;
        padding: 0 20px;
    }

    .form-field label {
        font-weight: 500;
        font-size: 0.8rem;
        letter-spacing: 0.2px;
    }
}
