/* ============================================================
   North Sound Remodel — Main Stylesheet
   Colors: #1B2A4A (navy), #C9A84C (gold), #F5F5F5 (light gray), #FFFFFF (white)
   Fonts: Inter (body), Playfair Display (headings)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #2d2d2d;
    background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #1B2A4A; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: #1B2A4A;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }

/* ── Container ────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    border: 2px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
    background: #1B2A4A;
    color: #fff;
    border-color: #1B2A4A;
}
.btn-primary:hover { background: #243762; border-color: #243762; color: #fff; }

.btn-gold {
    background: #C9A84C;
    color: #1B2A4A;
    border-color: #C9A84C;
}
.btn-gold:hover { background: #b8963d; border-color: #b8963d; color: #1B2A4A; }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: #fff; }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.text-gold   { color: #C9A84C !important; }
.text-light  { color: rgba(255,255,255,0.85) !important; }
.bg-light    { background: #F5F5F5; }
.bg-navy     { background: #1B2A4A; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    background: #fff;
}

.header-top-bar {
    background: #1B2A4A;
    color: #fff;
    font-size: 0.85rem;
    padding: 0.4rem 0;
}
.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-phone {
    color: #C9A84C;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
.header-phone:hover { color: #e8c060; text-decoration: none; }
.header-tagline { color: rgba(255,255,255,0.75); }

.header-main { background: #fff; }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    gap: 1rem;
}

.site-logo { text-decoration: none; flex-shrink: 0; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1B2A4A;
    letter-spacing: -0.3px;
}

.primary-nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: block;
    padding: 0.5rem 0.85rem;
    color: #1B2A4A;
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-list > li > a:hover { color: #C9A84C; text-decoration: none; background: #f7f7f7; }
.nav-list > li > a.nav-cta {
    background: #C9A84C;
    color: #1B2A4A;
    padding: 0.5rem 1.1rem;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 0.5rem;
}
.nav-list > li > a.nav-cta:hover { background: #b8963d; color: #1B2A4A; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 200px;
    z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
    display: block;
    padding: 0.6rem 1rem;
    color: #2d2d2d;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: #f5f5f5; color: #1B2A4A; text-decoration: none; }

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1B2A4A;
    border-radius: 2px;
    transition: transform 0.2s;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Sections ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: #1B2A4A;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><path d="M0 60L60 0M-15 15L15-15M45 75L75 45" stroke="rgba(201,168,76,0.08)" stroke-width="1"/></svg>') repeat;
    opacity: 0.15;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27,42,74,0.80) 40%, rgba(27,42,74,0.52) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 1.25rem;
    max-width: 700px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2rem;
    max-width: 580px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.page-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    background-color: #1B2A4A;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.page-hero--kitchen  { background-color: #1B2A4A; }
.page-hero--bathroom { background-color: #1a3040; }
.page-hero--city     { background-color: #243762; }
.page-hero--simple   { background-color: #1B2A4A; }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-title {
    text-align: center;
    margin-bottom: 0.75rem;
}
.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

/* ── Services Grid ────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.service-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.service-icon { color: #C9A84C; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #C9A84C;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
}
.service-link:hover { text-decoration: underline; color: #b8963d; }

/* ── Why Choose Us ────────────────────────────────────────── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.trust-item {
    text-align: center;
    padding: 2rem 1.25rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.trust-icon { color: #C9A84C; margin: 0 auto 1rem; }
.trust-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.trust-item p { color: #555; font-size: 0.95rem; }

/* ── City List ────────────────────────────────────────────── */
.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.city-tag {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: #fff;
    border: 2px solid #1B2A4A;
    border-radius: 30px;
    color: #1B2A4A;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.city-tag:hover { background: #1B2A4A; color: #fff; text-decoration: none; }

/* ── Process ──────────────────────────────────────────────── */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
}
.step-number {
    width: 56px;
    height: 56px;
    background: #C9A84C;
    color: #1B2A4A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}
.process-arrow {
    font-size: 2rem;
    color: #C9A84C;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
}
@media (max-width: 768px) { .process-arrow { display: none; } }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}
.testimonial-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.stars { color: #C9A84C; font-size: 1.2rem; margin-bottom: 1rem; }
.testimonial-card blockquote {
    font-size: 0.97rem;
    color: #444;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.testimonial-card cite {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1B2A4A;
    font-style: normal;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
    background: #1B2A4A;
    padding: 4.5rem 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ── Service Area ─────────────────────────────────────────── */
.service-area { text-align: center; }

/* ── Two-Column Content Layout ────────────────────────────── */
.content-two-col {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 900px) {
    .content-two-col { grid-template-columns: 1fr; }
}

.content-main h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content-main h2:first-child { margin-top: 0; }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}
.feature-list li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    font-size: 0.97rem;
}
.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C9A84C;
    font-weight: 700;
}

.process-list {
    padding-left: 1.5rem;
    margin: 1rem 0 1.5rem;
}
.process-list li {
    margin-bottom: 0.85rem;
    font-size: 0.97rem;
    padding-left: 0.5rem;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin: 1rem 0 2rem; }
.faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.97rem;
    color: #1B2A4A;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2.5rem;
    background: #fafafa;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #C9A84C;
    font-weight: 400;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { background: #f0f4fa; }
.faq-item p {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: #444;
    margin: 0;
    border-top: 1px solid #e8e8e8;
}

/* ── Sidebar ──────────────────────────────────────────────── */
.content-sidebar { position: sticky; top: 100px; }

.sidebar-cta-box {
    background: #1B2A4A;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}
.sidebar-cta-box h3 { color: #C9A84C; font-size: 1.2rem; margin-bottom: 0.75rem; }
.sidebar-cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 1rem; font-size: 0.95rem; }
.sidebar-cta-box .btn { width: 100%; text-align: center; }
.sidebar-phone { margin-top: 0.75rem; font-size: 0.9rem; color: rgba(255,255,255,0.7) !important; }
.sidebar-phone a { color: #C9A84C; font-weight: 600; }

.sidebar-links-box {
    background: #F5F5F5;
    padding: 1.5rem;
    border-radius: 8px;
}
.sidebar-links-box h3 { font-size: 1rem; margin-bottom: 0.75rem; color: #1B2A4A; }
.sidebar-links-box ul li { margin-bottom: 0.5rem; }
.sidebar-links-box ul li a {
    color: #1B2A4A;
    font-size: 0.92rem;
    transition: color 0.15s;
}
.sidebar-links-box ul li a:hover { color: #C9A84C; text-decoration: none; }

/* ── Remodel Types ────────────────────────────────────────── */
.remodel-types { display: grid; gap: 1.5rem; margin: 1.5rem 0; }
.remodel-type {
    background: #F5F5F5;
    border-left: 4px solid #C9A84C;
    padding: 1.25rem 1.5rem;
    border-radius: 0 6px 6px 0;
}
.remodel-type h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.remodel-type p { margin: 0; font-size: 0.95rem; }

/* ── Values Grid (About) ──────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.value-item {
    background: #F5F5F5;
    padding: 1.5rem;
    border-radius: 6px;
    border-top: 3px solid #C9A84C;
}
.value-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-item p { margin: 0; font-size: 0.93rem; color: #555; }

/* ── Trust Stats (About) ──────────────────────────────────── */
.trust-stats.bg-light { padding: 4rem 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1B2A4A;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.92rem;
    color: #555;
    font-weight: 500;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
}
.contact-form-wrap h2 { margin-bottom: 0.75rem; }
.contact-form-wrap > p { color: #555; margin-bottom: 2rem; }

.contact-info-card {
    background: #F5F5F5;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.contact-detail strong { color: #1B2A4A; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-detail a { color: #1B2A4A; font-weight: 600; }
.contact-detail a:hover { color: #C9A84C; }

.contact-trust-box {
    background: #1B2A4A;
    color: #fff;
    padding: 1.75rem;
    border-radius: 8px;
}
.contact-trust-box h3 { color: #C9A84C; font-size: 1rem; margin-bottom: 0.75rem; }
.trust-list-simple li {
    padding: 0.45rem 0 0.45rem 1.5rem;
    position: relative;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.88);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.trust-list-simple li:last-child { border-bottom: none; }
.trust-list-simple li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C9A84C;
    font-weight: 700;
}

/* ── Contact Form ─────────────────────────────────────────── */
.nsr-form { margin-top: 0.5rem; }
.form-row { margin-bottom: 1.25rem; }
.form-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 600px) {
    .form-row--half { grid-template-columns: 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1B2A4A;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.required { color: #c0392b; }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.97rem;
    color: #2d2d2d;
    background: #fff;
    transition: border-color 0.2s;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1B2A4A;
    box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    background: #e6f4ea;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    color: #155724;
    margin-bottom: 1.5rem;
}

/* ── City Internal Links ──────────────────────────────────── */
.city-internal-links {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: #F5F5F5;
    border-radius: 6px;
}
.city-internal-links h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.city-internal-links ul { display: flex; gap: 1rem; flex-wrap: wrap; }
.city-internal-links ul li a {
    color: #1B2A4A;
    font-size: 0.92rem;
    font-weight: 600;
}
.city-internal-links ul li a:hover { color: #C9A84C; }

/* ── 404 ──────────────────────────────────────────────────── */
.error-404 {
    padding: 5rem 0;
    text-align: center;
}
.error-404 h1 { margin-bottom: 1rem; }
.error-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}
.error-links li a { color: #1B2A4A; font-weight: 600; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: #0f1c30; color: rgba(255,255,255,0.8); }
.footer-main { padding: 4rem 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 1rem;
    text-decoration: none;
}
.footer-logo:hover { color: #C9A84C; text-decoration: none; }

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.6rem;
    line-height: 1.6;
}
.footer-phone a, .footer-hours {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.footer-phone a { color: #C9A84C; font-weight: 600; }
.footer-phone a:hover { color: #e8c060; }

.footer-col h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #C9A84C;
    margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.15s;
    text-decoration: none;
}
.footer-col ul li a:hover { color: #C9A84C; }
.footer-col p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.footer-col a:not(.btn) { color: rgba(255,255,255,0.7); }
.footer-col a:not(.btn):hover { color: #C9A84C; }

.btn-gold.footer-col .btn { font-size: 0.9rem; }

.footer-bottom {
    background: #0a1320;
    padding: 1.25rem 0;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
}

/* ── Blog Post ────────────────────────────────────────────── */
.content-area { padding: 3rem 0; max-width: 860px; margin: 0 auto; }
.content-area--narrow { max-width: 720px; }
.post-cta-box {
    background: #F5F5F5;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}
.post-cta-box p { font-size: 1.05rem; margin-bottom: 1rem; }

/* ── Page Hero Simple ─────────────────────────────────────── */
.page-title {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .primary-nav { display: none; }
    .primary-nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e8e8e8;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        z-index: 200;
        flex-direction: column;
        padding: 1rem 0;
    }
    .nav-list { flex-direction: column; gap: 0; width: 100%; }
    .nav-list > li > a {
        padding: 0.85rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1rem;
    }
    .nav-list > li > a.nav-cta {
        margin: 0.75rem 1.5rem;
        text-align: center;
        border-radius: 4px;
    }
    .dropdown { position: static; box-shadow: none; border: none; background: #f8f8f8; }
    .has-dropdown:hover .dropdown { display: none; }
    .has-dropdown.open .dropdown { display: block; }
    .mobile-menu-toggle { display: flex; }
    .header-main { position: relative; }

    .section { padding: 3rem 0; }
    .hero { min-height: 480px; }
    .cta-banner { padding: 3rem 0; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: flex-start; }
    .cta-actions { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
    background: #1B2A4A;
    padding: 0.9rem 0;
    border-bottom: 3px solid #C9A84C;
}
.trust-bar-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.3rem 0;
}
.trust-bar-item svg { color: #C9A84C; flex-shrink: 0; }
@media (max-width: 768px) {
    .trust-bar-list { gap: 0.5rem 1.5rem; }
    .trust-bar-item { font-size: 0.82rem; }
}
@media (max-width: 480px) {
    .trust-bar-list { gap: 0.4rem 1rem; justify-content: flex-start; padding-left: 1rem; }
}

/* ── City Detail List (Homepage) ──────────────────────────── */
.city-detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.city-detail-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1.5rem;
    border-top: 3px solid #C9A84C;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.city-detail-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.city-detail-item h3 a { color: #1B2A4A; text-decoration: none; }
.city-detail-item h3 a:hover { color: #C9A84C; }
.city-detail-item p { margin: 0; font-size: 0.93rem; color: #555; line-height: 1.6; }

/* ── Sidebar Widgets (City Pages) ─────────────────────────── */
.sidebar-widget {
    background: #F5F5F5;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.sidebar-widget h3 { font-size: 1rem; margin-bottom: 0.75rem; color: #1B2A4A; }
.sidebar-widget ul li { margin-bottom: 0.5rem; }
.sidebar-widget ul li a {
    color: #1B2A4A;
    font-size: 0.92rem;
    transition: color 0.15s;
    text-decoration: none;
}
.sidebar-widget ul li a:hover { color: #C9A84C; }
.sidebar-widget .btn { width: 100%; text-align: center; }
.sidebar-trust { background: #1B2A4A; }
.sidebar-trust h3 { color: #C9A84C; }
.sidebar-trust ul li {
    padding: 0.45rem 0 0.45rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.88);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar-trust ul li:last-child { border-bottom: none; }
.sidebar-trust ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #C9A84C;
    font-weight: 700;
}

/* ── Responsive Images in Page Content ───────────────────── */
.content-main img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    margin: 24px 0;
    display: block;
}

/* ── Testimonial Date ─────────────────────────────────────── */
.testimonial-date {
    font-size: 0.82rem;
    color: #888;
    margin: 0.25rem 0 0;
    font-style: italic;
}
.testimonials-grid .testimonial-card .testimonial-date {
    margin-top: 0.25rem;
}