/* =========================================================
   contact-beauty.css — Contact Page Styles
   Namespace: ctc-
   Accent: #f38b2a (orange) / #10b981 (green trust)
   Depends on: style.css, responsive.css, home-beauty.css
   ========================================================= */

/* ── KEYFRAMES ─────────────────────────────────────────── */
@keyframes ctcFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes ctcSpin {
    to { transform: rotate(360deg); }
}
@keyframes ctcSlideIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* =========================================================
   SECTION 1 — HERO
   ========================================================= */
.ctc-hero-section {
    position: relative;
    background: linear-gradient(150deg, #fff9f3 0%, #ffffff 50%, #f3fbff 100%);
    padding: clamp(72px, 9vw, 110px) 0 clamp(56px, 7vw, 90px);
    overflow: hidden;
    border-bottom: 1px solid rgba(243,139,42,0.08);
}

/* Background blobs */
.ctc-hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ctc-hero-shape { position: absolute; border-radius: 50%; }
.ctc-shape-1 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(243,139,42,0.10), transparent 65%);
    top: -180px; right: -60px;
}
.ctc-shape-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(16,185,129,0.08), transparent 65%);
    bottom: -100px; left: 0;
}
.ctc-shape-3 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(59,130,246,0.06), transparent 65%);
    top: 40%; left: 38%;
}

.ctc-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.ctc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    color: #6b7280;
    margin-bottom: 16px;
}
.ctc-breadcrumb a { color: #6b7280; transition: color 0.2s; }
.ctc-breadcrumb a:hover { color: #f38b2a; }

/* Hero badge */
.ctc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243,139,42,0.08);
    border: 1px solid rgba(243,139,42,0.25);
    color: #b45309;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}
.ctc-badge-dot {
    width: 7px; height: 7px;
    background: #f38b2a;
    border-radius: 50%;
    animation: ctcSpin 0s; /* reuse name – actually dotBlink */
    box-shadow: 0 0 6px rgba(243,139,42,0.6);
}

.ctc-hero-text h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.1rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.ctc-title-accent {
    background: linear-gradient(135deg, #f38b2a 0%, #e07620 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ctc-hero-desc {
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Quick link pills */
.ctc-hero-quick-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.ctc-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.ctc-ql-call  { background: #f38b2a; color: #fff; box-shadow: 0 4px 12px rgba(243,139,42,0.28); }
.ctc-ql-call:hover  { background: #e07620; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(243,139,42,0.38); }
.ctc-ql-email { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.ctc-ql-email:hover { background: #dbeafe; transform: translateY(-2px); }
.ctc-ql-form  { background: #f0fdf4; color: #059669; border: 1px solid #a7f3d0; }
.ctc-ql-form:hover  { background: #dcfce7; transform: translateY(-2px); }

/* Hero info card */
.ctc-hero-visual { display: flex; flex-direction: column; align-items: center; }

.ctc-info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(11,28,46,0.11), 0 2px 8px rgba(11,28,46,0.05);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    animation: ctcFloat 6s ease-in-out infinite;
}

.ctc-card-header {
    background: var(--color-primary);
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ctc-card-dot { width: 10px; height: 10px; border-radius: 50%; }
.ctc-dot-green { background: #10b981; }
.ctc-dot-amber { background: #f59e0b; }
.ctc-dot-red   { background: #ef4444; }
.ctc-card-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-left: 8px; font-weight: 500; }

.ctc-info-list { list-style: none; margin: 0; padding: 4px 0; }
.ctc-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s;
}
.ctc-info-row:last-child { border-bottom: none; }
.ctc-info-row:hover { background: #fafafa; }

.ctc-info-icon {
    width: 30px; height: 30px;
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ctc-icon-orange { background: rgba(243,139,42,0.12); color: #f38b2a; }
.ctc-icon-blue   { background: rgba(59,130,246,0.12);  color: #3b82f6; }
.ctc-icon-green  { background: rgba(16,185,129,0.12);  color: #10b981; }
.ctc-icon-purple { background: rgba(139,92,246,0.12);  color: #8b5cf6; }

.ctc-info-detail { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ctc-info-label  { font-size: 0.68rem; color: #9ca3af; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.ctc-info-value  { font-size: 0.84rem; color: #111827; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ctc-info-tag {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 20px;
    flex-shrink: 0;
    white-space: nowrap;
}
.ctc-tag-available { background: rgba(16,185,129,0.12); color: #059669; }
.ctc-tag-fast      { background: rgba(59,130,246,0.12);  color: #2563eb; }
.ctc-tag-open      { background: rgba(16,185,129,0.12);  color: #059669; }
.ctc-tag-national  { background: rgba(139,92,246,0.12);  color: #7c3aed; }

.ctc-card-footer {
    background: #f9fafb;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    color: #6b7280;
    border-top: 1px solid #f3f4f6;
}

/* =========================================================
   SECTION 2 — CONTACT CHANNELS
   ========================================================= */
.ctc-channels-section {
    padding: clamp(36px, 5vw, 56px) 0;
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.ctc-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ctc-channel-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 8px rgba(11,28,46,0.04);
    transition: box-shadow 0.25s, transform 0.25s;
}
.ctc-channel-card:hover {
    box-shadow: 0 8px 26px rgba(11,28,46,0.09);
    transform: translateY(-3px);
}

.ctc-channel-icon {
    width: 50px; height: 50px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
}
.ctc-channel-icon svg { width: 22px; height: 22px; }
.ctc-ch-orange { background: rgba(243,139,42,0.12); color: #f38b2a; }
.ctc-ch-blue   { background: rgba(59,130,246,0.12);  color: #3b82f6; }
.ctc-ch-green  { background: rgba(16,185,129,0.12);  color: #10b981; }

.ctc-channel-body { flex: 1; }
.ctc-channel-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--color-primary); margin-bottom: 4px; }
.ctc-channel-value   { font-size: 0.92rem; font-weight: 700; color: #f38b2a; margin-bottom: 8px; }
.ctc-channel-desc    { font-size: 0.84rem; color: #6b7280; line-height: 1.6; margin-bottom: 8px; }
.ctc-channel-hours   { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: #9ca3af; font-weight: 500; }

.ctc-ch-btn { text-align: center; justify-content: center; font-size: 0.875rem; }

.ctc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    background: transparent;
    transition: all 0.2s;
    justify-content: center;
}
.ctc-btn-outline:hover { background: #3b82f6; color: #fff; }

/* =========================================================
   SECTION 3 — FORMS
   ========================================================= */
.ctc-form-section {
    padding: clamp(56px, 7vw, 96px) 0;
    background: #fff;
}

.ctc-form-header {
    text-align: center;
    margin-bottom: 44px;
}
.ctc-form-header h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.ctc-form-header p { font-size: 1rem; color: #6b7280; }

/* Layout */
.ctc-form-layout {
    display: grid;
    grid-template-columns: 252px 1fr;
    gap: 28px;
    align-items: start;
}

/* ── Sidebar ── */
.ctc-selector-sidebar { position: sticky; top: 90px; }

.ctc-selector-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    padding: 0 4px;
}

.ctc-service-tabs {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ctc-tab {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
    border-radius: 9px;
    font-size: 0.855rem;
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.18s ease;
    width: 100%;
    font-family: inherit;
}
.ctc-tab svg { flex-shrink: 0; opacity: 0.65; }
.ctc-tab:hover { background: #fff8f1; color: #f38b2a; }
.ctc-tab:hover svg { opacity: 1; }
.ctc-tab.active {
    background: linear-gradient(135deg, #fff8f1, #fff2e5);
    color: #d97706;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(243,139,42,0.13);
}
.ctc-tab.active svg { opacity: 1; }

.ctc-selector-info {
    margin-top: 18px;
    padding: 12px 14px;
    background: #f0fdf4;
    border-radius: 9px;
    border: 1px solid #a7f3d0;
    display: flex;
    gap: 9px;
    align-items: flex-start;
}
.ctc-selector-info svg { flex-shrink: 0; color: #10b981; margin-top: 2px; }
.ctc-selector-info p { font-size: 0.78rem; color: #065f46; line-height: 1.5; margin: 0; }

/* ── Form panel ── */
.ctc-form-panel {
    background: #f9fafb;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #f3f4f6;
}

.ctc-form-helper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 11px 14px;
    background: #eff6ff;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
    font-size: 0.82rem;
    color: #1d4ed8;
    margin-bottom: 26px;
    line-height: 1.5;
}
.ctc-form-helper svg { flex-shrink: 0; color: #3b82f6; margin-top: 1px; }

/* Dynamic forms */
.ctc-dynamic-form { display: none; animation: ctcSlideIn 0.28s ease; }
.ctc-dynamic-form.ctc-form-active { display: block; }

/* Fieldsets */
.ctc-fieldset { border: none; padding: 0; margin: 0 0 26px; }
.ctc-fieldset legend {
    font-size: 0.78rem;
    font-weight: 700;
    color: #f38b2a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0;
    margin-bottom: 14px;
    display: block;
    width: 100%;
    padding-bottom: 9px;
    border-bottom: 2px solid rgba(243,139,42,0.15);
}

/* Grid */
.ctc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.ctc-form-group { display: flex; flex-direction: column; gap: 5px; }
.ctc-form-group label { font-size: 0.83rem; font-weight: 600; color: #374151; }
.ctc-req-star { color: #ef4444; margin-left: 2px; }

.ctc-form-group input,
.ctc-form-group select,
.ctc-form-group textarea {
    width: 100%;
    padding: 9px 13px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: inherit;
    color: #111827;
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s;
    appearance: none;
    -webkit-appearance: none;
}
.ctc-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 11px center;
    padding-right: 34px;
    cursor: pointer;
}
.ctc-form-group input:focus,
.ctc-form-group select:focus,
.ctc-form-group textarea:focus {
    outline: none;
    border-color: #f38b2a;
    box-shadow: 0 0 0 3px rgba(243,139,42,0.11);
}
.ctc-form-group input.ctc-field-invalid,
.ctc-form-group select.ctc-field-invalid,
.ctc-form-group textarea.ctc-field-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.09);
}
.ctc-form-group textarea { resize: vertical; min-height: 96px; }
.ctc-field-error { font-size: 0.76rem; color: #ef4444; font-weight: 500; min-height: 15px; display: block; }
.ctc-helper-text { font-size: 0.76rem; color: #9ca3af; font-style: italic; }
.ctc-full-width  { grid-column: 1 / -1; }

/* Radios */
.ctc-radio-group { display: flex; gap: 8px; flex-wrap: wrap; }
.ctc-radio-option { display: flex; align-items: center; gap: 0; cursor: pointer; }
.ctc-radio-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.ctc-radio-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    font-size: 0.855rem;
    font-weight: 500;
    color: #6b7280;
    background: #fff;
    cursor: pointer;
    transition: all 0.18s;
}
.ctc-radio-option input[type="radio"]:checked + .ctc-radio-label {
    border-color: #f38b2a;
    background: rgba(243,139,42,0.07);
    color: #b45309;
    font-weight: 700;
}
.ctc-radio-label:hover { border-color: #f38b2a; color: #f38b2a; }

/* Conditional field */
.ctc-conditional-field { grid-column: 1 / -1; animation: ctcSlideIn 0.22s ease; }

/* Submit */
.ctc-form-actions { margin-top: 20px; }
.ctc-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #f38b2a, #e07620);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(243,139,42,0.28);
}
.ctc-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #e07620, #c96a10);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243,139,42,0.38);
}
.ctc-submit-btn:disabled { opacity: 0.72; cursor: not-allowed; }

/* Success */
.ctc-form-success {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 10px;
    border: 1.5px solid #86efac;
    margin-top: 18px;
    animation: ctcSlideIn 0.32s ease;
}
.ctc-form-success svg { flex-shrink: 0; color: #16a34a; }
.ctc-form-success strong { display: block; font-size: 0.95rem; color: #15803d; margin-bottom: 3px; }
.ctc-form-success p { font-size: 0.84rem; color: #166534; margin: 0; line-height: 1.5; }

/* =========================================================
   SECTION 4 — WHAT HAPPENS NEXT
   ========================================================= */
.ctc-next-section {
    padding: clamp(56px, 7vw, 90px) 0;
    background: var(--color-primary);
}
.ctc-next-header { text-align: center; margin-bottom: 48px; }
.ctc-next-header h2 { font-size: clamp(1.55rem, 2.6vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.ctc-next-header p  { color: rgba(255,255,255,0.6); font-size: 1rem; }

.ctc-next-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 14px;
}
.ctc-next-step {
    text-align: center;
    padding: 22px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    transition: background 0.22s;
}
.ctc-next-step:hover { background: rgba(255,255,255,0.10); }
.ctc-step-num {
    font-size: 0.68rem; font-weight: 800; color: #f38b2a;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px;
}
.ctc-step-icon {
    width: 52px; height: 52px;
    background: rgba(243,139,42,0.18);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    color: #f38b2a;
}
.ctc-step-icon svg { width: 24px; height: 24px; }
.ctc-next-step h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 7px; }
.ctc-next-step p  { font-size: 0.82rem; color: rgba(255,255,255,0.58); line-height: 1.6; }

.ctc-next-connector {
    display: flex; align-items: center; justify-content: center;
    color: rgba(243,139,42,0.45);
    padding-top: 58px;
}
.ctc-next-connector svg { width: 22px; height: 22px; }

/* =========================================================
   SECTION 5 — BUSINESS INFO + FAQ
   ========================================================= */
.ctc-info-section {
    padding: clamp(56px, 7vw, 90px) 0;
    background: #f9fafb;
}
.ctc-info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.ctc-business-col h2, .ctc-faq-col h2 {
    font-size: clamp(1.4rem, 2.3vw, 1.8rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.ctc-biz-block { margin-bottom: 26px; }
.ctc-biz-block h3 {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.82rem; font-weight: 700; color: var(--color-primary);
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 10px; padding-bottom: 8px;
    border-bottom: 2px solid rgba(243,139,42,0.14);
}
.ctc-biz-block h3 svg { color: #f38b2a; }

.ctc-biz-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.ctc-biz-list li { font-size: 0.875rem; color: #4b5563; }
.ctc-biz-list a { color: #f38b2a; font-weight: 600; }
.ctc-biz-list a:hover { text-decoration: underline; }

/* Hours */
.ctc-hours-list li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 10px; border-radius: 6px; font-size: 0.855rem;
}
.ctc-hours-list li:nth-child(odd) { background: rgba(243,139,42,0.04); }
.ctc-hours-list li span { color: #6b7280; }
.ctc-hours-list li strong { color: #111827; }
.ctc-closed { color: #9ca3af !important; font-style: italic; }
.ctc-biz-text { font-size: 0.875rem; color: #6b7280; line-height: 1.65; }

/* Credentials */
.ctc-credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 24px;
}
.ctc-cred-badge {
    display: flex; align-items: center; gap: 9px;
    padding: 11px 13px;
    background: #fff;
    border-radius: 9px;
    border: 1px solid #f3f4f6;
    font-size: 0.80rem;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 1px 4px rgba(11,28,46,0.04);
}
.ctc-cred-badge svg { width: 17px; height: 17px; color: #f38b2a; flex-shrink: 0; }

/* FAQ */
.ctc-faq-list { display: flex; flex-direction: column; gap: 7px; }
.ctc-faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
    position: relative;
}
.ctc-faq-item:hover {
    border-color: rgba(243,139,42,0.25);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.ctc-faq-item.ctc-faq-open {
    box-shadow: 0 4px 14px rgba(243,139,42,0.10);
    border-color: #f38b2a;
}
.ctc-faq-question {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; width: 100%; padding: 15px 16px;
    min-height: 52px;
    background: transparent; border: none; text-align: left;
    font-size: 0.875rem; font-weight: 700; color: #111827;
    cursor: pointer; transition: background 0.18s, color 0.18s; font-family: inherit;
}
.ctc-faq-question:hover { background: #fff8f0; }
.ctc-faq-item.ctc-faq-open .ctc-faq-question { color: #f38b2a; background: #fff8f0; }
.ctc-faq-icon { flex-shrink: 0; color: #9ca3af; transition: transform 0.3s, color 0.2s; }
.ctc-faq-item.ctc-faq-open .ctc-faq-icon { transform: rotate(180deg); color: #f38b2a; }
.ctc-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.32s ease, opacity 0.25s ease; padding: 0 16px; opacity: 0; }
.ctc-faq-item.ctc-faq-open .ctc-faq-answer { max-height: 1000px; padding: 0 16px 16px; opacity: 1; }
.ctc-faq-answer p { font-size: 0.875rem; color: #475569; line-height: 1.7; margin: 0; border-top: 1px solid #f3f4f6; padding-top: 0.875rem; }

/* =========================================================
   SECTION 6 — FINAL CTA
   ========================================================= */
.ctc-final-section {
    padding: clamp(52px, 7vw, 84px) 0;
    background: linear-gradient(150deg, var(--color-primary) 0%, #0d2440 65%, #1a3a5c 100%);
    position: relative; overflow: hidden;
}
.ctc-final-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(243,139,42,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(16,185,129,0.07) 0%, transparent 55%);
    pointer-events: none;
}
.ctc-final-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 36px; position: relative; z-index: 1;
}
.ctc-final-text h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.ctc-final-text p  { font-size: 1rem; color: rgba(255,255,255,0.68); line-height: 1.6; max-width: 460px; }
.ctc-final-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

.ctc-btn-light {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px;
    background: rgba(255,255,255,0.10);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.28);
    border-radius: 8px;
    font-size: 0.92rem; font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}
.ctc-btn-light:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

/* =========================================================
   RESPONSIVE — 1200px
   ========================================================= */
@media (max-width: 1200px) {
    .ctc-hero-inner   { gap: 32px; }
    .ctc-form-layout  { grid-template-columns: 224px 1fr; gap: 20px; }
    .ctc-info-layout  { gap: 36px; }
    .ctc-final-inner  { flex-direction: column; text-align: center; }
    .ctc-final-actions { justify-content: center; }
    .ctc-final-text p  { margin: 0 auto; }
}

/* =========================================================
   RESPONSIVE — 1024px (tablets + small laptops)
   ========================================================= */
@media (max-width: 1024px) {
    .ctc-next-steps {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .ctc-next-connector { display: none; }
}

/* =========================================================
   RESPONSIVE — 900px
   ========================================================= */
@media (max-width: 900px) {
    /* Hero stacks */
    .ctc-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .ctc-hero-text .ctc-breadcrumb { justify-content: center; }
    .ctc-hero-desc  { margin: 0 auto 28px; }
    .ctc-hero-quick-links { justify-content: center; }
    .ctc-hero-visual { order: -1; }
    .ctc-info-card  { max-width: 400px; }

    /* Channels stack */
    .ctc-channels-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    /* Forms: sidebar becomes horizontal tabs */
    .ctc-form-layout { grid-template-columns: 1fr; }
    .ctc-selector-sidebar { position: static; }
    .ctc-service-tabs { flex-direction: row; flex-wrap: wrap; gap: 6px; }
    .ctc-tab { flex: 0 0 auto; padding: 8px 11px; font-size: 0.82rem; }
    .ctc-tab svg { width: 15px; height: 15px; }

    /* Business / FAQ stack */
    .ctc-info-layout { grid-template-columns: 1fr; gap: 44px; }

    /* Next steps 2-col */
    .ctc-next-steps { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   RESPONSIVE — 640px (phones)
   ========================================================= */
@media (max-width: 640px) {
    .ctc-hero-section { padding: 56px 0 40px; }
    .ctc-hero-text h1 { font-size: 2rem; }
    .ctc-info-card { max-width: 100%; }
    .ctc-info-value { font-size: 0.78rem; }

    /* Quick links wrap nicely */
    .ctc-hero-quick-links { gap: 8px; }
    .ctc-quick-link { padding: 9px 14px; font-size: 0.82rem; }

    /* Channels full width */
    .ctc-channels-grid { max-width: 100%; }

    /* Form panel tighter */
    .ctc-form-panel { padding: 18px 14px; }
    .ctc-form-grid  { grid-template-columns: 1fr !important; }
    .ctc-full-width { grid-column: 1; }

    /* Service tabs wrap small */
    .ctc-tab { padding: 7px 9px; font-size: 0.78rem; gap: 5px; }
    .ctc-tab svg { display: none; }
    .ctc-selector-info { display: none; }

    /* Next steps 1-col */
    .ctc-next-steps { grid-template-columns: 1fr; }

    /* Credentials 1-col */
    .ctc-credentials-grid { grid-template-columns: 1fr; }

    /* Final CTA */
    .ctc-final-actions { flex-direction: column; width: 100%; }
    .ctc-final-actions > * { width: 100%; justify-content: center; text-align: center; }
}

/* =========================================================
   RESPONSIVE — 420px (small phones)
   ========================================================= */
@media (max-width: 420px) {
    .ctc-hero-text h1 { font-size: 1.75rem; }
    .ctc-form-header h2 { font-size: 1.4rem; }
    .ctc-submit-btn { width: 100%; justify-content: center; }
    .ctc-radio-label { padding: 6px 11px; font-size: 0.80rem; }
    .ctc-faq-question { font-size: 0.84rem; padding: 14px 13px; min-height: 52px; }
    .ctc-final-text h2 { font-size: 1.5rem; }
    .ctc-next-header h2 { font-size: 1.4rem; }
    .ctc-info-tag { display: none; }
}

/* =========================================================
   MOBILE-FIRST LEAD GEN OPTIMISATION
   Form visible in one screen without scrolling on mobile
   ========================================================= */

/* Mobile form header — hidden on desktop, shown on mobile */
.ctc-mobile-form-header { display: none; }

@media (max-width: 900px) {
    /* Show mobile form header */
    .ctc-mobile-form-header {
        display: block;
        text-align: center;
        margin-bottom: 12px;
    }
    .ctc-mobile-form-header h2 {
        font-size: 1.25rem;
        font-weight: 800;
        color: #1e293b;
        margin: 0 0 4px;
        line-height: 1.2;
    }
    .ctc-mobile-form-header p {
        font-size: 0.82rem;
        color: #64748b;
        margin: 0;
        line-height: 1.4;
    }

    /* Hide hero text on mobile — form is the focus */
    .ctc-hero-text { display: none; }

    /* Hero visual takes full width, stacks children vertically */
    .ctc-hero-visual {
        width: 100%;
        align-items: stretch;
    }

    /* Reduce hero section padding drastically */
    .ctc-hero-section {
        padding: 12px 0 20px !important;
    }

    /* Compact form panel */
    .ctc-form-panel {
        padding: 16px 14px !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
    }

    /* Tighter form grid */
    .ctc-form-grid {
        gap: 6px !important;
    }

    /* Compact form fields */
    .ctc-form-group {
        margin-bottom: 0 !important;
    }
    .ctc-form-group label {
        font-size: 0.78rem !important;
        margin-bottom: 2px !important;
    }
    .ctc-form-group input,
    .ctc-form-group textarea {
        padding: 0.55rem 0.8rem !important;
        font-size: 0.88rem !important;
        border-radius: 8px !important;
        border-width: 1.5px !important;
    }

    /* Hide error spans to save space (validation still works on submit) */
    .ctc-field-error {
        min-height: 0 !important;
        margin-top: 0 !important;
        font-size: 0.7rem !important;
    }

    /* Compact message field — smaller */
    .ctc-form-group textarea {
        min-height: 48px !important;
        resize: none !important;
    }

    /* Compact consent */
    .ctc-form-consent {
        margin-top: 8px !important;
        gap: 8px !important;
    }
    .ctc-form-consent label {
        font-size: 10px !important;
        line-height: 1.35 !important;
    }
    .ctc-form-consent input[type="checkbox"] {
        width: 14px !important;
        height: 14px !important;
    }

    /* Compact submit button */
    .ctc-form-actions {
        margin-top: 10px !important;
    }
    .ctc-submit-btn,
    .ctc-form-actions button {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
        margin-top: 0 !important;
    }

    /* Trust badges row under form */
    .ctc-mobile-trust {
        display: flex !important;
        justify-content: center;
        gap: 16px;
        margin-top: 12px;
        flex-wrap: wrap;
    }
    .ctc-mobile-trust span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 0.72rem;
        color: #6b7280;
        font-weight: 600;
    }
    .ctc-mobile-trust svg {
        width: 14px;
        height: 14px;
        color: #10b981;
    }
}

/* Hide trust badges on desktop */
.ctc-mobile-trust { display: none; }

/* Tablet-specific adjustments */
@media (min-width: 641px) and (max-width: 900px) {
    .ctc-form-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .ctc-hero-section {
        padding: 20px 0 28px !important;
    }
    .ctc-hero-visual {
        width: 100%;
        max-width: 560px;
    }
    .ctc-form-panel {
        padding: 20px 18px !important;
        width: 100% !important;
        max-width: 100%;
        margin: 0 auto;
    }
    .ctc-mobile-form-header h2 {
        font-size: 1.4rem;
    }
}

/* Phone-specific: full-width form */
@media (max-width: 640px) {
    .ctc-hero-visual {
        width: 100%;
    }
    .ctc-form-panel {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Extra small phones */
@media (max-width: 380px) {
    .ctc-hero-section { padding: 8px 0 16px !important; }
    .ctc-form-panel { padding: 12px 10px !important; }
    .ctc-mobile-form-header h2 { font-size: 1.1rem; }
    .ctc-mobile-form-header p { font-size: 0.75rem; }
    .ctc-form-group label { font-size: 0.73rem !important; }
    .ctc-form-group input,
    .ctc-form-group textarea {
        padding: 0.5rem 0.7rem !important;
        font-size: 0.84rem !important;
    }
    .ctc-form-consent label { font-size: 9px !important; }
}
