/* =========================================
   Contact Form Styles
======================================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}

.form-required {
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    resize: none;
    overflow-y: hidden;
}

[data-theme="light"] .form-control {
    background: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

/* Custom Checkbox */
.form-check {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-check-label {
    position: relative;
    padding-left: 1.8rem;
    cursor: pointer;
    line-height: 1.4;
    user-select: none;
}

.form-check-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.2rem;
    height: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    transition: all 0.2s ease;
}

[data-theme="light"] .form-check-label::before {
    background: rgba(255, 255, 255, 0.5);
}

.form-check-input:checked+.form-check-label::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label::after {
    content: "";
    position: absolute;
    left: 0.4rem;
    top: 0.35rem;
    width: 0.4rem;
    height: 0.6rem;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.form-check-input:checked+.form-check-label::after {
    transform: rotate(45deg) scale(1);
}

.form-sub-panel {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .form-sub-panel {
    background: rgba(255, 255, 255, 0.3);
}

/* =========================================
   FAQ List (Contact Page)
======================================== */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
}

[data-theme="light"] .faq-item {
    background: rgba(255, 255, 255, 0.5);
}

.faq-question {
    position: relative;
    padding-left: 2.2rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.faq-question::before {
    content: "Q.";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.faq-answer {
    position: relative;
    padding-left: 2.2rem;
    padding-top: 1.2rem;
    border-top: 1px dashed var(--glass-border);
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-answer::before {
    content: "A.";
    position: absolute;
    left: 0;
    top: 1.2rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ef4444;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.submit-btn {
    min-width: 240px;
    padding: 1rem 3rem;
}

@media (max-width: 768px) {
    .submit-btn {
        width: 100%;
        min-width: unset;
    }
}

.faq-answer p {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}