/* ============================================================================
   City's Towing & Lockout — Contact Page Styles
   File location:  /assets/css/contact.css
   Loaded by:      contact.php  (single <link> tag — no inline CSS)
   Scoped under .ct-contact-page to avoid bleeding into header/footer styles.
   Inherits Inter font from header.php; reuses brand red/black system.
   ============================================================================ */

.ct-contact-page,
.ct-contact-page *{ box-sizing: border-box; }
.ct-contact-page{
    --cp-red:      #D32F2F;
    --cp-red-hot:  #E84141;
    --cp-red-deep: #A81F1F;
    --cp-black:    #000000;
    --cp-ink:      #0B0B0B;
    --cp-ink-2:    #141414;
    --cp-ink-3:    #1B1B1B;
    --cp-white:    #FFFFFF;
    --cp-gray:     #B0B0B0;
    --cp-gray-dim: #6F6F6F;
    --cp-line:     rgba(255,255,255,.08);
    --cp-cream:    #F5F2EE;
    --cp-bone:     #FAFAF8;
    --cp-font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    --cp-shadow:   0 30px 70px -28px rgba(0,0,0,.55);

    font-family: var(--cp-font);
    color: #1a1a1a;
    background: var(--cp-bone);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- shared building blocks ---------- */
.ct-contact-page .cp-container{ max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.ct-contact-page .cp-eyebrow{
    display: inline-flex; align-items: center; gap: 10px;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--cp-red);
    margin-bottom: 16px;
}
.ct-contact-page .cp-eyebrow::before{
    content:""; width: 24px; height: 2px; background: var(--cp-red);
}
.ct-contact-page .cp-h2{
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -.018em;
    line-height: 1.08;
    text-wrap: balance;
}
.ct-contact-page .cp-h2 em{ font-style: normal; color: var(--cp-red); }
.ct-contact-page .cp-lead{
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(0,0,0,.65);
    max-width: 64ch;
    text-wrap: pretty;
}
.ct-contact-page .cp-section{
    padding: 96px 24px;
    position: relative;
}
.ct-contact-page .cp-section--cream{ background: var(--cp-cream); }
.ct-contact-page .cp-section--ink{ background: var(--cp-ink); color: #fff; }
.ct-contact-page .cp-section--ink .cp-lead{ color: var(--cp-gray); }

/* Pulse dot — shared with header */
.ct-contact-page .cp-pulse-dot{
    display: inline-block;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--cp-red);
    box-shadow: 0 0 0 0 rgba(211,47,47,.7);
    animation: cpPulse 1.8s ease-out infinite;
}
.ct-contact-page .cp-pulse-dot--white{
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255,255,255,.7);
}
@keyframes cpPulse{
    0%   { box-shadow: 0 0 0 0 rgba(211,47,47,.65); }
    70%  { box-shadow: 0 0 0 12px rgba(211,47,47,0); }
    100% { box-shadow: 0 0 0 0 rgba(211,47,47,0); }
}

/* Buttons */
.ct-contact-page .cp-btn{
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.2;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ct-contact-page .cp-btn svg{ width: 16px; height: 16px; flex: 0 0 auto; }
.ct-contact-page .cp-btn--primary{
    background: var(--cp-red);
    color: #fff;
    box-shadow: 0 14px 28px -12px rgba(211,47,47,.7), inset 0 1px 0 rgba(255,255,255,.18);
    position: relative;
    overflow: hidden;
}
.ct-contact-page .cp-btn--primary::before{
    content:""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0) 45%);
    pointer-events: none;
}
.ct-contact-page .cp-btn--primary:hover{
    background: var(--cp-red-hot);
    transform: translateY(-2px);
    box-shadow: 0 20px 36px -12px rgba(232,65,65,.85), inset 0 1px 0 rgba(255,255,255,.22);
}
.ct-contact-page .cp-btn--ghost-light{
    background: #fff;
    color: #111;
    border-color: rgba(0,0,0,.08);
    box-shadow: 0 8px 20px -10px rgba(0,0,0,.2);
}
.ct-contact-page .cp-btn--ghost-light:hover{
    border-color: rgba(0,0,0,.18);
    transform: translateY(-2px);
}
.ct-contact-page .cp-btn--ghost-dark{
    background: rgba(255,255,255,.04);
    color: #fff;
    border-color: rgba(255,255,255,.14);
}
.ct-contact-page .cp-btn--ghost-dark:hover{
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.28);
}

/* ============================================================================
   HERO
   ============================================================================ */
.ct-contact-page .cp-hero{
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
    padding: 88px 24px 80px;
}
.ct-contact-page .cp-hero::before,
.ct-contact-page .cp-hero::after{
    content:""; position: absolute; inset: 0; pointer-events: none;
}
.ct-contact-page .cp-hero::before{
    background:
        radial-gradient(50% 70% at 85% 25%, rgba(211,47,47,.28) 0%, rgba(211,47,47,0) 60%),
        radial-gradient(45% 55% at 15% 80%, rgba(211,47,47,.15) 0%, rgba(211,47,47,0) 60%),
        linear-gradient(180deg, #0B0B0B 0%, #000 100%);
    z-index: 0;
}
.ct-contact-page .cp-hero::after{
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 30%, transparent 80%);
    z-index: 0;
}
.ct-contact-page .cp-hero-inner{
    position: relative; z-index: 2;
    max-width: 1320px; margin: 0 auto;
    text-align: center;
}
.ct-contact-page .cp-hero-pre{
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px 8px 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    margin-bottom: 24px;
}
.ct-contact-page .cp-hero h1{
    margin: 0 auto 22px;
    font-size: clamp(36px, 5.6vw, 68px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.04;
    max-width: 18ch;
    text-wrap: balance;
}
.ct-contact-page .cp-hero h1 em{
    font-style: normal;
    background: linear-gradient(180deg, var(--cp-red) 0%, var(--cp-red-hot) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ct-contact-page .cp-hero-sub{
    margin: 0 auto 32px;
    font-size: 18px;
    color: var(--cp-gray);
    max-width: 56ch;
    line-height: 1.6;
    text-wrap: pretty;
}
.ct-contact-page .cp-hero-cta{
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
    margin-bottom: 56px;
}
.ct-contact-page .cp-hero-cta .cp-btn{ padding: 18px 26px; font-size: 16px;}
.ct-contact-page .cp-hero-stats{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--cp-line);
}
.ct-contact-page .cp-stat strong{
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
    margin-bottom: 4px;
}
.ct-contact-page .cp-stat span{
    font-size: 11px; color: var(--cp-gray);
    text-transform: uppercase; letter-spacing: .14em; font-weight: 600;
}

/* ============================================================================
   EMERGENCY CALL STRIP
   ============================================================================ */
.ct-contact-page .cp-strip{
    background: linear-gradient(90deg, var(--cp-red-deep) 0%, var(--cp-red) 50%, var(--cp-red-deep) 100%);
    color: #fff;
    padding: 22px 24px;
    border-top: 1px solid rgba(0,0,0,.2);
    border-bottom: 1px solid rgba(0,0,0,.2);
}
.ct-contact-page .cp-strip-inner{
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
}
.ct-contact-page .cp-strip-text{
    display: flex; align-items: center; gap: 14px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.005em;
}
.ct-contact-page .cp-strip a{
    color: #fff; text-decoration: none;
    font-size: 18px; font-weight: 800; letter-spacing: -.01em;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    background: rgba(0,0,0,.18);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.18);
    transition: background .18s ease, transform .18s ease;
}
.ct-contact-page .cp-strip a:hover{ background: rgba(0,0,0,.3); transform: translateY(-1px); }
.ct-contact-page .cp-strip a svg{ width: 18px; height: 18px;}

/* ============================================================================
   MAIN CONTACT GRID  (form + info)
   ============================================================================ */
.ct-contact-page .cp-main{
    background: var(--cp-ink);
    color: #fff;
    padding: 96px 24px;
    border-bottom: 1px solid var(--cp-line);
}
.ct-contact-page .cp-grid{
    max-width: 1320px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Form card */
.ct-contact-page .cp-card{
    background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
    border: 1px solid var(--cp-line);
    border-radius: 18px;
    padding: 36px;
    box-shadow: var(--cp-shadow);
}
.ct-contact-page .cp-card-tag{
    color: var(--cp-red);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.ct-contact-page .cp-card h3{
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.012em;
    line-height: 1.2;
}
.ct-contact-page .cp-card-sub{
    margin: 0 0 24px;
    color: var(--cp-gray);
    font-size: 14.5px;
    line-height: 1.55;
}

.ct-contact-page .cp-form{ display: grid; gap: 14px; }
.ct-contact-page .cp-field{ display: flex; flex-direction: column; gap: 6px; }
.ct-contact-page .cp-field label{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cp-gray);
}
.ct-contact-page .cp-field input,
.ct-contact-page .cp-field select,
.ct-contact-page .cp-field textarea{
    background: rgba(255,255,255,.03);
    color: #fff;
    border: 1px solid var(--cp-line);
    border-radius: 10px;
    padding: 13px 14px;
    font-size: 15px;
    font-family: inherit;
    width: 100%;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.ct-contact-page .cp-field input::placeholder,
.ct-contact-page .cp-field textarea::placeholder{ color: var(--cp-gray-dim); }
.ct-contact-page .cp-field textarea{ resize: vertical; min-height: 110px; }
.ct-contact-page .cp-field input:focus,
.ct-contact-page .cp-field select:focus,
.ct-contact-page .cp-field textarea:focus{
    outline: none;
    border-color: var(--cp-red);
    background: rgba(211,47,47,.06);
    box-shadow: 0 0 0 4px rgba(211,47,47,.18);
}
.ct-contact-page .cp-field select{
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23B0B0B0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 38px;
}
.ct-contact-page .cp-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct-contact-page .cp-submit{
    width: 100%; justify-content: center;
    padding: 16px 22px;
    font-size: 15.5px;
    margin-top: 8px;
}
.ct-contact-page .cp-submit[disabled]{ opacity: .85; cursor: progress; }
.ct-contact-page .cp-spinner{
    display: none;
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cpSpin .8s linear infinite;
}
.ct-contact-page .cp-submit.is-loading .cp-spinner{ display: inline-block; }
.ct-contact-page .cp-submit.is-loading .cp-submit-label{ opacity: .85; }
.ct-contact-page .cp-submit.is-loading svg.cp-arrow{ display: none; }
@keyframes cpSpin{ to { transform: rotate(360deg); } }
.ct-contact-page .cp-form-foot{
    margin: 10px 0 0;
    text-align: center;
    color: var(--cp-gray-dim);
    font-size: 12px;
}
.ct-contact-page .cp-form-foot a{ color: #fff; font-weight: 700; text-decoration: none; }

/* Thank-you */
.ct-contact-page .cp-thanks{
    display: none;
    text-align: center;
    padding: 12px 0 4px;
}
.ct-contact-page .cp-thanks.is-active{ display: block; animation: cpFadeUp .55s ease both; }
.ct-contact-page .cp-form.is-hidden{ display: none; }
.ct-contact-page .cp-thanks-icon{
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 2px solid var(--cp-red);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    position: relative;
}
.ct-contact-page .cp-thanks-icon svg{
    width: 38px; height: 38px; color: var(--cp-red);
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: cpCheck .7s .2s ease forwards;
}
@keyframes cpCheck{ to { stroke-dashoffset: 0; } }
.ct-contact-page .cp-thanks-icon::before{
    content:""; position: absolute; inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--cp-red);
    opacity: 0;
    animation: cpPulseRing 1.6s .3s ease-out infinite;
}
@keyframes cpPulseRing{
    0%   { transform: scale(.85); opacity: .6; }
    100% { transform: scale(1.3); opacity: 0; }
}
.ct-contact-page .cp-thanks h4{
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.012em;
    color: #fff;
}
.ct-contact-page .cp-thanks p{
    margin: 0 0 24px;
    color: var(--cp-gray);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 42ch;
    margin-left: auto; margin-right: auto;
}
@keyframes cpFadeUp{
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Info column */
.ct-contact-page .cp-info-head{ margin-bottom: 32px; }
.ct-contact-page .cp-info-head h2{ color: #fff;}
.ct-contact-page .cp-info-head p{ color: var(--cp-gray); font-size: 16px; line-height: 1.6; max-width: 48ch; margin: 16px 0 0;}

.ct-contact-page .cp-info-list{
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 14px;
}
.ct-contact-page .cp-info-item{
    background: var(--cp-ink-2);
    border: 1px solid var(--cp-line);
    border-radius: 14px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 18px;
    transition: border-color .2s ease, transform .2s ease;
}
.ct-contact-page .cp-info-item:hover{
    border-color: rgba(211,47,47,.35);
    transform: translateY(-2px);
}
.ct-contact-page .cp-info-icon{
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(211,47,47,.12);
    color: var(--cp-red);
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 auto;
}
.ct-contact-page .cp-info-icon svg{ width: 20px; height: 20px;}
.ct-contact-page .cp-info-text{ min-width: 0; }
.ct-contact-page .cp-info-text small{
    display: block;
    font-size: 11px;
    color: var(--cp-gray);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}
.ct-contact-page .cp-info-text strong{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.005em;
    word-break: break-word;
}
.ct-contact-page .cp-info-text a{ color: #fff; text-decoration: none;}
.ct-contact-page .cp-info-text a:hover{ color: var(--cp-red-hot);}
.ct-contact-page .cp-info-action{
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--cp-line);
    color: #fff;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease;
    flex: 0 0 auto;
}
.ct-contact-page .cp-info-action:hover{
    background: rgba(211,47,47,.16);
    border-color: rgba(211,47,47,.45);
}
.ct-contact-page .cp-info-action svg{ width: 16px; height: 16px;}

/* Quick response section under info */
.ct-contact-page .cp-quick{
    margin-top: 22px;
    padding: 22px 24px;
    background:
        radial-gradient(80% 120% at 100% 0%, rgba(232,65,65,.18) 0%, rgba(232,65,65,0) 60%),
        var(--cp-ink-2);
    border: 1px solid rgba(211,47,47,.32);
    border-radius: 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
}
.ct-contact-page .cp-quick-text{ min-width: 0; }
.ct-contact-page .cp-quick-text strong{
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -.005em;
}
.ct-contact-page .cp-quick-text span{
    color: var(--cp-gray);
    font-size: 13.5px;
    line-height: 1.5;
}

/* ============================================================================
   AREAS SERVED
   ============================================================================ */
.ct-contact-page .cp-areas-head{
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 32px; flex-wrap: wrap;
    margin-bottom: 36px;
}
.ct-contact-page .cp-areas-head > div{ max-width: 64ch;}
.ct-contact-page .cp-areas-grid{
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.ct-contact-page .cp-areas-grid a{
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 12px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    transition: background .18s ease, border-color .18s ease, transform .18s ease, color .18s ease;
}
.ct-contact-page .cp-areas-grid a:hover{
    border-color: rgba(211,47,47,.5);
    color: var(--cp-red);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -16px rgba(0,0,0,.15);
}
.ct-contact-page .cp-areas-grid a svg{
    width: 14px; height: 14px;
    color: rgba(0,0,0,.3);
    transition: color .18s ease, transform .18s ease;
}
.ct-contact-page .cp-areas-grid a:hover svg{
    color: var(--cp-red);
    transform: translateX(3px);
}

/* ============================================================================
   REVIEWS (compact 3-up)
   ============================================================================ */
.ct-contact-page .cp-reviews-head{
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 32px; flex-wrap: wrap;
    margin-bottom: 40px;
}
.ct-contact-page .cp-reviews-head > div{ max-width: 64ch; }
.ct-contact-page .cp-reviews-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.ct-contact-page .cp-review-card{
    background: var(--cp-ink-2);
    border: 1px solid var(--cp-line);
    border-radius: 16px;
    padding: 28px;
    display: flex; flex-direction: column; gap: 18px;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ct-contact-page .cp-review-card:hover{
    border-color: rgba(211,47,47,.35);
    transform: translateY(-3px);
    box-shadow: 0 28px 50px -22px rgba(211,47,47,.3);
}
.ct-contact-page .cp-stars{ display: inline-flex; gap: 2px; color: #FFC745;}
.ct-contact-page .cp-stars svg{ width: 16px; height: 16px;}
.ct-contact-page .cp-review-text{
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    text-wrap: pretty;
}
.ct-contact-page .cp-review-meta{
    display: flex; align-items: center; gap: 12px;
    margin-top: auto;
}
.ct-contact-page .cp-review-avatar{
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--cp-red);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    flex: 0 0 auto;
}
.ct-contact-page .cp-review-name{
    display: flex; flex-direction: column; line-height: 1.2;
}
.ct-contact-page .cp-review-name strong{ color: #fff; font-size: 14px; font-weight: 700;}
.ct-contact-page .cp-review-name span{
    color: var(--cp-gray);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

/* ============================================================================
   FINAL CTA
   ============================================================================ */
.ct-contact-page .cp-final{
    position: relative;
    overflow: hidden;
    padding: 120px 24px;
    background:
        radial-gradient(60% 80% at 100% 0%, rgba(232,65,65,.22) 0%, rgba(232,65,65,0) 60%),
        radial-gradient(50% 70% at 0% 100%, rgba(211,47,47,.15) 0%, rgba(211,47,47,0) 60%),
        linear-gradient(180deg, #0B0B0B 0%, #000 100%);
    color: #fff;
    text-align: center;
}
.ct-contact-page .cp-final .cp-eyebrow{ justify-content: center; }
.ct-contact-page .cp-final h2{
    margin: 0 auto 18px;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -.022em;
    line-height: 1.05;
    max-width: 22ch;
    text-wrap: balance;
}
.ct-contact-page .cp-final h2 em{
    font-style: normal;
    background: linear-gradient(180deg, var(--cp-red) 0%, var(--cp-red-hot) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ct-contact-page .cp-final p{
    margin: 0 auto 44px;
    color: var(--cp-gray);
    font-size: 17px;
    line-height: 1.6;
    max-width: 56ch;
}
.ct-contact-page .cp-final-actions{
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.ct-contact-page .cp-final-actions .cp-btn{ padding: 18px 28px; font-size: 16px;}

/* ============================================================================
   STICKY MOBILE CALL
   ============================================================================ */
.ct-contact-page .cp-sticky-call{
    display: none;
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    z-index: 950;
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--cp-red);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -.01em;
    font-size: 15.5px;
    text-align: center;
    box-shadow: 0 18px 36px -10px rgba(211,47,47,.6), 0 2px 10px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.18);
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.ct-contact-page .cp-sticky-call svg{ width: 18px; height: 18px;}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1100px){
    .ct-contact-page .cp-grid{ grid-template-columns: 1fr; gap: 48px; }
    .ct-contact-page .cp-info-head{ margin-top: 8px; }
    .ct-contact-page .cp-areas-grid{ grid-template-columns: repeat(3, 1fr); }
    .ct-contact-page .cp-reviews-grid{ grid-template-columns: 1fr 1fr; }
    .ct-contact-page .cp-reviews-grid .cp-review-card:last-child{ display: none; }
}
@media (max-width: 880px){
    .ct-contact-page .cp-section{ padding: 72px 24px; }
    .ct-contact-page .cp-main{ padding: 72px 24px; }
    .ct-contact-page .cp-hero{ padding: 72px 24px 64px; }
    .ct-contact-page .cp-hero-stats{ grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .ct-contact-page .cp-row{ grid-template-columns: 1fr; }
    .ct-contact-page .cp-card{ padding: 28px; }
    .ct-contact-page .cp-reviews-grid{ grid-template-columns: 1fr; }
    .ct-contact-page .cp-reviews-grid .cp-review-card:last-child{ display: flex; }
    .ct-contact-page .cp-areas-grid{ grid-template-columns: repeat(2, 1fr); }
    .ct-contact-page .cp-final{ padding: 96px 24px; }
}
@media (max-width: 640px){
    .ct-contact-page .cp-section{ padding: 60px 20px; }
    .ct-contact-page .cp-main{ padding: 60px 20px; }
    .ct-contact-page .cp-hero{ padding: 60px 20px 52px; }
    .ct-contact-page .cp-hero-cta{ flex-direction: column; align-items: stretch; }
    .ct-contact-page .cp-hero-cta .cp-btn{ justify-content: center; }
    .ct-contact-page .cp-strip-inner{ flex-direction: column; align-items: flex-start; }
    .ct-contact-page .cp-strip a{ align-self: stretch; justify-content: center; }
    .ct-contact-page .cp-info-item{ grid-template-columns: 44px 1fr; gap: 14px;}
    .ct-contact-page .cp-info-action{ grid-column: 1 / -1; justify-self: stretch; width: auto; height: 44px;}
    .ct-contact-page .cp-quick{ grid-template-columns: 1fr; }
    .cp-quick .cp-btn{ width: 100%; justify-content: center;}
    .ct-contact-page .cp-areas-head,
    .ct-contact-page .cp-reviews-head{ margin-bottom: 28px;}
    .ct-contact-page .cp-final{ padding: 80px 20px;}
    .ct-contact-page .cp-sticky-call{ display: inline-flex; }
    .ct-contact-page{ padding-bottom: 76px; }
}
@media (max-width: 420px){
    .ct-contact-page .cp-areas-grid{ grid-template-columns: 1fr; }
    .ct-contact-page .cp-hero-stats{ grid-template-columns: 1fr 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
    .ct-contact-page *{ animation: none !important; transition: none !important;}
}
