/* ══════════════════════════════════════════
   CONTACT PAGE — Business Flow
   ══════════════════════════════════════════ */
:root {
    --ct-blue: #1e56c5;
    --ct-indigo: #4f46e5;
    --ct-grad: linear-gradient(135deg, #1e56c5, #4f46e5);
    --ct-t1: #0a1628;
    --ct-t2: #475467;
    --ct-t3: #98a2b3;
    --ct-brd: #e6ebf3;
    --ct-bg: #f7f9fc;
}

/* ── Hero ── */
.ct-hero {
    background: var(--ct-grad);
    padding: 4rem 1.5rem 5.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ct-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .5;
    pointer-events: none;
}

.ct-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ct-badge {
    display: inline-block;
    padding: .38rem 1rem;
    border-radius: 99px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.28);
    font-size: .78rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
}

.ct-title {
    font-family: 'Cairo', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: .8rem;
}

.ct-sub {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255,255,255,.86);
    max-width: 560px;
    margin: 0 auto;
}

/* ── Body ── */
.ct-body {
    background: var(--ct-bg);
    padding: 0 1.5rem 4.5rem;
}

.ct-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1.5rem;
    transform: translateY(-3rem);
    align-items: start;
}

/* ── Side cards ── */
.ct-side {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.ct-card {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: #fff;
    border: 1px solid var(--ct-brd);
    border-radius: 16px;
    padding: 1.05rem 1.15rem;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 10px 28px -22px rgba(16,24,40,.28);
    transition: transform .18s, box-shadow .18s, border-color .18s;
}

a.ct-card:hover {
    transform: translateY(-2px);
    border-color: #b9c6dd;
    box-shadow: 0 10px 26px -12px rgba(30,86,197,.28);
}

.ct-card-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef2fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.ct-card-wa .ct-card-ico {
    background: #dcfce7;
}

.ct-card-lbl {
    font-size: .72rem;
    font-weight: 800;
    color: var(--ct-t3);
    margin-bottom: .18rem;
}

.ct-card-val {
    font-size: .95rem;
    font-weight: 900;
    color: var(--ct-t1);
    direction: ltr;
    unicode-bidi: embed;
    text-align: right;
}

.ct-card-hint {
    font-size: .74rem;
    color: var(--ct-t2);
    margin-top: .22rem;
    font-weight: 600;
}

/* ── Trial box ── */
.ct-trial {
    background: var(--ct-grad);
    border-radius: 16px;
    padding: 1.35rem 1.25rem;
    color: #fff;
    box-shadow: 0 12px 30px -14px rgba(30,86,197,.6);
}

.ct-trial-ttl {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: .45rem;
}

.ct-trial p {
    font-size: .82rem;
    line-height: 1.75;
    color: rgba(255,255,255,.88);
    margin-bottom: .9rem;
}

.ct-trial-btn {
    display: block;
    text-align: center;
    background: #fff;
    color: var(--ct-blue);
    font-weight: 900;
    font-size: .86rem;
    padding: .7rem 1rem;
    border-radius: 11px;
    text-decoration: none;
    transition: transform .18s;
}

.ct-trial-btn:hover {
    transform: translateY(-1px);
}

/* ── Form card ── */
.ct-form-card {
    background: #fff;
    border: 1px solid var(--ct-brd);
    border-radius: 20px;
    padding: 1.9rem 2rem 2.1rem;
    box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 24px 60px -40px rgba(16,24,40,.35);
}

.ct-form-head {
    padding-bottom: 1.15rem;
    border-bottom: 1px solid var(--ct-brd);
    margin-bottom: 1.5rem;
}

.ct-form-head h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--ct-t1);
    margin-bottom: .25rem;
}

.ct-form-head p {
    font-size: .86rem;
    color: var(--ct-t2);
}

/* ── Alerts ── */
.ct-alert {
    padding: .9rem 1.1rem;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.ct-alert-ok {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.ct-alert-bad {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b42318;
}

/* ── Fields ── */
.ct-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ct-row.cols2 {
    grid-template-columns: 1fr 1fr;
}

.ct-row.cols1 {
    grid-template-columns: 1fr;
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.ct-field label {
    font-size: .79rem;
    font-weight: 800;
    color: #344054;
}

.ct-field label span {
    color: #f04438;
}

.ct-input {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    border: 1.5px solid #dfe5ee;
    border-radius: 12px;
    background: #fff;
    color: var(--ct-t1);
    font-size: .9rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans Arabic', 'Cairo', sans-serif;
    box-shadow: 0 1px 2px rgba(16,24,40,.05);
    outline: none;
    transition: border-color .18s, box-shadow .18s;
    -webkit-appearance: none;
    appearance: none;
}

.ct-input::placeholder {
    color: #b3bcca;
    font-weight: 500;
}

.ct-input:hover {
    border-color: #b9c6dd;
}

.ct-input:focus {
    border-color: var(--ct-blue);
    box-shadow: 0 0 0 4px rgba(30,86,197,.12);
}

.ct-select {
    padding-left: 2.6rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1.5l6 6 6-6' stroke='%23667085' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
}

.ct-textarea {
    height: auto;
    min-height: 150px;
    padding: .9rem 1rem;
    line-height: 1.85;
    resize: vertical;
}

.ct-err {
    font-size: .74rem;
    font-weight: 700;
    color: #f04438;
}

/* ── Honeypot ── */
.ct-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ── Actions ── */
.ct-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.4rem;
    padding-top: 1.3rem;
    border-top: 1px solid var(--ct-brd);
}

.ct-note {
    font-size: .76rem;
    color: var(--ct-t3);
    font-weight: 600;
}

.ct-submit {
    height: 50px;
    padding: 0 2rem;
    border: none;
    border-radius: 12px;
    background: var(--ct-grad);
    color: #fff;
    font-size: .93rem;
    font-weight: 900;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 22px -8px rgba(30,86,197,.6);
    transition: transform .18s, box-shadow .18s;
}

.ct-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -10px rgba(30,86,197,.65);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }

    .ct-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 640px) {
    .ct-hero {
        padding: 3rem 1.15rem 4.5rem;
    }

    .ct-body {
        padding: 0 1.15rem 3rem;
    }

    .ct-form-card {
        padding: 1.4rem 1.15rem 1.6rem;
    }

    .ct-row.cols2 {
        grid-template-columns: 1fr;
    }

    .ct-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .ct-submit {
        width: 100%;
    }

    .ct-note {
        text-align: center;
    }
}
