/* ============================================================
   Suman Packers & Movers — Main Stylesheet
   Palette: navy #0a3d7a / #082b5c, orange #f26b21 / #d95a12
   Fonts:   Barlow (headings), Fira Sans (body)
   ============================================================ */

:root {
    --brand: #0a3d7a;
    --brand-dark: #082b5c;
    --brand-light: #eef3fa;
    --orange: #f26b21;
    --orange-dark: #d95a12;
    --orange-soft: rgba(242, 107, 33, .1);
    --text: #1f2937;
    --muted: #5b6472;
    --gray-body: #374151;
    --border: #e5e9f0;
    --white: #ffffff;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, .1), 0 2px 4px -2px rgba(15, 23, 42, .1);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, .1), 0 4px 6px -4px rgba(15, 23, 42, .1);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, .12), 0 8px 10px -6px rgba(15, 23, 42, .1);
    --font-head: "Barlow", sans-serif;
    --font-body: "Fira Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; border-color: var(--border); }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.25; }

img { max-width: 100%; display: block; height: auto; object-fit: cover; object-position: center; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 95%; max-width: 1600px; margin: 0 auto; }
.main { flex: 1; }

/* Icons */
.ic-14 { width: 14px; height: 14px; }
.ic-16 { width: 16px; height: 16px; }
.ic-18 { width: 18px; height: 18px; }
.ic-20 { width: 20px; height: 20px; }
.ic-26 { width: 26px; height: 26px; }
.orange { color: var(--orange); }

/* ============ Buttons ============ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border-radius: 9999px; font-weight: 700; font-size: 15px;
    padding: 10px 22px; border: 2px solid transparent;
    transition: background-color .2s, color .2s, border-color .2s, transform .15s;
    text-align: center; line-height: 1.3;
}
.btn-lg { padding: 13px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.9); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--brand-dark); }
.btn-outline-white { border-color: #fff; color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--brand-dark); }
.btn-navy { background: var(--brand); color: #fff; }
.btn-navy:hover { background: var(--brand-dark); }

/* ============ Header ============ */
.site-header { position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 2px rgba(0,0,0,.06); background: #fff; }

.topbar { background: var(--brand-dark); color: #fff; display: none; }
@media (min-width: 768px) { .topbar { display: block; } }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 8px; padding-bottom: 8px; font-size: 14px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: 6px; color: #fff; }
.topbar a:hover { color: var(--orange); }
.topbar .strong { font-weight: 600; }
.topbar svg { flex: 0 0 auto; }

.mainnav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 12px; padding-bottom: 12px; }
.brand-logo { height: 48px; width: auto; }
.brand { flex: 0 0 auto; }

.desktop-nav { display: none; }
.desktop-nav > ul { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; border-radius: 6px; padding: 8px 12px; font-size: 15px; font-weight: 600; color: var(--text); transition: color .2s; }
.nav-link:hover, .nav-link.active { color: var(--brand); }
.nav-item:hover .chev, .nav-item:focus-within .chev { transform: rotate(180deg); }
.chev { transition: transform .2s; }

.mega {
    visibility: hidden; opacity: 0; transform: translateY(6px);
    position: absolute; left: 0; top: 100%; z-index: 60; width: 24rem;
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    box-shadow: var(--shadow-xl); padding: 8px; transition: all .18s ease;
    display: flex; flex-direction: column; gap: 2px;
}
.nav-item:hover .mega, .nav-item:focus-within .mega { visibility: visible; opacity: 1; transform: translateY(0); }
.mega a { border-radius: 8px; padding: 10px 16px; font-size: 14px; color: var(--text); }
.mega a:hover { background: var(--brand-light); color: var(--brand); }
.mega .mega-all { background: var(--brand-light); color: var(--brand); font-weight: 700; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.btn-phone { display: none; }
.btn-quote { display: none; }
.menu-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 8px;
    border: 1px solid var(--border); background: #fff; color: var(--text);
}
@media (min-width: 1280px) { .btn-phone { display: inline-flex; } }
@media (min-width: 1024px) {
    .desktop-nav { display: block; }
    .btn-quote { display: inline-flex; }
    .menu-btn { display: none; }
}

/* Mobile slide-in menu */
.mobile-overlay { position: fixed; inset: 0; background: rgba(8, 20, 40, .5); z-index: 90; opacity: 0; transition: opacity .25s; }
.mobile-overlay.open { opacity: 1; }
.mobile-menu {
    position: fixed; top: 0; right: 0; z-index: 100; width: 320px; max-width: 88vw; height: 100dvh;
    background: #fff; box-shadow: var(--shadow-xl); transform: translateX(100%);
    transition: transform .28s ease; overflow-y: auto; display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mm-head { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid var(--border); }
.mm-logo { height: 40px; width: auto; }
.mm-close { border: 0; background: transparent; font-size: 18px; color: var(--muted); padding: 6px; }
.mm-nav { padding: 8px 16px 24px; }
.mm-nav > ul a { display: block; border-radius: 8px; padding: 10px 12px; font-weight: 600; }
.mm-nav > ul a:hover { background: var(--brand-light); color: var(--brand); }
.mm-section { margin-top: 16px; border-top: 1px solid var(--border); padding-top: 16px; }
.mm-section p { padding: 0 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.mm-section ul { margin-top: 4px; }
.mm-section a { display: block; border-radius: 8px; padding: 8px 12px; font-size: 14px; }
.mm-section a:hover { background: var(--brand-light); color: var(--brand); }
.mm-actions { margin-top: 16px; border-top: 1px solid var(--border); padding-top: 16px; display: flex; flex-direction: column; gap: 12px; }

/* ============ Breadcrumb ============ */
.breadcrumb { border-bottom: 1px solid var(--border); background: #f4f7fc; padding: 10px 0; }
.breadcrumb-list { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 14px; color: var(--muted); }
.breadcrumb-list li { display: flex; align-items: center; gap: 6px; }
.breadcrumb-list a { display: inline-flex; align-items: center; gap: 4px; }
.breadcrumb-list a:hover { color: var(--brand); }
.breadcrumb-list .current { font-weight: 600; color: var(--brand-dark); }
.breadcrumb .sep { color: #b6bfce; }

/* ============ Sections & headings ============ */
.section { padding: 56px 0; }
.section-tight { padding: 44px 0; }
@media (min-width: 768px) { .section { padding: 72px 0; } .section-tight { padding: 56px 0; } }
.bg-light { background: #f6f9fd; }
.bg-dark { background: var(--brand-dark); }

.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; max-width: 768px; margin-left: auto; margin-right: auto; }
.kicker { display: inline-block; background: var(--brand-light); color: var(--brand); border-radius: 9999px; padding: 4px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.section-title { font-size: 28px; font-weight: 800; color: var(--brand-dark); }
@media (min-width: 768px) { .section-title { font-size: 36px; } }
.section-text { margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.7; }
@media (min-width: 768px) { .section-text { font-size: 16px; } }

/* ============ Hero slider ============ */
.hero { position: relative; overflow: hidden; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(9,30,66,.92) 0%, rgba(9,30,66,.75) 42%, rgba(9,30,66,.25) 100%);
}
.hero-inner { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 540px; padding-top: 64px; padding-bottom: 88px; }
@media (min-width: 768px) { .hero-inner { min-height: 600px; } }
.hero-caption { display: none; max-width: 42rem; color: #fff; }
.hero-caption.active { display: block; animation: fadeUp .7s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-kicker { display: inline-block; background: var(--orange); border-radius: 9999px; padding: 6px 16px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; width: fit-content; }
.hero-title { font-size: 36px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero-title .accent { color: var(--orange); }
@media (min-width: 768px) { .hero-title { font-size: 60px; } }
.hero-text { font-size: 18px; color: rgba(255,255,255,.9); max-width: 36rem; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-arrows { position: absolute; bottom: 32px; right: 16px; display: flex; gap: 8px; }
@media (min-width: 768px) { .hero-arrows { right: 32px; } }
.hero-arrow {
    width: 44px; height: 44px; border-radius: 9999px; border: 0;
    background: rgba(255,255,255,.15); color: #fff; backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center; transition: background .2s; padding: 0;
}
.hero-arrow:hover { background: var(--orange); }
.hero-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
@media (min-width: 768px) { .hero-dots { left: 32px; transform: none; } }
.hero-dot { width: 10px; height: 10px; border-radius: 9999px; border: 0; background: rgba(255,255,255,.5); transition: all .3s; padding: 0; }
.hero-dot.active { width: 32px; background: var(--orange); }

/* ============ Stats strip ============ */
.stats { background: var(--brand); padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 34px; font-weight: 800; color: #fff; }
@media (min-width: 768px) { .stat-num { font-size: 46px; } }
.stat-num .accent-txt { color: var(--orange); }
.stat-label { margin-top: 8px; color: rgba(255,255,255,.8); font-size: 14px; }
@media (min-width: 768px) { .stat-label { font-size: 16px; } }

/* ============ Cards & grids ============ */
.grid-2 { display: grid; gap: 24px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { display: grid; gap: 24px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; gap: 24px; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
    display: flex; flex-direction: column; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-pad { padding: 24px; }
.card h3 { font-size: 18px; font-weight: 700; color: var(--brand-dark); }
.card-body-text { color: var(--muted); font-size: 14px; line-height: 1.7; }

.icon-box {
    width: 56px; height: 56px; border-radius: 16px; background: var(--brand-light); color: var(--brand);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
    transition: background .25s, color .25s; flex: 0 0 auto;
}
.icon-box svg { width: 28px; height: 28px; }
.card:hover .icon-box { background: var(--brand); color: #fff; }
.icon-box-sm { width: 40px; height: 40px; border-radius: 12px; margin-bottom: 0; }
.icon-box-sm svg { width: 20px; height: 20px; }
.icon-box-orange { background: var(--orange-soft); color: var(--orange); width: 48px; height: 48px; border-radius: 12px; }
.icon-box-orange svg { width: 24px; height: 24px; }
.card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* Icon+title inline header (service cards) */
.card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.card-head h3 { font-size: 17px; }

/* Service & blog image cards */
.img-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; display: block; background: var(--brand-light); }
.img-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .img-card-media img { transform: scale(1.05); }
.blog-media { aspect-ratio: 16 / 9; }
.badge-cat {
    position: absolute; left: 12px; top: 12px; background: var(--orange); color: #fff;
    border-radius: 9999px; padding: 4px 12px; font-size: 12px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 4px;
}
.link-more { display: inline-flex; align-items: center; gap: 4px; color: var(--orange); font-size: 14px; font-weight: 700; }
.link-more:hover { text-decoration: underline; }
.clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.flex-1 { flex: 1 1 auto; }

/* ============ Home: about intro ============ */
.about-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
.about-img-wrap { position: relative; }
.about-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.about-badge {
    position: absolute; bottom: -24px; right: 8px; background: var(--orange); color: #fff;
    border-radius: var(--radius-lg); padding: 16px 24px; box-shadow: var(--shadow-xl);
}
@media (min-width: 768px) { .about-badge { right: 24px; } }
.about-badge .big { font-family: var(--font-head); font-size: 30px; font-weight: 800; line-height: 1.1; }
.about-badge .small { font-size: 14px; font-weight: 600; }
.about-badge.navy { background: var(--brand); left: 24px; right: auto; }
.about-text p { margin-bottom: 14px; color: var(--muted); font-size: 15px; line-height: 1.75; }
@media (min-width: 768px) { .about-text p { font-size: 16px; } }
.about-text p:last-child { margin-bottom: 0; }
.about-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 16px; }

/* Checklist */
.check-list { display: flex; flex-direction: column; gap: 12px; color: var(--gray-body); font-size: 15px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; }
.check-list svg { flex: 0 0 auto; margin-top: 3px; }
.check-list.orange-ic svg { color: var(--orange); }
.check-list.brand-ic svg { color: var(--brand); }

/* ============ Process (dark) ============ */
.process-card {
    position: relative; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05);
    backdrop-filter: blur(6px); border-radius: var(--radius-lg); padding: 24px;
}
.step-badge {
    position: absolute; top: -16px; left: 24px; background: var(--orange); color: #fff;
    border-radius: 12px; padding: 8px 16px; font-family: var(--font-head);
    font-size: 18px; font-weight: 800; box-shadow: var(--shadow-lg);
}
.process-icon {
    margin: 12px 0 16px; width: 48px; height: 48px; border-radius: 12px;
    background: rgba(255,255,255,.1); color: var(--orange);
    display: flex; align-items: center; justify-content: center;
}
.process-icon svg { width: 24px; height: 24px; }
.process-card h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.process-card p { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.7; }

/* ============ Testimonials ============ */
.ts-carousel { position: relative; }
.ts-viewport { overflow: hidden; }
.ts-track { display: flex; transition: transform .5s ease; }
.ts-cell { flex: 0 0 100%; padding: 0 12px; box-sizing: border-box; }
@media (min-width: 768px) { .ts-cell { flex-basis: 50%; } }
@media (min-width: 1024px) { .ts-cell { flex-basis: 33.3333%; } }
.ts-card { height: 100%; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.ts-quote { width: 32px; height: 32px; color: rgba(242,107,33,.4); margin-bottom: 12px; }
.ts-card blockquote { flex: 1; font-size: 15px; line-height: 1.75; color: var(--gray-body); }
.ts-card figcaption { margin-top: 20px; border-top: 1px solid var(--border); padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ts-name { font-weight: 700; color: var(--brand-dark); }
.ts-meta { font-size: 12px; color: var(--muted); }
.stars { display: flex; gap: 2px; }
.star-ic { width: 16px; height: 16px; color: var(--orange); }
.ts-controls { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.ts-btn { width: 40px; height: 40px; border-radius: 9999px; border: 1px solid var(--border); background: #fff; color: var(--brand); display: flex; align-items: center; justify-content: center; transition: all .2s; padding: 0; }
.ts-btn:hover { background: var(--brand); color: #fff; }
.ts-dots { display: flex; gap: 6px; }
.ts-dot { width: 8px; height: 8px; border-radius: 9999px; border: 0; background: #d3d9e3; padding: 0; transition: all .3s; }
.ts-dot.active { width: 28px; background: var(--orange); }

/* ============ Cities cloud ============ */
.city-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.city-pill {
    border: 1px solid var(--border); background: #fff; border-radius: 9999px;
    padding: 8px 16px; font-size: 14px; font-weight: 600; color: var(--brand-dark);
    transition: all .2s; display: inline-block;
}
.city-pill:hover { border-color: var(--brand); background: var(--brand); color: #fff; }
.city-tag { background: var(--brand-light); color: var(--brand-dark); border-radius: 9999px; padding: 6px 14px; font-size: 14px; font-weight: 600; display: inline-block; transition: all .2s; }
.city-tag:hover { background: var(--brand); color: #fff; }
.center-cta { margin-top: 32px; text-align: center; }

/* ============ Accordion ============ */
.accordion { border-top: 1px solid var(--border); }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-trigger {
    list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 18px 4px; font-size: 15px; font-weight: 600; color: var(--text);
}
@media (min-width: 768px) { .acc-trigger { font-size: 16px; } }
.acc-trigger::-webkit-details-marker { display: none; }
.acc-trigger::marker { content: ''; }
.acc-trigger:hover { color: var(--brand); }
.acc-chevron { flex: 0 0 auto; width: 18px; height: 18px; color: var(--muted); transition: transform .25s; }
.acc-item[open] .acc-chevron { transform: rotate(180deg); color: var(--brand); }
.acc-content { padding: 0 4px 18px; color: var(--muted); font-size: 15px; line-height: 1.75; }

/* ============ Quote form ============ */
.quote-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 24px; }
@media (min-width: 768px) { .quote-card { padding: 32px; } }
.quote-card h2 { font-size: 24px; font-weight: 700; color: var(--brand-dark); margin-bottom: 4px; }
.quote-card .qc-sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.form-row { display: flex; flex-direction: column; gap: 16px; margin-bottom: 16px; }
@media (min-width: 768px) { .form-row.grid-2 { display: grid; grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.field label { font-size: 14px; font-weight: 500; color: var(--text); }
.field input, .field select, .field textarea {
    font-family: inherit; font-size: 15px; color: var(--text);
    border: 1px solid #d5dbe6; border-radius: 8px; padding: 10px 12px; background: #fff;
    transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(10,61,122,.12);
}
.field textarea { resize: vertical; }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn-submit { width: 100%; border: 0; }
.btn-submit:disabled { opacity: .65; cursor: wait; }
.form-note { margin-top: 12px; text-align: center; font-size: 12px; color: var(--muted); }
.form-msg { border-radius: 10px; padding: 12px 14px; font-size: 14px; font-weight: 600; margin-bottom: 14px; display: none; }
.form-msg.ok { display: block; background: #e8f7ee; color: #157347; border: 1px solid #b7e4c7; }
.form-msg.err { display: block; background: #fdeeee; color: #b02a37; border: 1px solid #f5c2c7; }

/* ============ CTA banner ============ */
.cta-banner { background: var(--brand); }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; padding-top: 44px; padding-bottom: 44px; text-align: center; }
@media (min-width: 768px) { .cta-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.cta-title { color: #fff; font-size: 24px; font-weight: 800; }
@media (min-width: 768px) { .cta-title { font-size: 30px; } }
.cta-text { margin-top: 8px; color: rgba(255,255,255,.85); max-width: 42rem; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; flex: 0 0 auto; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }

/* ============ Footer ============ */
.site-footer { background: var(--brand-dark); color: #fff; margin-top: auto; }
.footer-grid { display: grid; gap: 40px; padding-top: 56px; padding-bottom: 56px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo { height: 56px; width: auto; border-radius: 6px; background: #fff; padding: 4px; margin-bottom: 16px; object-fit: contain; }
.footer-about { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-nap { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-nap li { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,.8); }
.footer-nap svg { flex: 0 0 auto; margin-top: 3px; }
.footer-nap a { color: rgba(255,255,255,.8); }
.footer-nap a:hover { color: var(--orange); }
.site-footer h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-links a, .footer-cities a { color: rgba(255,255,255,.8); transition: color .2s; }
.footer-links a:hover, .footer-cities a:hover { color: var(--orange); }
.footer-cities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 12px; font-size: 14px; }
.footer-cities .span-2 { grid-column: span 2; }
.all-cities { color: var(--orange) !important; font-weight: 600; }
.all-cities:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 8px; padding-top: 20px; padding-bottom: 20px; font-size: 14px; color: rgba(255,255,255,.6); }
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; } }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 16px; }
.footer-legal a:hover { color: var(--orange); }

/* ============ Floating buttons & toast ============ */
.float-call {
    position: fixed; bottom: 80px; left: 16px; z-index: 40; width: 48px; height: 48px;
    border-radius: 9999px; background: var(--brand); color: #fff;
    display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
    transition: transform .15s;
}
@media (min-width: 768px) { .float-call { bottom: 24px; } }
.float-call:hover { transform: scale(1.06); }
.float-wa {
    position: fixed; bottom: 24px; right: 16px; z-index: 40; width: 56px; height: 56px;
    border-radius: 9999px; background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
    transition: transform .15s;
}
@media (min-width: 768px) { .float-wa { right: 24px; } }
.float-wa:hover { transform: scale(1.06); }

.toast {
    position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px);
    z-index: 200; max-width: 92vw; background: #10233f; color: #fff;
    border-radius: 12px; padding: 14px 20px; box-shadow: var(--shadow-xl);
    font-size: 14px; opacity: 0; pointer-events: none; transition: all .3s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.error { background: #7f1d1d; }

/* ============ Prose ============ */
.prose-site { max-width: 768px; margin: 0 auto; }
.prose-site h2 { font-size: 26px; font-weight: 700; margin: 32px 0 12px; color: var(--brand-dark); }
.prose-site h2:first-child { margin-top: 0; }
.prose-site p { margin-bottom: 16px; line-height: 1.8; color: var(--gray-body); }
.prose-site ul { margin: 0 0 20px; padding: 0; list-style: none; }
.prose-site ul li { position: relative; padding-left: 24px; margin-bottom: 8px; line-height: 1.7; color: var(--gray-body); }
.prose-site ul li::before {
    content: ''; position: absolute; left: 0; top: .55em; width: 8px; height: 8px;
    border-radius: 9999px; background: var(--orange);
}
.prose-site table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 15px; }
.prose-site th { background: var(--brand); color: #fff; text-align: left; padding: 10px 16px; }
.prose-site td { border: 1px solid var(--border); padding: 10px 16px; }
.prose-site tr:nth-child(even) td { background: var(--brand-light); }
.prose-site a { color: var(--brand); font-weight: 600; }

/* ============ Service detail ============ */
.svc-hero { background: #f6f9fd; }
.svc-hero-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .svc-hero-grid { grid-template-columns: repeat(2, 1fr); } }
.svc-hero h1 { font-size: 30px; font-weight: 800; color: var(--brand-dark); margin-bottom: 16px; }
@media (min-width: 768px) { .svc-hero h1 { font-size: 36px; } }
.svc-hero .lead { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
@media (min-width: 768px) { .svc-hero .lead { font-size: 16px; } }
.svc-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.svc-hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.svc-layout { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .svc-layout { grid-template-columns: 2fr 1fr; } }
.included-box { background: #f2f6fc; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.included-box h2 { font-size: 18px; font-weight: 700; color: var(--brand-dark); margin-bottom: 16px; }
.included-box ul { display: flex; flex-direction: column; gap: 10px; }
.included-box li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--gray-body); }
.included-box svg { flex: 0 0 auto; color: var(--orange); margin-top: 2px; }
.charges-card { border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.charges-card h2 { background: var(--brand); color: #fff; font-size: 18px; font-weight: 700; padding: 16px 24px; }
.charges-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.charges-table td { padding: 14px 24px; border-bottom: 1px solid var(--border); color: var(--gray-body); }
.charges-table tr:last-child td { border-bottom: 0; }
.charges-table td.price { text-align: right; font-weight: 700; color: var(--brand-dark); }
.charges-note { padding: 16px 24px; font-size: 12px; color: var(--muted); }

/* ============ City page ============ */
.city-hero { background: #f6f9fd; }
.city-hero-grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .city-hero-grid { grid-template-columns: repeat(2, 1fr); } }
.city-badge {
    display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--brand);
    border-radius: 9999px; padding: 6px 16px; font-size: 14px; font-weight: 700;
    box-shadow: var(--shadow-sm); margin-bottom: 12px;
}
.city-hero h1 { font-size: 30px; font-weight: 800; color: var(--brand-dark); margin-bottom: 16px; line-height: 1.2; }
@media (min-width: 768px) { .city-hero h1 { font-size: 42px; } }
.city-hero h1 .accent { color: var(--orange); }
.city-hero .lead { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
.city-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.hl-grid { display: grid; gap: 10px; }
@media (min-width: 640px) { .hl-grid { grid-template-columns: repeat(2, 1fr); } }
.hl-grid li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--gray-body); }
.hl-grid svg { flex: 0 0 auto; color: var(--orange); margin-top: 2px; }
.locality-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.charges-wrap { max-width: 896px; margin: 0 auto; }
.charges-lg { width: 100%; border-collapse: collapse; font-size: 15px; background: #fff; }
.charges-lg th { background: var(--brand); color: #fff; font-weight: 700; padding: 16px 24px; text-align: left; }
.charges-lg th.right { text-align: right; }
.charges-lg td { padding: 14px 24px; border-bottom: 1px solid var(--border); color: var(--gray-body); }
.charges-lg tr:last-child td { border-bottom: 0; }
.charges-lg td.price { text-align: right; font-weight: 700; color: var(--brand-dark); }
.charges-table-card { border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.charges-notes { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--muted); }
.charges-notes li { display: flex; gap: 8px; align-items: flex-start; }
.charges-notes svg { flex: 0 0 auto; color: var(--orange); margin-top: 3px; }
.nearby-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.area-card { border: 1px solid var(--border); background: #fff; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.area-card h2 { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 700; color: var(--brand-dark); margin-bottom: 16px; }
.area-card h2 svg { color: var(--orange); }
.area-card .note { margin-top: 16px; font-size: 14px; color: var(--muted); }
.area-card .conn { color: var(--muted); font-size: 15px; line-height: 1.75; }

/* ============ Gallery ============ */
.gallery-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gal-item { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--brand-light); box-shadow: var(--shadow-sm); transition: box-shadow .25s; }
.gal-item:hover { box-shadow: var(--shadow-lg); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gal-item:hover img { transform: scale(1.05); }
.gal-cap {
    position: absolute; inset-inline: 0; bottom: 0; padding: 40px 16px 12px;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
    color: #fff; font-size: 14px; font-weight: 700;
}
.review-box { margin-top: 48px; background: var(--brand-light); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.review-box .stars { justify-content: center; margin-bottom: 8px; }
.review-box .quote { max-width: 672px; margin: 0 auto; font-weight: 600; color: var(--brand-dark); }
.review-box .by { margin-top: 8px; font-size: 14px; color: var(--muted); }

/* ============ Contact ============ */
.contact-grid4 { display: grid; gap: 20px; margin-bottom: 48px; }
@media (min-width: 640px) { .contact-grid4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-grid4 { grid-template-columns: repeat(4, 1fr); } }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); }
.contact-card .icon-box { margin-inline: auto; }
.contact-card h2 { font-size: 16px; font-weight: 700; color: var(--brand-dark); margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--muted); }
.contact-card .card-link { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--orange); }
.contact-card .card-link:hover { text-decoration: underline; }
.contact-cols { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .contact-cols { grid-template-columns: repeat(2, 1fr); } }
.map-frame { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-frame iframe { display: block; width: 100%; border: 0; }
.wa-box { background: var(--brand-light); border-radius: var(--radius-lg); padding: 24px; }
.wa-box h2 { font-size: 18px; font-weight: 700; color: var(--brand-dark); margin-bottom: 8px; }
.wa-box p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; border-radius: 9999px; padding: 10px 24px; font-weight: 700; }
.btn-wa:hover { filter: brightness(.95); }

/* ============ Blog ============ */
.blog-meta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 16px; font-size: 12px; color: var(--muted); }
.blog-meta .date { display: inline-flex; align-items: center; gap: 6px; }
.post-head-kicker { display: inline-block; background: var(--brand-light); color: var(--brand); border-radius: 9999px; padding: 4px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.post-title { font-size: 30px; font-weight: 800; color: var(--brand-dark); line-height: 1.2; margin-bottom: 16px; }
@media (min-width: 768px) { .post-title { font-size: 36px; } }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 32px; }
.post-cta { margin-top: 40px; background: var(--brand); border-radius: var(--radius-lg); padding: 28px; text-align: center; color: #fff; }
.post-cta h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.post-cta p { color: rgba(255,255,255,.85); margin-bottom: 20px; }
.back-blog { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--brand); margin-top: 32px; }
.back-blog:hover { text-decoration: underline; }

/* ============ Network page ============ */
.branch-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--orange-soft); color: var(--orange); border-radius: 9999px; padding: 4px 10px; font-size: 12px; font-weight: 700; }
.city-mini { border: 1px solid var(--border); background: #fff; border-radius: 12px; padding: 16px; box-shadow: var(--shadow-sm); transition: all .2s; display: block; }
.city-mini:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.city-mini .nm { font-weight: 700; color: var(--brand-dark); }
.city-mini:hover .nm { color: var(--brand); }
.city-mini .meta { margin-top: 2px; font-size: 12px; color: var(--muted); }
.net-cta { margin-top: 48px; background: var(--brand-light); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.net-cta h2 { font-size: 24px; font-weight: 700; color: var(--brand-dark); margin-bottom: 8px; }
.net-cta p { max-width: 672px; margin: 0 auto 20px; color: var(--muted); }
.h2-block { display: flex; align-items: center; gap: 8px; font-size: 24px; font-weight: 700; color: var(--brand-dark); margin-bottom: 20px; }
.h2-block svg { color: var(--orange); }
.state-block { margin-bottom: 36px; }
.state-name { font-size: 19px; font-weight: 800; color: var(--brand); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.state-name::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.state-count { font-size: 13px; font-weight: 600; color: var(--muted); }
.state-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-branch { border-color: var(--orange); color: var(--orange-dark); font-weight: 700; }

/* ============ Misc ============ */
.page-h1-left .section-head { margin-bottom: 0; }
.two-col { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .two-col { grid-template-columns: repeat(2, 1fr); } }
.about-cols { display: grid; gap: 24px; }
@media (min-width: 768px) { .about-cols { grid-template-columns: repeat(2, 1fr); } }
.about-cols .card-pad { padding: 32px; }
.about-cols h2 { font-size: 24px; font-weight: 700; color: var(--brand-dark); margin-bottom: 12px; }
.about-cols p { color: var(--muted); line-height: 1.75; }

.nf-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 0; text-align: center; }
.nf-code { font-family: var(--font-head); font-size: 72px; font-weight: 800; color: var(--brand); line-height: 1; margin-bottom: 8px; }
.nf-title { font-size: 24px; font-weight: 700; color: var(--brand-dark); margin-bottom: 12px; }
.nf-text { color: var(--muted); margin-bottom: 32px; }
.nf-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

.ty-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 0; text-align: center; }
.ty-icon { width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 9999px; background: #e8f7ee; color: #157347; display: flex; align-items: center; justify-content: center; }
.ty-icon svg { width: 36px; height: 36px; }

.mt-10 { margin-top: 40px; }
.mb-14 { margin-bottom: 56px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
