/* =============================================
   ALCANCIA - CONTACT PAGE
   ============================================= */

.contact-page {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    background: #0a0a1a;
    overflow: hidden;
}

/* Background */
.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.contact-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.contact-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6366f1, transparent 70%);
    top: -5%;
    right: 10%;
}

.contact-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b5cf6, transparent 70%);
    bottom: 10%;
    left: -5%;
}

/* Header */
.contact-header {
    margin-bottom: 60px;
}

.contact-header .section-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #818cf8;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 550px;
    margin: 0 auto;
}

/* Contact Card (Form) */
.contact-card {
    background: rgba(14, 14, 36, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    padding: 36px;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.contact-card-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.contact-card-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Form Styles */
.contact-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.contact-form label i {
    font-size: 0.8rem;
    color: #818cf8;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.95rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.contact-form .form-control:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.contact-form .form-control:focus {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.06);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    color: #ffffff;
}

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

.btn-contact-submit {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn-contact-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #818cf8, #a78bfa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-contact-submit:hover::before {
    opacity: 1;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-contact-submit i,
.btn-contact-submit span {
    position: relative;
    z-index: 1;
}

/* Info Cards */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(14, 14, 36, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    background: rgba(99, 102, 241, 0.05);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-card h6 {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 4px;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0;
}

.contact-info-card a {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-card a:hover {
    color: #a78bfa;
}

/* Why Alcancia Card */
.contact-why-card {
    padding: 28px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 16px;
}

.contact-why-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.contact-why-card h5 i {
    color: #818cf8;
}

.contact-why-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-why-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
}

.contact-why-card li i {
    color: #22c55e;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-page {
        padding: 120px 0 60px;
    }

    .contact-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 100px 0 50px;
    }

    .contact-header h1 {
        font-size: 1.7rem;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 1.5rem;
    }

    .contact-header p {
        font-size: 0.95rem;
    }
}
