/* ============================================================
   Wishful Construction — Homepage (2026 refresh)
   Palette:
     --green  #66BB00  (brand action)
     --navy   #012535  (deep harbor)
     --ink    #0E1B24  (headings)
     --steel  #55636E  (body text)
     --paper  #FFFFFF
     --slab   #F4F6F2  (alt section)
   Type: Barlow Condensed (display) + Inter (body)
   Signature: chamfered corners echoing the logo roofline
   ============================================================ */

:root {
    --green: #66bb00;
    --green-dark: #52a000;
    --navy: #012535;
    --navy-2: #0a3247;
    --ink: #0e1b24;
    --steel: #55636e;
    --paper: #ffffff;
    --slab: #f4f6f2;
    --line: #e3e8e2;
    --chamfer: 20px;
    --radius: 4px;
    --shadow: 0 14px 40px rgba(1, 37, 53, 0.1);
    --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--steel);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--navy); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: .01em;
}
h1 { font-size: clamp(40px, 5.6vw, 68px); font-weight: 700; }
h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; }
h3 { font-size: 24px; font-weight: 600; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--green);
}
.on-dark .eyebrow { color: var(--green); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: 14px; }

section { padding: 90px 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 15px 34px;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    transition: background .25s ease, color .25s ease, transform .2s ease;
    cursor: pointer;
    border: 0;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--green); color: #fff; }
.btn-solid:hover { background: var(--green-dark); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--green); color: #fff; }
.btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--navy); }

/* ---------- Top micro bar ---------- */
.topbar {
    background: var(--navy);
    color: #cfe0e8;
    font-size: 13px;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--green); }
.topbar .top-phones { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .top-phones i { color: var(--green); margin-right: 6px; }
.topbar .top-social { display: flex; gap: 6px; }
.topbar .top-social a {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08);
    color: #fff; font-size: 13px;
}
.topbar .top-social a:hover { background: var(--green); }

/* ---------- Header / nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(1,37,53,.1); }
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
}
.brand img { height: 56px; width: auto; }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav a {
    display: block;
    padding: 28px 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 15px; right: 15px; bottom: 18px;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav li.active > a::after { transform: scaleX(1); }
.main-nav a:hover { color: var(--green-dark); }

/* dropdown */
.has-drop { position: relative; }
.has-drop > a i { font-size: 11px; margin-left: 5px; color: var(--green-dark); }
.drop {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fff;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .25s ease;
    z-index: 50;
}
.has-drop:hover .drop,
.has-drop:focus-within .drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.drop a {
    padding: 12px 22px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--steel);
    border-bottom: 1px solid var(--slab);
}
.drop a::after { display: none; }
.drop a:hover { background: var(--slab); color: var(--navy); padding-left: 28px; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .call-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .05em;
    padding: 11px 22px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    transition: background .25s ease;
    white-space: nowrap;
}
.header-cta .call-pill:hover { background: var(--navy); color: #fff; }

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 26px;
    color: var(--navy);
    cursor: pointer;
    padding: 8px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 120px 0 170px;
    background: url('../images/banner1.jpg') center/cover no-repeat;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(1,25,37,.94) 8%, rgba(1,25,37,.72) 45%, rgba(1,25,37,.3) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 720px; }
.hero .eyebrow { color: var(--green); }
.hero h1 { color: #fff; }
.hero h1 span { color: var(--green); }
.hero p {
    margin: 22px 0 34px;
    font-size: 18px;
    color: rgba(255,255,255,.85);
    max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* stats strip overlapping hero */
.stats-strip {
    position: relative;
    z-index: 5;
    margin-top: -78px;
}
.stats-card {
    background: var(--navy);
    color: #fff;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, 0 100%);
    box-shadow: var(--shadow);
}
.stat {
    padding: 38px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: 0; }
.stat .num {
    font-family: var(--font-display);
    font-size: clamp(42px, 4vw, 56px);
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}
.stat .label {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
}

/* ---------- About ---------- */
.about { padding-top: 100px; }
.about .container {
    display: grid;
    grid-template-columns: minmax(0, 460px) 1fr;
    gap: 70px;
    align-items: center;
}
.about-media { position: relative; }
.about-media .frame {
    position: absolute;
    top: -18px; left: -18px;
    width: 100%; height: 100%;
    border: 3px solid var(--green);
    clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, 0 100%);
    z-index: 0;
}
.about-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, 0 100%);
}
.exp-badge {
    position: absolute;
    z-index: 2;
    right: -22px;
    bottom: -22px;
    background: var(--green);
    color: #fff;
    text-align: center;
    padding: 20px 24px;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    box-shadow: var(--shadow);
}
.exp-badge .num {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
}
.exp-badge .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.about-copy p { margin-bottom: 16px; }
.about-ticks {
    margin: 24px 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}
.about-ticks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
}
.about-ticks i { color: var(--green); font-size: 17px; }

/* ---------- Services ---------- */
.services { background: var(--slab); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: #fff;
    clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, 0 100%);
    box-shadow: 0 4px 18px rgba(1,37,53,.06);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .thumb { overflow: hidden; aspect-ratio: 16/9; }
.service-card .thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 15px; flex: 1; }
.service-card .more {
    margin-top: 18px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-card .more i { transition: transform .25s ease; }
.service-card:hover .more { color: var(--navy); }
.service-card:hover .more i { transform: translateX(5px); }
.services-cta { text-align: center; margin-top: 52px; }

/* ---------- Why choose us ---------- */
.why {
    background: var(--navy) url('../images/why_choose_us_bg.jpg') center/cover no-repeat;
    background-blend-mode: soft-light;
    color: #fff;
    position: relative;
}
.why::before { content: ""; position: absolute; inset: 0; background: rgba(1,29,43,.9); }
.why .container { position: relative; z-index: 2; }
.why h2 { color: #fff; }
.why .section-head p { color: rgba(255,255,255,.75); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.why-item .icon {
    width: 64px; height: 64px;
    background: var(--green);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    margin-bottom: 20px;
}
.why-item h3 { color: #fff; margin-bottom: 10px; }
.why-item p { color: rgba(255,255,255,.72); font-size: 15px; }
.why-cta {
    margin-top: 60px;
    padding-top: 44px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.why-cta .big-call {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.why-cta .big-call a { color: var(--green); }
.why-cta .big-call a:hover { color: #fff; }

/* ---------- Projects ---------- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.projects-grid a {
    display: block;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}
.projects-grid img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.projects-grid a::after {
    content: "\f002";
    font-family: FontAwesome;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: rgba(1,37,53,.55);
    opacity: 0;
    transition: opacity .3s ease;
}
.projects-grid a:hover::after { opacity: 1; }
.projects-grid a:hover img { transform: scale(1.07); }
.projects-cta { text-align: center; margin-top: 48px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--slab); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testi-card {
    background: #fff;
    padding: 34px 30px;
    clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, 0 100%);
    box-shadow: 0 4px 18px rgba(1,37,53,.06);
    display: flex;
    flex-direction: column;
}
.testi-card .fa-quote-left { color: var(--green); font-size: 26px; margin-bottom: 16px; }
.testi-card p { font-size: 15px; flex: 1; }
.testi-card .who {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--navy);
}
.testi-card .stars { color: #f5b301; font-size: 13px; margin-top: 4px; }

/* ---------- Quote / contact ---------- */
.quote .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: start;
}
.contact-list { margin-top: 26px; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 18px; align-items: flex-start; }
.contact-list .icon {
    flex: 0 0 50px;
    width: 50px; height: 50px;
    background: var(--slab);
    color: var(--green-dark);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.contact-list h4 {
    font-size: 17px;
    margin-bottom: 2px;
}
.contact-list a { color: var(--steel); font-weight: 500; }
.contact-list a:hover { color: var(--green-dark); }

.quote-form {
    background: var(--navy);
    padding: 44px 40px;
    clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, 0 100%);
}
.quote-form h3 { color: #fff; font-size: 30px; margin-bottom: 6px; }
.quote-form .sub { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 26px; }
.quote-form .fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form .full { grid-column: 1 / -1; }
.quote-form input[type="text"],
.quote-form textarea {
    width: 100%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 13px 16px;
    border-radius: var(--radius);
    transition: border-color .25s ease, background .25s ease;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(255,255,255,.5); }
.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(255,255,255,.12);
}
.quote-form textarea { min-height: 120px; resize: vertical; }
.quote-form .error,
.quote-form .success {
    display: none;
    font-size: 13px;
    margin-bottom: 6px;
    color: #ffb3a1;
}
.quote-form .success { color: #a5e878; }
.quote-form .error img, .quote-form .success img { display: inline; vertical-align: middle; margin-right: 4px; }
.quote-form input[type="submit"] {
    background: var(--green);
    color: #fff;
    border: 0;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 14px 40px;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    transition: background .25s ease;
    margin-top: 16px;
}
.quote-form input[type="submit"]:hover { background: var(--green-dark); }
.quote-form input[type="submit"]:disabled { opacity: .6; cursor: wait; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.72);
    padding: 80px 0 0;
    font-size: 15px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 56px;
}
.site-footer h3 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.site-footer h3::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 3px;
    background: var(--green);
}
.footer-brand img { height: 52px; margin-bottom: 18px; background: #fff; padding: 6px 10px; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%); }
.footer-social { display: flex; gap: 8px; margin-top: 22px; }
.footer-social a {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 15px;
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
    transition: background .25s ease;
}
.footer-social a:hover { background: var(--green); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.72); display: inline-flex; align-items: center; gap: 8px; }
.footer-links a i { color: var(--green); font-size: 11px; }
.footer-links a:hover { color: var(--green); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 12px; align-items: baseline; }
.footer-contact i { color: var(--green); width: 16px; }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: var(--green); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 22px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13.5px;
}
.footer-bottom .name { color: var(--green); font-weight: 600; }
.footer-bottom img { height: 28px; }

/* ---------- Floating tap-to-call ---------- */
.float-call {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 62px;
    height: 62px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
    animation: floatcall-shake 2.2s ease-in-out infinite;
    transition: background .3s ease, transform .3s ease;
}
.float-call:hover, .float-call:focus { background: var(--navy); color: #fff; transform: scale(1.08); }
.float-call .float-call-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--green);
    animation: floatcall-pulse 2.2s ease-out infinite;
    pointer-events: none;
}
@keyframes floatcall-pulse {
    0% { transform: scale(1); opacity: .9; }
    100% { transform: scale(1.8); opacity: 0; }
}
@keyframes floatcall-shake {
    0%, 20%, 100% { transform: rotate(0); }
    4% { transform: rotate(-14deg); }
    8% { transform: rotate(12deg); }
    12% { transform: rotate(-10deg); }
    16% { transform: rotate(8deg); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .float-call, .float-call .float-call-ring { animation: none; }
    * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 2px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
    .main-nav a { padding: 28px 10px; font-size: 13px; }
}

@media (max-width: 992px) {
    section { padding: 70px 0; }

    .nav-toggle { display: block; }
    .header-cta .call-pill span { display: none; }
    .header-cta .call-pill { padding: 12px 16px; }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--navy);
        padding: 90px 30px 40px;
        transform: translateX(100%);
        transition: transform .35s ease;
        overflow-y: auto;
        z-index: 1100;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav a {
        color: #fff;
        padding: 14px 4px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .main-nav a::after { display: none; }
    .drop {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border-top: 0;
        min-width: 0;
    }
    .drop a { color: rgba(255,255,255,.66); padding: 10px 4px 10px 20px; border-bottom: 0; font-size: 13.5px; }
    .drop a:hover { background: transparent; color: var(--green); padding-left: 26px; }
    .nav-close {
        position: absolute;
        top: 22px; right: 22px;
        background: none;
        border: 0;
        color: #fff;
        font-size: 26px;
        cursor: pointer;
        display: block;
    }
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(1,20,30,.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease;
        z-index: 1050;
    }
    .nav-overlay.show { opacity: 1; visibility: visible; }

    .hero { min-height: 560px; padding: 90px 0 150px; }

    .about .container { grid-template-columns: 1fr; gap: 60px; }
    .about-media { max-width: 480px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 34px; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .quote .container { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (min-width: 993px) {
    .nav-close, .nav-overlay { display: none; }
}

@media (max-width: 640px) {
    section { padding: 56px 0; }
    .topbar .top-social { display: none; }
    .topbar .container { justify-content: center; }
    .brand img { height: 46px; }

    .hero { min-height: 520px; padding: 70px 0 140px; }
    .hero p { font-size: 16px; }
    .btn { width: 100%; text-align: center; }
    .hero-actions { flex-direction: column; }

    .stats-card { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); padding: 26px 20px; }
    .stat:last-child { border-bottom: 0; }

    .exp-badge { right: 10px; bottom: -22px; }
    .about-ticks { grid-template-columns: 1fr; }

    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .quote-form { padding: 34px 22px; }
    .quote-form .fields { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { justify-content: center; text-align: center; }

    .float-call { bottom: 22px; right: 18px; width: 56px; height: 56px; font-size: 23px; }
}
