/* ===== CONTACT PAGE ===== */
.contact-hero {
    padding: 3rem 0 2rem;
    background: #110d0a;
    border-bottom: 1px solid rgba(212, 197, 181, 0.05);
}

.page-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #f0e6dc;
    margin-bottom: 0.25rem;
}

.contact-desc {
    color: #8a7a6a;
    font-size: 1.1rem;
    max-width: 600px;
}

/* ===== CONTACT WRAPPER ===== */
.contact-section {
    padding: 3rem 0 4rem;
    background: #0d0a08;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* ===== CONTACT INFO ===== */
.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f0e6dc;
    margin-bottom: 0.5rem;
}

.contact-info-desc {
    color: #8a7a6a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 122, 94, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #c97a5e;
    font-size: 1.1rem;
}

.info-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8a7a6a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.1rem;
}

.info-text a,
.info-text span {
    color: #f0e6dc;
    font-size: 1rem;
    transition: color 0.25s ease;
}

.info-text a:hover {
    color: #c97a5e;
}

/* ===== SOCIAL ===== */
.contact-social h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8a7a6a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 197, 181, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4c5b5;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.social-links a:hover {
    background: rgba(201, 122, 94, 0.15);
    color: #f0e6dc;
    transform: translateY(-3px);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: #1a1410;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(212, 197, 181, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #d4c5b5;
}

.form-group label .required {
    color: #c97a5e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 197, 181, 0.1);
    border-radius: 8px;
    color: #f0e6dc;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(201, 122, 94, 0.4);
    box-shadow: 0 0 0 3px rgba(201, 122, 94, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(212, 197, 181, 0.3);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7a6a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-group select option {
    background: #1a1410;
    color: #f0e6dc;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FORM CHECKBOX ===== */
.form-check {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.6rem;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: #c97a5e;
    cursor: pointer;
}

.form-check label {
    font-size: 0.85rem;
    color: #b0a090;
    cursor: pointer;
    font-weight: 400;
}

/* ===== FORM ERRORS ===== */
.form-error {
    font-size: 0.75rem;
    color: #e74c3c;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group.error .form-error {
    display: block;
}

/* ===== FORM SUCCESS ===== */
.form-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.form-success i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 0.75rem;
}

.form-success h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #f0e6dc;
    margin-bottom: 0.25rem;
}

.form-success p {
    color: #8a7a6a;
    margin-bottom: 1.5rem;
}

.form-success.show {
    display: block;
}

.contact-form.submitted .form-group:not(.form-check),
.contact-form.submitted .submit-btn {
    display: none;
}

.contact-form.submitted .form-success {
    display: block;
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-btn .spinner {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== FAQ ===== */
.faq-section {
    padding: 4rem 0;
    background: #110d0a;
    border-top: 1px solid rgba(212, 197, 181, 0.05);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: #1a1410;
    border-radius: 12px;
    border: 1px solid rgba(212, 197, 181, 0.06);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201, 122, 94, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #f0e6dc;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.25s ease;
    gap: 1rem;
}

.faq-question:hover {
    color: #c97a5e;
}

.faq-question i {
    font-size: 0.8rem;
    color: #8a7a6a;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: #b0a090;
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-answer a {
    color: #c97a5e;
    transition: color 0.25s ease;
}

.faq-answer a:hover {
    color: #d68d72;
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.4rem;
    }

    .contact-desc {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 0.85rem;
        padding: 1rem 1.25rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 1.25rem 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }

    .info-item {
        gap: 0.75rem;
    }

    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .faq-question {
        font-size: 0.8rem;
        padding: 0.85rem 1rem;
    }
}