/* ============================================================
   CONTACT PAGE  —  contact.css
   Needs site.css + brand.css loaded first.
   ============================================================ */

/* ── Shared tag + breadcrumb ─────────────────────────────── */
.crumbs {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: .75rem
}

    .crumbs a:hover {
        color: var(--violet)
    }

    .crumbs b {
        color: var(--violet);
        font-weight: 600
    }

.sec-tag {
    display: inline-block;
    background: #EDE9FF;
    color: var(--violet);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 999px;
    margin-bottom: .9rem
}

/* ── HERO HEADER ─────────────────────────────────────────── */
.contact-hero {
    background: linear-gradient(135deg,#F0ECFF 0%,#EBF1FF 60%,#F5F3FE 100%);
    border-bottom: 1px solid #E0D8FF;
    padding-block: clamp(20px,3vw,36px);
    overflow: hidden;
    position: relative;
}

.contact-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.contact-hero-text {
    flex: 1;
    min-width: 0
}

    .contact-hero-text h1 {
        font-size: clamp(2rem,4.5vw,3rem);
        font-weight: 800;
        color: var(--navy);
        margin-bottom: .6rem;
        line-height: 1.15;
    }

    .contact-hero-text p {
        color: var(--muted);
        font-size: clamp(.95rem,1.8vw,1.1rem);
        max-width: 420px;
        line-height: 1.7;
        margin: 0;
    }

/* Illustration area */
.contact-hero-illo {
    flex: none;
    width: clamp(160px,22vw,260px)
}

.illo-wrap {
    position: relative;
    height: clamp(90px,12vw,140px)
}

.illo-envelope {
    position: absolute;
    inset-inline-end: 0;
    bottom: 0;
    width: 75%;
    filter: drop-shadow(0 8px 24px rgba(124,82,244,.18));
}

    .illo-envelope svg {
        width: 100%;
        height: auto
    }

.illo-phone-badge {
    position: absolute;
    inset-inline-start: 0;
    top: 10%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(124,82,244,.2);
    padding: 12px;
    display: grid;
    place-items: center;
}

.illo-dots-badge {
    position: absolute;
    inset-inline-end: 5%;
    bottom: 12%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(124,82,244,.15);
    padding: 10px 14px;
    display: flex;
    gap: 5px;
    align-items: center;
}

    .illo-dots-badge span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #C4B5FD;
    }

        .illo-dots-badge span:nth-child(2) {
            background: #818CF8
        }

        .illo-dots-badge span:nth-child(3) {
            background: #7C52F4
        }

@media(max-width:700px) {
    .contact-hero-illo {
        display: none
    }
}

/* ── BODY SECTION ────────────────────────────────────────── */
.contact-bg {
    background: #F7F6FF;
    padding-block: clamp(32px,5vw,56px)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.55fr .85fr;
    gap: clamp(20px,3vw,32px);
    align-items: start;
}

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

/* ── FORM CARD ───────────────────────────────────────────── */
.contact-form-card {
    background: #fff;
    border: 1px solid #E9E5FF;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(124,82,244,.07);
    padding: clamp(24px,4vw,44px);
}

.cf-title {
    font-size: clamp(1.5rem,3vw,2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .45rem
}

.cf-lead {
    color: var(--muted);
    margin: 0 0 1.8rem;
    line-height: 1.7
}

.violet-text {
    color: var(--violet)
}

/* Rows + fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

@media(max-width:600px) {
    .form-row {
        grid-template-columns: 1fr
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: 18px
}

    .form-field label {
        font-weight: 700;
        font-size: .78rem;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--muted)
    }

/* Icon-prefixed inputs */
.input-icon-wrap {
    position: relative
}

.input-icon {
    position: absolute;
    inset-inline-start: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    color: #9CA3AF;
    pointer-events: none;
}

.textarea-wrap .input-icon-top {
    top: 14px;
    transform: none;
}

.input-icon-wrap input,
.input-icon-wrap select,
.input-icon-wrap textarea {
    width: 100%;
    padding-inline-start: 40px;
    padding-inline-end: 14px;
    padding-block: .9rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-size: .95rem;
    font-family: inherit;
    color: var(--ink);
    background: #FAFAFA;
    outline: none;
    transition: border-color .15s,box-shadow .15s,background .15s;
    box-sizing: border-box;
}

    .input-icon-wrap input:focus,
    .input-icon-wrap select:focus,
    .input-icon-wrap textarea:focus {
        background: #fff;
        border-color: var(--violet);
        box-shadow: 0 0 0 3px rgba(124,82,244,.13);
    }

.input-icon-wrap textarea {
    resize: vertical;
    min-height: 148px
}

/* Secure note */
.form-secure-note {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

    .form-secure-note svg {
        color: #9CA3AF;
        flex: none
    }

.field-err {
    color: var(--red);
    font-size: .78rem;
    font-weight: 600;
    min-height: 1em
}

.form-error {
    color: var(--red);
    font-weight: 600;
    font-size: .88rem;
    margin-bottom: 10px
}

    .form-error ul {
        list-style: none;
        padding: 0;
        margin: 0
    }

.form-submit {
    width: 100%;
    margin-top: 4px;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 12px
}

/* Success */
.form-success {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #ECFDF5;
    border: 1px solid #BBE7C9;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px
}

    .form-success svg {
        color: #16A34A;
        flex: none
    }

    .form-success b {
        display: block;
        color: #14532D
    }

    .form-success span {
        color: #166534;
        font-size: .88rem
    }

/* Honeypot */
.hp-field {
    position: absolute !important;
    inset-inline-start: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none
}

/* ── SIDEBAR ─────────────────────────────────────────────── */
.contact-side {
    display: grid;
    gap: 18px
}

.side-card {
    background: #fff;
    border: 1px solid #E9E5FF;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(124,82,244,.07);
    padding: clamp(20px,3vw,28px);
}

    .side-card h3 {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: .45rem
    }

.side-lead {
    color: var(--muted);
    font-size: .88rem;
    margin: 0 0 1.1rem;
    line-height: 1.7
}

/* Contact info list */
.ci-list {
    display: grid
}

    .ci-list li {
        display: flex;
        gap: 14px;
        align-items: center;
        padding-block: 14px;
        border-bottom: 1px solid #F0ECFF
    }

        .ci-list li:last-child {
            border-bottom: none
        }

.ci-ic {
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 13px;
    background: #F1EBFF;
    color: var(--violet);
    display: grid;
    place-items: center;
}

.ci-ic-sm {
    width: 36px;
    height: 36px;
    border-radius: 10px
}

.ci-list b {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 2px
}

.ci-list span {
    color: var(--navy);
    font-size: .93rem;
    font-weight: 700
}

.ci-link {
    color: var(--violet)
}

/* WhatsApp */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: 100%;
    margin-top: 1.1rem;
    background: #22C55E;
    color: #fff;
    font-weight: 700;
    font-size: .97rem;
    padding: .9rem;
    border-radius: 12px;
    transition: background .15s,transform .15s;
}

    .btn-whatsapp:hover {
        background: #16A34A;
        transform: translateY(-2px)
    }

/* Business hours */
.bh-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .6rem
}

.bh-list {
    margin-top: .6rem
}

    .bh-list li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-block: 12px;
        border-bottom: 1px solid #F0ECFF;
        font-size: .9rem;
    }

        .bh-list li:last-child {
            border-bottom: none
        }

    .bh-list span {
        color: var(--muted)
    }

    .bh-list b {
        color: var(--navy)
    }

    .bh-list .closed {
        color: var(--red)
    }

.bh-note {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    color: var(--muted);
    margin-top: .8rem;
    padding-top: .8rem;
    border-top: 1px solid #F0ECFF;
}

    .bh-note svg {
        color: #9CA3AF;
        flex: none
    }

/* ── TRUST STRIP ─────────────────────────────────────────── */
.contact-trust {
    background: #fff;
    border-top: 1px solid #F0ECFF;
    padding-block: clamp(24px,4vw,40px)
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}

@media(max-width:860px) {
    .trust-strip {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:500px) {
    .trust-strip {
        grid-template-columns: 1fr
    }
}

.trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 1rem 1.4rem;
    border-inline-end: 1px solid #F0ECFF;
}

    .trust-item:last-child {
        border-inline-end: none
    }

@media(max-width:860px) {
    .trust-item:nth-child(2) {
        border-inline-end: none
    }

    .trust-item:nth-child(3) {
        border-inline-end: 1px solid #F0ECFF
    }

    .trust-item:nth-child(3), .trust-item:nth-child(4) {
        border-top: 1px solid #F0ECFF
    }
}

@media(max-width:500px) {
    .trust-item {
        border-inline-end: none !important;
        border-top: 1px solid #F0ECFF
    }

        .trust-item:first-child {
            border-top: none
        }
}

.trust-ic {
    width: 48px;
    height: 48px;
    flex: none;
    border-radius: 14px;
    background: #F1EBFF;
    color: var(--violet);
    display: grid;
    place-items: center;
}

.trust-item b {
    display: block;
    color: var(--navy);
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: 3px
}

.trust-item span {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.55
}
