/*
 * Al-Mithali Homepage CSS — Full Visual Overhaul v3
 * Vanilla CSS · RTL-first · WCAG AA · Zero external dependencies
 * ─────────────────────────────────────────────────────────────── */

/* ══ DESIGN TOKENS ════════════════════════════════════════════ */
:root {
    --p:          #1565C0;   /* primary blue  — WCAG AA 5.74:1 */
    --p-dark:     #0d3a6e;
    --p-light:    #E3F2FD;
    --p-mid:      #1E88E5;

    --cta:        #E65100;   /* orange CTA    — WCAG AA 5.32:1 */
    --cta-dark:   #BF360C;

    /* Legacy aliases so any inline style still works */
    --brand-red:        var(--cta);
    --brand-red-hover:  var(--cta-dark);
    --brand-primary:    var(--p);
    --brand-primary-dark: var(--p-dark);
    --brand-primary-light: var(--p-light);
    --brand-cta:        var(--cta);
    --brand-cta-dark:   var(--cta-dark);
    --brand-black:      #1a2635;
    --brand-dark-grey:  #2c3e50;
    --brand-light-grey: #EEF3F8;
    --white:            #ffffff;

    /* Per-service card accent tokens */
    --svc1: #1565C0; --svc1-bg: #E3F2FD; --svc1-g: linear-gradient(90deg,#1565C0,#1E88E5);
    --svc2: #00695C; --svc2-bg: #E0F2F1; --svc2-g: linear-gradient(90deg,#00695C,#26A69A);
    --svc3: #E65100; --svc3-bg: #FBE9E7; --svc3-g: linear-gradient(90deg,#E65100,#FF6D00);
    --svc4: #2E7D32; --svc4-bg: #E8F5E9; --svc4-g: linear-gradient(90deg,#1a7a4a,#2E7D32);
    --svc5: #6A1B9A; --svc5-bg: #F3E5F5; --svc5-g: linear-gradient(90deg,#6A1B9A,#9C27B0);
    --svc6: #0277BD; --svc6-bg: #E1F5FE; --svc6-g: linear-gradient(90deg,#1565C0,#0288D1);

    /* Shadows */
    --sh-sm:  0 2px 8px  rgba(13,58,110,.07);
    --sh-md:  0 4px 20px rgba(13,58,110,.11);
    --sh-lg:  0 12px 40px rgba(13,58,110,.18);
    --sh-cta: 0 4px 18px rgba(230,81,0,.38);

    --ease: all .28s cubic-bezier(.4,0,.2,1);
}

/* ══ RESET / BASE ═════════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; }
body {
    margin: 0;
    padding: 0;
    font-family: 'Cairo','Tajawal',sans-serif;
    background: #fff;
    color: var(--brand-black);
    line-height: 1.65;
    direction: rtl;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ══ HELPERS ══════════════════════════════════════════════════ */
.text-center { text-align: center; }
.font-bold   { font-weight: 700; }
.text-red    { color: var(--cta); }
.bg-light    { background: var(--brand-light-grey); }
.section-padding { padding: 80px 20px; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.25rem;
}

/* ══ SECTION TITLES ═══════════════════════════════════════════ */
.section-title {
    font-size: clamp(1.7rem,4vw,2.5rem);
    font-weight: 800;
    color: var(--brand-black);
    margin: 0 0 18px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 50%;
    transform: translateX(50%);
    width: 56px; height: 4px;
    background: linear-gradient(90deg,var(--p),var(--p-dark));
    border-radius: 2px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: #546E7A;
    margin: 28px 0 0;
    line-height: 1.75;
}

/* ══ BUTTONS ══════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--ease);
    cursor: pointer;
    border: none;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
}
/* Orange primary CTA */
.btn-primary {
    background: linear-gradient(135deg,var(--cta) 0%,var(--cta-dark) 100%);
    color: #fff !important;
    box-shadow: var(--sh-cta);
}
.btn-primary:hover,.btn-primary:focus-visible {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(230,81,0,.55);
    color: #fff !important;
    outline: none;
}
.btn-primary:active { transform: translateY(-1px) scale(1.01); }

/* Outline — on dark bg */
.btn-outline {
    background: rgba(255,255,255,.1);
    border: 2px solid rgba(255,255,255,.7);
    color: #fff !important;
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: rgba(255,255,255,.2);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff !important;
}
/* Hero size */
.btn-hero { padding: 16px 38px; font-size: 1.1rem; }

/* Footer CTA white button */
.btn-cta-white {
    background: #fff;
    color: var(--cta) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.22); }

/* Footer CTA WhatsApp button */
.btn-cta-wa {
    background: #25D366;
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(37,211,102,.4);
}
.btn-cta-wa:hover { background: #1da851; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,.5); }

/* ══ HEADER ═══════════════════════════════════════════════════ */
.site-header {
    background: #fff;
    border-bottom: 2px solid var(--p);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(13,58,110,.1);
}
.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}
.logo-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--brand-black);
    text-decoration: none;
}
.logo-text span { color: var(--cta); }
.site-header .logo img { max-height: 64px; width: auto; }
.header-cta .btn { padding: 10px 22px; font-size: .92rem; }

/* Primary nav */
.custom-primary-menu {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    gap: 22px;
}
.custom-primary-menu li { position: relative; }
.custom-primary-menu li a {
    text-decoration: none;
    color: var(--brand-black);
    font-weight: 700;
    font-size: .97rem;
    transition: color .25s;
    white-space: nowrap;
}
.custom-primary-menu li a:hover { color: var(--p); }
.custom-primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    min-width: 210px;
    z-index: 200;
    border-radius: 10px;
    padding: 8px 0;
    border-top: 3px solid var(--p);
    list-style: none !important;
    margin: 0;
}
.custom-primary-menu li:hover > .sub-menu { display: block; }
.custom-primary-menu .sub-menu li {
    list-style: none !important;
    padding: 0; margin: 0;
}
.custom-primary-menu .sub-menu li a {
    font-size: .9rem;
    padding: 9px 18px;
    display: block;
}
.custom-primary-menu .sub-menu li a:hover { background: var(--p-light); color: var(--p); }

/* ══ HERO SLIDER ═════════════════════════════════════════════ */
@keyframes hsFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hsScaleIn {
    from { opacity: 0; transform: scale(.88); }
    to   { opacity: 1; transform: scale(1); }
}

.hs-section {
    position: relative;
    overflow: hidden;
    background: #062a5c;
}

/* Progress bar */
.hs-progress {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,.12);
    z-index: 20;
}
.hs-progress-bar {
    height: 100%;
    width: 0%;
    background: rgba(255,255,255,.65);
    border-radius: 0 2px 2px 0;
}

/* Track — stacks slides */
.hs-track {
    position: relative;
    min-height: 580px;
}

/* Slides */
.hs-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .62s ease, visibility .62s ease;
    overflow: hidden;
}
.hs-slide--active {
    position: relative;
    opacity: 1;
    visibility: visible;
}
.hs-slide--out {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

/* Decorative circles */
.hs-slide__bg-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hs-slide__bg-circles::before,
.hs-slide__bg-circles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.07);
}
.hs-slide__bg-circles::before { width: 500px; height: 500px; top: -160px; left: -160px; }
.hs-slide__bg-circles::after  { width: 320px; height: 320px; bottom: -100px; right: 10%; }

/* Inner layout */
.hs-slide__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 70px 0 100px;
    position: relative;
    z-index: 2;
}

/* Content (text side) */
.hs-slide__content { min-width: 0; }

.hs-tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    margin-bottom: 18px;
}
.hs-title {
    font-size: clamp(1.7rem, 4.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
}
.hs-desc {
    font-size: 1.02rem;
    color: rgba(255,255,255,.8);
    line-height: 1.75;
    margin: 0 0 20px;
    max-width: 540px;
}
.hs-features {
    list-style: none;
    padding: 0; margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hs-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    color: rgba(255,255,255,.9);
}
.hs-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
}
.hs-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: .97rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--ease);
    white-space: nowrap;
    cursor: pointer;
}
.hs-btn--primary {
    background: #fff;
    color: var(--p-dark);
}
.hs-btn--primary:hover { background: var(--cta); color: #fff; }
.hs-btn--call {
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.35);
}
.hs-btn--call:hover { background: rgba(255,255,255,.25); }

/* Illustration side */
.hs-slide__visual {
    width: 260px;
    flex-shrink: 0;
    opacity: .9;
}
.hs-slide__visual svg { width: 100%; height: auto; }

/* --- Entrance animations on active slide --- */
.hs-slide--active .hs-tag      { animation: hsFadeUp .45s ease .05s both; }
.hs-slide--active .hs-title    { animation: hsFadeUp .48s ease .15s both; }
.hs-slide--active .hs-desc     { animation: hsFadeUp .48s ease .25s both; }
.hs-slide--active .hs-features { animation: hsFadeUp .48s ease .35s both; }
.hs-slide--active .hs-ctas     { animation: hsFadeUp .48s ease .44s both; }
.hs-slide--active .hs-slide__visual { animation: hsScaleIn .55s ease .1s both; }

/* Nav arrows */
.hs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.22);
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: var(--ease);
    backdrop-filter: blur(8px);
}
.hs-nav:hover { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.08); }
.hs-nav--prev { right: 24px; }
.hs-nav--next { left: 24px; }

/* Stats bar */
.hs-stats-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    z-index: 10;
}
.hs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
}
.hs-stat strong {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.hs-stat span {
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    margin-top: 3px;
}
.hs-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.18);
    flex-shrink: 0;
}

/* Dots */
.hs-dots {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
}
.hs-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all .3s ease;
}
.hs-dot--active {
    background: #fff;
    width: 28px;
    border-radius: 4px;
}

/* Per-slide accent */
.hs--clean  .hs-btn--primary { color: #0d3a6e; }
.hs--pest   .hs-btn--primary { color: #004D40; }
.hs--drain  .hs-btn--primary { color: #1a237e; }
.hs--maint  .hs-btn--primary { color: #BF360C; }

/* ── Mobile ── */
@media (max-width: 768px) {
    .hs-track { min-height: unset; }
    .hs-slide__inner {
        grid-template-columns: 1fr;
        padding: 48px 0 90px;
        gap: 24px;
    }
    .hs-slide__visual { width: 140px; margin: 0 auto; }
    .hs-title { font-size: 1.5rem; }
    .hs-desc { font-size: .9rem; }
    .hs-nav { display: none; }
    .hs-stat { padding: 0 16px; }
    .hs-stat strong { font-size: 1.15rem; }
    .hs-dots { bottom: 60px; }
}

/* ══ HERO (legacy — kept for other page types) ════════════════ */
.hero-section {
    position: relative;
    background: linear-gradient(150deg, var(--p-dark) 0%, #1a4a8a 52%, var(--p) 100%);
    padding: 90px 20px 100px;
    color: #fff;
    overflow: hidden;
    text-align: center;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,255,255,.09) 0%, transparent 70%),
        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='%23ffffff' 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;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}
.hero-title {
    font-size: clamp(2rem,5vw,3.2rem);
    font-weight: 900;
    margin: 0 0 22px;
    line-height: 1.3;
}
.hero-highlight {
    color: #FFD54F;
    display: inline-block;
}
.hero-desc {
    font-size: clamp(1.05rem,2.5vw,1.2rem);
    opacity: .93;
    margin: 0 auto 36px;
    max-width: 720px;
    line-height: 1.8;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 44px;
    flex-wrap: wrap;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 28px;
}
.hero-stat strong { font-size: 2rem; font-weight: 900; color: #FFD54F; line-height: 1; }
.hero-stat span   { font-size: .88rem; opacity: .85; }
.hero-stat-sep {
    width: 1px; height: 40px;
    background: rgba(255,255,255,.3);
}

/* ══ SERVICE BANNERS ══════════════════════════════════════════ */
.banners-section { background: #f0f5fb; }
.banners-section .section-title::after {
    background: linear-gradient(90deg,var(--p),var(--p-dark));
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.svc-banner {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 240px;
    box-shadow: var(--sh-md);
    transition: var(--ease);
    position: relative;
}
.svc-banner:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

/* Visual panel (left on RTL = icon side) */
.svc-banner__visual {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.svc-banner__circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.svc-banner__circles span {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.2);
}
.svc-banner__circles span:nth-child(1) { width: 120px; height: 120px; top: -30px; right: -30px; }
.svc-banner__circles span:nth-child(2) { width: 80px;  height: 80px;  bottom: 10px; left: 10px; }
.svc-banner__circles span:nth-child(3) { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity:.3; }

.svc-banner__icon { width: 90px; height: 90px; position: relative; z-index: 2; }

/* Text panel */
.svc-banner__body {
    flex: 1;
    background: #fff;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.svc-banner__tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    color: var(--tag-color, var(--p));
    background: var(--tag-bg, var(--p-light));
    width: fit-content;
}
.svc-banner__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-black);
    margin: 0;
    line-height: 1.35;
}
.svc-banner__text {
    font-size: .91rem;
    color: #546E7A;
    line-height: 1.7;
    margin: 0;
}
.svc-banner__list {
    list-style: none;
    padding: 0; margin: 4px 0 0;
    display: flex; flex-wrap: wrap; gap: 6px 14px;
}
.svc-banner__list li {
    font-size: .83rem;
    color: #546E7A;
    display: flex;
    align-items: center;
    gap: 5px;
}
.svc-banner__list li::before {
    content: '✓';
    color: var(--check-color, var(--p));
    font-weight: 700;
    font-size: .85rem;
}
.svc-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .92rem;
    font-weight: 700;
    color: var(--cta-link, var(--p)) !important;
    text-decoration: none !important;
    margin-top: 6px;
    transition: gap .2s ease;
}
.svc-banner__cta:hover { gap: 10px; }

/* Per-banner colour themes */
.svc-banner--clean .svc-banner__visual {
    background: linear-gradient(150deg,#0d3a6e,#1565C0);
}
.svc-banner--clean { --tag-color: #1565C0; --tag-bg: #E3F2FD; --check-color: #1565C0; --cta-link: #1565C0; }

.svc-banner--pest .svc-banner__visual {
    background: linear-gradient(150deg,#004D40,#00796B);
}
.svc-banner--pest { --tag-color: #00695C; --tag-bg: #E0F2F1; --check-color: #00695C; --cta-link: #00695C; }

.svc-banner--drain .svc-banner__visual {
    background: linear-gradient(150deg,#1a237e,#1565C0);
}
.svc-banner--drain { --tag-color: #1a237e; --tag-bg: #E8EAF6; --check-color: #1a237e; --cta-link: #1a237e; }

.svc-banner--maint .svc-banner__visual {
    background: linear-gradient(150deg,#BF360C,#E65100);
}
.svc-banner--maint { --tag-color: #E65100; --tag-bg: #FBE9E7; --check-color: #E65100; --cta-link: #E65100; }

/* ══ EEAT TRUST SECTION ═══════════════════════════════════════ */
.eeat-trust-section { background: #f8fafc; }
.eeat-trust-section .section-title::after {
    background: linear-gradient(90deg,var(--p),var(--p-dark));
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 24px;
    margin-top: 48px;
    text-align: right;
}
.trust-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 26px;
    box-shadow: var(--sh-sm);
    border-bottom: 4px solid var(--p);
    transition: var(--ease);
}
.trust-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.trust-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--p-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p);
    margin-bottom: 16px;
}
.trust-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--brand-black); margin: 0 0 10px; }
.trust-card p  { font-size: .92rem; color: #546E7A; line-height: 1.7; margin: 0; }

/* ══ SERVICES GRID ════════════════════════════════════════════ */
.services-section { background: #EEF3F8; }
.services-section .section-title::after { background: linear-gradient(90deg,var(--p),var(--p-dark)); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 26px;
    margin-top: 48px;
}
.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 0 0 28px;
    box-shadow: var(--sh-md);
    transition: var(--ease);
    border: none;
    text-align: right;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    display: block;
    height: 5px;
    background: var(--card-grad, linear-gradient(90deg,var(--p),var(--p-dark)));
    flex-shrink: 0;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.service-card:nth-child(1) { --card-grad: var(--svc1-g); --icon-bg: var(--svc1-bg); --icon-cl: var(--svc1); }
.service-card:nth-child(2) { --card-grad: var(--svc2-g); --icon-bg: var(--svc2-bg); --icon-cl: var(--svc2); }
.service-card:nth-child(3) { --card-grad: var(--svc3-g); --icon-bg: var(--svc3-bg); --icon-cl: var(--svc3); }
.service-card:nth-child(4) { --card-grad: var(--svc4-g); --icon-bg: var(--svc4-bg); --icon-cl: var(--svc4); }
.service-card:nth-child(5) { --card-grad: var(--svc5-g); --icon-bg: var(--svc5-bg); --icon-cl: var(--svc5); }
.service-card:nth-child(6) { --card-grad: var(--svc6-g); --icon-bg: var(--svc6-bg); --icon-cl: var(--svc6); }
.service-card-body  { padding: 24px 24px 0; flex: 1; display: flex; flex-direction: column; }
.service-icon-wrap  { width: 68px; height: 68px; border-radius: 50%; background: var(--icon-bg,var(--p-light)); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 3px 10px rgba(0,0,0,.08); flex-shrink: 0; }
.service-icon       { color: var(--icon-cl,var(--p)); display: flex; align-items: center; justify-content: center; }
.service-icon svg   { stroke: currentColor; }
.service-card h3    { font-size: 1.1rem; font-weight: 700; margin: 0 0 10px; color: var(--brand-black); line-height: 1.4; }
.service-card p     { font-size: .9rem; color: #546E7A; line-height: 1.7; flex: 1; margin: 0 0 16px; }
.service-card a.text-red { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .9rem; text-decoration: none !important; color: var(--icon-cl,var(--p)) !important; transition: gap .2s ease; }
.service-card a.text-red:hover { gap: 10px; }

/* ══ COVERAGE / CITIES CARDS ══════════════════════════════════ */
.coverage-section { background: #fff; }
.coverage-section .section-title::after { background: linear-gradient(90deg,var(--p),var(--p-dark)); }

.cities-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
    gap: 20px;
    margin-top: 48px;
}

.city-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    background: #fff;
    border: 1.5px solid rgba(21,101,192,.12);
    border-radius: 14px;
    text-decoration: none !important;
    color: var(--brand-black);
    box-shadow: var(--sh-sm);
    transition: var(--ease);
    position: relative;
}
.city-card:hover {
    border-color: var(--p);
    background: var(--p-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(21,101,192,.15);
}
.city-card--featured {
    border-color: var(--p);
    background: linear-gradient(135deg,var(--p-light) 0%,#fff 100%);
    grid-column: span 2;
    flex-direction: row;
}
.city-card--featured:hover { background: linear-gradient(135deg,#cfe8fc 0%,#e8f3fe 100%); }

.city-card__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--p-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p);
}
.city-card--featured .city-card__icon { width: 52px; height: 52px; border-radius: 14px; }

.city-card__content { flex: 1; }
.city-card__name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand-black);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.city-card--featured .city-card__name { font-size: 1.2rem; }

.city-badge {
    font-size: .72rem;
    font-weight: 700;
    background: var(--p);
    color: #fff;
    padding: 2px 9px;
    border-radius: 50px;
    white-space: nowrap;
}
.city-card__services {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
}
.city-card__services li {
    font-size: .82rem;
    color: #546E7A;
    display: flex;
    align-items: center;
    gap: 4px;
}
.city-card__services li::before { content: '·'; color: var(--p); font-weight: 900; }

.city-card__arrow {
    font-size: 1.1rem;
    color: var(--p);
    opacity: 0;
    transition: opacity .25s, transform .25s;
    align-self: center;
    margin-right: auto;
}
.city-card:hover .city-card__arrow { opacity: 1; transform: translateX(-4px); }

/* ══ REVIEWS ══════════════════════════════════════════════════ */
.reviews-section {
    background: linear-gradient(150deg,var(--p-dark) 0%,#0d3a6e 100%);
    color: #fff;
}
.reviews-section .section-title { color: #fff; }
.reviews-section .section-title::after { background: linear-gradient(90deg,#FFD54F,#FFA726); }
.reviews-section .section-subtitle { color: rgba(255,255,255,.75); margin-top: 28px; }

.reviews-rating-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.reviews-stars {
    font-size: 1.7rem;
    color: #FFD54F;
    letter-spacing: 2px;
}
.reviews-score {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFD54F;
}
.reviews-count {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
}
/* Title override for light text */
.reviews-title { color: #fff !important; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px,1fr));
    gap: 24px;
    margin-top: 52px;
}
.review-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--ease);
}
.review-card:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.review-card__header { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.review-avatar--blue   { background: linear-gradient(135deg,#1565C0,#1E88E5); }
.review-avatar--green  { background: linear-gradient(135deg,#2E7D32,#43A047); }
.review-avatar--orange { background: linear-gradient(135deg,#E65100,#FF6D00); }
.review-avatar--teal   { background: linear-gradient(135deg,#00695C,#26A69A); }
.review-avatar--purple { background: linear-gradient(135deg,#6A1B9A,#9C27B0); }
.review-avatar--red    { background: linear-gradient(135deg,#c62828,#e53935); }

.review-meta { flex: 1; }
.review-name { display: block; font-size: 1rem; font-weight: 700; color: #fff; }
.review-location { font-size: .82rem; color: rgba(255,255,255,.55); }
.review-stars { color: #FFD54F; font-size: 1rem; flex-shrink: 0; }
.review-text { font-size: .93rem; color: rgba(255,255,255,.85); line-height: 1.75; margin: 0; font-style: italic; }
.review-service-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.18);
    width: fit-content;
}

/* ══ FAQ ══════════════════════════════════════════════════════ */
.faq-section { background: #f7f9fc; }
.faq-section .section-title::after { background: linear-gradient(90deg,var(--p),var(--p-dark)); }

.faq-container {
    max-width: 820px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid rgba(21,101,192,.1);
    box-shadow: var(--sh-sm);
    transition: border-color .25s, box-shadow .25s;
    overflow: hidden;
}
.faq-item[open] { border-color: var(--p); box-shadow: 0 4px 20px rgba(21,101,192,.1); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-black);
    cursor: pointer;
    list-style: none;
    outline: none;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--p-light);
    color: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 300;
    transition: transform .3s ease, background .3s;
    line-height: 1;
}
.faq-item[open] summary span { transform: rotate(45deg); background: var(--p); color: #fff; }
.faq-item > p {
    padding: 0 22px 22px;
    margin: 0;
    font-size: .96rem;
    color: #546E7A;
    line-height: 1.8;
    border-top: 1px solid rgba(21,101,192,.08);
    padding-top: 16px;
}

/* ══ FOOTER CTA ═══════════════════════════════════════════════ */
.footer-cta {
    background: linear-gradient(135deg,var(--cta) 0%,var(--cta-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}
.footer-cta h2 { font-size: clamp(1.5rem,4vw,2.2rem); font-weight: 900; margin: 0 0 14px; }
.footer-cta p  { font-size: 1.1rem; opacity: .9; margin: 0 0 32px; }
.footer-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══ FOOTER ═══════════════════════════════════════════════════ */
.site-footer {
    background: var(--brand-black);
    color: rgba(255,255,255,.75);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cta);
    display: inline-block;
}
.footer-col--about p { font-size: .93rem; line-height: 1.75; margin: 0 0 20px; color: rgba(255,255,255,.65); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .92rem;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .2s;
}
.footer-contact-item:hover { color: #FFD54F; }
.footer-contact-item svg { flex-shrink: 0; color: var(--cta); }

.footer-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: .92rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .2s, padding-right .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before { content: '←'; font-size: .75rem; color: var(--p-mid); opacity: 0; transition: opacity .2s; }
.footer-links a:hover { color: #fff; padding-right: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.footer-cities a { font-size: .88rem; }

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 28px 0 32px;
    text-align: center;
}
.footer-copyright {
    margin: 0;
    font-size: .88rem;
    color: rgba(255,255,255,.4);
}
.footer-credit {
    font-size: .82rem;
    color: rgba(255,255,255,.3);
    letter-spacing: .02em;
}
.footer-credit a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}
.footer-credit a:hover { color: #fff; }

/* ══ CITY PAGE — BREADCRUMB ════════════════════════════════════ */
.breadcrumb-bar {
    background: #f0f5fb;
    border-bottom: 1px solid rgba(21,101,192,.1);
    padding: 10px 0;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0; padding: 0;
    font-size: .88rem;
    color: #546E7A;
    flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb a {
    color: var(--p);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}
.breadcrumb a:hover { color: var(--p-dark); }
.breadcrumb [aria-current="page"] { color: var(--brand-black); font-weight: 700; }

/* ══ CITY PAGE — HERO ══════════════════════════════════════════ */
.city-hero {
    position: relative;
    color: #fff;
    padding: 80px 20px 90px;
    overflow: hidden;
    text-align: center;
}
.city-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,255,255,.1) 0%, transparent 70%),
        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='%23ffffff' fill-opacity='0.04'%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;
}
.city-hero__content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}
.city-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}
.city-hero__title {
    font-size: clamp(1.9rem,4.5vw,3rem);
    font-weight: 900;
    margin: 0 0 18px;
    line-height: 1.3;
}
.city-hero__highlight {
    color: #FFD54F;
    display: inline-block;
}
.city-hero__desc {
    font-size: clamp(1rem,2.5vw,1.15rem);
    opacity: .9;
    margin: 0 auto 32px;
    max-width: 680px;
    line-height: 1.8;
}
.city-hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.city-hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    flex-wrap: wrap;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 16px 24px;
    backdrop-filter: blur(6px);
    max-width: 580px;
    margin-inline: auto;
    margin-top: 40px;
}
.city-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 24px;
}
.city-hero__stat strong { font-size: 1.6rem; font-weight: 900; color: #FFD54F; line-height: 1; }
.city-hero__stat span   { font-size: .82rem; opacity: .8; }
.city-hero__sep { width: 1px; height: 36px; background: rgba(255,255,255,.25); }

/* ══ CITY PAGE — SERVICES (city-svc-grid overrides) ════════════ */
.city-svc-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
}
.city-post-card {
    border-top: 3px solid var(--icon-cl, var(--p));
}
.city-post-card::before { background: var(--icon-cl, var(--p)); height: 3px; }
.city-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #f7f9fc;
    border-radius: 16px;
    border: 2px dashed rgba(21,101,192,.2);
}
.city-empty-state h3 { font-size: 1.2rem; font-weight: 700; color: var(--brand-black); margin: 16px 0 10px; }
.city-empty-state p  { color: #546E7A; font-size: .97rem; }
.city-empty-state a  { color: var(--p); font-weight: 700; }

/* ══ CITY PAGE — NEIGHBORHOODS ═════════════════════════════════ */
.neighborhoods-section { background: var(--p-light); }
.neighborhoods-section .section-title::after { background: linear-gradient(90deg,var(--p),var(--p-dark)); }

.neighborhoods-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
    justify-content: center;
}
.neighborhood-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1.5px solid rgba(21,101,192,.18);
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--brand-black);
    transition: var(--ease);
    cursor: default;
}
.neighborhood-chip:hover {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(21,101,192,.25);
}
.neighborhood-chip:hover .nh-pin { color: #fff; }
.nh-pin { color: var(--p); flex-shrink: 0; }
.nh-note {
    text-align: center;
    margin-top: 24px;
    font-size: .9rem;
    color: #546E7A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ══ CITY PAGE — WHY US ════════════════════════════════════════ */
.city-why-section { background: #fff; }
.city-why-section .section-title::after { background: linear-gradient(90deg,var(--p),var(--p-dark)); }
.city-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 24px;
    margin-top: 48px;
}
.city-why-card {
    background: #f7f9fc;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    border: 1.5px solid rgba(21,101,192,.08);
    transition: var(--ease);
}
.city-why-card:hover {
    background: var(--p-light);
    border-color: var(--p);
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(21,101,192,.12);
}
.city-why-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    line-height: 1;
}
.city-why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-black);
    margin: 0 0 8px;
    line-height: 1.4;
}
.city-why-card p {
    font-size: .88rem;
    color: #546E7A;
    line-height: 1.7;
    margin: 0;
}

/* ══ CITY PAGE — CTA ════════════════════════════════════════════ */
.city-cta-section {
    background: linear-gradient(135deg,var(--p-dark) 0%,var(--p) 100%);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}
.city-cta-section h2 { font-size: clamp(1.4rem,3.5vw,2rem); font-weight: 900; margin: 0 0 12px; }
.city-cta-section p  { font-size: 1.05rem; opacity: .85; margin: 0 0 30px; }

/* ══ HOMEPAGE TIPS BLOCK ════════════════════════════════════════ */
.tips-preview-section { background: #f0f5fb; }
.tips-preview-section .section-title::after { background: linear-gradient(90deg,var(--p),var(--p-dark)); }

.tips-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
    gap: 22px;
    margin-top: 48px;
}

.tip-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sh-sm);
    border: 1.5px solid rgba(21,101,192,.08);
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: var(--brand-black);
}
.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(21,101,192,.16);
    border-color: var(--p);
}
.tip-card__top {
    height: 8px;
    background: linear-gradient(90deg,var(--p),var(--p-mid));
    flex-shrink: 0;
}
.tip-card__body {
    padding: 22px 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tip-card__icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--p-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p);
    font-size: 1.4rem;
    flex-shrink: 0;
}
.tip-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-black);
    line-height: 1.45;
    margin: 0;
}
.tip-card__excerpt {
    font-size: .88rem;
    color: #546E7A;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
.tip-card__link {
    font-size: .88rem;
    font-weight: 700;
    color: var(--p) !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none !important;
    transition: gap .2s ease;
    margin-top: auto;
}
.tip-card:hover .tip-card__link { gap: 8px; }

.tips-preview-more {
    text-align: center;
    margin-top: 36px;
}

/* ══ TIPS PAGE ══════════════════════════════════════════════════ */
.tips-page-hero {
    background: linear-gradient(150deg,var(--p-dark) 0%,var(--p) 100%);
    color: #fff;
    text-align: center;
    padding: 70px 20px 80px;
    position: relative;
    overflow: hidden;
}
.tips-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%,rgba(255,255,255,.1) 0%,transparent 70%);
    pointer-events: none;
}
.tips-page-hero__content { position: relative; z-index: 2; }
.tips-page-hero h1 {
    font-size: clamp(1.9rem,4vw,2.8rem);
    font-weight: 900;
    margin: 0 0 16px;
}
.tips-page-hero p {
    font-size: 1.1rem;
    opacity: .88;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}
.tips-page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.tips-all-section { background: #f0f5fb; }
.tips-all-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
    gap: 24px;
    margin-top: 48px;
}

/* Reuse .tip-card styles — tips-all-grid uses same card */
.tips-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 16px;
    border: 2px dashed rgba(21,101,192,.2);
}
.tips-empty-state h3 { color: var(--brand-black); margin: 16px 0 8px; }
.tips-empty-state p  { color: #546E7A; }

/* ══ RESPONSIVE (continued) ════════════════════════════════════ */
/* ══ RESPONSIVE ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-col--about { grid-column: span 2; }
    .cities-cards-grid { grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); }
    .city-card--featured { grid-column: span 2; }
}

@media (max-width: 768px) {
    /* City page */
    .city-hero { padding: 60px 16px 70px; }
    .city-hero__title { font-size: 1.8rem !important; }
    .city-hero__ctas { flex-direction: column; align-items: center; }
    .city-hero__stats { padding: 12px 16px; gap: 0; }
    .city-hero__stat { padding: 0 14px; }
    .city-hero__stat strong { font-size: 1.3rem; }
    .city-hero__sep { display: none; }
    .city-why-grid { grid-template-columns: 1fr 1fr; }
    .neighborhoods-grid { gap: 8px; }
    .neighborhood-chip { font-size: .83rem; padding: 6px 12px; }
    /* Tips */
    .tips-preview-grid { grid-template-columns: 1fr; }
    .tips-all-grid { grid-template-columns: 1fr; }
    .city-cta-section { padding: 50px 16px; }

    .section-padding { padding: 60px 16px; }

    /* Header */
    .hdr-inner { flex-wrap: wrap; justify-content: center; gap: 10px; padding: 12px 0; }
    .site-header .logo img { max-height: 48px; }
    .header-nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 4px; }
    .custom-primary-menu { flex-wrap: nowrap; gap: 16px !important; justify-content: flex-start; }
    .custom-primary-menu li a { font-size: .88rem !important; white-space: nowrap; }

    /* Hero */
    .hero-title { font-size: 1.9rem !important; }
    .hero-desc  { font-size: 1rem !important; }
    .hero-ctas  { flex-direction: column; align-items: center; }
    .hero-stats { gap: 16px; }
    .hero-stat  { padding: 0 16px; }
    .hero-stat strong { font-size: 1.6rem; }
    .hero-stat-sep { display: none; }

    /* Banners grid: mobile */
    .banners-grid { grid-template-columns: 1fr; gap: 20px; }
    .svc-banner { flex-direction: column; min-height: unset; }
    .svc-banner__visual { flex: none; height: 160px; width: 100%; border-radius: 0; }
    .svc-banner__body { padding: 22px 20px 20px; }
    .svc-banner__icon { width: 70px; height: 70px; }

    /* Trust grid */
    .trust-grid { grid-template-columns: 1fr; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

    /* Cities */
    .cities-cards-grid { grid-template-columns: 1fr; }
    .city-card--featured { grid-column: span 1; }

    /* Reviews */
    .reviews-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-col--about { grid-column: span 1; }
    .footer-cities { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .hero-badge { font-size: .82rem; }
    .section-title { font-size: 1.5rem; }
    .footer-cities { grid-template-columns: 1fr; }
    .reviews-rating-bar { flex-direction: column; gap: 6px; }
    .city-why-grid { grid-template-columns: 1fr; }
    .city-hero__stats { flex-direction: column; gap: 14px; }
    .city-hero__sep { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   ARCHIVE / CATEGORY / TAG / SEARCH / 404 TEMPLATE
═══════════════════════════════════════════════════════════════ */
.archive-content { padding-bottom: 0; background: #f8fafc; }
.archive-content > .container { padding-top: 28px; padding-bottom: 48px; }

/* Hero banner */
.archive-hero { background: linear-gradient(150deg,var(--p-dark) 0%,var(--p) 100%); border-radius: 16px; padding: 40px 40px 36px; margin-bottom: 36px; color: #fff; }
.archive-hero__badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.18); border-radius: 50px; padding: 5px 14px; font-size: .82rem; font-weight: 700; margin-bottom: 14px; }
.archive-hero__title { font-size: clamp(1.5rem,4vw,2.1rem); font-weight: 800; margin: 0 0 10px; line-height: 1.3; }
.archive-hero__desc { font-size: 1rem; opacity: .88; margin: 0; max-width: 640px; }

/* Search box */
.archive-search-box { margin-top: 20px; }
.archive-search-box form { display: flex; gap: 0; max-width: 520px; }
.archive-search-box input[type="search"] { flex: 1; padding: 12px 18px; border: none; border-radius: 8px 0 0 8px; font-size: .95rem; outline: none; direction: rtl; }
.archive-search-box button { background: var(--cta); color: #fff; border: none; padding: 12px 20px; border-radius: 0 8px 8px 0; cursor: pointer; font-weight: 700; transition: background .2s; }
.archive-search-box button:hover { background: #bf360c; }

/* Posts grid */
.archive-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; margin-bottom: 40px; }

.archive-post-card { background: #fff; border-radius: 14px; box-shadow: 0 2px 14px rgba(13,58,110,.06); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.archive-post-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(13,58,110,.12); }

.archive-post-card__thumb { display: block; overflow: hidden; height: 200px; }
.archive-post-card__thumb .apc-img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; display: block; }
.archive-post-card:hover .apc-img { transform: scale(1.04); }

.archive-post-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.archive-post-card__cat { display: inline-block; background: var(--p); color: #fff; font-size: .76rem; font-weight: 700; padding: 3px 12px; border-radius: 50px; margin-bottom: 10px; text-decoration: none; transition: background .2s; }
.archive-post-card__cat:hover { background: var(--p-dark); }
.archive-post-card__title { font-size: 1.05rem; font-weight: 700; color: var(--p-dark); margin: 0 0 10px; line-height: 1.5; }
.archive-post-card__title a { color: inherit; text-decoration: none; }
.archive-post-card__title a:hover { color: var(--p); }
.archive-post-card__excerpt { font-size: .88rem; color: #546E7A; line-height: 1.7; margin: 0 0 16px; flex: 1; }
.archive-post-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid #e8eef6; padding-top: 12px; font-size: .82rem; color: #78909C; }
.apc-date { display: flex; align-items: center; gap: 5px; }
.apc-date svg { color: var(--p); }
.apc-read-more { color: var(--p); font-weight: 700; text-decoration: none; transition: gap .2s; }
.apc-read-more:hover { color: var(--p-dark); }

/* Pagination */
.archive-pagination { text-align: center; padding: 12px 0 8px; }
.archive-pagination .nav-links { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.archive-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 10px; border-radius: 8px; border: 1.5px solid var(--p); color: var(--p); font-weight: 600; font-size: .9rem; text-decoration: none; transition: background .2s, color .2s; }
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover { background: var(--p); color: #fff; }
.archive-pagination .page-numbers.dots { border: none; color: #78909C; }

/* Empty state */
.archive-empty-state { text-align: center; padding: 80px 20px; }
.archive-empty-state svg { opacity: .5; margin-bottom: 20px; }
.archive-empty-state h3 { font-size: 1.4rem; font-weight: 700; color: var(--p-dark); margin: 0 0 10px; }
.archive-empty-state p { color: #546E7A; }

/* 404 state */
.archive-empty-state--404 { padding: 80px 20px 60px; }
.aes-code { font-size: 7rem; font-weight: 900; color: var(--p); opacity: .12; line-height: 1; margin-bottom: -20px; }
.aes-title { font-size: 2rem; font-weight: 800; color: var(--p-dark); margin: 0 0 12px; }
.aes-desc { color: #546E7A; font-size: 1.05rem; max-width: 480px; margin: 0 auto 28px; }
.aes-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 680px) {
    .archive-hero { padding: 26px 20px; border-radius: 10px; }
    .archive-posts-grid { grid-template-columns: 1fr; gap: 16px; }
    .archive-post-card__thumb { height: 160px; }
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE POST / PAGE TEMPLATE
═══════════════════════════════════════════════════════════════ */
.single-content { padding: 0 0 60px; background: #f8fafc; }
.single-container { max-width: 860px; padding-top: 28px; }

.single-article { background: #fff; border-radius: 14px; box-shadow: 0 2px 16px rgba(13,58,110,.07); overflow: hidden; margin-bottom: 32px; }

.single-header { padding: 36px 40px 28px; border-bottom: 1px solid #e8eef6; }
.single-cat-tag { display: inline-block; background: var(--p); color: #fff; font-size: .78rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; margin-bottom: 14px; }
.single-title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; color: var(--p-dark); line-height: 1.4; margin: 0 0 14px; }
.single-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: #546E7A; font-size: .85rem; }
.single-meta svg { vertical-align: middle; color: var(--p); }
.single-date, .single-reading { display: flex; align-items: center; gap: 5px; }

.single-thumbnail { overflow: hidden; max-height: 440px; }
.single-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.single-body { padding: 36px 40px; font-size: 1.05rem; line-height: 1.85; color: #2d3748; }
.single-body h2 { font-size: 1.45rem; font-weight: 800; color: var(--p-dark); margin: 36px 0 14px; padding-right: 14px; border-right: 4px solid var(--p); }
.single-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--p-dark); margin: 28px 0 10px; }
.single-body p { margin: 0 0 18px; }
.single-body ul, .single-body ol { padding-right: 24px; margin: 0 0 18px; }
.single-body li { margin-bottom: 8px; }
.single-body a { color: var(--p); text-decoration: underline; }
.single-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 12px 0; }
.single-body table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.single-body table th, .single-body table td { border: 1px solid #e0e8f0; padding: 10px 14px; text-align: right; }
.single-body table th { background: var(--p); color: #fff; }
.single-body blockquote { border-right: 4px solid var(--cta); background: #fff8f5; padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 18px 0; font-style: italic; color: #546E7A; }

/* Single CTA box */
.single-cta-box { background: linear-gradient(135deg, var(--p-dark) 0%, var(--p) 100%); border-radius: 14px; padding: 28px 32px; margin-bottom: 32px; }
.single-cta-box__inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.single-cta-box__icon { width: 56px; height: 56px; background: rgba(255,255,255,.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.single-cta-box__content { flex: 1; min-width: 200px; }
.single-cta-box__content h3 { color: #fff; font-size: 1.15rem; font-weight: 800; margin: 0 0 6px; }
.single-cta-box__content p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }
.single-cta-box__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-wa { background: #25D366; color: #fff !important; border: none; padding: 11px 22px; border-radius: 50px; font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 7px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,.4); }

@media (max-width: 680px) {
    .single-header { padding: 24px 20px 18px; }
    .single-body { padding: 24px 20px; }
    .single-cta-box { padding: 20px; }
    .single-cta-box__inner { flex-direction: column; text-align: center; align-items: center; }
    .single-cta-box__btns { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   TIPS PAGE — PAGINATION
═══════════════════════════════════════════════════════════════ */
.tips-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 52px;
    flex-wrap: wrap;
    direction: rtl;
}
.tips-pag__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--p);
    color: #fff !important;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none !important;
    border: 2px solid var(--p);
    transition: background .2s, transform .2s, box-shadow .2s;
}
.tips-pag__btn:hover {
    background: var(--p-dark);
    border-color: var(--p-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(21,101,192,.25);
}
.tips-pag__pages {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.tips-pag__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--p);
    color: var(--p);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .2s, color .2s;
}
.tips-pag__num:hover,
.tips-pag__num--active {
    background: var(--p);
    color: #fff !important;
    border-color: var(--p);
}
.tips-pag__num--active { pointer-events: none; }
.tips-pag__dots {
    color: #78909C;
    font-weight: 600;
    padding: 0 4px;
}
@media (max-width: 480px) {
    .tips-pag__btn { padding: 9px 14px; font-size: .84rem; }
    .tips-pag__num { min-width: 36px; height: 36px; font-size: .84rem; }
}
