/* =========================================
   Contact Us Page Styles
   ========================================= */

/* --- Hero Section --- */
.contact-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    overflow: hidden;
    text-align: center;
}

.contact-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.contact-hero__float {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s infinite ease-in-out;
}

    .contact-hero__float:nth-child(2) {
        width: 400px;
        height: 400px;
        background: #6366f1;
        top: -100px;
        left: -100px;
    }

    .contact-hero__float:nth-child(3) {
        width: 300px;
        height: 300px;
        background: #ec4899;
        bottom: -50px;
        right: -50px;
        animation-delay: 4s;
    }

.contact-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.875rem;
    color: #c7d2fe;
    margin-bottom: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.contact-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

    .contact-hero__title .highlight {
        background: linear-gradient(135deg, #38bdf8, #6366f1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.contact-hero__subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* --- Content Grid --- */
.contact-content-section {
    padding: 5rem 0;
    background: #020617;
}

.contact-grid {
    display: block;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Info Column --- */
.contact-info__title {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.contact-info__desc {
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info__cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

    .contact-info__card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(99, 102, 241, 0.3);
        transform: translateX(5px);
    }

.contact-info__icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info__card h4 {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info__card a, .contact-info__card p {
    color: #94a3b8;
    font-size: 0.95rem;
    text-decoration: none;
    margin: 0;
    transition: color 0.3s;
}

    .contact-info__card a:hover {
        color: #818cf8;
    }

/* Social Links */
.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.contact-social__link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .contact-social__link:hover {
        background: #6366f1;
        border-color: #6366f1;
        color: white;
        transform: translateY(-3px);
    }

/* --- Form Column --- */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.contact-form__group {
    margin-bottom: 1.5rem;
}

.contact-form__label {
    display: block;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form__input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #f1f5f9;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

    .contact-form__input::placeholder {
        color: #4b5563;
    }

    .contact-form__input:focus {
        outline: none;
        border-color: #6366f1;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    }

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

    .contact-form__btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4);
    }

    .contact-form__btn:active {
        transform: translateY(0);
    }

/* Success Message */
.contact-form__success {
    text-align: center;
    padding: 3rem 2rem;
    display: none;
}

    .contact-form__success.show {
        display: block;
    }

.contact-form.hide {
    display: none;
}

.contact-form__success i {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.contact-form__success h3 {
    font-size: 1.5rem;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.contact-form__success p {
    color: #94a3b8;
    line-height: 1.6;
}

/* --- CTA Section --- */
.contact-cta {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}

.contact-cta__grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
}

.contact-cta__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.875rem;
    color: #c7d2fe;
    margin-bottom: 1.5rem;
}

.contact-cta__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.contact-cta__desc {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-cta__btn--primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

    .contact-cta__btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(34, 197, 94, 0.4);
    }

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}
