:root {
    --primary: #7CAF36;
    --primary-dark: #122840;
    --primary-light: #95c44e;
    --accent: #75521a;
    --highlight: #7CAF36;
    --black: #111111;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-mid: #e8e8e8;
    --gray-text: #555555;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #fff !important;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    border: 2px solid var(--primary);
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary:hover { background: #4d7a1e; border-color: #4d7a1e; transform: translateY(-1px); color: #fff !important; }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary) !important;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 4px;
    border: 2px solid var(--primary);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    cursor: pointer;
    text-decoration: none;
}
.btn-outline:hover { background: var(--primary); color: #fff !important; transform: translateY(-1px); }

/* ── HEADER ──────────────────────────────────────────────── */
header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 92px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-wrap img { width: 80px !important; height: 80px !important; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
}
.logo-sub {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    list-style: none;
}
.nav-desktop li a {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #333333;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    transition: color 0.2s;
}
.nav-desktop li a:hover { color: var(--primary); }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: center;
}
.trust-item {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

/* ── HAMBURGER ───────────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ──────────────────────────────────────────── */
.nav-mobile {
    display: none;
    background: #111;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile-cta { padding: 20px 24px; }
.nav-mobile-phone {
    display: block;
    text-align: center;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary) !important;
    letter-spacing: 0.06em;
    padding: 12px;
    text-decoration: none;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}
.hero-label {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 18px;
}
.hero-inner h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}
.hero-inner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    max-width: 600px;
    margin: 0 auto 32px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 64px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero-label {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 14px;
}
.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
    background: var(--gray-light);
    border-bottom: 1px solid var(--gray-mid);
}
.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.breadcrumb-inner a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--primary);
}
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-sep { font-size: 0.75rem; color: #aaa; }
.breadcrumb-inner span:last-child { font-size: 0.82rem; color: var(--gray-text); }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 72px 24px; }
.section-gray { padding: 72px 24px; background: var(--gray-light); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--gray-text);
    max-width: 680px;
    margin-bottom: 40px;
}

/* ── TWO COL ─────────────────────────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }
.two-col img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
    background: var(--primary-dark);
    padding: 40px 24px;
}
.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item { padding: 12px; }
.stat-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.04em;
}

/* ── SERVICES GRID ───────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.14); }
.service-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.service-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.service-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
}
.service-text { font-size: 0.92rem; color: var(--gray-text); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.service-link {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
    transition: color 0.2s;
    align-self: flex-start;
}
.service-link:hover { color: var(--primary); border-color: var(--primary); }

/* ── FEATURE LIST ────────────────────────────────────────── */
.feature-list { list-style: none; margin: 20px 0; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.97rem;
    color: var(--gray-text);
    border-bottom: 1px solid var(--gray-mid);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '✓';
    color: var(--highlight);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── WHY GRID ────────────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.why-item {
    background: var(--white);
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 4px solid var(--primary);
}
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-item h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
}
.why-text { font-size: 0.92rem; color: var(--gray-text); line-height: 1.65; }

/* ── PROCESS ─────────────────────────────────────────────── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.process-step {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.process-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.process-step h3 {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
}
.process-step p { font-size: 0.9rem; color: var(--gray-text); }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 24px;
    flex-wrap: wrap;
}
.reviews-rating { text-align: center; }
.rating-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.stars { color: #f5a623; font-size: 1.3rem; letter-spacing: 2px; }
.review-count { font-size: 0.8rem; color: var(--gray-text); margin-top: 4px; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
}
.review-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text {
    font-size: 0.93rem;
    color: var(--gray-text);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
    font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}
.review-name { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: var(--black); }
.review-date { font-size: 0.75rem; color: #aaa; margin-top: 2px; }

/* ── CONTENT WRAP ────────────────────────────────────────── */
.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.content-main h2 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--black);
    margin: 32px 0 12px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main p { font-size: 0.97rem; color: var(--gray-text); line-height: 1.75; margin-bottom: 16px; }

/* ── SIDEBAR ─────────────────────────────────────────────── */
.sidebar-cta { position: sticky; top: 100px; }
.sidebar-card {
    background: var(--primary-dark);
    color: #fff;
    border-radius: 8px;
    padding: 28px 24px;
    margin-bottom: 20px;
}
.sidebar-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
}
.sidebar-card p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 18px; line-height: 1.6; }
.sidebar-card .btn-primary { display: block; text-align: center; margin-bottom: 10px; }
.sidebar-card .sidebar-phone {
    display: block;
    text-align: center;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9) !important;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 8px 0;
}
.sidebar-services { background: var(--gray-light); border-radius: 8px; padding: 24px; }
.sidebar-services h4 {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
}
.sidebar-services ul { list-style: none; }
.sidebar-services ul li { border-bottom: 1px solid var(--gray-mid); }
.sidebar-services ul li:last-child { border-bottom: none; }
.sidebar-services ul li a {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    padding: 8px 0;
    transition: color 0.2s;
}
.sidebar-services ul li a:hover { color: var(--primary); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { margin-top: 20px; }
.faq-item {
    border-bottom: 1px solid var(--gray-mid);
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--black);
    gap: 12px;
    user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.25s;
    line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 0 4px 18px;
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
    background: var(--primary-dark);
    padding: 56px 24px;
}
.cta-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-banner h2 {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
}
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.82); max-width: 560px; }
.cta-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; flex-shrink: 0; }
.cta-phone {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9) !important;
    letter-spacing: 0.05em;
    text-decoration: none;
}
.cta-phone:hover { color: #fff !important; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-cta { text-align: center; margin-top: 36px; }

/* ── AREAS GRID ──────────────────────────────────────────── */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.area-chip {
    display: inline-block;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.area-chip:hover { background: var(--primary); color: #fff; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-full { grid-column: 1 / -1; }
.form-group label {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid var(--gray-mid);
    border-radius: 4px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--black);
    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: var(--primary);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { grid-column: 1 / -1; }
.form-submit .btn-primary { width: 100%; font-size: 1rem; padding: 16px; }
.honeypot { display: none !important; }

/* ── MOBILE STICKY BAR ───────────────────────────────────── */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--primary-dark);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.4);
}
.mobile-sticky-quote,
.mobile-sticky-call {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 14px 12px;
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
}
.mobile-sticky-quote {
    background: var(--primary);
    color: #fff !important;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.mobile-sticky-quote:hover { background: #4d7a1e; }
.mobile-sticky-call {
    background: transparent;
    color: #fff !important;
}
.mobile-sticky-call:hover { background: rgba(255,255,255,0.08); }
.mobile-sticky-bar { display: none; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
    background: #111111;
    color: rgba(255,255,255,0.8);
    padding: 56px 24px 0;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-top: 14px;
    margin-bottom: 18px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--primary); color: #fff; }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.footer-contact-item span:first-child { flex-shrink: 0; }
.footer-contact-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .content-wrap { grid-template-columns: 1fr; }
    .sidebar-cta { position: static; }
    .gallery-grid-full { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .hamburger { display: flex; }
    .nav-mobile { display: block; }

    .two-col { grid-template-columns: 1fr; gap: 32px; }
    .two-col-reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .mobile-sticky-bar { display: flex; }
    body { padding-bottom: 58px; }
    .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
    .reviews-header { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid-full { grid-template-columns: 1fr 1fr; }
}

/* ── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
