/*
Theme Name: Gas It Lift
Theme URI:
Author: Gas It Lift
Author URI:
Description: Custom theme for Gas It Lift — Gas Strut Specialists in Gauteng.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gas-it-lift
*/

/* ==========================================================================
   1. CSS Custom Properties
   ========================================================================== */

:root {
    --color-primary:     #1a3c6e;
    --color-primary-dk:  #122d54;
    --color-accent:      #e85d26;
    --color-accent-dk:   #c94d1b;
    --color-brand:       #91d9ff;
    --color-text:        #1a1a1a;
    --color-text-muted:  #555;
    --color-bg:          #fff;
    --color-bg-alt:      #f4f6f9;
    --color-bg-footer:   #112244;
    --color-border:      #ddd;
    --color-success:     #1a7f37;

    --font-base:     'Inter', system-ui, -apple-system, sans-serif;
    --font-heading:  'Roboto Condensed', system-ui, sans-serif;

    --header-height:       120px;
    --header-height-stuck: 80px;
    --transition:          0.2s ease;
    --radius:              6px;
    --radius-sm:           4px;
    --radius-md:           8px;
    --radius-lg:           12px;
    --max-width:           1200px;
}


/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-base);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    padding-top: var(--header-height);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }
address { font-style: normal; }

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================================
   3. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-primary);
}

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


/* ==========================================================================
   4. Layout Utilities
   ========================================================================== */

.site-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-main { min-height: 60vh; }

.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.section-underline {
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
    margin: 0.75rem 0 1rem;
}

.section-underline--center {
    margin: 0.75rem auto 1rem;
}

.section-sub {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    max-width: 600px;
}

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


/* ==========================================================================
   5. Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.8rem 1.85rem;
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    text-decoration: none;
    white-space: nowrap;
    min-height: 44px;
}

.btn--primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.btn--primary:hover {
    background: var(--color-accent-dk);
    border-color: var(--color-accent-dk);
    color: #fff;
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--ghost:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

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

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


/* ==========================================================================
   6. Header
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
    transition: height var(--transition), box-shadow var(--transition);
}

.site-header.is-sticky {
    height: var(--header-height-stuck);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1.5rem;
}

.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.header-logo img {
    height: 110px;
    width: 110px;
    object-fit: contain;
    display: block;
    transition: height var(--transition), width var(--transition);
    mix-blend-mode: multiply;
}

.site-header.is-sticky .header-logo img {
    height: 70px;
    width: 70px;
}

.header-logo__text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}

.header-logo__text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* ==========================================================================
   7. Primary Navigation
   ========================================================================== */

.header-nav { flex: 1; display: flex; justify-content: center; }

.header-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header-nav .nav-menu li { position: relative; }

.header-nav .nav-menu a {
    display: block;
    padding: 0.5rem 0.85rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.header-nav .nav-menu a:hover,
.header-nav .nav-menu .current-menu-item > a,
.header-nav .nav-menu .current-menu-ancestor > a {
    color: var(--color-primary);
    background: rgba(26,60,110,0.07);
}

.header-nav .nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    z-index: 200;
    padding: 0.4rem 0;
}

.header-nav .nav-menu li.menu-item-has-children {
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.header-nav .nav-menu li:hover > .sub-menu,
.header-nav .nav-menu li:focus-within > .sub-menu {
    display: block;
}

.header-nav .nav-menu .sub-menu a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 0;
}

.header-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
    min-height: 44px;
}

.header-cta:hover {
    background: var(--color-accent-dk);
    color: #fff;
    transform: translateY(-1px);
}


/* ==========================================================================
   8. Hamburger
   ========================================================================== */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.hamburger__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-open .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ==========================================================================
   9. Footer
   ========================================================================== */

.site-footer {
    background: var(--color-bg-footer);
    color: #ccd6e8;
    font-size: 0.9rem;
}

.site-footer a { color: #ccd6e8; transition: color var(--transition); }
.site-footer a:hover { color: #fff; }

.footer-top {
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-top__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.footer-logo__text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.footer-logo__text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-logo__img {
    height: 200px;
    width: 200px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    display: block;
}

.footer-tagline {
    color: #8fa8c8;
    font-size: 0.9rem;
}

.footer-middle {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col__heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a { color: #8fa8c8; }
.footer-links a:hover { color: #fff; }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #8fa8c8;
}

.footer-contact a { color: #8fa8c8; }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
    padding: 1.25rem 0;
    background: rgba(0,0,0,0.2);
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-map {
    padding: 2rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 2rem;
}

.footer-map h3.footer-col__heading {
    margin-bottom: 1rem;
}

.footer-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 8px;
    display: block;
    filter: grayscale(10%);
}

.footer-copyright { color: #6a87a8; font-size: 0.85rem; }


/* ==========================================================================
   10. GIT Hero (full-background image hero)
   ========================================================================== */

.git-hero {
    position: relative;
    padding: 6rem 0 5rem;
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary-dk);
    color: #fff;
    overflow: hidden;
}

.git-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.70);
}

.git-hero .site-container {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.git-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.git-hero__sub {
    color: rgba(255,255,255,0.88);
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
    max-width: 640px;
}

.git-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.git-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.git-trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.git-trust-item::before {
    content: '✓';
    color: var(--color-brand);
    font-weight: 700;
    font-size: 0.9rem;
}


/* ==========================================================================
   11. Service Page (sp-*)
   ========================================================================== */

.sp-hero {
    position: relative;
    padding: 4rem 0 3rem;
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary-dk);
    color: #fff;
    overflow: hidden;
}

.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.68);
}

.sp-hero .site-container { position: relative; z-index: 1; }

.sp-hero__h1 {
    font-size: clamp(1.65rem, 3.5vw, 2.4rem);
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.sp-hero__sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.sp-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.sp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-top: 0.5rem;
}

.sp-hero__trust-item {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.sp-hero__trust-item::before {
    content: '✓';
    color: var(--color-brand);
}

/* Intro section */
.sp-intro {
    padding: 4rem 0;
    background: var(--color-bg);
}

.sp-intro__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.sp-intro__content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    margin-bottom: 1rem;
}

.sp-intro__content p { color: var(--color-text-muted); margin-bottom: 1rem; }

.sp-intro__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(26,60,110,0.12);
}

/* Section 2 */
.sp-section2 {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.sp-section2__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.sp-section2__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(26,60,110,0.12);
}

.sp-section2__content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    margin-bottom: 1rem;
}

.sp-section2__content p { color: var(--color-text-muted); margin-bottom: 1rem; }
.sp-section2__content .btn { margin-top: 0.5rem; }

/* Checklist */
.sp-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.5rem;
    padding: 0;
}

.sp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.sp-checklist li span {
    color: var(--color-success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Related nav */
.sp-related {
    padding: 2rem 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.sp-related__heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.sp-related__links { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.sp-related__link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: background var(--transition), border-color var(--transition);
}

.sp-related__link:hover {
    background: rgba(26,60,110,0.07);
    border-color: var(--color-primary);
}

/* CTA section */
.sp-cta {
    padding: 4rem 0;
    background: var(--color-primary);
    text-align: center;
}

.sp-cta h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.sp-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.0625rem;
    margin-bottom: 1.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sp-cta__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Service cards grid */
.sp-cards {
    padding: 4rem 0;
    background: var(--color-bg);
}

.sp-cards__heading { text-align: center; margin-bottom: 0.5rem; }
.sp-cards__sub { text-align: center; color: var(--color-text-muted); margin-bottom: 2.5rem; }

.sp-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* default: 3 cols — handles 3 and 6 items */
    gap: 1.5rem;
}

/* 2 items → 2 columns */
.sp-cards__grid:has(> :nth-child(2)):not(:has(> :nth-child(3))) {
    grid-template-columns: repeat(2, 1fr);
}

/* 4 items → 2×2 */
.sp-cards__grid:has(> :nth-child(4)):not(:has(> :nth-child(5))) {
    grid-template-columns: repeat(2, 1fr);
}

/* 6 items → 3×2 — covered by default */

/* 8 items → 4×2 */
.sp-cards__grid:has(> :nth-child(8)):not(:has(> :nth-child(9))) {
    grid-template-columns: repeat(4, 1fr);
}

.sp-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.sp-card:hover {
    box-shadow: 0 8px 30px rgba(26,60,110,0.1);
    transform: translateY(-3px);
}

.sp-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(232,93,38,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-accent);
    font-size: 1.5rem;
}

.sp-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
}

.sp-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    flex: 1;
    text-decoration: none;
}

.sp-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
}

.sp-card__link:hover { color: var(--color-accent-dk); }

/* Page hero for utility pages */
.pg-hero {
    padding: 3.5rem 0 3rem;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
}

.pg-hero h1 {
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.pg-hero__sub {
    color: rgba(255,255,255,0.8);
    font-size: 1.0625rem;
    max-width: 680px;
    margin: 0 auto 1.5rem;
}

.pg-hero__ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}


/* ==========================================================================
   12. Service Area Hub
   ========================================================================== */

.sa-areas {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.sa-areas__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.sa-areas__sub {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.sa-areas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.sa-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--color-bg);
    border: 1px solid #e0e6ef;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.sa-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.sa-card__icon { color: var(--color-accent); margin-bottom: 0.25rem; font-size: 1.5rem; }
.sa-card__city { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-primary); margin: 0; }
.sa-card__desc { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; flex: 1; }
.sa-card__link { font-size: 0.875rem; font-weight: 600; color: var(--color-accent); margin-top: 0.25rem; }

/* Location page services list */
.sp-loc-services {
    margin: 1.75rem 0;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.sp-loc-services__heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.sp-loc-services__grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sp-loc-services__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    background: var(--color-bg);
    border: 1px solid #e0e6ef;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.sp-loc-services__item:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.sp-loc-services__arrow { color: var(--color-accent); font-size: 1rem; transition: color 0.18s; }
.sp-loc-services__item:hover .sp-loc-services__arrow { color: #fff; }


/* ==========================================================================
   13. FAQ Section
   ========================================================================== */

.sp-faq {
    padding: 4rem 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.sp-faq__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.sp-faq__sub {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.sp-faq__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.sp-faq__item {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border-left: 3px solid var(--color-accent);
}

.sp-faq__q {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.sp-faq__a {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}


/* ==========================================================================
   14. Homepage Sections
   ========================================================================== */

/* Why Choose Us */
.hp-why {
    padding: 5rem 0;
    background: var(--color-bg);
}

.hp-why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hp-why__box {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition), transform var(--transition);
}

.hp-why__box:hover {
    box-shadow: 0 8px 30px rgba(26,60,110,0.1);
    transform: translateY(-4px);
}

.hp-why__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.hp-why__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.hp-why__desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Reviews */
.hp-reviews {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.hp-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.hp-review-card {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid var(--color-accent);
}

.hp-review-card__stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.hp-review-card__text {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hp-review-card__author {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
}

.hp-review-card__author span {
    font-weight: 400;
    color: var(--color-text-muted);
}

/* Lead form */
.hp-form-section {
    padding: 5rem 0;
    background: var(--color-primary);
}

.hp-form-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hp-form-section__text h2 { color: #fff; margin-bottom: 0.75rem; }
.hp-form-section__text p { color: rgba(255,255,255,0.8); }

.hp-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.hp-form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.contact-form__field { display: flex; flex-direction: column; gap: 0.35rem; }

.contact-form__label,
.contact-form label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.contact-form__input,
.contact-form__textarea,
.contact-form__select,
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-base);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition);
    outline: none;
    min-height: 44px;
    box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--color-primary); }

.contact-form__textarea,
.contact-form textarea { resize: vertical; min-height: 100px; }

/* Category cards */
.hp-cats {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.hp-cats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hp-cat-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition), transform var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.hp-cat-card:hover {
    box-shadow: 0 8px 30px rgba(26,60,110,0.12);
    transform: translateY(-4px);
}

.hp-cat-card__img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.hp-cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hp-cat-card:hover .hp-cat-card__img img { transform: scale(1.05); }

.hp-cat-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.hp-cat-card__title {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.hp-cat-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    flex: 1;
}

.hp-cat-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* General services highlights */
.hp-services {
    padding: 5rem 0;
    background: var(--color-bg);
}

.hp-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Service area section */
.hp-areas {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.hp-areas__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hp-area-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: background var(--transition), border-color var(--transition);
}

.hp-area-tag:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* About snippet */
.hp-about {
    padding: 5rem 0;
    background: var(--color-bg);
}

.hp-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hp-about__content h2 { margin-bottom: 1rem; }
.hp-about__content p { color: var(--color-text-muted); margin-bottom: 1rem; }

.hp-about__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(26,60,110,0.12);
}

/* Local issues / Why us */
.hp-issues {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.hp-issues__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hp-issue-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border-top: 3px solid var(--color-accent);
}

.hp-issue-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.hp-issue-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Final CTA */
.hp-final-cta {
    padding: 5rem 0;
    background: var(--color-primary);
    text-align: center;
    color: #fff;
}

.hp-final-cta h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.hp-final-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hp-final-cta__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Compact locations strip */
.hp-locs {
    padding: 2.5rem 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.hp-locs h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.hp-locs__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hp-locs__link {
    font-size: 0.875rem;
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hp-locs__link:hover { color: var(--color-accent); }


/* ==========================================================================
   15. About Page
   ========================================================================== */

.about-section {
    padding: 4rem 0;
    background: var(--color-bg);
}

.about-section:nth-child(even) { background: var(--color-bg-alt); }

.about-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.about-section__content h2 { margin-bottom: 1rem; }
.about-section__content p { color: var(--color-text-muted); margin-bottom: 1rem; }

.about-section__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(26,60,110,0.12);
}

.about-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--color-bg);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.about-trust-item__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--color-accent);
}

.about-trust-item__title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.about-trust-item__desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Placeholder blocks */
.placeholder-block {
    background: var(--color-bg-alt);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius);
    padding: 2rem;
    color: var(--color-text-muted);
    font-style: italic;
    text-align: center;
}


/* ==========================================================================
   16. Contact Page
   ========================================================================== */

.contact-layout {
    padding: 4rem 0;
    background: var(--color-bg);
}

.contact-layout__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-info-block { margin-bottom: 2rem; }

.contact-info-block h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.contact-info-block a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
}

.contact-info-block a:hover { color: var(--color-accent); }

.contact-form-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1px solid var(--color-border);
}

.contact-form-card h2 { font-size: 1.3rem; margin-bottom: 1.25rem; }


/* ==========================================================================
   17. Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .hp-why__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-cats__grid { grid-template-columns: 1fr 1fr; }
    .hp-services__grid { grid-template-columns: 1fr 1fr; }
    .hp-reviews__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-form-section__inner { grid-template-columns: 1fr; }
    .hp-about__inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .sp-intro__inner,
    .sp-section2__inner,
    .about-section__inner,
    .contact-layout__inner { grid-template-columns: 1fr; gap: 2rem; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    /* cards: collapse 4-col to 2-col, keep 2-col and 3-col */
    .sp-cards__grid,
    .sp-cards__grid:has(> :nth-child(8)):not(:has(> :nth-child(9))) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body { padding-top: var(--header-height); }

    .hamburger { display: flex; }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        border-top: 1px solid var(--color-border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        padding: 1rem 1.5rem;
        justify-content: flex-start;
    }

    .header-nav.is-open { display: flex; }

    .header-nav .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .header-nav .nav-menu li { width: 100%; }

    .header-nav .nav-menu a {
        width: 100%;
        padding: 0.75rem 0.5rem;
        border-bottom: 1px solid var(--color-border);
        border-radius: 0;
    }

    .header-nav .nav-menu .sub-menu {
        display: block;
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        background: rgba(26,60,110,0.04);
    }

    .header-nav .nav-menu .sub-menu a { padding-left: 1.5rem; font-size: 0.875rem; }

    .hp-why__grid { grid-template-columns: 1fr 1fr; }
    .hp-cats__grid { grid-template-columns: 1fr; }
    .hp-services__grid { grid-template-columns: 1fr; }
    .hp-reviews__grid { grid-template-columns: 1fr; }
    .hp-issues__grid { grid-template-columns: 1fr; }
    .sa-areas__grid { grid-template-columns: 1fr 1fr; }

    .git-hero { padding: 4rem 0 3rem; }

    .git-hero__ctas,
    .sp-hero__ctas,
    .pg-hero__ctas,
    .sp-cta__buttons,
    .hp-final-cta__buttons { flex-direction: column; align-items: flex-start; }

    .sp-cta__buttons,
    .hp-final-cta__buttons { align-items: center; }

    .footer-grid { grid-template-columns: 1fr 1fr; }

    .footer-bottom__inner { flex-direction: column; text-align: center; }

    .sp-loc-services { padding: 1rem; }
}

@media (max-width: 480px) {
    .hp-why__grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .sp-faq__list { grid-template-columns: 1fr; }

    /* all card grids stack to single column on small screens */
    .sp-cards__grid,
    .sp-cards__grid:has(> :nth-child(2)):not(:has(> :nth-child(3))),
    .sp-cards__grid:has(> :nth-child(4)):not(:has(> :nth-child(5))),
    .sp-cards__grid:has(> :nth-child(8)):not(:has(> :nth-child(9))) {
        grid-template-columns: 1fr;
    }
}

/* Floating mobile CTA */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-accent);
    color: #fff;
    text-align: center;
    padding: 0.85rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-top: 2px solid var(--color-accent-dk);
}

.mobile-cta-bar:hover { background: var(--color-accent-dk); color: #fff; }

@media (max-width: 768px) {
    .mobile-cta-bar { display: block; }
    body { padding-bottom: 56px; }
}
