/*
 * contact-redesign.css
 * Contact page — flat #A41034 design system
 * Scoped to ct-* classes; does not leak to other pages.
 *
 * Palette:
 *   #A41034  brand red (hero bg, CTA bg, accents, icons)
 *   #D91247  hover state only
 *   #111827  headings / dark text
 *   #374151  body text
 *   #6B7280  muted text
 *   #FFFFFF  cards, form bg
 *   #F9FAFB  alternating / panel tint
 *   #E5E7EB  borders
 * ─────────────────────────────────────────────────────── */

/* ── 0. TOKENS ──────────────────────────────────────────── */
:root {
    --ct-red:       #A41034;
    --ct-red-h:     #D91247;
    --ct-ink:       #111827;
    --ct-body:      #374151;
    --ct-muted:     #6B7280;
    --ct-white:     #FFFFFF;
    --ct-off:       #F9FAFB;
    --ct-border:    #E5E7EB;
    --ct-sh-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --ct-sh-md:     0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
    --ct-sh-lg:     0 8px 24px rgba(0,0,0,.10), 0 3px 6px rgba(0,0,0,.04);
}

/* ── 1. HERO — .igleg-lhdr (see ig-theme.css) ── */

/* ── Trust strip — same colored metric-card pattern as the
   Instructor Agreement / Privacy Policy pages (icon box, bold value,
   small label, colored top bar) instead of plain pill chips. ── */
.ct-metrics {
    padding: 28px 0 0;
}
.ct-metrics__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.ct-metric {
    position: relative;
    overflow: hidden;
    padding: 22px 20px 20px;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    background: #FFFFFF;
    display: flex; align-items: center; gap: 14px;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}
.ct-metric::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    border-radius: 12px 12px 0 0;
    background: #A41034;
}
.ct-metric:hover {
    border-color: #A41034;
    box-shadow: 0 6px 20px rgba(164,16,52,.10);
    transform: translateY(-2px);
}
.ct-metric__icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(164,16,52,.06);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #A41034;
    font-size: 16px;
}
.ct-metric__val {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.4rem; font-weight: 600;
    color: #111827; line-height: 1.1;
    letter-spacing: -.02em;
}
.ct-metric__label {
    font-size: 11.5px; font-weight: 600; color: #6B7280;
    text-transform: uppercase; letter-spacing: .06em; margin-top: 2px;
}

.ct-metric--red::before      { background: #ef4444; }
.ct-metric--amber::before    { background: #f59e0b; }
.ct-metric--green::before    { background: #10b981; }
.ct-metric--blue::before     { background: #3b82f6; }

.ct-metric--red:hover        { border-color: #ef4444; box-shadow: 0 6px 20px rgba(239,68,68,.12); }
.ct-metric--amber:hover      { border-color: #f59e0b; box-shadow: 0 6px 20px rgba(245,158,11,.12); }
.ct-metric--green:hover      { border-color: #10b981; box-shadow: 0 6px 20px rgba(16,185,129,.12); }
.ct-metric--blue:hover       { border-color: #3b82f6; box-shadow: 0 6px 20px rgba(59,130,246,.12); }

.ct-metric--red .ct-metric__icon    { background: rgba(239,68,68,.08);  color: #dc2626; }
.ct-metric--amber .ct-metric__icon  { background: rgba(245,158,11,.10); color: #b45309; }
.ct-metric--green .ct-metric__icon  { background: rgba(16,185,129,.10); color: #047857; }
.ct-metric--blue .ct-metric__icon   { background: rgba(59,130,246,.10); color: #1d4ed8; }

@media (max-width: 700px) {
    .ct-metrics__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .ct-metrics__inner { grid-template-columns: 1fr; }
}

/* ── 2. BODY WRAPPER ────────────────────────────────────── */
.ct-body {
     
    background: var(--ct-off);
}
.st-form, .ct-ways-section{
      background: #F5F1EA !important;
}

/* ── 3. CONTACT INFO PANEL (left col) ───────────────────── */
.ct-info-panel {
    background: var(--ct-white);
    border: 1px solid var(--ct-border);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: var(--ct-sh-md);
}

/* ── 3. HQ CARD (full-width, above the map/form row) ───── */
.ct-hq-wrap {
    padding: 28px 0 36px;
}
.ct-hq-card {
    background: #FDF6F7;
    border: 1px solid rgba(164,16,52,.14);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 16px rgba(164,16,52,.08), 0 1px 3px rgba(0,0,0,.05);
    position: relative;
}

/* ── two-column internal layout: info | divider | response times ── */
.ct-hq-grid {
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1px 1fr;
    gap: 32px;
    position: relative;
    z-index: 1;
}
.ct-hq-col--info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.ct-hq-divider {
    background: rgba(164,16,52,.12);
    align-self: stretch;
}

.ct-hq-title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
}

.ct-hq-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #A41034;
    margin: 0 0 18px;
}
.ct-hq-location i { font-size: 12px; }

.ct-hq-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.ct-hq-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: color .15s;
}
a.ct-hq-row:hover { color: #A41034; }
a.ct-hq-row:hover .ct-hq-row__icon { background: #A41034; color: #fff; }

.ct-hq-row__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(164,16,52,.08);
    color: #A41034;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background .15s, color .15s;
}

.ct-hq-note {
    font-size: 13px !important;
    color: #9CA3AF !important;
    font-style: italic;
    margin: 0 0 20px !important;
}

/* ── response times column ── */
.ct-hq-col--times { min-width: 0; }

.ct-hq-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #A41034;
    margin-bottom: 16px;
}

.ct-hq-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.ct-hq-time-row {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: #FAFAFA;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #374151;
}
.ct-hq-time-row::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: #A41034;
}
.ct-hq-time-row--red::before    { background: #ef4444; }
.ct-hq-time-row--amber::before  { background: #f59e0b; }
.ct-hq-time-row--green::before  { background: #10b981; }
.ct-hq-time-row--blue::before   { background: #3b82f6; }

.ct-hq-badge {
    display: inline-block;
    background: rgba(164,16,52,.10);
    color: #A41034;
    border: 1px solid rgba(164,16,52,.18);
    border-radius: 100px;
    padding: 4px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* ── social links ── */
.ct-hq-social {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(164,16,52,.12);
    padding-top: 20px;
    margin-top: auto;
}

.ct-hq-social-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 12px;
}

.ct-hq-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ct-hq-soc-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    color: #374151;
    font-size: 14px;
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s;
}

.ct-hq-soc-btn:hover {
    background: #A41034;
    border-color: #A41034;
    color: #fff;
}

/* ── 4. FORM CARD (right col) ───────────────────────────── */
.ct-form-card {
    background: var(--ct-white);
    border: 1px solid var(--ct-border);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: var(--ct-sh-md);
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.ct-form-card form { display: flex; flex-direction: column; flex: 1; }
.ct-form-card .ct-form-footer { margin-top: auto; }

/* Alert (success / error) */
.ct-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.ct-alert--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.ct-alert--error {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #9f1239;
}

.ct-alert__icon { font-size: 16px; margin-top: 1px; }

/* Form card header */
.ct-form-card__title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 2px !important;
}

.ct-form-card__sub {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: var(--ct-muted);
    margin-bottom: 10px;
}

/* Form fields */
.ig-fg {
    margin-bottom: 10px;
}

.ig-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ct-ink);
    margin-bottom: 4px;
}

/* icon wrapper */
.ct-input-wrap {
    position: relative;
}

.ct-input-ico {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ct-muted);
    font-size: 13px;
    pointer-events: none;
}

.ig-input {
    width: 100%;
    height: 34px;
    padding: 0 12px;
    background: var(--ct-white);
    border: 1.5px solid var(--ct-border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--ct-ink);
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}

.ig-input.ct-has-ico { padding-left: 38px; }

.ig-input:focus {
    border-color: var(--ct-red);
    box-shadow: 0 0 0 3px rgba(164,16,52,.10);
}

.ig-input.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.10);
}

.ig-input::placeholder { color: #9ca3af; }

/* textarea */
.ig-textarea {
    width: 100%;
    min-height: 64px;
    padding: 8px 12px;
    background: var(--ct-white);
    border: 1.5px solid var(--ct-border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--ct-ink);
    resize: vertical;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}

.ig-textarea:focus {
    border-color: var(--ct-red);
    box-shadow: 0 0 0 3px rgba(164,16,52,.10);
}

.ig-textarea.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.10);
}

.ig-textarea::placeholder { color: #9ca3af; }

/* char counter */
.ct-textarea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.ct-char-count {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--ct-muted);
    font-weight: 500;
    transition: color .15s;
}

.ct-char-count.ct-char-warn { color: #d97706; }
.ct-char-count.ct-char-over { color: #ef4444; }

.ct-textarea-hint {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--ct-muted);
}

/* inline error */
.ig-ferr {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #dc2626;
    margin-top: 4px;
    min-height: 16px;
}

/* two-col row for name + email */
.ct-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 540px) {
    .ct-row-2 { grid-template-columns: 1fr; }
}

/* form footer */
.ct-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.ct-privacy-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--ct-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.ct-privacy-note .fas { color: var(--ct-red); }

/* submit button */
.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ct-red);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(164,16,52,.30);
    transition: background .15s, box-shadow .15s, transform .1s;
}

.ct-submit-btn:hover {
    background: var(--ct-red-h);
    box-shadow: 0 4px 12px rgba(164,16,52,.35);
    transform: translateY(-1px);
}

.ct-submit-btn:active { transform: none; }
.ct-submit-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* ── 5. MAP SECTION ─────────────────────────────────────── */
.ct-map-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.ct-map-header__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--ct-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.ct-map-header__title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 4px !important;
}

.ct-map-header__sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ct-muted);
    margin: 0;
}

.ct-map-col {
    display: flex;
    flex-direction: column;
}

.ct-map-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--ct-border);
    box-shadow: var(--ct-sh-sm);
    height: 380px;
    flex: 1;
    position: relative;
    background: var(--ct-off);
}

.ct-map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── 6. SECTION HEADER (shared) ─────────────────────────── */
.ct-section-header {
    text-align: center;
    margin-bottom: 24px;
}

.ct-section-header__eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--ct-red);
    margin-bottom: 10px;
}

.ct-section-header__title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: clamp(20px, 2.6vw, 28px) !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 6px !important;
}

.ct-section-header__sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ct-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.55;
}

.ct-faq-link {
    color: var(--ct-red);
    font-weight: 600;
    text-decoration: none;
}

.ct-faq-link:hover { text-decoration: underline; }

/* ── 7. WAYS TO REACH US ────────────────────────────────── */
.ct-ways-section {
    padding: 40px 0 18px;
    background: var(--ct-off);
}

.ct-ways-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

@media (max-width: 900px) {
    .ct-ways-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .ct-ways-grid { grid-template-columns: 1fr; }
}

.ct-way-card {
    position: relative;
    overflow: hidden;
    background: var(--ct-white);
    border: 1px solid var(--ct-border);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--ct-sh-sm);
    transition: box-shadow .2s, transform .2s, border-color .2s;
    opacity: 0;
    transform: translateY(12px);
}
.ct-way-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--ct-red);
}
.ct-way-card--red::before    { background: #ef4444; }
.ct-way-card--amber::before  { background: #f59e0b; }
.ct-way-card--green::before  { background: #10b981; }
.ct-way-card--blue::before   { background: #3b82f6; }

.ct-way-card.ct-revealed {
    opacity: 1;
    transform: none;
}

.ct-way-card:hover {
    box-shadow: var(--ct-sh-md);
    transform: translateY(-2px);
}
.ct-way-card--red:hover      { border-color: #ef4444; }
.ct-way-card--amber:hover    { border-color: #f59e0b; }
.ct-way-card--green:hover    { border-color: #10b981; }
.ct-way-card--blue:hover     { border-color: #3b82f6; }

.ct-way-card__title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 5px !important;
}

.ct-way-card__desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--ct-body);
    line-height: 1.55;
    margin-bottom: 10px;
}

.ct-way-card__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ct-red);
    text-decoration: none;
    transition: gap .15s;
}

.ct-way-card__link:hover { gap: 8px; color: var(--ct-red-h); }

/* badge: "Usually online" */
.ct-way-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 100px;
    padding: 4px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.ct-badge--green {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.ct-badge--green .fas.fa-circle { font-size: 7px; }

/* ── 8. FAQ ─────────────────────────────────────────────── */
.ct-faq-section {
    padding: 24px 0;
    /*background: var(--ct-white);*/
}

.ct-faq-accordion {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-faq-item {
    border: 1.5px solid var(--ct-border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--ct-white);
    transition: border-color .2s, box-shadow .2s;
    opacity: 0;
    transform: translateY(10px);
}

.ct-faq-item.ct-revealed {
    opacity: 1;
    transform: none;
}

.ct-faq-item--open {
    border-color: var(--ct-red);
    box-shadow: 0 0 0 3px rgba(164,16,52,.08);
}

.ct-faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    padding: 13px 16px;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ct-ink);
    transition: background .15s;
}

.ct-faq-item__question:hover { background: var(--ct-off); }

.ct-faq-item--open .ct-faq-item__question { background: rgba(164,16,52,.04); }

.ct-faq-item__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(164,16,52,.10);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ct-red);
    font-size: 12px;
}

.ct-faq-item--open .ct-faq-item__icon {
    background: var(--ct-red);
    color: #fff;
}

.ct-faq-item__question > span:not(.ct-faq-item__icon) { flex: 1; }

.ct-faq-item__chevron {
    font-size: 12px;
    color: var(--ct-muted);
    transition: transform .25s ease;
    margin-left: auto;
    flex-shrink: 0;
}

.ct-faq-item--open .ct-faq-item__chevron { transform: rotate(180deg); color: var(--ct-red); }

.ct-faq-item__answer {
    padding: 0 16px 14px calc(16px + 28px + 12px);
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--ct-body);
    line-height: 1.6;
}

.ct-faq-item__answer a {
    color: var(--ct-red);
    font-weight: 600;
    text-decoration: none;
}

.ct-faq-item__answer a:hover { text-decoration: underline; }

/* ── 9. CTA STRIP — contained crimson card with a dot-texture overlay,
   same banner language as the Support page's closing CTA, instead of
   the old plain borderless band. ───────────────────────────────── */
.ct-cta-strip {
    position: relative;
    overflow: visible;
    padding: 16px 0 40px;
    background: transparent;
    border-top: none;
}

.ct-cta-strip::before { display: none; }

.ct-cta-strip__card {
    position:      relative;
    overflow:      hidden;
    background:    linear-gradient(135deg, #FFFFFF 0%, #FBEEF0 100%) !important;
    border:        1px solid rgba(164,16,52,.12);
    border-radius: 20px !important;
    padding:       44px 32px !important;
    box-shadow:    0 22px 50px -38px rgba(28,21,20,.22);
}
.ct-cta-strip__dots {
    position: absolute; inset: 0; opacity: .6;
    background-image: radial-gradient(rgba(164,16,52,.09) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask: radial-gradient(80% 100% at 50% 0%, #000, transparent 75%);
    mask: radial-gradient(80% 100% at 50% 0%, #000, transparent 75%);
    pointer-events: none;
}

/* Overrides page-components.css's older .ct-cta-strip__inner{display:flex;
   gap:24px} (built for a wide side-by-side text+button banner) — with this
   inner column narrower than each child's own width, that old rule was
   wrapping every child onto its own line AND adding a 24px flex row-gap
   between each wrapped line, on top of the title/sub's own margins. */
.ct-cta-strip__inner {
    position: relative;
    display: block;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    gap: 0;
}

.ct-cta-strip__title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: clamp(20px, 2.4vw, 28px) !important;
    font-weight: 700 !important;
    color: #1C1514 !important;
    margin-bottom: 6px !important;
    line-height: 1.15 !important;
}

/* Now that the card itself is light, the crimson accent is legible again
   as a color (rather than needing to fall back to italic-in-white). */
.ct-cta-strip__title span { color: #A41034; font-style: italic; }

.ct-cta-strip__sub {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: rgba(28,21,20,.65);
    margin: 0 0 20px;
    line-height: 1.5;
}

/* CTA buttons */
.ct-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    padding: 10px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background .18s, border-color .18s, color .18s, transform .12s, box-shadow .18s;
    white-space: nowrap;
}

/* Solid crimson pill — the light card needs a strong-contrast CTA now
   that the card itself no longer carries the brand color. */
.ct-btn--brand {
    background: #A41034 !important;
    color: #ffffff !important;
    border: 2px solid #A41034;
    box-shadow: 0 8px 20px rgba(164,16,52,.25);
}

.ct-btn--brand:hover {
    background: #8a0c2a !important;
    border-color: #8a0c2a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(164,16,52,.32);
    color: #ffffff !important;
}

.ct-btn--outline-white {
    background: transparent;
    color: #111827;
    border: 2px solid #D1D5DB;
}

.ct-btn--outline-white:hover {
    background: #F9FAFB;
    border-color: #A41034;
    color: #A41034;
    transform: translateY(-2px);
}

/* ── 10. SCROLL REVEAL STAGGER ──────────────────────────── */
.ct-contact-card:nth-child(1) { transition-delay: .05s; }
.ct-contact-card:nth-child(2) { transition-delay: .10s; }
.ct-contact-card:nth-child(3) { transition-delay: .15s; }

.ct-way-card:nth-child(1) { transition-delay: .05s; }
.ct-way-card:nth-child(2) { transition-delay: .10s; }
.ct-way-card:nth-child(3) { transition-delay: .15s; }

.ct-faq-item:nth-child(1) { transition-delay: .04s; }
.ct-faq-item:nth-child(2) { transition-delay: .08s; }
.ct-faq-item:nth-child(3) { transition-delay: .12s; }
.ct-faq-item:nth-child(4) { transition-delay: .16s; }
.ct-faq-item:nth-child(5) { transition-delay: .20s; }

/* ── 11. RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 800px) {
    .ct-hq-grid { grid-template-columns: 1fr; }
    .ct-hq-divider { display: none; }
    .ct-hq-social { margin-top: 0; }
}

@media (max-width: 991px) {
    .ct-form-card { padding: 24px 20px; }
    .ct-form-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 575px) {
    .ct-hq-times { grid-template-columns: 1fr; }
    .ct-info-panel { padding: 20px 16px; }
    .ct-form-card { padding: 20px 16px; }
    .ct-ways-section { padding: 24px 0; }
    .ct-faq-section { padding: 24px 0; }
    .ct-map-frame { height: 260px; }
    .ct-cta-strip { padding: 8px 0 32px; }
    .ct-cta-strip__card { padding: 32px 20px !important; }
}
