/* ==========================================================================
   Contact Page — Therpia
   contact.css
   ========================================================================== */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #FAFAF7 60%, rgba(208, 168, 101, 0.08) 100%);
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Decorative morphing blobs */
.contact-shape {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.12;
    animation: morph 10s ease-in-out infinite both alternate;
}

.contact-shape-1 {
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    top: -120px;
    right: -100px;
    animation-delay: 0s;
}

.contact-shape-2 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
    bottom: -80px;
    left: 5%;
    animation-delay: -5s;
    opacity: 0.07;
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.contact-hero-inner h1 {
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.contact-hero-inner h1 em {
    color: var(--clr-primary);
    font-style: italic;
}

.contact-hero-sub {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 0;
    max-width: 500px;
}

/* ── Cards Section ────────────────────────────────────────────────────────── */
.contact-cards-section {
    background-color: var(--clr-bg-main);
}

.contact-intro {
    max-width: 680px;
    margin: 0 auto 4rem;
}

.contact-intro h2 {
    margin-bottom: 1rem;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

/* Individual Card */
.contact-card {
    background: var(--clr-white);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    border: 1px solid rgba(47, 27, 65, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-card:hover::before {
    opacity: 1;
}

/* Specialist card variant */
.contact-card-specialist {
    background: linear-gradient(160deg, rgba(208, 168, 101, 0.06) 0%, rgba(212, 65, 142, 0.04) 100%);
    border-color: rgba(208, 168, 101, 0.15);
}

.contact-card-icon {
    font-size: 2.75rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.contact-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0;
    color: var(--clr-text-main);
}

.contact-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--clr-text-muted);
    margin-bottom: 0;
    flex-grow: 1;
}

.contact-card-footer {
    margin-top: 0.5rem;
}

/* WhatsApp Buttons */
.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

.wa-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Specialist button — gold outline */
.btn-specialist {
    background-color: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
    width: 100%;
}

.btn-specialist:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 168, 101, 0.3);
}

/* ── Trust Strip ──────────────────────────────────────────────────────────── */
.contact-trust {
    background-color: var(--clr-bg-secondary);
    padding: 4rem 0;
    border-top: 1px solid rgba(47, 27, 65, 0.05);
    border-bottom: 1px solid rgba(47, 27, 65, 0.05);
}

.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
}

.trust-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.trust-item p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-text-main);
    margin-bottom: 0;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(47, 27, 65, 0.12);
}

/* ── Emotional Closing ────────────────────────────────────────────────────── */
.contact-closing {
    background-color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.contact-closing-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.closing-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(208, 168, 101, 0.07) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.closing-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--clr-primary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.contact-closing-inner h2 {
    margin-bottom: 0.75rem;
}

.closing-sub {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
}

.contact-closing-inner .btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    justify-content: center;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .contact-hero {
        min-height: auto;
        padding-top: 8rem;
        padding-bottom: 3rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-divider {
        width: 60px;
        height: 1px;
    }

    .contact-shape-1 {
        width: 280px;
        height: 280px;
        top: -80px;
        right: -80px;
    }
}

@media (max-width: 480px) {
    .contact-hero-inner h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .contact-card {
        padding: 2rem 1.5rem 1.5rem;
    }
}