.form-section-wrap {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.form-section-bg {
    position: absolute;
    inset: 0;
    background: url('../img/form_bg.jpg') no-repeat center center/cover;
    z-index: 0;
}

.form-section-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.form-section-glass {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    padding: 40px 36px;
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
}

.form-section-glass.form-closed {
    text-align: center;
}

.form-section-glass.form-closed h1 {
    font-size: 1.35rem;
    color: #fff;
    margin: 0;
}

.form-title {
    font-size: 1.75rem;
    letter-spacing: 2px;
    color: #c00;
    margin: 0 0 24px;
    text-align: center;
}

.form-section-glass form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-section-glass label {
    width: 100%;
    text-align: left;
    margin-top: 12px;
    margin-bottom: 4px;
    font-size: 14px;
    color: #e0e0e0;
}

.form-section-glass input[type="text"],
.form-section-glass input[type="email"],
.form-section-glass input[type="tel"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

.form-section-glass input::placeholder {
    color: #888;
}

.entry-cost {
    color: #fff;
    font-size: 14px;
    margin: 0 0 16px;
}

.entry-cost a {
    color: #25D366;
}

.wa-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-left: 6px;
}

.checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    margin-top: 16px;
    justify-content: flex-start;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item input {
    width: 18px;
    height: 18px;
}

.checkbox-item label {
    margin: 0;
    font-size: 13px;
}

.checkbox-item a {
    color: #c00;
    text-decoration: underline;
}

.form-section-glass .btn {
    width: 100%;
    padding: 14px;
    margin-top: 24px;
    background-color: #c00;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background 0.25s ease, color 0.25s ease;
}

.form-section-glass .btn:hover {
    background-color: #fff;
    color: #0a0a0a;
}
