/* ═══════════════════════════════════════════════
   Ba-Tu-Ka — Premium Endüstriyel UI Kit
   Renk sistemi: Koyu Kömür + Canlı Cyan/Turkuaz
   ═══════════════════════════════════════════════ */
:root {
    --dark:        #0f172a;
    --dark-2:      #1e293b;
    --dark-3:      #334155;
    --surface:     #ffffff;
    --surface-2:   #f8fafc;
    --surface-3:   #f1f5f9;
    --text:        #0f172a;
    --text-muted:  #64748b;
    --border:      #e2e8f0;
    --border-dark: rgba(255,255,255,.10);
    --cyan:        #0ea5e9;
    --cyan-hover:  #0284c7;
    --cyan-soft:   rgba(14,165,233,.12);
    --gold:        #f59e0b;
    --gold-soft:   rgba(245,158,11,.12);
    --green:       #10b981;
    --radius-sm:   8px;
    --radius-md:   14px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --shadow-sm:   0 2px 8px rgba(15,23,42,.07);
    --shadow-md:   0 8px 24px rgba(15,23,42,.10);
    --shadow-lg:   0 20px 50px rgba(15,23,42,.13);
    --shadow-xl:   0 32px 80px rgba(15,23,42,.18);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: "Inter", sans-serif;
    background: var(--surface-2);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.2;
    color: var(--text);
}

/* ── Utility ── */
.section-space  { padding: 5.5rem 0; }
.section-space-sm { padding: 3.5rem 0; }
.bg-dark-premium { background: var(--dark); }
.bg-dark-2      { background: var(--dark-2); }
.text-cyan      { color: var(--cyan) !important; }
.text-gold      { color: var(--gold) !important; }

/* ── Site Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 24px rgba(15,23,42,.12);
}

/* ── Top Announcement Bar ── */
.top-bar {
    background: #0f172a;
    color: rgba(255,255,255,.72);
    font-size: .78rem;
    padding: .45rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.top-bar a { color: rgba(255,255,255,.72); text-decoration: none; font-weight: 500; }
.top-bar a:hover { color: #fff; }

.utility-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.utility-links a {
    font-size: .77rem;
    font-weight: 500;
    color: rgba(255,255,255,.72) !important;
    text-decoration: none;
    letter-spacing: .01em;
    transition: color .15s;
}

.utility-links a:hover { color: #fff !important; }

/* ── Navbar ── */
.main-navbar {
    background: #ffffff;
    border-bottom: 2px solid #e2e8f0;
    padding: .7rem 0;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    box-shadow: 0 6px 18px rgba(14,165,233,.30);
    flex-shrink: 0;
}

.brand-mark svg { width: 22px; height: 22px; }

.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-main { font-family: "Plus Jakarta Sans",sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--dark); }
.brand-sub  { font-size: .6rem; font-weight: 700; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; }

.nav-link-item {
    font-size: .82rem;
    font-weight: 700;
    color: #1e293b !important;
    padding: .5rem .8rem !important;
    border-radius: var(--radius-sm);
    letter-spacing: .04em;
    transition: color .15s, background .15s;
}

.nav-link-item:hover, .nav-link-item.active {
    color: #1e3a8a !important;
    background: #f1f5f9;
}

.nav-link-item.dropdown-toggle::after {
    margin-left: .35em;
}

/* Dropdown */
.navbar-dropdown {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 36px rgba(15,23,42,.13);
    padding: .5rem 0;
    min-width: 220px;
    top: calc(100% + 4px);
}

.navbar-dropdown .dropdown-item {
    font-size: .83rem;
    font-weight: 600;
    color: #334155;
    padding: .55rem 1.1rem;
    transition: background .12s, color .12s;
}

.navbar-dropdown .dropdown-item:hover {
    background: #f1f5f9;
    color: #1e3a8a;
}

.navbar-dropdown .dropdown-divider {
    margin: .3rem 0;
    border-color: #e2e8f0;
}

.action-bar {
    background: #f1f5f9;
    border-bottom: 1px solid #cbd5e1;
    padding: .55rem 0;
}

.action-bar-location {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .83rem;
    font-weight: 700;
    color: #1e293b !important;
    text-decoration: none;
    letter-spacing: .03em;
    text-transform: uppercase;
    transition: color .15s;
}

.action-bar-location i {
    color: #e74c3c;
    font-size: 1rem;
}

.action-bar-location:hover { color: #1e3a8a !important; }

.action-bar-cta {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.action-bar-btn-schedule {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: #e74c3c;
    color: #fff !important;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .6rem 1.35rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px rgba(231,76,60,.35);
    transition: background .15s, transform .15s, box-shadow .15s;
}

.action-bar-btn-schedule:hover {
    background: #c0392b;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(231,76,60,.45);
}

.action-bar-btn-call {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: #1e3a8a;
    color: #fff !important;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .6rem 1.35rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px rgba(30,58,138,.35);
    transition: background .15s, transform .15s;
}

.action-bar-btn-call:hover {
    background: #1e40af;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Pulse CTA */
.btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--dark);
    color: #fff !important;
    font-size: .84rem;
    font-weight: 700;
    padding: .55rem 1.1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: none;
    position: relative;
    box-shadow: 0 4px 16px rgba(15,23,42,.3);
    transition: transform .18s, box-shadow .18s;
}

.btn-emergency .pulse-dot {
    width: 9px; height: 9px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-ring 1.6s ease-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(239,68,68,.6); }
    70%  { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
    100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.btn-emergency:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,23,42,.4); color: #fff !important; }

.btn-primary-cyan {
    background: var(--cyan);
    color: #fff !important;
    font-weight: 700;
    padding: .7rem 1.4rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    box-shadow: 0 8px 24px rgba(14,165,233,.35);
    transition: background .18s, transform .18s, box-shadow .18s;
}

.btn-primary-cyan:hover { background: var(--cyan-hover); color: #fff !important; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(14,165,233,.45); }

.btn-outline-dark-pill {
    background: transparent;
    color: var(--dark) !important;
    font-weight: 700;
    padding: .68rem 1.35rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 2px solid var(--dark);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: background .18s, color .18s;
}

.btn-outline-dark-pill:hover { background: var(--dark); color: #fff !important; }

/* ── Hero ── */
.hero-section {
    background: linear-gradient(135deg, #e8f4fc 0%, #ddeeff 45%, #eef6ff 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 3.5rem;
    border-bottom: 1px solid rgba(15,23,42,.07);
}

.hero-layout {
    align-items: stretch;
    position: relative;
}

.hero-copy-col,
.hero-request-col {
    display: flex;
    position: relative;
    z-index: 1;
    min-height: 100%;
}

.hero-copy-panel {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.hero-request-col {
    align-items: stretch;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,.10) 0%, transparent 70%);
    pointer-events: none;
}

/* Trusted tag */
.hero-trusted-tag {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(30,58,138,.10);
    border: 1px solid rgba(30,58,138,.18);
    color: #1e3a8a;
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .42rem .85rem;
    border-radius: 999px;
    width: fit-content;
}

.hero-trusted-tag i { font-size: .9rem; color: #1e3a8a; }

/* Main heading */
.hero-h1 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -.025em;
    line-height: 1.08;
    margin: 0;
    text-wrap: balance;
}

.hero-h1 span {
    color: #1e40af;
}

/* Call Now block */
.hero-callnow {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.hero-callnow-label {
    font-size: .9rem;
    font-weight: 700;
    color: #e74c3c;
}

.hero-phone-link {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #0f172a !important;
    text-decoration: none;
    letter-spacing: -.03em;
    line-height: 1;
    transition: color .15s;
}

.hero-phone-link:hover { color: #1e40af !important; }


/* Hero SMS subscribe bar */
.hero-sms-wrap { display: flex; flex-direction: column; gap: .38rem; }

.hero-sms-input {
    font-size: .95rem !important;
    font-weight: 500;
    color: #0f172a;
}

.hero-sms-input::placeholder { color: #94a3b8; }

.hero-sms-consent-line {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    font-size: .76rem;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.hero-sms-checkbox {
    margin-top: .15rem;
    flex-shrink: 0;
    accent-color: #1e3a8a;
    width: 13px;
    height: 13px;
    cursor: pointer;
}

.hero-sms-consent-line label { cursor: pointer; }

.hero-sms-consent-link {
    background: none;
    border: none;
    padding: 0;
    color: #1e40af;
    font-weight: 700;
    font-size: .76rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color .15s;
}

.hero-sms-consent-link:hover { color: #1e3a8a; }

.hero-sms-feedback {
    font-size: .77rem;
    font-weight: 600;
    min-height: 1rem;
    padding: 0;
    margin: 0;
}

.hero-sms-feedback.success { color: #16a34a; }
.hero-sms-feedback.error   { color: #dc2626; }

/* Search bar */
.hero-search-label {
    font-size: .88rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: .55rem;
}

.hero-search-bar {
    display: flex;
    border: 2px solid #1e3a8a;
    border-radius: 8px;
    overflow: hidden;
    max-width: 480px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(30,58,138,.15);
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: .85rem 1rem;
    font-size: .9rem;
    font-weight: 500;
    color: #334155;
    background: transparent;
    cursor: pointer;
    appearance: auto;
}

.hero-search-btn {
    background: #1e3a8a;
    color: #fff;
    border: none;
    padding: 0 1.1rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0;
}

.hero-search-btn:hover { background: #1e40af; }

/* Trust badges strip */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.2rem;
}

.hero-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .8rem;
    font-weight: 700;
    color: #334155;
}

.hero-trust-badges i {
    color: #16a34a;
    font-size: .85rem;
}

/* Trust badges (old pill style kept for compat) */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .42rem;
    max-width: 54ch;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .36rem;
    background: rgba(255,255,255,.95);
    border: 1px solid #cfe4ff;
    color: #334155;
    font-size: .72rem;
    font-weight: 700;
    padding: .32rem .68rem;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(15,23,42,.07);
}

.hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* CTA strip */
.hero-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: .75rem;
    max-width: 480px;
}

.hero-copy-panel .hero-cta {
    margin-top: .1rem;
}

.btn-hero-primary {
    background: var(--cyan);
    color: #fff !important;
    font-weight: 800;
    font-size: .95rem;
    padding: .88rem 1.2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 56px;
    box-shadow: 0 10px 28px rgba(14,165,233,.45);
    transition: background .18s, transform .18s, box-shadow .18s;
    border: none;
}

.btn-hero-primary:hover { background: var(--cyan-hover); color: #fff !important; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(14,165,233,.55); }

.btn-hero-secondary {
    background: #ffffff;
    color: #0f172a !important;
    font-weight: 700;
    font-size: .95rem;
    padding: .83rem 1.2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 56px;
    border: 1px solid #cbd5e1;
    transition: border-color .18s, background .18s, color .18s, box-shadow .18s;
    box-shadow: 0 8px 22px rgba(15,23,42,.08);
}

.btn-hero-secondary:hover { border-color: #93c5fd; background: #f8fbff; color: #0f172a !important; box-shadow: 0 12px 26px rgba(14,165,233,.18); }

/* Request card on hero */
.request-card {
    background: #fff;
    border: 1px solid #cde2ff;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(15,23,42,.18);
    overflow: hidden;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    height: 100%;
    transform: translateY(2px);
}

.request-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(14,165,233,.10), transparent 24%);
    opacity: .9;
}

.rc-header {
    background: linear-gradient(130deg, #0f172a 0%, #1e40af 58%, #0f172a 100%);
    padding: 1.1rem 1.35rem .9rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.rc-header-title {
    color: #f8fafc;
    font-family: "Plus Jakarta Sans",sans-serif;
    font-size: .92rem;
    font-weight: 700;
    margin: 0;
}

.rc-steps {
    display: flex;
    gap: 0;
}

.rc-step {
    flex: 1;
    background: none;
    border: none;
    font-size: .77rem;
    font-weight: 700;
    color: rgba(255,255,255,.4);
    text-align: center;
    padding: .4rem .2rem;
    cursor: default;
    border-bottom: 2px solid rgba(255,255,255,.15);
    transition: color .2s, border-color .2s;
}

.rc-step.active { color: var(--cyan); border-color: var(--cyan); }
.rc-step.done   { color: var(--green); border-color: var(--green); }

.rc-progress { height: 3px; background: rgba(255,255,255,.1); }
.rc-progress-fill { height: 100%; background: linear-gradient(90deg, var(--cyan), var(--green)); transition: width .3s ease; }

.rc-body    { padding: 1.25rem 1.35rem; }
.rc-pane    { display: none; }
.rc-pane.active { display: block; }

.rc-title   { font-size: 1rem; font-weight: 800; margin-bottom: .95rem; color: var(--dark); }
.rc-subtitle { font-size: .78rem; font-weight: 600; color: var(--text-muted); margin-bottom: .5rem; }

.rc-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
}

.rc-service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .32rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1.5px solid #d8e2ef;
    border-radius: var(--radius-md);
    padding: .95rem .45rem;
    font-size: .76rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    transition: all .18s;
    text-align: center;
    line-height: 1.25;
    min-height: 106px;
}

.rc-service-btn svg { width: 22px; height: 22px; color: var(--cyan); flex-shrink: 0; }
.rc-service-btn i   { font-size: 1.2rem; color: var(--cyan); }

.rc-service-btn:hover, .rc-service-btn.active {
    border-color: var(--cyan);
    background: var(--cyan-soft);
    color: #0c4a6e;
    box-shadow: 0 4px 14px rgba(14,165,233,.18);
}

.rc-timing-group { display: flex; flex-wrap: wrap; gap: .45rem; }

.rc-timing-btn {
    background: var(--surface-3);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: .42rem .98rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--dark-3);
    cursor: pointer;
    transition: all .18s;
}

.rc-timing-btn:hover, .rc-timing-btn.active {
    border-color: var(--cyan);
    background: var(--cyan-soft);
    color: #0c4a6e;
}

.rc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .85rem 1.4rem 1.1rem;
    border-top: 1px solid var(--border);
    gap: .5rem;
}

.rc-nav-btn {
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .88rem;
    padding: .65rem 1.3rem;
    cursor: pointer;
    transition: all .18s;
}

.rc-nav-btn.secondary { background: var(--surface-3); color: var(--text-muted); }
.rc-nav-btn.secondary:hover { background: var(--border); }
.rc-nav-btn.secondary:disabled { opacity: .35; cursor: default; }

.rc-nav-btn.primary {
    background: var(--cyan);
    color: #fff;
    flex: 1;
    box-shadow: 0 6px 18px rgba(14,165,233,.35);
}

.rc-nav-btn.primary:hover { background: var(--cyan-hover); }

/* floating label */
.floating-wrap { position: relative; }
.floating-wrap label {
    position: absolute; top: .75rem; left: .85rem;
    color: var(--text-muted); font-size: .88rem;
    pointer-events: none; transition: all .18s; background: transparent;
}
.floating-wrap .form-control:focus + label,
.floating-wrap .form-control:not(:placeholder-shown) + label,
.floating-wrap textarea:focus + label,
.floating-wrap textarea:not(:placeholder-shown) + label {
    top: -.42rem; font-size: .72rem; color: var(--cyan);
    background: #fff; padding: 0 .3rem;
}
.form-control, .form-select { color: var(--text) !important; border-color: var(--border); }
.form-control::placeholder, .form-select::placeholder { color: transparent; }
.form-control:focus, .form-select:focus { border-color: var(--cyan); box-shadow: 0 0 0 .2rem rgba(14,165,233,.18); }

/* ── SMS Newsletter ── */
.sms-newsletter-wrap {
    max-width: 100%;
    margin-inline: 0;
    margin-bottom: 1rem;
}

.sms-newsletter-card {
    background: linear-gradient(145deg, #ffffff 0%, #f4f9ff 100%);
    border: 1px solid #cfe4ff;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(15,23,42,.07);
    padding: .7rem .78rem;
}

.sms-newsletter-hero {
    max-width: 560px;
    margin-bottom: .55rem;
}

.sms-newsletter-head h2 {
    font-size: .96rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.sms-newsletter-head p {
    margin: .25rem 0 .75rem;
    color: #64748b;
    font-size: .82rem;
    line-height: 1.55;
}

.sms-newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .65rem;
    align-items: end;
}

.sms-input-group {
    display: flex;
    flex-direction: column;
    gap: .32rem;
}

.sms-input-group label {
    font-size: .76rem;
    font-weight: 700;
    color: #475569;
}

.sms-input-group input {
    height: 46px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 0 .85rem;
    font-size: .94rem;
    color: #0f172a;
    background: #fff;
}

.sms-input-group input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 .2rem rgba(14,165,233,.16);
}

.sms-submit-btn {
    min-width: 132px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: var(--cyan);
    color: #fff;
    font-weight: 800;
    font-size: .9rem;
    box-shadow: 0 10px 22px rgba(14,165,233,.28);
    transition: background .18s, transform .18s, box-shadow .18s;
}

.sms-submit-btn:hover:not(:disabled) {
    background: var(--cyan-hover);
    transform: translateY(-1px);
}

.sms-submit-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    box-shadow: none;
}

.sms-consent-check {
    margin-top: .7rem;
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .78rem;
    color: #475569;
}

.sms-consent-check input {
    margin-top: .12rem;
    accent-color: var(--cyan);
}

.sms-consent-link {
    background: transparent;
    border: none;
    padding: 0;
    color: #0369a1;
    font-weight: 700;
    text-decoration: underline;
}

.sms-feedback {
    min-height: 1.1rem;
    margin: .4rem 0 0;
    font-size: .77rem;
    font-weight: 600;
}

.sms-feedback.success { color: #047857; }
.sms-feedback.error { color: #b91c1c; }

.sms-consent-modal .modal-content,
.sms-consent-modal {
    border-radius: 16px;
    border: 1px solid #dbeafe;
}

.sms-consent-modal .modal-header {
    border-bottom: 1px solid #e2e8f0;
    background: #f8fbff;
}

.sms-consent-modal .modal-title {
    font-size: .98rem;
    font-weight: 800;
    color: #0f172a;
}

.sms-consent-modal .modal-body p {
    color: #334155;
    font-size: .9rem;
    line-height: 1.62;
}

/* ── Stats Bar ── */
.stats-bar {
    background: linear-gradient(180deg, #f8fbff 0%, #f1f7ff 100%);
    padding: 1.75rem 0;
    border-top: 1px solid rgba(148,163,184,.20);
    border-bottom: 1px solid rgba(148,163,184,.20);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
}

.stat-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    padding: .9rem 1rem;
    min-height: 92px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 32px rgba(15,23,42,.08);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14,165,233,.12);
    color: var(--cyan);
    box-shadow: 0 0 0 1px rgba(14,165,233,.15) inset;
}

.stat-icon i { font-size: 1.05rem; }

.stat-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    text-align: left;
}

.stat-copy strong {
    display: block;
    font-family: "Plus Jakarta Sans",sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    letter-spacing: -.02em;
}

.stat-copy span {
    font-size: .8rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.25;
    margin-top: .25rem;
}

.stat-card:hover {
    background: rgba(255,255,255,.05);
    border-color: rgba(14,165,233,.18);
}

/* ── Service Cards ── */
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.5rem;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(14,165,233,.08), transparent 65%);
    opacity: 0;
    transition: opacity .3s;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(14,165,233,.35); }
.service-card:hover::after { opacity: 1; }

.svc-icon-wrap {
    width: 52px; height: 52px;
    background: var(--cyan-soft);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
    color: var(--cyan);
}
.svc-icon-wrap svg { width: 26px; height: 26px; }

.svc-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.svc-desc  { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.svc-link  { font-size: .83rem; font-weight: 700; color: var(--cyan); text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; }
.svc-link:hover { color: var(--cyan-hover); }

/* ── Process Timeline ── */
.process-section {
    background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(148,163,184,.18);
}
.process-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.process-step-num {
    width: 52px; height: 52px;
    background: var(--cyan);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: "Plus Jakarta Sans",sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(14,165,233,.4);
}

.process-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), rgba(14,165,233,.2));
}

.process-card {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 12px 28px rgba(15,23,42,.08);
    transition: background .22s, border-color .22s, box-shadow .22s;
}
.process-card:hover { background: #ffffff; border-color: rgba(14,165,233,.35); box-shadow: 0 18px 32px rgba(14,165,233,.14); }
.process-card h3 { font-size: .95rem; font-weight: 700; color: #0369a1; margin-bottom: .5rem; }
.process-card p  { font-size: .84rem; color: #64748b; margin: 0; line-height: 1.6; }

/* ── Google Reviews ── */
.reviews-section { background: linear-gradient(180deg, #f8fbff 0%, #f1f7ff 100%); }

.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.review-card-pro {
    border: 1px solid #dbeafe;
    box-shadow: 0 20px 46px rgba(15,23,42,.10);
    border-radius: 22px;
    padding: 1.35rem 1.35rem 1.25rem;
}

.review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
}

.review-author-wrap {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    background: #fff;
}

.review-avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #1e3a8a;
    background: #e0ecff;
}

.review-card .stars i { color: #f59e0b; font-size: .9rem; margin-right: .1rem; }
.review-card .review-text { font-size: .94rem; color: #334155; line-height: 1.75; margin: .55rem 0 .9rem; }
.review-card .reviewer { font-size: .86rem; font-weight: 800; color: #0f172a; }
.review-card .reviewer-meta { font-size: .77rem; color: #64748b; }

.review-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #1e40af;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
}

.review-link:hover { color: #1d4ed8; }

.google-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: .3rem .75rem;
    font-size: .72rem;
    font-weight: 700;
    color: #1e3a8a;
}

/* ── Premium Card (shared) ── */
.premium-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.3rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.premium-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(14,165,233,.3); }

.link-inline { color: var(--cyan); text-decoration: none; font-weight: 600; }
.link-inline:hover { color: var(--cyan-hover); }

/* ── Eyebrow ── */
.eyebrow {
    color: var(--cyan);
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: .75rem;
}

/* ── Section header ── */
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); }
.section-header p  { font-size: .95rem; color: var(--text-muted); margin-top: .5rem; }

/* ── Footer ── */
.footer-main {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    padding: 4rem 0 2rem;
}

.footer-brand strong { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.5); margin-top: .35rem; }

.footer-heading { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .9rem; }
.footer-link { display: block; font-size: .85rem; color: rgba(255,255,255,.6); text-decoration: none; padding: .18rem 0; transition: color .18s; }
.footer-link:hover { color: var(--cyan); }

.footer-districts { display: flex; flex-wrap: wrap; gap: .35rem; }
.footer-district-tag {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    padding: .2rem .65rem;
    font-size: .73rem;
    color: rgba(255,255,255,.55);
}

.footer-bottom {
    background: rgba(0,0,0,.3);
    padding: 1rem 0;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    border-top: 1px solid rgba(255,255,255,.08);
}

.social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.65);
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: background .18s, color .18s;
}
.social-link:hover { background: var(--cyan); color: #fff; border-color: var(--cyan); }

/* ── Floating Action Buttons ── */
.fab-group {
    position: fixed;
    right: 18px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    z-index: 1050;
}

.fab-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 1.35rem;
    box-shadow: 0 8px 24px rgba(15,23,42,.25);
    transition: transform .18s, box-shadow .18s;
}
.fab-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(15,23,42,.3); }
.fab-whatsapp { background: #25D366; color: #fff; }
.fab-call     { background: var(--cyan); color: #fff; }

/* ── Accordion ── */
.accordion-item { border: 1px solid var(--border) !important; border-radius: var(--radius-md) !important; margin-bottom: .5rem; overflow: hidden; }
.accordion-button { font-weight: 600; font-size: .92rem; color: var(--dark) !important; }
.accordion-button:not(.collapsed) { background: var(--cyan-soft) !important; color: #0c4a6e !important; box-shadow: none !important; }
.accordion-button:focus { box-shadow: none; }

/* ── Misc page ── */
.page-hero { padding: 4rem 0 2rem; background: linear-gradient(135deg, var(--dark) 0%, #0f2d4a 100%); }
.page-hero h1 { color: #fff; }
.page-hero .eyebrow { color: var(--cyan); }
.page-hero p { color: rgba(255,255,255,.6) !important; }

.wizard { padding: 1.4rem; }
.wizard-progress { height: 8px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.wizard-progress-bar { height: 100%; background: linear-gradient(90deg, var(--cyan), var(--green)); transition: width .25s; }
.wizard-step { display: none; }
.wizard-step.active { display: block; }

.service-choice {
    width: 100%; padding: 1rem; color: var(--dark);
    display: flex; flex-direction: column; align-items: flex-start; gap: .5rem;
    background: var(--surface-3); border: 1.5px solid var(--border); border-radius: var(--radius-md);
    cursor: pointer; transition: all .18s;
}
.service-choice:hover, .service-choice.active { border-color: var(--cyan); background: var(--cyan-soft); }

.icon-box {
    width: 48px; height: 48px;
    background: var(--cyan-soft);
    border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: .9rem;
    color: var(--cyan);
    font-size: 1.2rem;
}

.chip {
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--dark-3);
    background: #fff;
    padding: .35rem .85rem;
    font-size: .8rem;
    font-weight: 600;
}
.chip.selectable.active { border-color: var(--cyan); background: var(--cyan-soft); color: #0c4a6e; }

.sticky-card { position: sticky; top: 7rem; }
.process-list li { margin-bottom: .75rem; color: var(--text-muted); }
.premium-list-item { padding: 1rem; color: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; }
.contact-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); }

.bg-soft { background: var(--surface-3); }

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .section-space { padding: 4rem 0; }
    .hero-section { padding: 3.5rem 0 3rem; }
    .sticky-card { position: static; }
    .process-connector { display: none; }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-h1 { max-width: 12ch; font-size: clamp(1.8rem, 4.4vw, 2.45rem); }
    .hero-layout { padding: .85rem; }
    .hero-layout::before { display: none; }
    .hero-copy-panel { padding: 1.05rem .82rem .92rem .82rem; }
    .hero-request-col { padding-left: 0; }
}

@media (max-width: 767.98px) {
    .hero-section .row {
        flex-direction: column-reverse;
    }

    .hero-copy-panel {
        padding: 0;
    }

    .hero-request-col {
        margin-bottom: 1.25rem;
    }

    .hero-section {
        background: linear-gradient(180deg, #f0f7ff 0%, #e8f2fd 100%);
        padding: 2.5rem 0 2rem;
    }

    .hero-trusted-tag { font-size: .68rem; }

    .hero-h1 { font-size: 1.75rem; }

    .hero-phone-link { font-size: 1.9rem; }

    .hero-search-bar { max-width: 100%; }

    .sms-newsletter-wrap {
        margin-bottom: .85rem;
    }

    .sms-newsletter-card {
        padding: .88rem .82rem;
        border-radius: 16px;
    }

    .sms-newsletter-form {
        grid-template-columns: 1fr;
    }

    .sms-submit-btn {
        width: 100%;
    }

    .section-space { padding: 3rem 0; }
    .hero-h1 { font-size: 1.7rem; }
    .hero-phone-link { font-size: 1.7rem; }
    .hero-cta {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: .65rem;
    }
    .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
    .request-card { margin-top: 0; border-radius: 22px; }
    .rc-service-grid { grid-template-columns: repeat(2, 1fr); gap: .55rem; }
    .rc-header-title { font-size: .88rem; }
    .brand-sub { display: none; }
    .stats-bar { padding: 1.4rem 0; }
    .stats-grid { gap: .7rem; }
    .stat-card {
        justify-content: flex-start;
        padding: .8rem .85rem;
        min-height: 78px;
    }
    .stat-icon { width: 38px; height: 38px; }
    .stat-copy strong { font-size: 1.35rem; }
    .stat-copy span { font-size: .72rem; }
    .page-hero { padding: 3rem 0 1.5rem; }
    .hero-cta { gap: .7rem; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; }
    .hero-trust-badges { gap: .4rem .8rem; }
}

@media (max-width: 420px) {
    .hero-h1 { font-size: 1.5rem; }
    .rc-service-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { justify-content: flex-start; }
}
