/* ========== CONTACT PAGE ========== */
.contact-section {
    padding: 85px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.contact-form-wrap {
    padding: 45px;
    background: var(--warm-white);
    border: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 8px 35px rgba(160, 120, 48, 0.1);
}

.contact-form-wrap h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-form-wrap > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.form-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    border-radius: 3px;
    margin-bottom: 28px;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-card {
    padding: 32px;
    background: var(--warm-white);
    border: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 4px 20px rgba(160, 120, 48, 0.08);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.info-item h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

.info-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.social-card {
    padding: 28px;
    background: var(--warm-white);
    border: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 4px 20px rgba(160, 120, 48, 0.08);
}

.social-card h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--cream);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateX(6px);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--white);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    border-color: transparent;
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: transparent;
}

.social-link.youtube:hover {
    background: #FF0000;
    border-color: transparent;
}

.social-link i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.social-link:hover i {
    background: rgba(255, 255, 255, 0.25);
}

.whatsapp-card {
    padding: 28px;
    text-align: center;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.06), rgba(18, 140, 126, 0.04));
    border: 1.5px solid rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.08);
}

.whatsapp-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
}

.whatsapp-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 18px;
}

/* Map */
.map-section {
    padding: 0 0 85px;
    background: var(--cream);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(160, 120, 48, 0.14);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px;
    }
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-note i {
    color: var(--gold);
}

/* ===== FORM SUCCESS MESSAGE ===== */
.form-success-msg {
    text-align: center;
    padding: 50px 30px;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.fsm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    animation: successCheck 0.6s 0.2s ease forwards;
    transform: scale(0);
}

.form-success-msg h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-success-msg p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@keyframes successPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes successCheck {
    from {
        transform: scale(0) rotate(-45deg);
    }
    to {
        transform: scale(1) rotate(0deg);
    }
}

/* Submit button WhatsApp style */
#cfSubmitBtn,
.quote-form button[type="submit"],
#callbackForm button[type="submit"] {
    position: relative;
    overflow: hidden;
}

#cfSubmitBtn i,
.quote-form button[type="submit"] i,
#callbackForm button[type="submit"] i {
    font-size: 1.1rem;
}

/* Loading state */
.btn-loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes btnSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}