/* ============================================================
   SUDBURY SPRAY FOAM PROS — Shared Styles
   Colors: Pink #e6197a / #ff4fa3  |  Black #0d0d0f  |  Charcoal #1a1a1e
   Font: Barlow
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --pink: #e6197a;
    --pink-dark: #b3125e;
    --pink-lt: #ff4fa3;
    --black: #0d0d0f;
    --charcoal: #1a1a1e;
    --dark2: #17171a;
    --text: #2c2c31;
    --muted: #6b6b73;
    --light: #faf6f8;
    --white: #ffffff;
    --border: #ece3e8;
    --radius: 0px;
    --shadow: 0 4px 24px rgba(13, 13, 15, .09);
    --shadow-lg: 0 12px 48px rgba(13, 13, 15, .18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark2);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark2);
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark2);
}

h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark2);
}

p {
    color: var(--muted);
    line-height: 1.7;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--pink);
    display: block;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.6rem;
}

.section-header p {
    max-width: 620px;
    font-size: 1.05rem;
}

.section-header.center {
    text-align: center;
}

.section-header.center p {
    margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 14px;
    font-weight: 700;
    font-family: "Barlow", sans-serif;
    letter-spacing: 0.3px;
    border-radius: 0;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .22s ease;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    box-shadow: 0 4px 14px rgba(230, 25, 122, .35);
}

.btn-primary:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 25, 122, .45);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: white;
}

.btn-white {
    background: white;
    color: var(--dark2);
    border-color: white;
}

.btn-white:hover {
    background: #f6e9f0;
    border-color: #f6e9f0;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn i {
    font-size: 13px;
}

/* ── TOP BAR ── */
.top-bar {
    background: var(--black);
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
}

.top-bar a {
    color: white;
    font-weight: 700;
}

.top-bar a:hover {
    color: var(--pink-lt);
}

/* ── HEADER ── */
header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: none;
    transition: background .3s, box-shadow .3s, position .3s;
}

header.scrolled {
    position: fixed;
    background: rgba(13, 13, 15, .85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1160px;
    margin: 0 auto;
}

.logo {
    font-family: "Barlow", sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: white;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--pink-lt);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
}

nav a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    padding: 7px 12px;
    border-radius: 0;
    transition: color .2s, background .2s;
}

nav a:hover {
    color: var(--pink-lt);
    background: rgba(255, 255, 255, .08);
}

nav a.active {
    color: var(--pink-lt);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown>a::after {
    content: ' ▾';
    font-size: 10px;
    opacity: .6;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: white;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 200px;
    max-height: 360px;
    overflow-y: auto;
    z-index: 999;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 0;
    font-size: 13px;
}

.dropdown-menu a i {
    color: var(--pink);
    width: 16px;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--pink);
}

.nav-cta {
    background: var(--pink) !important;
    color: white !important;
    padding: 9px 18px !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
}

.nav-cta:hover {
    background: var(--pink-dark) !important;
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: white;
    border-radius: 0;
    transition: .3s;
}

/* ── HERO ── */
.hero-video {
    position: relative;
    overflow: hidden;
    background: var(--black);
    color: white;
    min-height: 92vh;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 97%);
}

/* Background photo — swap this path for a real job photo when you have one */
.hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat, linear-gradient(135deg, #0d0d0f 0%, #2b0d1c 55%, #4a1030 100%);
    z-index: 0;
}

/* Dark overlay on top of the photo so text/form stay readable */
.hero-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 13, 15, .9) 0%, rgba(43, 13, 28, .78) 55%, rgba(74, 16, 48, .82) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-video .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-video-inner {
    display: grid;
    grid-template-columns: 1.1fr 420px;
    gap: 3rem;
    align-items: center;
    padding: 7rem 0 6rem;
}

.hero-accent-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pink-lt);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-accent-label::before {
    content: '';
    width: 36px;
    height: 3px;
    background: var(--pink-lt);
    display: block;
}

.hero-video-content h1 {
    color: white;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-video-content .hero-sub {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    max-width: 540px;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
}

.trust-item i {
    color: var(--pink-lt);
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btns .btn {
    text-transform: uppercase;
}

.hero-btns .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, .5);
}

.hero-btns .btn-outline:hover {
    border-color: var(--pink-lt);
    color: var(--pink-lt);
    transform: translateY(-2px);
}

/* ── HERO FORM BOX ── */
.hero-form-box {
    background: #fff;
    border-radius: 0;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 4;
}

.hero-form-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: .35rem;
}

.hero-form-sub {
    font-size: .88rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.hf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: .75rem;
}

.hf-group {
    display: flex;
    flex-direction: column;
    margin-bottom: .75rem;
}

.hf-group:last-of-type {
    margin-bottom: 0;
}

.hf-group label {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #222;
    margin-bottom: .3rem;
}

.hf-group label span {
    color: var(--pink);
}

.hf-group input,
.hf-group select,
.hf-group textarea {
    border: 1px solid #d0d0d0;
    border-radius: 0;
    padding: .55rem .75rem;
    font-size: .88rem;
    font-family: "Barlow", sans-serif;
    color: #333;
    background: #fafafa;
    transition: border-color .2s;
    outline: none;
}

.hf-group input:focus,
.hf-group select:focus,
.hf-group textarea:focus {
    border-color: var(--pink);
    background: #fff;
}

.hf-group textarea {
    resize: vertical;
}

.hf-submit {
    width: 100%;
    background: var(--pink);
    color: white;
    border: none;
    border-radius: 0;
    padding: .85rem;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s, transform .15s;
}

.hf-submit:hover {
    background: var(--black);
    transform: translateY(-1px);
}

.hf-offer {
    background: #fff3f8;
    border: 1.5px dashed var(--pink);
    border-radius: 0;
    padding: .6rem .8rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--pink-dark);
    text-align: center;
    margin-bottom: 1.1rem;
}

@media (max-width: 1024px) {
    .hero-video-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2.5rem;
    }

    .hero-form-box {
        max-width: 560px;
        margin: 0 auto;
    }

    .hero-video-content .hero-sub {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .hf-row {
        grid-template-columns: 1fr;
    }
}

/* ── STATS STRIP ── */
.stats-strip {
    background: var(--black);
    padding: 2.5rem 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 1rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: 2.3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: .25rem;
}

.stat-num span {
    color: var(--pink-lt);
}

.stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 500;
}

/* ── PAIN POINTS ── */
.pain-section {
    padding: 5rem 0;
    background: var(--light);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pain-card {
    background: white;
    border-radius: 0;
    padding: 2rem 1.75rem;
    border: 1.5px solid var(--border);
    transition: all .25s ease;
}

.pain-card:hover {
    border-color: var(--pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pain-icon {
    width: 52px;
    height: 52px;
    background: #fdeaf3;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.pain-icon i {
    font-size: 1.4rem;
    color: var(--pink);
}

.pain-card h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.pain-card p {
    font-size: .88rem;
}

/* ── SAVINGS / BENEFITS ── */
.savings-section {
    padding: 5rem 0;
    background: white;
}

.savings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.savings-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.savings-stat {
    background: var(--light);
    border-radius: 0;
    padding: 1.5rem;
    text-align: center;
}

.savings-stat .num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--pink);
    line-height: 1;
    margin-bottom: .35rem;
}

.savings-stat .label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
}

.savings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.savings-item {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
}

.savings-item i {
    color: var(--pink);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.savings-item h4 {
    font-size: .95rem;
    margin-bottom: .15rem;
}

.savings-item p {
    font-size: .87rem;
}

.savings-note {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 1rem;
    font-style: italic;
}

/* ── BEFORE / AFTER ── */
.ba-section {
    padding: 5rem 0;
    background: var(--light);
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ba-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ba-img-wrap {
    position: relative;
}

.ba-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(13, 13, 15, .8);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 0;
}

.ba-label.after {
    background: var(--pink);
}

.ba-caption {
    padding: 1.25rem 1.5rem;
}

.ba-caption h4 {
    font-size: .95rem;
    margin-bottom: .3rem;
}

.ba-caption p {
    font-size: .85rem;
}

.ba-note {
    text-align: center;
    font-size: .85rem;
    color: var(--muted);
    margin-top: 2rem;
    font-style: italic;
}

/* ── SERVICES OVERVIEW ── */
.services-overview {
    padding: 5rem 0;
    background: white;
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    border: 1.5px solid var(--border);
    border-radius: 0;
    padding: 2.25rem 2rem;
    transition: all .25s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pink);
    transform: scaleX(0);
    transition: transform .3s ease;
    transform-origin: left;
}

.service-card:hover {
    border-color: var(--pink);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--pink);
}

.service-card h3 {
    margin-bottom: .5rem;
}

.service-card p {
    font-size: .9rem;
    margin-bottom: 1.25rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--pink);
}

.card-link i {
    transition: transform .2s;
}

.service-card:hover .card-link i {
    transform: translateX(4px);
}

/* ── WHY CHOOSE US ── */
.why-section {
    padding: 5rem 0;
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    transition: box-shadow .2s;
}

.why-item:hover {
    box-shadow: var(--shadow);
}

.why-icon {
    width: 44px;
    height: 44px;
    background: #fdeaf3;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    color: var(--pink);
    font-size: 1.1rem;
}

.why-item h4 {
    margin-bottom: .2rem;
}

.why-item p {
    font-size: .88rem;
}

.about-visual {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--black);
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-placeholder {
    color: rgba(255, 255, 255, .35);
    font-size: .85rem;
    text-align: center;
    padding: 2rem;
}

/* ── FAQ ── */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: var(--light);
    border-radius: 0;
    border: 1.5px solid var(--border);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Barlow", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark2);
    text-align: left;
}

.faq-q i {
    color: var(--pink);
    flex-shrink: 0;
    transition: transform .25s;
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

/* ── SERVICE AREA / MAP ── */
.service-area-section {
    padding: 5rem 0;
    background: var(--light);
}

.area-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.area-map {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.area-map iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

.area-cities {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .6rem;
    margin-top: 1.5rem;
}

.area-city {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    background: white;
    padding: .55rem .8rem;
    border-radius: 0;
    border: 1px solid var(--border);
}

.area-city i {
    color: var(--pink);
    font-size: 12px;
}

/* ── CTA BAND ── */
.cta-band {
    background: linear-gradient(120deg, var(--pink) 0%, var(--pink-dark) 100%);
    padding: 3.5rem 0;
    color: white;
    text-align: center;
}

.cta-band h2 {
    color: white;
    margin-bottom: .75rem;
}

.cta-band p {
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── CONTACT SECTION ── */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    background: var(--light);
    border-radius: 0;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--pink);
    font-size: 1.1rem;
}

.contact-card h4 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--muted);
    margin-bottom: .2rem;
}

.contact-card p,
.contact-card a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark2);
}

.contact-card a:hover {
    color: var(--pink);
}

.form-box {
    background: var(--light);
    border-radius: 0;
    padding: 2.25rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-box h3 {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--muted);
    margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 0;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    color: var(--text);
    background: #fff;
    transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
}

.form-note a {
    color: var(--pink);
    font-weight: 700;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2.5rem;
    background: #fdeaf3;
    border: 1px solid #f5c2dd;
    border-radius: 0;
    color: var(--pink-dark);
}

.form-success i {
    font-size: 2.5rem;
    margin-bottom: .75rem;
    color: var(--pink);
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    color: rgba(255, 255, 255, .8);
    padding: 4rem 0 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-family: "Barlow", sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: white;
    margin-bottom: .75rem;
}

.footer-logo span {
    color: var(--pink-lt);
}

.footer-tagline {
    font-size: .9rem;
    color: rgba(255, 255, 255, .55);
    font-style: italic;
    margin-bottom: .5rem;
}

.footer-cert {
    font-size: 11.5px;
    color: #ff8ec0;
    font-weight: 500;
    margin-top: .5rem;
}

.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #ff8ec0;
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-col li {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
}

.footer-col a {
    color: rgba(255, 255, 255, .6);
    transition: color .2s;
}

.footer-col a:hover {
    color: white;
}

.footer-col address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-col address p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
}

.footer-col address i {
    color: #ff8ec0;
    width: 14px;
}

.footer-bottom {
    text-align: center;
    font-size: .83rem;
    color: rgba(255, 255, 255, .3);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

    .why-grid,
    .area-layout,
    .contact-layout,
    .savings-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid-3,
    .services-grid-4,
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-grid {
        grid-template-columns: 1fr;
    }

    .area-cities {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        padding: 1rem;
        box-shadow: var(--shadow);
        gap: 4px;
    }

    nav ul.open {
        display: flex;
    }

    nav a {
        display: block;
        padding: 10px 14px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 4px 0 4px 1rem;
        border-top: none;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .header-inner {
        padding: 12px 20px;
    }

    .services-grid-3,
    .services-grid-4,
    .pain-grid {
        grid-template-columns: 1fr;
    }

    .ba-images {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .area-cities {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

/* Fade animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
}

.fade-in.visible {
    animation: fadeUp .5s ease forwards;
}

[id] {
    scroll-margin-top: 90px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}