/*
Theme Name: Harare Plumbers
Theme URI: https://harareplumbers.com
Author: Custom Theme
Description: Professional plumbing services theme for Harare, Zimbabwe
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: harare-plumbers
Tags: business, plumbing, services
*/

/* ============================
   CSS RESET & BASE
   ============================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary:      #0a3d6b;
    --primary-dark: #062a4e;
    --accent:       #e8a020;
    --accent-dark:  #c8841a;
    --text:         #222222;
    --text-light:   #555555;
    --white:        #ffffff;
    --light-bg:     #f4f7fb;
    --border:       #dce3ec;
    --radius:       8px;
    --shadow:       0 4px 24px rgba(10,61,107,0.10);
    --transition:   0.25s ease;
    --font-main:    'Poppins', sans-serif;
    --font-body:    'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================
   UTILITIES
   ============================ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }

.section-label {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }

.section-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
}

.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,160,32,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-dark:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10,61,107,0.25);
}

.btn-wa {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}
.btn-wa:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ============================
   TOP BAR
   ============================ */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.top-bar a:hover { color: var(--accent); }

.tb-icon {
    width: 13px;
    height: 13px;
    fill: var(--accent);
    flex-shrink: 0;
}

/* ============================
   HEADER / NAV
   ============================ */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(10,61,107,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg { width: 30px; height: 30px; fill: var(--white); }
.logo-icon svg .logo-drop { fill: #5cc5f2; }

.logo-hp {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 1px;
}

.logo-line-1 {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.logo-line-2 {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Nav */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 6px;
    transition: all var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a.current-menu-item { color: var(--primary); }

.main-nav a:hover::after,
.main-nav a.current-menu-item::after { transform: scaleX(1); }

/* Nav dropdown */
.main-nav .menu-item-has-children { position: relative; }

.main-nav .nav-caret {
    width: 16px;
    height: 16px;
    fill: currentColor;
    vertical-align: middle;
    margin-left: 2px;
    transition: transform var(--transition);
}

.main-nav .menu-item-has-children:hover .nav-caret { transform: rotate(180deg); }

.main-nav .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(10,61,107,0.14);
    padding: 8px 0;
    min-width: 230px;
    max-height: 420px;
    overflow-y: auto;
    z-index: 200;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.main-nav .sub-menu-header a {
    font-family: var(--font-main);
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent) !important;
    background: var(--light-bg) !important;
    border-bottom: 1px solid var(--border);
    padding: 9px 18px !important;
    gap: 0 !important;
    border-radius: 4px 4px 0 0;
}

.main-nav .sub-menu-header a:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.main-nav .sub-menu::-webkit-scrollbar { width: 4px; }
.main-nav .sub-menu::-webkit-scrollbar-track { background: transparent; }
.main-nav .sub-menu::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.main-nav .menu-item-has-children:hover .sub-menu,
.main-nav .menu-item-has-children:focus-within .sub-menu { display: block; }

.main-nav .sub-menu li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 0;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.main-nav .sub-menu li a::after { display: none; }

.main-nav .sub-menu li a:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.main-nav .sub-menu li a svg {
    width: 14px;
    height: 14px;
    fill: var(--accent);
    flex-shrink: 0;
}

/* Mobile-only nav CTA — hidden on desktop */
.mobile-nav-cta { display: none; }

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-header-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: var(--radius);
    background: #25d366;
    color: var(--white);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-header-wa:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}

.header-cta .btn {
    padding: 10px 18px;
    font-size: 0.88rem;
}

.btn-header-wa svg {
    width: 15px;
    height: 15px;
    fill: var(--white);
}

/* Mobile hamburger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 20px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #1a5da8 60%, #0e4580 100%);
    color: var(--white);
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 82%, rgba(232,160,32,0.12) 0%, transparent 50%),
        radial-gradient(circle at 82% 18%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,160,32,0.18);
    border: 1px solid rgba(232,160,32,0.4);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.5); }
}

.hero h1            { color: var(--white); margin-bottom: 18px; }
.hero h1 em         { color: var(--accent); font-style: normal; }

.hero-lead {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 34px;
    max-width: 470px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.72);
    font-weight: 500;
}

.trust-item svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; }

/* Hero right side — contact form */
.hero-right { display: flex; flex-direction: column; }

.hero-form-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.hero-form-header {
    background: var(--accent);
    padding: 22px 28px 18px;
}

.hero-form-header h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.hero-form-header p {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    margin: 0;
}

.hero-form {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hf-field label {
    font-family: var(--font-main);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}

.hf-field label span { color: var(--accent); }

.hf-field input,
.hf-field select,
.hf-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.hf-field input:focus,
.hf-field select:focus,
.hf-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10,61,107,0.1);
}

.hf-field textarea { resize: vertical; min-height: 80px; }

.hf-submit {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
}

.hf-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    justify-content: center;
}

.hf-note svg { fill: var(--primary); flex-shrink: 0; }

.hf-success {
    background: #d1fadf;
    border: 1.5px solid #52c77a;
    color: #1a6635;
    border-radius: 12px;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

/* ============================
   EMERGENCY BAR
   ============================ */
.emergency-bar {
    background: var(--accent);
    color: var(--white);
    padding: 14px 0;
}

.emergency-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}

.emergency-bar strong {
    font-family: var(--font-main);
    font-size: 1rem;
}

.emergency-bar a {
    background: var(--primary);
    color: var(--white);
    padding: 8px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    font-family: var(--font-main);
    transition: background var(--transition);
}
.emergency-bar a:hover { background: var(--primary-dark); }

/* ============================
   SERVICES
   ============================ */
.services-section { background: var(--light-bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(10,61,107,0.14); }
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a5da8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg { width: 30px; height: 30px; fill: var(--white); }

.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p  { color: var(--text-light); font-size: 0.91rem; margin-bottom: 20px; }

.service-link {
    font-family: var(--font-main);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 14px; height: 14px; fill: var(--accent); }

/* ============================
   WHY CHOOSE US
   ============================ */
.why-section { background: var(--white); }

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-image-wrap {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5da8 100%);
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.why-img-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.why-img-placeholder svg { width: 72px; height: 72px; fill: rgba(255,255,255,0.25); margin: 0 auto 10px; }
.why-img-placeholder span { font-size: 0.82rem; }

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.badge-float {
    position: absolute;
    border-radius: 12px;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.badge-1 {
    bottom: -18px; right: -18px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.82rem;
    text-align: center;
    line-height: 1.4;
}

.badge-2 {
    top: -14px; left: -14px;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 1.3rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.why-item { display: flex; gap: 16px; align-items: flex-start; }

.why-icon {
    width: 44px;
    height: 44px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}

.why-item:hover .why-icon { background: var(--primary); }
.why-icon svg { width: 22px; height: 22px; fill: var(--primary); transition: fill var(--transition); }
.why-item:hover .why-icon svg { fill: var(--white); }

.why-item h4 { font-size: 1rem; margin-bottom: 4px; }
.why-item p  { font-size: 0.89rem; color: var(--text-light); margin: 0; }

/* ============================
   PROCESS
   ============================ */
.process-section { background: var(--primary); }

.process-section .section-label { color: var(--accent); }
.process-section .section-title { color: var(--white); }
.process-section .section-intro { color: rgba(255,255,255,0.72); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 52px;
}

.process-step {
    position: relative;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 40px 24px 30px;
    overflow: hidden;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #f6c560);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(232,160,32,0.4);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.process-step:hover::before { transform: scaleX(1); }

.step-num {
    position: absolute;
    top: 14px; right: 20px;
    font-family: var(--font-main);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.09);
}

.step-icon {
    width: 64px; height: 64px;
    margin: 0 auto 22px;
    border-radius: 16px;
    background: rgba(232,160,32,0.12);
    border: 1px solid rgba(232,160,32,0.3);
    display: flex; align-items: center; justify-content: center;
    transition: background .25s ease, border-color .25s ease;
}

.step-icon svg { width: 30px; height: 30px; fill: var(--accent); transition: fill .25s ease; }

.process-step:hover .step-icon { background: var(--accent); border-color: var(--accent); }
.process-step:hover .step-icon svg { fill: var(--primary); }

.process-step h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.process-step p  { font-size: 0.87rem; color: rgba(255,255,255,0.62); margin: 0; line-height: 1.55; }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section { background: var(--light-bg); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 18px; right: 22px;
    font-size: 4rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.22;
    font-family: Georgia, serif;
}

.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars span { color: var(--accent); font-size: 1rem; }

.testimonial-card p {
    font-size: 0.91rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer { display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #1a5da8);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.reviewer-name {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary);
}

.reviewer-loc { font-size: 0.77rem; color: var(--text-light); }


/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(80% 120% at 85% 12%, rgba(232,160,32,0.22) 0%, rgba(232,160,32,0) 55%),
        radial-gradient(70% 120% at 8% 92%, rgba(232,160,32,0.12) 0%, rgba(232,160,32,0) 50%),
        linear-gradient(135deg, #0d4778 0%, var(--primary) 45%, var(--primary-dark) 100%);
}

/* dotted texture */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1.4px);
    background-size: 22px 22px;
    pointer-events: none;
}

/* soft gold glow */
.cta-section::after {
    content: '';
    position: absolute;
    top: -140px; right: -90px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(232,160,32,0.30) 0%, rgba(232,160,32,0) 70%);
    filter: blur(24px);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
    padding: 52px 56px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.035) 100%);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 30px 70px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* gold accent bar across top of the panel */
.cta-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 36px; right: 36px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--accent), #f6c560 55%, transparent);
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.cta-eyebrow::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--accent);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: clamp(1.6rem, 2.6vw, 2.15rem);
    line-height: 1.15;
}
.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin: 0;
    max-width: 48ch;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    min-width: 240px;
}

/* premium buttons within the CTA */
.cta-section .cta-actions .btn {
    justify-content: center;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.cta-section .cta-actions .btn-dark {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 10px 26px rgba(232,160,32,0.40);
}
.cta-section .cta-actions .btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(232,160,32,0.52);
    background: linear-gradient(135deg, #f0ad33 0%, var(--accent) 100%);
}

.cta-section .cta-actions .btn-outline {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.cta-section .cta-actions .btn-outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-3px);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}
.cta-note svg { width: 14px; height: 14px; fill: var(--accent); flex: none; }

.cta-phone-big {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.02em;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.72);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-name { color: var(--white); }
.footer-brand p { font-size: 0.89rem; line-height: 1.8; margin: 16px 0 22px; }

.footer-social { display: flex; gap: 10px; }

.social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}

.social-btn:hover { background: var(--accent); }
.social-btn svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.78); }

.footer-col h4 {
    color: var(--white);
    font-size: 0.92rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.62);
    font-size: 0.87rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color var(--transition);
}

.footer-links a::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.fc-item { display: flex; gap: 10px; align-items: flex-start; }
.fc-item svg { width: 15px; height: 15px; fill: var(--accent); flex-shrink: 0; margin-top: 3px; }
.fc-item span { font-size: 0.87rem; color: rgba(255,255,255,0.62); line-height: 1.5; }
.fc-item a { color: rgba(255,255,255,0.62); transition: color var(--transition); }
.fc-item a:hover { color: var(--accent); }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================
   SERVICES PAGE
   ============================ */

/* Hero */
.sv-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5da8 60%, #0e4580 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.sv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(232,160,32,0.10) 0%, transparent 60%);
    pointer-events: none;
}

.sv-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
    position: relative;
}

.sv-hero-content .section-label { color: var(--accent); }

.sv-hero-content h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.sv-hero-content h1 em { color: var(--accent); font-style: normal; }

.sv-hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 28px;
}

.sv-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.sv-hero-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.sv-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
    min-width: 110px;
}

.sv-badge-num {
    display: block;
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.sv-badge-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Service items */
.sv-list { background: var(--white); }

.sv-item {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.sv-item:last-child { margin-bottom: 0; }

.sv-flip { direction: rtl; }
.sv-flip > * { direction: ltr; }

.sv-icon-panel {
    background: var(--sv-color, var(--primary));
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    position: relative;
}

.sv-icon-wrap {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.15);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-icon-wrap svg { width: 48px; height: 48px; fill: var(--white); }

.sv-tag {
    background: var(--white);
    color: var(--sv-color, var(--primary));
    font-family: var(--font-main);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.sv-cta-mini {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

.sv-cta-mini p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
    font-family: var(--font-main);
}

.sv-cta-mini .btn-sm {
    padding: 9px 14px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
}

.sv-cta-mini .btn-primary { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }
.sv-cta-mini .btn-primary:hover { background: var(--white); color: var(--primary); }

/* Service content */
.sv-content {
    padding: 40px 44px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sv-content h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.sv-intro {
    font-size: 0.97rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.75;
}

.sv-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-bottom: 24px;
}

.sv-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.9rem;
    color: var(--text);
}

.sv-checklist li svg {
    width: 18px;
    height: 18px;
    fill: #2a9d5c;
    flex-shrink: 0;
    margin-top: 1px;
}

.sv-note {
    background: var(--light-bg);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-light);
    font-style: italic;
}

.sv-note svg { width: 18px; height: 18px; fill: var(--accent); flex-shrink: 0; margin-top: 1px; }

.sv-more-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 20px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color .2s, color .2s;
}
.sv-more-link:hover { color: var(--accent-dark); border-color: var(--accent); }
.sv-more-link svg { transition: transform .2s; }
.sv-more-link:hover svg { transform: translateX(3px); }

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.faq-q {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--primary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.faq-q svg { width: 20px; height: 20px; fill: var(--accent); flex-shrink: 0; margin-top: 1px; }

.faq-a {
    font-size: 0.91rem;
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 30px;
}

/* Services page responsive */
@media (max-width: 1024px) {
    .sv-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .sv-hero-badges { grid-template-columns: repeat(4, 1fr); }
    .sv-item { grid-template-columns: 260px 1fr; }
    .sv-checklist { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .sv-hero { padding: 52px 0 44px; }
    .sv-hero-badges { grid-template-columns: repeat(2, 1fr); }
    .sv-item { grid-template-columns: 1fr; }
    .sv-flip { direction: ltr; }
    .sv-icon-panel { padding: 32px 24px; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; text-align: left; }
    .sv-icon-wrap { flex-shrink: 0; }
    .sv-cta-mini { border-top: none; padding-top: 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .sv-cta-mini p { margin: 0; }
    .sv-cta-mini .btn-sm { width: auto; margin-bottom: 0; }
    .sv-content { padding: 28px 24px; }
    .sv-checklist { grid-template-columns: 1fr; }
}

/* ============================
   SERVICE SINGLE PAGE
   ============================ */

/* Hero */
.sp-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 92px;
    background:
        radial-gradient(70% 120% at 88% 12%, rgba(232,160,32,0.20) 0%, rgba(232,160,32,0) 55%),
        radial-gradient(60% 110% at 6% 95%, rgba(232,160,32,0.10) 0%, rgba(232,160,32,0) 50%),
        linear-gradient(135deg, #0e508a 0%, var(--primary) 48%, var(--primary-dark) 100%);
}
.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1.4px);
    background-size: 24px 24px;
    pointer-events: none;
}
.sp-hero::after {
    content: '';
    position: absolute;
    top: -160px; right: -120px;
    width: 440px; height: 440px;
    background: radial-gradient(circle, rgba(232,160,32,0.22) 0%, rgba(232,160,32,0) 70%);
    filter: blur(28px);
    pointer-events: none;
}

.sp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1;
}

.sp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 16px 7px 13px;
    border-radius: 100px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.sp-hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.25);
}

.sp-hero-content h1 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
}
.sp-hero-content h1 em { color: var(--accent); font-style: normal; }
.sp-hero-content p  { color: rgba(255,255,255,0.82); font-size: 1.07rem; line-height: 1.7; max-width: 540px; margin-bottom: 30px; }

.sp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.sp-hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 38px 34px;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.035) 100%);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 30px 70px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.14);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.sp-hero-icon-wrap {
    width: 132px; height: 132px;
    border-radius: 30px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 18px 44px rgba(0,0,0,0.32), inset 0 2px 0 rgba(255,255,255,0.22);
    position: relative;
}
.sp-hero-icon-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.18);
}
.sp-hero-icon-wrap svg { width: 70px; height: 70px; fill: var(--white); }

.sp-stats {
    display: flex;
    gap: 12px;
    width: 100%;
}

.sp-stat {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    transition: background .25s ease, transform .25s ease;
}
.sp-stat:hover { background: rgba(255,255,255,0.13); transform: translateY(-3px); }

.sp-stat-num {
    display: block;
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.sp-stat-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* Breadcrumb */
.sp-breadcrumb {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.sp-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    color: var(--text-light);
}

.sp-breadcrumb a { color: var(--primary); font-weight: 600; transition: color var(--transition); }
.sp-breadcrumb a:hover { color: var(--accent); }
.sp-breadcrumb svg { width: 14px; height: 14px; fill: var(--text-light); }
.sp-breadcrumb span { color: var(--text-light); }

/* About / checklist */
.sp-about { background: var(--white); }

.sp-about-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: flex-start;
}

.sp-about-content h2 { margin-bottom: 14px; }

.sp-about-content > p {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.sp-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.sp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.91rem;
    color: var(--text);
}

.sp-checklist li svg { width: 18px; height: 18px; fill: #2a9d5c; flex-shrink: 0; margin-top: 1px; }

/* Sidebar quote box */
.sp-quote-box {
    background: var(--primary);
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.sp-quote-header {
    background: var(--accent);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-quote-header svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }
.sp-quote-header h3  { color: var(--white); font-size: 1.05rem; }

.sp-quote-box > p {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    padding: 18px 24px 0;
    margin: 0;
}

.sp-quote-box .btn { margin: 14px 24px 0; width: calc(100% - 48px); }
.sp-quote-box .btn:last-of-type { margin-bottom: 0; }

.sp-trust-list {
    padding: 18px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 18px;
}

.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.72);
}

.sp-trust-item svg { width: 15px; height: 15px; fill: #2a9d5c; flex-shrink: 0; }

/* Process */
.sp-process { background: var(--primary); }

.sp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 52px;
}

.sp-step {
    position: relative;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 40px 24px 30px;
    overflow: hidden;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.sp-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #f6c560);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.sp-step:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(232,160,32,0.4);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}
.sp-step:hover::before { transform: scaleX(1); }

.sp-step-num {
    width: 64px; height: 64px;
    margin: 0 auto 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 10px 24px rgba(232,160,32,0.35);
}

.sp-step h3 { color: var(--white); font-size: 1.02rem; margin-bottom: 8px; }
.sp-step p  { font-size: 0.87rem; color: rgba(255,255,255,0.62); margin: 0; line-height: 1.55; }

/* Why cards */
.sp-why { background: var(--light-bg); }

.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sp-why-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.sp-why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(10,61,107,0.12); }

.sp-why-icon {
    width: 56px; height: 56px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: background var(--transition);
}

.sp-why-card:hover .sp-why-icon { background: var(--primary); }
.sp-why-icon svg { width: 26px; height: 26px; fill: var(--primary); transition: fill var(--transition); }
.sp-why-card:hover .sp-why-icon svg { fill: var(--white); }

.sp-why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.sp-why-card p  { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* Related services */
.sp-related { background: var(--white); }

.sp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sp-related-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: all var(--transition);
}

.sp-related-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.sp-related-icon {
    width: 52px; height: 52px;
    background: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}

.sp-related-icon svg { width: 26px; height: 26px; fill: var(--white); }
.sp-related-card h4  { color: var(--primary); font-size: 1rem; }

/* Responsive */
@media (max-width: 1024px) {
    .sp-hero         { padding: 72px 0 64px; }
    .sp-hero-inner   { grid-template-columns: 1fr; gap: 36px; }
    .sp-hero-right   { align-items: center; max-width: 440px; }
    .sp-about-inner  { grid-template-columns: 1fr; }
    .sp-quote-box    { position: static; }
    .sp-checklist    { grid-template-columns: 1fr 1fr; }
    .sp-steps        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sp-hero         { padding: 52px 0 44px; }
    .sp-hero-right   { display: none; }
    .sp-checklist    { grid-template-columns: 1fr; }
    .sp-why-grid     { grid-template-columns: 1fr; }
    .sp-related-grid { grid-template-columns: 1fr; }
    .sp-steps        { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .sp-hero-actions      { flex-wrap: nowrap; gap: 10px; }
    .sp-hero-actions .btn { flex: 1; padding: 13px 10px; justify-content: center; white-space: nowrap; }
}

/* ============================
   INNER PAGE (empty state)
   ============================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5da8 100%);
    padding: 70px 0;
    text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,0.72); font-size: 1rem; }

.page-content { padding: 80px 0; }

/* ============================
   RESPONSIVE
   ============================ */

/* Tablet */
@media (max-width: 1024px) {
    .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-steps     { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .services-grid     { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid         { gap: 36px; }
}

/* Mobile */
@media (max-width: 768px) {
    /* Top bar */
    .top-bar-left          { display: none; }
    .top-bar .container    { justify-content: center; }

    /* Header — hide nav & CTAs, show hamburger */
    .main-nav              { display: none; }
    .header-cta            { display: none; }
    .nav-toggle            { display: flex; }

    /* Mobile nav drawer */
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        border-top: 3px solid var(--accent);
        box-shadow: 0 12px 32px rgba(10,61,107,0.15);
        padding: 8px 20px 24px;
        z-index: 999;
    }

    .main-nav.open ul          { flex-direction: column; gap: 0; align-items: flex-start; width: 100%; }
    .main-nav.open li          { width: 100%; }

    .main-nav.open > ul > li > a {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        text-align: left;
    }

    .main-nav.open > ul > li:last-child > a { border-bottom: none; }
    .main-nav.open > ul > li > a::after      { display: none; }

    /* Mobile sub-menu — hidden by default, shown when .sub-open added via JS */
    .main-nav.open .sub-menu {
        display: none;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--accent);
        border-radius: 0;
        padding: 4px 0 8px 12px;
        max-height: none;
        margin: 0 0 4px 8px;
        background: var(--light-bg);
        text-align: left;
    }

    .main-nav.open .menu-item-has-children.sub-open > .sub-menu { display: block; }

    .main-nav.open .sub-menu li a {
        padding: 9px 10px;
        font-size: 0.86rem;
        border-bottom: none;
        justify-content: flex-start;
        text-align: left;
    }

        /* Quick contact buttons inside mobile nav */
    .mobile-nav-cta {
        display: flex;
        gap: 10px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--border);
    }

    .mobile-nav-cta a {
        flex: 1;
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
        padding: 11px 10px;
    }

    /* Hero */
    .hero              { padding: 52px 0 44px; }
    .hero-grid         { grid-template-columns: 1fr; }
    .hero-right        { display: none; }
    .hero h1           { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    .hero-lead         { font-size: 0.97rem; }

    /* Layouts */
    .why-inner         { grid-template-columns: 1fr; gap: 36px; }
    .cta-inner         { grid-template-columns: 1fr; gap: 28px; padding: 40px 32px; }
    .cta-actions       { align-items: stretch; min-width: 0; }
    .hf-row            { grid-template-columns: 1fr; }

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

    /* Footer */
    .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom     { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }

    /* Section padding */
    .section           { padding: 52px 0; }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-actions      { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .cta-actions       { flex-direction: column; align-items: stretch; }
    .cta-actions .btn  { justify-content: center; }
    .cta-inner         { padding: 32px 22px; }
    .cta-section       { padding: 64px 0; }
    .process-steps     { grid-template-columns: 1fr; }
    .emergency-bar .container { flex-direction: column; gap: 10px; }
    .hero-trust        { gap: 12px; }
}

/* ============================
   ABOUT PAGE
   ============================ */

/* Hero */
.ab-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5da8 100%);
    padding: 80px 0 64px;
}

.ab-hero-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: center;
}

.ab-hero-content .section-label { color: var(--accent); }

.ab-hero-content h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 14px 0 20px;
    line-height: 1.2;
}

.ab-hero-content h1 em {
    font-style: normal;
    color: var(--accent);
}

.ab-hero-content > p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
}

.ab-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Stats box */
.ab-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ab-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: background var(--transition);
}

.ab-stat:hover { background: rgba(255,255,255,0.13); }

.ab-stat-num {
    display: block;
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.ab-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    line-height: 1.4;
}

/* Our Story */
.ab-story-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 64px;
    align-items: flex-start;
}

/* Image column */
.ab-story-visual { position: relative; }

.ab-img-main {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.ab-img-photo {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 16px 44px rgba(10,61,107,0.18);
}

.ab-img-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5da8 100%);
    border-radius: 20px;
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    font-style: italic;
    text-align: center;
    padding: 24px;
}

.ab-img-placeholder svg {
    width: 52px;
    height: 52px;
    fill: rgba(255,255,255,0.3);
}

.ab-img-placeholder--sm {
    height: 160px;
    border-radius: 14px;
    margin-top: 16px;
    background: linear-gradient(135deg, #1a5da8 0%, var(--accent) 100%);
    font-size: 0.82rem;
}

.ab-img-placeholder--sm svg {
    width: 36px;
    height: 36px;
    fill: rgba(255,255,255,0.4);
}

/* Floating badge on image */
.ab-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(232,160,32,0.4);
}

.ab-badge-num {
    display: block;
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.ab-badge-text {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    display: block;
    margin-top: 5px;
    max-width: 80px;
}

/* Story content */
.ab-story-content h2 {
    margin: 14px 0 20px;
    color: var(--primary);
    font-size: 1.9rem;
}

.ab-story-content > p {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

/* Cert badges */
.ab-story-certs {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ab-cert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.ab-cert svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.ab-cert strong {
    display: block;
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.ab-cert span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.ab-cert span a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}
.ab-cert span a:hover { color: var(--accent); }

/* Mission & Values */
.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ab-value-card {
    border-radius: 18px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.ab-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.18);
}

.ab-value-primary { background: var(--primary); }
.ab-value-accent  { background: var(--accent); }
.ab-value-dark    { background: #1a2940; }

.ab-value-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ab-value-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.ab-value-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.ab-value-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.ab-value-tag {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 100px;
}

/* Team */
.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ab-team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.ab-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(10,61,107,0.12);
    border-color: var(--primary);
}

.ab-team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 18px;
}

.ab-team-info h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.ab-team-role {
    display: block;
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.ab-team-info p {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.ab-team-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-bg);
    color: var(--primary);
    font-family: var(--font-main);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
}

.ab-team-badge svg { width: 13px; height: 13px; fill: var(--primary); }

.ab-team-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ab-team-note svg { fill: var(--text-light); }

/* Timeline */
.ab-timeline-track {
    position: relative;
    padding: 48px 0 16px;
    margin-top: 48px;
}

.ab-timeline-line {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(255,255,255,0.12);
}

.ab-milestone {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0 32px;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.ab-milestone:last-child { margin-bottom: 0; }

/* Year bubble — middle column */
.ab-milestone-year {
    grid-column: 2;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 100px;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(232,160,32,0.45);
    text-align: center;
}

/* Content panel */
.ab-milestone-content {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 22px 24px;
    transition: background var(--transition);
}

.ab-milestone-content:hover { background: rgba(255,255,255,0.1); }

.ab-milestone-content h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.ab-milestone-content p {
    color: rgba(255,255,255,0.65);
    font-size: 0.86rem;
    line-height: 1.65;
    margin: 0;
}

/* Left-side milestone: content in col 1, year in col 2, empty col 3 */
.ab-milestone--left .ab-milestone-year    { grid-column: 2; grid-row: 1; }
.ab-milestone--left .ab-milestone-content { grid-column: 1; grid-row: 1; text-align: right; }

/* Right-side milestone: empty col 1, year in col 2, content in col 3 */
.ab-milestone--right .ab-milestone-year    { grid-column: 2; grid-row: 1; }
.ab-milestone--right .ab-milestone-content { grid-column: 3; grid-row: 1; text-align: left; }

/* About page responsive */
@media (max-width: 1024px) {
    .ab-hero-inner    { grid-template-columns: 1fr; gap: 40px; }
    .ab-hero-stats    { grid-template-columns: repeat(4, 1fr); }
    .ab-story-inner   { grid-template-columns: 1fr; gap: 40px; }
    .ab-img-badge     { bottom: 12px; right: 12px; }
    .ab-team-grid     { grid-template-columns: repeat(2, 1fr); }
    .ab-values-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ab-hero          { padding: 52px 0 44px; }
    .ab-hero-stats    { grid-template-columns: repeat(2, 1fr); }
    .ab-values-grid   { grid-template-columns: 1fr; }
    .ab-team-grid     { grid-template-columns: repeat(2, 1fr); }
    .ab-milestone     { grid-template-columns: 60px 1fr; gap: 0 16px; }
    .ab-milestone--left .ab-milestone-content,
    .ab-milestone--right .ab-milestone-content { grid-column: 2; grid-row: 1; text-align: left; }
    .ab-milestone--left .ab-milestone-year,
    .ab-milestone--right .ab-milestone-year    { grid-column: 1; grid-row: 1; padding: 6px 10px; font-size: 0.78rem; }
    .ab-timeline-line { left: 30px; }
}

@media (max-width: 480px) {
    .ab-hero-stats    { grid-template-columns: repeat(2, 1fr); }
    .ab-team-grid     { grid-template-columns: 1fr; }
    .ab-hero-actions  { flex-direction: column; align-items: stretch; }
    .ab-hero-actions .btn { justify-content: center; }
}

/* ============================
   SERVICE AREAS PAGE
   ============================ */

/* Hero */
.sa-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5da8 100%);
    padding: 80px 0 64px;
}

.sa-hero-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.sa-hero-content .section-label { color: var(--accent); }

.sa-hero-content h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 14px 0 20px;
    line-height: 1.2;
}

.sa-hero-content h1 em {
    font-style: normal;
    color: var(--accent);
}

.sa-hero-content > p {
    color: rgba(255,255,255,0.75);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.sa-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sa-hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sa-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
}

.sa-badge-num {
    display: block;
    font-family: var(--font-main);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.sa-badge-label {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.62);
    font-weight: 500;
    line-height: 1.4;
}

/* Areas grid */
.sa-areas { background: var(--white); }

.sa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sa-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.sa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10,61,107,0.12);
}

.sa-card-accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    text-align: center;
}

.sa-card-num {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    line-height: 1;
}

.sa-jobs-badge {
    background: rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
}

.sa-jobs-badge span {
    display: block;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.sa-jobs-badge small {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sa-card-body {
    padding: 22px 22px 20px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sa-card-body h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
}

.sa-card-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.sa-card-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
}

.sa-card-note svg { fill: var(--accent); flex-shrink: 0; }

.sa-card-cta {
    display: inline-block;
    margin-top: 4px;
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

.sa-card-cta:hover { color: var(--accent); }

/* Why section */
.sa-why { }

.sa-why-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: flex-start;
}

.sa-why-content .section-label { color: var(--accent); }

.sa-why-content h2 {
    font-size: 1.9rem;
    color: var(--primary);
    margin: 14px 0 20px;
}

.sa-why-content > p {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.sa-why-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.sa-why-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sa-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.sa-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sa-feature strong {
    display: block;
    font-family: var(--font-main);
    font-size: 0.92rem;
    color: var(--primary);
    margin-bottom: 3px;
}

.sa-feature span {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Services in area grid */
.sa-services { background: var(--white); }

.sa-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.sa-service-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition);
    color: var(--text);
}

.sa-service-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10,61,107,0.18);
}

.sa-service-card:hover span,
.sa-service-card:hover .sa-service-arrow { color: var(--white); }

.sa-service-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sa-service-card span {
    flex: 1;
    font-family: var(--font-main);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    transition: color var(--transition);
}

.sa-service-arrow {
    fill: var(--text-light);
    flex-shrink: 0;
    transition: fill var(--transition);
}

.sa-service-card:hover .sa-service-arrow { fill: var(--white); }

/* Responsive */
@media (max-width: 1024px) {
    .sa-hero-inner    { grid-template-columns: 1fr; gap: 36px; }
    .sa-hero-badges   { grid-template-columns: repeat(4, 1fr); }
    .sa-why-inner     { grid-template-columns: 1fr; gap: 40px; }
    .sa-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sa-hero          { padding: 52px 0 44px; }
    .sa-hero-badges   { grid-template-columns: repeat(2, 1fr); }
    .sa-grid          { grid-template-columns: 1fr; }
    .sa-card          { grid-template-columns: 90px 1fr; }
    .sa-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sa-why-actions   { flex-direction: column; align-items: stretch; }
    .sa-why-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
    .sa-services-grid { grid-template-columns: 1fr; }
    .sa-hero-actions  { flex-direction: column; align-items: stretch; }
    .sa-hero-actions .btn { justify-content: center; }
}

/* ============================
   SERVICE AREA SINGLE PAGE
   ============================ */

/* Hero */
.sas-hero {
    background: linear-gradient(135deg, var(--area-color, var(--primary)) 0%, #1a5da8 100%);
    padding: 72px 0 60px;
}

.sas-hero-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: center;
}

.sas-hero-content .section-label { color: var(--accent); }

.sas-hero-content h1 {
    color: var(--white);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin: 14px 0 18px;
    line-height: 1.2;
}

.sas-hero-content > p {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 500px;
}

.sas-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.sas-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.sas-stat {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
}

.sas-stat-num {
    display: block;
    font-family: var(--font-main);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 7px;
}

.sas-stat-label {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.62);
    font-weight: 500;
    line-height: 1.3;
}

/* About */
.sas-about { background: var(--white); }

.sas-about-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: flex-start;
}

.sas-about-content .section-label { color: var(--accent); }

.sas-about-content h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin: 12px 0 18px;
}

.sas-about-content > p {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.sas-trust-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.sas-trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.91rem;
    color: var(--text);
    font-weight: 500;
}

.sas-trust-list li svg { width: 18px; height: 18px; fill: #2a9d5c; flex-shrink: 0; }

/* Services */
.sas-services { }

/* Nearby areas */
.sas-nearby { background: var(--white); }

.sas-nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.sas-nearby-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition);
}

.sas-nearby-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.sas-nearby-card svg { fill: currentColor; flex-shrink: 0; }
.sas-nearby-card span { flex: 1; }

.sas-all-areas {
    text-align: center;
    margin-top: 32px;
}

/* ----- Main content + sidebar layout ----- */
.sas-main { background: var(--white); }

.sas-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: flex-start;
}

.sas-main-col .section-label { color: var(--accent); }

.sas-block-h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin: 12px 0 18px;
}

.sas-main-col > p {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.sas-block-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 40px 0 8px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.sas-block-intro {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* Common jobs */
.sas-jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 6px;
}

.sas-job-card {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.sas-job-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(10,61,107,0.1); }

.sas-job-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 11px;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
}
.sas-job-icon svg { width: 24px; height: 24px; fill: var(--white); }

.sas-job-card h4 { font-size: 0.97rem; color: var(--primary); margin-bottom: 5px; }
.sas-job-card p  { font-size: 0.86rem; color: var(--text-light); line-height: 1.55; margin: 0; }

/* Process */
.sas-process {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

.sas-process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.sas-process-num {
    width: 38px; height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.05rem;
    display: flex; align-items: center; justify-content: center;
}

.sas-process-step h4 { font-size: 0.97rem; color: var(--primary); margin-bottom: 4px; }
.sas-process-step p  { font-size: 0.87rem; color: var(--text-light); line-height: 1.55; margin: 0; }

/* FAQ */
.sas-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.sas-faq-item {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 20px;
}

.sas-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 28px 16px 0;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    position: relative;
    user-select: none;
}
.sas-faq-item summary::-webkit-details-marker { display: none; }

.sas-faq-mark {
    position: absolute;
    top: 50%; right: 0;
    width: 14px; height: 14px;
    transform: translateY(-50%);
}
.sas-faq-mark::before,
.sas-faq-mark::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--accent);
    transition: transform var(--transition);
}
.sas-faq-mark::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.sas-faq-mark::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.sas-faq-item[open] .sas-faq-mark::after { transform: translate(-50%, -50%) scaleY(0); }

.sas-faq-item p {
    margin: 0;
    padding: 0 0 18px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ----- Sidebar widgets ----- */
.sas-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sas-widget {
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--white);
}

.sas-widget-title {
    font-size: 1.05rem;
    color: var(--primary);
    padding: 16px 20px;
    margin: 0;
    border-bottom: 1px solid var(--border);
}
.sas-widget-title--light { background: var(--light-bg); }

/* Contact widget (dark) */
.sas-contact-widget {
    background: var(--primary);
    border-color: var(--primary);
    padding: 22px 22px 24px;
}
.sas-contact-widget .sas-widget-title {
    color: var(--white);
    padding: 0 0 6px;
    border: none;
    font-size: 1.1rem;
}
.sas-widget-sub { color: rgba(255,255,255,0.72); font-size: 0.86rem; margin: 0 0 16px; }

.sas-widget-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}
.sas-widget-btn-ghost {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.22);
    color: var(--white);
}
.sas-widget-btn-ghost:hover { background: rgba(255,255,255,0.16); }

.sas-contact-rows {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sas-contact-row {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,0.85);
    font-size: 0.86rem;
    text-decoration: none;
}
.sas-contact-row svg { width: 17px; height: 17px; fill: var(--accent); flex-shrink: 0; }
a.sas-contact-row:hover { color: var(--white); }

/* Popular services widget */
.sas-pop-list { list-style: none; margin: 0; padding: 6px; }
.sas-pop-list li + li { border-top: 1px solid var(--border); }
.sas-pop-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    text-decoration: none;
    color: var(--primary);
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background var(--transition);
}
.sas-pop-list a:hover { background: var(--light-bg); }
.sas-pop-icon {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.sas-pop-icon svg { width: 18px; height: 18px; }
.sas-pop-arrow { width: 16px; height: 16px; margin-left: auto; fill: var(--text-light); }
.sas-pop-list a:hover .sas-pop-arrow { fill: var(--accent); }

/* Trust widget */
.sas-trust-cards { list-style: none; margin: 0; padding: 14px 20px 18px; }
.sas-trust-cards li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--text);
    padding: 7px 0;
}
.sas-trust-cards li svg { width: 18px; height: 18px; fill: #2a9d5c; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .sas-hero-inner   { grid-template-columns: 1fr; gap: 36px; }
    .sas-hero-stats   { grid-template-columns: repeat(4, 1fr); }
    .sas-about-inner  { grid-template-columns: 1fr; }
    .sas-layout       { grid-template-columns: 1fr; gap: 40px; }
    .sas-sidebar      { position: static; }
    .sas-nearby-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sas-hero        { padding: 48px 0 40px; }
    .sas-hero-stats  { grid-template-columns: repeat(2, 1fr); }
    .sas-jobs-grid   { grid-template-columns: 1fr; }
    .sas-nearby-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .sas-hero-actions { flex-direction: column; align-items: stretch; }
    .sas-hero-actions .btn { justify-content: center; }
}

/* ============================
   CONTACT PAGE
   ============================ */

/* Hero */
.ct-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5da8 100%);
    padding: 72px 0 60px;
    text-align: center;
}

.ct-hero .section-label { color: var(--accent); }

.ct-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 14px 0 18px;
}

.ct-hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.ct-hero > .container > p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Main layout */
.ct-main { background: var(--white); }

.ct-inner {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 64px;
    align-items: flex-start;
}

/* Methods */
.ct-methods h2 {
    font-size: 1.7rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.ct-methods-intro {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ct-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 14px;
    text-decoration: none;
    margin-bottom: 14px;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.ct-method--wa {
    background: #e8f7ee;
    border-color: #c3e6cb;
}

.ct-method--wa:hover {
    background: #25d366;
    border-color: #25d366;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.ct-method--email {
    background: var(--light-bg);
    border-color: var(--border);
}

.ct-method--email:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.ct-method-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-method--wa .ct-method-icon    { background: #25d366; color: var(--white); }
.ct-method--email .ct-method-icon { background: var(--primary); color: var(--white); }

.ct-method-icon svg { width: 26px; height: 26px; }

.ct-method-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ct-method-body strong {
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--primary);
    transition: color var(--transition);
}

.ct-method-body span {
    font-size: 0.88rem;
    color: var(--text-light);
    transition: color var(--transition);
}

.ct-method-body em {
    font-style: normal;
    font-size: 0.78rem;
    color: var(--text-light);
    transition: color var(--transition);
}

.ct-method:hover .ct-method-body strong,
.ct-method:hover .ct-method-body span,
.ct-method:hover .ct-method-body em { color: var(--white); }

.ct-method-icon svg { width: 26px; height: 26px; }

.ct-method-arrow {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
    flex-shrink: 0;
    transition: fill var(--transition), transform var(--transition);
}

.ct-method:hover .ct-method-arrow {
    fill: var(--white);
    transform: translateX(4px);
}

/* Info strip */
.ct-info-strip {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
    padding: 22px;
    background: var(--light-bg);
    border-radius: 14px;
    border: 1px solid var(--border);
}

.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ct-info-item svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.ct-info-item strong {
    display: block;
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.ct-info-item span {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Form */
.ct-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 40px rgba(10,61,107,0.08);
}

.ct-form-header { margin-bottom: 28px; }

.ct-form-header h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.ct-form-header p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.ct-field label {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.ct-field label span { color: #c0392b; }

.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    box-sizing: border-box;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10,61,107,0.1);
}

.ct-field textarea { resize: vertical; min-height: 130px; }

.ct-submit {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    font-size: 1rem;
}

.ct-form-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 12px;
    margin-bottom: 0;
}

.ct-form-note svg { fill: #2a9d5c; flex-shrink: 0; }

/* Success state */
.ct-success {
    text-align: center;
    padding: 48px 24px;
}

.ct-success-icon {
    width: 72px;
    height: 72px;
    background: #e8f7ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #25d366;
}

.ct-success h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.ct-success p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto;
}

/* FAQ */
.ct-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ct-faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.ct-faq-item h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.ct-faq-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.ct-faq-item p a { color: var(--primary); font-weight: 600; text-decoration: none; }
.ct-faq-item p a:hover { color: var(--accent); }

/* Trust bar */
.ct-trust { background: var(--primary); }

.ct-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.ct-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ct-trust-item svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.ct-trust-item strong {
    display: block;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 3px;
}

.ct-trust-item span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.62);
}

/* Responsive */
@media (max-width: 1024px) {
    .ct-inner      { grid-template-columns: 1fr; gap: 40px; }
    .ct-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ct-hero       { padding: 52px 0 44px; }
    .ct-form-wrap  { padding: 24px 20px; }
    .ct-form-row   { grid-template-columns: 1fr; }
    .ct-faq-grid   { grid-template-columns: 1fr; }
    .ct-trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .ct-trust-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG — HERO (ARCHIVE / POSTS PAGE)
   ============================================================ */
.blog-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5da8 60%, var(--primary-dark) 100%);
  padding: clamp(3.5rem,7vw,5.5rem) 0 clamp(3rem,6vw,5rem);
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}
.blog-hero__inner {
  position:relative;
  z-index:1;
  text-align:center;
  max-width:680px;
  margin:0 auto;
}
.blog-hero__badge {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:var(--accent);
  color:#fff;
  font-family:var(--font-main);
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:.4rem 1rem;
  border-radius:999px;
  margin-bottom:1.25rem;
}
.blog-hero__title {
  font-family:var(--font-main);
  font-size:clamp(2rem,5vw,3.25rem);
  font-weight:800;
  color:#fff;
  line-height:1.15;
  margin:0 0 1rem;
  letter-spacing:-.02em;
}
.blog-hero__sub {
  font-size:clamp(1rem,2vw,1.2rem);
  color:rgba(255,255,255,.82);
  line-height:1.6;
  margin:0 0 1.75rem;
}

/* BREADCRUMB */
.breadcrumb__list {
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:.25rem;
  font-size:.8125rem;
}
.breadcrumb__item a { color:rgba(255,255,255,.78); text-decoration:none; transition:color .2s; }
.breadcrumb__item a:hover { color:var(--accent); }
.breadcrumb__item--current { color:#fff; }
.breadcrumb__sep { color:rgba(255,255,255,.45); font-size:.625rem; margin:0 .15rem; }
.breadcrumb--dark .breadcrumb__list { justify-content:flex-start; }

/* BLOG CONTENT LAYOUT */
.blog-content { background:var(--light-bg); padding:clamp(3rem,6vw,5rem) 0 clamp(4rem,8vw,7rem); }
.blog-layout { display:grid; grid-template-columns:1fr 340px; gap:2.5rem; align-items:start; }
.blog-main { min-width:0; }

/* Latest label */
.blog-latest-label {
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-family:var(--font-main);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--accent-dark);
  margin-bottom:.875rem;
}
.blog-latest-label i { font-size:.65rem; }

/* FEATURED POST */
.blog-featured {
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
  margin-bottom:2.5rem;
  transition:box-shadow .3s,transform .3s;
}
.blog-featured:hover { box-shadow:0 12px 48px rgba(10,61,107,.16); transform:translateY(-3px); }
.blog-featured__inner { display:grid; grid-template-columns:1fr 1fr; }
.blog-featured__image-wrap { position:relative; overflow:hidden; min-height:380px; }
.blog-featured__img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s; }
.blog-featured:hover .blog-featured__img { transform:scale(1.05); }
.blog-featured__placeholder {
  display:flex; align-items:center; justify-content:center;
  width:100%; height:100%; min-height:380px;
  background:linear-gradient(135deg,var(--primary) 0%,#1a5da8 100%);
  color:rgba(255,255,255,.25); font-size:5rem; text-decoration:none;
}
.blog-featured__body { padding:2.5rem 2rem; display:flex; flex-direction:column; justify-content:center; }
.blog-featured__category {
  display:inline-block;
  font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--accent-dark); text-decoration:none; margin-bottom:.75rem; transition:opacity .2s;
}
.blog-featured__category:hover { opacity:.75; }
.blog-featured__title {
  font-family:var(--font-main);
  font-size:clamp(1.3rem,2.5vw,1.75rem);
  font-weight:800; line-height:1.25;
  color:var(--primary); margin:0 0 1rem; letter-spacing:-.02em;
}
.blog-featured__title a { color:inherit; text-decoration:none; transition:color .2s; }
.blog-featured__title a:hover { color:var(--accent); }
.blog-featured__excerpt { font-size:.975rem; line-height:1.7; color:var(--text-light); margin:0 0 1.5rem; }
.blog-featured__btn { align-self:flex-start; display:inline-flex; align-items:center; gap:.5rem; }

/* BLOG GRID */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-bottom:3rem; }

/* BLOG CARD */
.blog-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px; overflow:hidden;
  box-shadow:0 2px 12px rgba(10,61,107,.06);
  display:flex; flex-direction:column;
  transition:box-shadow .3s,transform .3s,border-color .3s;
}
.blog-card:hover { box-shadow:0 10px 36px rgba(10,61,107,.14); transform:translateY(-4px); border-color:rgba(232,160,32,.5); }
.blog-card__image-wrap { position:relative; overflow:hidden; aspect-ratio:16/10; }
.blog-card__img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .45s; }
.blog-card:hover .blog-card__img { transform:scale(1.06); }
.blog-card__placeholder {
  display:flex; align-items:center; justify-content:center;
  width:100%; height:100%; aspect-ratio:16/10;
  background:linear-gradient(135deg,var(--primary),#1a5da8);
  color:rgba(255,255,255,.3); font-size:3rem; text-decoration:none;
}
.blog-card__cat-badge {
  position:absolute; top:.75rem; left:.75rem;
  background:var(--accent); color:#fff;
  font-size:.65rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:.3rem .65rem; border-radius:999px; text-decoration:none; transition:background .2s; white-space:nowrap;
}
.blog-card__cat-badge:hover { background:var(--accent-dark); color:#fff; }
.blog-card__body { padding:1.25rem 1.25rem 1rem; flex:1; display:flex; flex-direction:column; }
.blog-card__title {
  font-family:var(--font-main); font-size:1.0625rem; font-weight:700;
  line-height:1.35; color:var(--primary); margin:0 0 .6rem; letter-spacing:-.01em;
}
.blog-card__title a {
  color:inherit; text-decoration:none; transition:color .2s;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.blog-card__title a:hover { color:var(--accent); }
.blog-card__excerpt {
  font-size:.875rem; line-height:1.6; color:var(--text-light);
  margin:0 0 auto; padding-bottom:.75rem;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.blog-card__footer {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:.875rem; border-top:1px solid var(--border); margin-top:auto; flex-wrap:wrap; gap:.5rem;
}
.blog-card__meta { display:flex; align-items:center; gap:.4rem; flex-wrap:wrap; }
.blog-card__meta-item { display:inline-flex; align-items:center; gap:.3rem; font-size:.75rem; color:var(--text-light); }
.blog-card__meta-item i { font-size:.65rem; color:var(--accent); }
.blog-card__meta-sep { color:var(--border); font-size:.7rem; }
.blog-card__read-more {
  display:inline-flex; align-items:center; gap:.3rem;
  font-size:.8125rem; font-weight:600; color:var(--accent-dark); text-decoration:none;
  transition:gap .2s,color .2s; white-space:nowrap;
}
.blog-card__read-more:hover { gap:.55rem; color:var(--accent); }
.blog-card__read-more i { font-size:.6875rem; }

/* EMPTY STATE */
.blog-empty { text-align:center; padding:4rem 2rem; background:#fff; border-radius:16px; border:1px solid var(--border); }
.blog-empty__icon { font-size:3.5rem; color:var(--border); display:block; margin:0 auto 1.25rem; }
.blog-empty h2 { font-size:1.5rem; color:var(--primary); margin:0 0 .75rem; }
.blog-empty p { color:var(--text-light); margin:0 0 1.5rem; }

/* PAGINATION */
.blog-pagination { margin-top:1rem; }
.blog-pagination .nav-links { display:flex; align-items:center; justify-content:center; gap:.4rem; flex-wrap:wrap; }
.blog-pagination .page-numbers {
  display:inline-flex; align-items:center; justify-content:center;
  min-width:42px; height:42px; padding:0 .75rem;
  border-radius:6px; font-family:var(--font-main); font-size:.9rem; font-weight:600;
  color:var(--primary); text-decoration:none;
  background:#fff; border:1.5px solid var(--border);
  transition:background .2s,color .2s,border-color .2s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current { background:var(--primary); color:#fff; border-color:var(--primary); }
.blog-pagination .prev.page-numbers,
.blog-pagination .next.page-numbers {
  background:var(--accent); border-color:var(--accent); color:#fff; width:auto; gap:.4rem;
}
.blog-pagination .prev.page-numbers:hover,
.blog-pagination .next.page-numbers:hover { background:var(--accent-dark); border-color:var(--accent-dark); }

/* SIDEBAR */
.blog-sidebar { display:flex; flex-direction:column; gap:1.5rem; }
.sidebar-widget { background:#fff; border:1px solid var(--border); border-radius:10px; overflow:hidden; box-shadow:0 2px 12px rgba(10,61,107,.05); }
.sidebar-widget__header {
  display:flex; align-items:center; gap:.6rem; padding:.875rem 1.25rem;
  background:var(--primary); color:#fff;
}
.sidebar-widget__header i { font-size:.875rem; opacity:.9; color:var(--accent); }
.sidebar-widget__title { font-family:var(--font-main); font-size:.9375rem; font-weight:700; color:#fff; margin:0; }

/* Call box */
.sidebar-callbox { background:linear-gradient(145deg,var(--primary),var(--primary-dark)); border-color:var(--primary-dark); }
.sidebar-callbox__inner { padding:1.75rem 1.5rem; text-align:center; }
.sidebar-callbox__icon {
  display:inline-flex; align-items:center; justify-content:center;
  width:52px; height:52px; background:rgba(255,255,255,.12);
  border-radius:50%; font-size:1.25rem; color:var(--accent); margin-bottom:.875rem;
}
.sidebar-callbox__title { font-family:var(--font-main); font-size:1.125rem; font-weight:800; color:#fff; margin:0 0 .4rem; }
.sidebar-callbox__text { font-size:.825rem; color:rgba(255,255,255,.78); margin:0 0 1.25rem; line-height:1.5; }
.sidebar-callbox__btn {
  display:flex; align-items:center; justify-content:center; gap:.4rem;
  width:100%; margin-bottom:.625rem; padding:.7rem 1rem;
  background:#25d366; color:#fff; border-radius:6px;
  font-family:var(--font-main); font-size:.9375rem; font-weight:700; text-decoration:none; transition:background .2s;
}
.sidebar-callbox__btn:hover { background:#1fad54; color:#fff; }
.sidebar-callbox__wa {
  display:flex; align-items:center; justify-content:center; gap:.4rem; width:100%;
  padding:.65rem 1rem; background:var(--accent); color:#fff; border-radius:6px;
  font-size:.875rem; font-weight:600; text-decoration:none; transition:background .2s;
}
.sidebar-callbox__wa:hover { background:var(--accent-dark); color:#fff; }

/* Categories */
.sidebar-cats { list-style:none; margin:0; padding:.5rem 0; }
.sidebar-cats__item { display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid var(--border); }
.sidebar-cats__item:last-child { border-bottom:none; }
.sidebar-cats__link {
  display:flex; align-items:center; gap:.5rem; flex:1;
  padding:.6875rem 1.25rem; font-size:.875rem; font-weight:500;
  color:var(--text); text-decoration:none; transition:color .2s,padding-left .2s;
}
.sidebar-cats__link i { font-size:.625rem; color:var(--accent); transition:transform .2s; }
.sidebar-cats__link:hover { color:var(--accent-dark); padding-left:1.5rem; }
.sidebar-cats__link:hover i { transform:translateX(2px); }
.sidebar-cats__count {
  display:inline-flex; align-items:center; justify-content:center;
  min-width:22px; height:22px; padding:0 .35rem; border-radius:999px;
  background:rgba(232,160,32,.14); color:var(--accent-dark); font-size:.6875rem; font-weight:700; margin-right:1rem;
}

/* Recent Posts Widget */
.sidebar-recent-post {
  display:flex; gap:.875rem; padding:.875rem 1.25rem;
  border-bottom:1px solid var(--border); transition:background .2s;
}
.sidebar-recent-post:last-child { border-bottom:none; }
.sidebar-recent-post:hover { background:var(--light-bg); }
.sidebar-recent-post__thumb-link { flex-shrink:0; display:block; border-radius:6px; overflow:hidden; }
.sidebar-recent-post__thumb { width:70px; height:52px; object-fit:cover; display:block; transition:transform .3s; }
.sidebar-recent-post:hover .sidebar-recent-post__thumb { transform:scale(1.06); }
.sidebar-recent-post__thumb-placeholder {
  display:flex; align-items:center; justify-content:center;
  width:70px; height:52px; background:linear-gradient(135deg,var(--primary),#1a5da8); border-radius:6px;
  color:rgba(255,255,255,.4); font-size:1.25rem; flex-shrink:0; text-decoration:none;
}
.sidebar-recent-post__info { flex:1; min-width:0; }
.sidebar-recent-post__title {
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  font-size:.8125rem; font-weight:600; color:var(--text); text-decoration:none;
  line-height:1.4; margin-bottom:.3rem; transition:color .2s;
}
.sidebar-recent-post__title:hover { color:var(--accent-dark); }
.sidebar-recent-post__date { font-size:.7rem; color:var(--text-light); }

/* Emergency CTA */
.sidebar-emergency { background:linear-gradient(145deg,#b91c1c,#7f1212); border-color:#7f1212; }
.sidebar-emergency__inner { padding:1.75rem 1.5rem; text-align:center; }
.sidebar-emergency__badge {
  display:inline-block; background:#fff; color:#b91c1c;
  font-size:.65rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:.3rem .75rem; border-radius:999px; margin-bottom:.875rem;
  animation:pulse-badge 2s infinite;
}
@keyframes pulse-badge { 0%,100%{opacity:1} 50%{opacity:.75} }
.sidebar-emergency__icon { display:block; font-size:2.25rem; color:#fff; margin:0 auto .625rem; }
.sidebar-emergency__title { font-family:var(--font-main); font-size:1.0625rem; font-weight:800; color:#fff; margin:0 0 .4rem; }
.sidebar-emergency__text { font-size:.8125rem; color:rgba(255,255,255,.85); margin:0 0 1.25rem; line-height:1.5; }
.sidebar-emergency__btn {
  display:flex; align-items:center; justify-content:center; gap:.4rem; width:100%;
  padding:.7rem 1rem; background:#fff; color:#b91c1c; border-radius:6px;
  font-family:var(--font-main); font-size:.9rem; font-weight:700; text-decoration:none; transition:background .2s,color .2s;
}
.sidebar-emergency__btn:hover { background:var(--primary); color:#fff; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-hero {
  position:relative; min-height:clamp(380px,55vw,580px);
  display:flex; align-items:flex-end; overflow:hidden;
  background:var(--primary);
}
.single-hero__bg { position:absolute; inset:0; z-index:0; }
.single-hero__img { width:100%; height:100%; object-fit:cover; display:block; }
.single-hero__overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(6,42,78,.96) 0%,rgba(6,42,78,.6) 50%,rgba(6,42,78,.25) 100%);
}
.single-hero__placeholder {
  position:absolute; inset:0;
  background:linear-gradient(135deg,var(--primary),#1a5da8);
  display:flex; align-items:center; justify-content:center;
  font-size:6rem; color:rgba(255,255,255,.1);
}
.single-hero__content { position:relative; z-index:2; width:100%; padding:clamp(1.5rem,4vw,3rem) 0 clamp(2.5rem,5vw,4rem); }
.single-hero__category-badge {
  display:inline-flex; align-items:center; gap:.3rem;
  background:var(--accent); color:#fff;
  font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:.35rem .875rem; border-radius:999px; text-decoration:none; margin-bottom:1rem; transition:background .2s;
}
.single-hero__category-badge:hover { background:var(--accent-dark); color:#fff; }
.single-hero__title {
  font-family:var(--font-main); font-size:clamp(1.625rem,4.5vw,2.875rem); font-weight:800;
  color:#fff; line-height:1.2; margin:0 0 1.25rem; letter-spacing:-.025em; max-width:800px;
}
.single-hero__meta { display:flex; align-items:center; flex-wrap:wrap; gap:.75rem 1.25rem; margin-bottom:1.25rem; }
.single-hero__meta-item { display:flex; align-items:center; gap:.4rem; font-size:.825rem; color:rgba(255,255,255,.85); }
.single-hero__meta-item i { font-size:.75rem; color:var(--accent); }
.single-hero__meta-sep { color:rgba(255,255,255,.4); font-size:.7rem; }

/* Share in hero */
.hero-share { display:flex; align-items:center; gap:.5rem; flex-wrap:wrap; }
.hero-share__label { font-size:.75rem; font-weight:600; color:rgba(255,255,255,.7); text-transform:uppercase; letter-spacing:.08em; margin-right:.25rem; }
.share-btn {
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%; border:none; cursor:pointer;
  font-size:.8125rem; text-decoration:none; color:#fff; transition:transform .2s,box-shadow .2s;
}
.share-btn:hover { transform:translateY(-2px); box-shadow:0 4px 12px rgba(0,0,0,.25); }
.share-btn--fb { background:#1877f2; }
.share-btn--wa { background:#25d366; }
.share-btn--copy { background:rgba(255,255,255,.18); border:1.5px solid rgba(255,255,255,.4); }

/* SINGLE POST LAYOUT */
.single-content-section { background:var(--light-bg); padding:clamp(2.5rem,5vw,4.5rem) 0 clamp(4rem,8vw,7rem); }
.single-layout { display:grid; grid-template-columns:1fr 320px; gap:2.5rem; align-items:start; }
.single-main { min-width:0; }
.single-sidebar { position:sticky; top:90px; display:flex; flex-direction:column; gap:1.5rem; }

/* TABLE OF CONTENTS */
.blog-toc {
  background:#fff; border-radius:10px; overflow:hidden;
  box-shadow:0 2px 12px rgba(10,61,107,.06); margin-bottom:2rem;
  border-left:4px solid var(--accent);
  border-top:1px solid var(--border); border-right:1px solid var(--border); border-bottom:1px solid var(--border);
}
.blog-toc__header {
  display:flex; align-items:center; justify-content:space-between;
  padding:.875rem 1.25rem; background:rgba(232,160,32,.08); cursor:pointer; user-select:none;
}
.blog-toc__heading { display:flex; align-items:center; gap:.5rem; font-family:var(--font-main); font-size:.9375rem; font-weight:700; color:var(--primary); margin:0; }
.blog-toc__heading i { color:var(--accent); }
.blog-toc__toggle { background:none; border:none; padding:.25rem; cursor:pointer; color:var(--primary); font-size:.75rem; transition:transform .25s; }
.blog-toc__toggle.is-open { transform:rotate(180deg); }
.blog-toc__list { list-style:none; margin:0; padding:.5rem 0; counter-reset:toc-counter; }
.blog-toc__list-item { counter-increment:toc-counter; }
.blog-toc__link {
  display:flex; align-items:baseline; gap:.6rem; padding:.45rem 1.25rem;
  font-size:.875rem; color:var(--text-light); text-decoration:none; transition:color .2s,padding-left .2s; line-height:1.45;
}
.blog-toc__link::before {
  content:counter(toc-counter) "."; font-size:.75rem; font-weight:700;
  color:var(--accent); flex-shrink:0; min-width:18px;
}
.blog-toc__link:hover { color:var(--accent-dark); padding-left:1.5rem; }
.blog-toc__link.is-active { color:var(--accent-dark); font-weight:600; }

/* POST CONTENT TYPOGRAPHY */
.blog-post-content {
  background:#fff; border:1px solid var(--border);
  border-radius:16px; box-shadow:0 2px 16px rgba(10,61,107,.06);
  padding:clamp(1.75rem,4vw,3rem); margin-bottom:2rem;
}
.blog-post-content p { font-size:1.0625rem; line-height:1.8; color:var(--text); margin:0 0 1.4em; }
.blog-post-content h2 {
  font-family:var(--font-main); font-size:clamp(1.375rem,3vw,1.75rem); font-weight:800;
  color:var(--primary); margin:2.25em 0 .75em; padding-bottom:.5rem;
  border-bottom:2px solid rgba(232,160,32,.35); line-height:1.25; letter-spacing:-.02em;
  scroll-margin-top:90px;
}
.blog-post-content h3 { font-family:var(--font-main); font-size:clamp(1.125rem,2.5vw,1.375rem); font-weight:700; color:var(--primary); margin:2em 0 .6em; line-height:1.3; scroll-margin-top:90px; }
.blog-post-content h4 { font-family:var(--font-main); font-size:1.0625rem; font-weight:700; color:var(--text); margin:1.75em 0 .5em; }
.blog-post-content ul, .blog-post-content ol { font-size:1.0625rem; line-height:1.75; color:var(--text); margin:0 0 1.5em; padding:0; list-style:none; }
.blog-post-content ul li { position:relative; padding-left:1.75rem; margin-bottom:.5rem; }
.blog-post-content ul li::before { content:''; position:absolute; left:0; top:.55em; width:8px; height:8px; background:var(--accent); border-radius:50%; }
.blog-post-content ol { counter-reset:ol; }
.blog-post-content ol li { counter-increment:ol; position:relative; padding-left:1.75rem; margin-bottom:.5rem; }
.blog-post-content ol li::before {
  content:counter(ol) "."; position:absolute; left:0; top:0;
  font-size:.9rem; font-weight:700; color:var(--accent-dark);
}
.blog-post-content blockquote {
  margin:2em 0; padding:1.25rem 1.5rem 1.25rem 1.75rem;
  border-left:4px solid var(--accent); background:rgba(232,160,32,.08);
  border-radius:0 10px 10px 0; font-style:italic; color:var(--text); line-height:1.65;
}
.blog-post-content blockquote p { font-size:inherit; color:inherit; margin:0; }
.blog-post-content a { color:#1a6fd4; text-decoration:underline; text-decoration-color:rgba(26,111,212,.5); text-underline-offset:2px; transition:color .2s; }
.blog-post-content a:hover { color:#0a3d6b; }
.blog-post-content strong { font-weight:400; color:var(--text); }
.blog-post-content strong a { font-weight:600; }
.blog-post-content img { max-width:100%; height:auto; border-radius:10px; margin:1.5em 0; box-shadow:0 4px 20px rgba(10,61,107,.12); }
.blog-post-content table { width:100%; border-collapse:collapse; margin:2em 0; font-size:.9375rem; overflow-x:auto; display:block; }
.blog-post-content th { background:var(--primary); color:#fff; font-weight:700; padding:.75rem 1rem; text-align:left; font-size:.875rem; }
.blog-post-content td { padding:.6875rem 1rem; border-bottom:1px solid var(--border); color:var(--text); }
.blog-post-content tr:nth-child(even) td { background:var(--light-bg); }

/* Info/Tip/Warn boxes */
.blog-post-content .info-box,.blog-post-content .tip-box,.blog-post-content .warn-box {
  display:flex; gap:1rem; padding:1.25rem 1.5rem; border-radius:10px; margin:2em 0;
}
.blog-post-content .info-box { background:rgba(10,61,107,.05); border:1.5px solid rgba(10,61,107,.18); }
.blog-post-content .tip-box { background:rgba(37,211,102,.07); border:1.5px solid rgba(37,211,102,.25); }
.blog-post-content .warn-box { background:rgba(220,38,38,.06); border:1.5px solid rgba(220,38,38,.22); }
.blog-post-content .info-box p,.blog-post-content .tip-box p,.blog-post-content .warn-box p { margin-bottom:0; font-size:.95rem; flex:1; }
.blog-post-content .tip-box-label { font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:#1fad54; margin-bottom:6px; }
.blog-post-content .warn-box-label { font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:#dc2626; margin-bottom:6px; }

/* POST TAGS */
.post-tags { display:flex; align-items:center; flex-wrap:wrap; gap:.5rem; padding:1.5rem 0; border-top:1px solid var(--border); }
.post-tags__label { font-size:.8125rem; font-weight:700; color:var(--text-light); text-transform:uppercase; letter-spacing:.07em; margin-right:.25rem; }
.post-tags__tag {
  display:inline-flex; align-items:center; gap:.25rem; padding:.35rem .875rem;
  background:rgba(232,160,32,.1); color:var(--accent-dark); border:1.5px solid rgba(232,160,32,.3);
  border-radius:999px; font-size:.8125rem; font-weight:500; text-decoration:none; transition:background .2s,color .2s,border-color .2s;
}
.post-tags__tag:hover { background:var(--accent); color:#fff; border-color:var(--accent); }

/* SHARE SECTION */
.share-section {
  background:#fff; border:1px solid var(--border); border-radius:10px;
  padding:1.25rem 1.5rem; box-shadow:0 2px 12px rgba(10,61,107,.05); margin:1.5rem 0 2rem;
  display:flex; align-items:center; flex-wrap:wrap; gap:.75rem;
}
.share-section__label { font-size:.8125rem; font-weight:700; color:var(--text-light); text-transform:uppercase; letter-spacing:.07em; margin-right:.25rem; }
.share-section .share-btn { width:auto; height:38px; padding:0 1rem; border-radius:6px; gap:.4rem; font-size:.8125rem; font-weight:600; }
.share-section .share-btn--copy { background:var(--light-bg); color:var(--text); border:1.5px solid var(--border); }
.share-section .share-btn--copy:hover { background:var(--primary); color:#fff; border-color:var(--primary); }

/* AUTHOR BOX */
.author-box {
  background:#fff; border:1.5px solid rgba(232,160,32,.3); border-radius:16px;
  padding:1.75rem; box-shadow:0 2px 16px rgba(10,61,107,.06); margin:2rem 0;
  display:flex; gap:1.5rem; align-items:flex-start;
}
.author-box__avatar { flex-shrink:0; }
.author-box__avatar img { width:72px!important; height:72px!important; border-radius:50%; border:3px solid var(--accent); object-fit:cover; }
.author-box__label { font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--accent-dark); margin-bottom:.2rem; }
.author-box__name { font-family:var(--font-main); font-size:1.1875rem; font-weight:800; color:var(--primary); margin:0 0 .625rem; }
.author-box__bio { font-size:.9rem; line-height:1.65; color:var(--text-light); margin:0; }

/* RELATED POSTS */
.related-posts { margin:2rem 0; }
.related-posts__title {
  font-family:var(--font-main); font-size:1.3125rem; font-weight:800; color:var(--primary);
  margin:0 0 1.25rem; padding-bottom:.75rem; border-bottom:2px solid var(--border);
  display:flex; align-items:center; gap:.6rem;
}
.related-posts__title i { color:var(--accent); font-size:1rem; }
.related-posts__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }

/* SIDEBAR TOC */
.sidebar-toc {
  background:#fff; border-radius:10px; overflow:hidden;
  border-top:3px solid var(--accent);
  border-left:1px solid var(--border); border-right:1px solid var(--border); border-bottom:1px solid var(--border);
}
.sidebar-toc__header { display:flex; align-items:center; gap:.5rem; padding:.875rem 1.25rem; font-family:var(--font-main); font-size:.9375rem; font-weight:700; color:var(--primary); }
.sidebar-toc__header i { color:var(--accent); }
.sidebar-toc__list { list-style:none; margin:0; padding:0 0 .75rem; counter-reset:sidebar-toc; }
.sidebar-toc__list li { counter-increment:sidebar-toc; }
.sidebar-toc__list a {
  display:flex; align-items:baseline; gap:.5rem; padding:.4rem 1.25rem;
  font-size:.8125rem; color:var(--text-light); text-decoration:none; transition:color .2s,padding-left .2s; line-height:1.4;
}
.sidebar-toc__list a::before { content:counter(sidebar-toc) "."; font-size:.6875rem; font-weight:700; color:var(--accent); flex-shrink:0; min-width:16px; }
.sidebar-toc__list a:hover { color:var(--accent-dark); padding-left:1.5rem; }

/* BLOG RESPONSIVE */
@media (max-width:1100px) {
  .blog-layout,.single-layout { grid-template-columns:1fr 300px; gap:2rem; }
  .blog-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px) {
  .blog-layout,.single-layout { grid-template-columns:1fr; }
  .blog-sidebar,.single-sidebar { position:static; display:grid; grid-template-columns:repeat(2,1fr); gap:1.25rem; }
  .blog-featured__inner { grid-template-columns:1fr; }
  .blog-featured__image-wrap { min-height:260px; }
  .related-posts__grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px) {
  .blog-grid { grid-template-columns:1fr; }
  .blog-sidebar,.single-sidebar { grid-template-columns:1fr; }
  .related-posts__grid { grid-template-columns:1fr; }
  .single-hero__title { font-size:1.5rem; }
  .author-box { flex-direction:column; gap:1rem; }
  .share-section { flex-direction:column; align-items:flex-start; }
  .hero-share { display:none; }
}

/* ==========================================================================
   AREAS + FAQ — premium side-by-side panels (home)
   ========================================================================== */
.local-seo-section { background: var(--light-bg); }

.local-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 36px;
    align-items: stretch;
}

.local-panel {
    border-radius: 18px;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
}

.local-panel .panel-label {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.local-panel h2 {
    font-family: var(--font-main);
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 14px;
}

.local-panel .panel-intro {
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0 0 28px;
}

/* --- Areas panel: deep-blue premium card --- */
.local-panel--areas {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 58%, #12518b 100%);
    box-shadow: 0 20px 50px rgba(6, 42, 78, 0.28);
}

.local-panel--areas::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,160,32,0.22) 0%, rgba(232,160,32,0) 70%);
    pointer-events: none;
}

.local-panel--areas h2 { color: var(--white); }
.local-panel--areas .panel-intro { color: rgba(255, 255, 255, 0.78); }

.local-panel--areas .areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}

.area-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.area-chip svg { color: var(--accent); flex-shrink: 0; }

.area-chip:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 160, 32, 0.35);
}

.area-chip:hover svg { color: var(--primary-dark); }

.local-panel--areas .areas-more {
    margin: auto 0 0;
    padding-top: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.local-panel--areas .areas-more a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 160, 32, 0.5);
    transition: var(--transition);
}

.local-panel--areas .areas-more a:hover { border-bottom-color: var(--accent); }

/* --- FAQ panel: clean white card --- */
.local-panel--faq {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.local-panel--faq h2 { color: var(--primary-dark); margin-bottom: 20px; }

/* FAQ items reuse the .sas-faq styles shared with the suburb pages */
.local-panel--faq .sas-faq-item { background: var(--light-bg); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .local-grid { grid-template-columns: 1fr; gap: 28px; }
    .local-panel { padding: 38px 28px; }
}

/* ==========================================================================
   BREADCRUMBS (service + suburb pages)
   ========================================================================== */
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs > span:last-child { color: rgba(255, 255, 255, 0.6); }
