:root {
    --green-dark: #0a3d1f;
    --green-mid: #145a2e;
    --green-light: #1e7a42;
    --green-accent: #2dab5f;
    --cream: #f5f0e8;
    --off-white: #faf8f4;
    --text-dark: #0d1f13;
    --text-mid: #3a5244;
    --gold: #c9a84c;
    --gold-light: #e8c97e;
    --white: #ffffff;
    --shadow-green: 0 20px 60px rgba(10, 61, 31, 0.15);
    --shadow-card: 0 8px 30px rgba(10, 61, 31, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── FLOATING NAVBAR ── */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    background: rgba(10, 61, 31, 0.97);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 8px 40px rgba(10, 61, 31, 0.35);
    border: 1px solid rgba(45, 171, 95, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 61, 31, 0.99);
    box-shadow: 0 12px 50px rgba(10, 61, 31, 0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.nav-logo-sub {
    font-size: 10px;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--gold-light);
}

.nav-cta {
    background: var(--gold);
    color: var(--green-dark);
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

/* ── BENTO HERO ── */
.hero {
    padding: 130px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.bento-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.bento-image {
    grid-column: 1;
    grid-row: 1 / 3;
    background: var(--green-dark);
    min-height: 460px;
    position: relative;
    overflow: hidden;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.6s ease;
}

.bento-image:hover img {
    transform: scale(1.05);
}

.bento-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 61, 31, 0.6) 0%, rgba(10, 61, 31, 0.2) 100%);
}

.bento-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gold);
    color: var(--green-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.bento-heading {
    grid-column: 2 / 4;
    grid-row: 1;
    background: var(--green-dark);
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-heading .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.bento-heading h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.bento-heading h1 span {
    color: var(--gold);
}

.bento-heading p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    max-width: 460px;
}

.bento-service {
    grid-column: 2;
    grid-row: 2;
    background: var(--cream);
    padding: 28px;
    border: 2px solid rgba(10, 61, 31, 0.08);
}

.bento-service .s-icon {
    width: 48px;
    height: 48px;
    background: var(--green-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.bento-service h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--green-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.bento-service p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
}

.bento-stats {
    grid-column: 3;
    grid-row: 2;
    background: var(--green-dark);
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: center;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Fake garage door hero image */
.garage-visual {
    width: 100%;
    height: 100%;
    min-height: 460px;
    background: linear-gradient(160deg, #0a3d1f 0%, #1e7a42 60%, #0a3d1f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.garage-svg {
    width: 80%;
    opacity: 0.85;
}

/* ── ABOUT US ── */
.about {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 61, 31, 0.07);
    color: var(--green-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-accent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-left h2 em {
    font-style: italic;
    color: var(--green-light);
}

.about-left p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 16px;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.about-pill {
    background: var(--green-dark);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.about-right {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--green-dark);
    height: 400px;
    position: relative;
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gold);
    color: var(--green-dark);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.about-img-badge .big {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.about-img-badge small {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

/* ── STICKY SCROLL SERVICES ── */
.sticky-services {
    padding: 100px 0;
    background: var(--green-dark);
    position: relative;
}

.sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.sticky-left {
    position: sticky;
    top: 120px;
}

.sticky-left .section-label {
    background: rgba(45, 171, 95, 0.15);
    color: var(--gold);
}

.sticky-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.sticky-left p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.sticky-left a {
    display: inline-block;
    background: var(--gold);
    color: var(--green-dark);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.sticky-left a:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.services-scroll {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 0;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    cursor: default;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateX(8px);
}

.service-item-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.s-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
}

.s-icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.service-item h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.3px;
}

.service-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.s-tag {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-light);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

/* ── CTA SECTION ── */
.cta-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-card {
    background: var(--green-dark);
    border-radius: 28px;
    padding: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(45, 171, 95, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card h2 span {
    color: var(--gold);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gold);
    color: var(--green-dark);
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

/* ── SPLIT CARD HOVER SERVICES ── */
.split-services {
    padding: 100px 24px;
    background: var(--cream);
}

.split-services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.split-header {
    text-align: center;
    margin-bottom: 60px;
}

.split-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.split-header p {
    color: var(--text-mid);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.split-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 220px;
    box-shadow: var(--shadow-card);
}

.split-front {
    position: absolute;
    inset: 0;
    background: var(--green-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-front .sf-icon {
    font-size: 40px;
}

.split-front h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    text-align: center;
    padding: 0 20px;
}

.split-back {
    position: absolute;
    inset: 0;
    background: var(--gold);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-back h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.split-back p {
    font-size: 13px;
    color: var(--green-dark);
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 14px;
}

.split-back .s-link {
    color: var(--green-dark);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.split-card:hover .split-front {
    transform: translateY(-100%);
}

.split-card:hover .split-back {
    transform: translateY(0);
}

/* ── SERVICE AREA ── */
.service-area {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.area-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.area-left p {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.city-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid rgba(10, 61, 31, 0.1);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    transition: all 0.2s;
}

.city-pill:hover {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
    transform: translateY(-2px);
}

.city-pill .cp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-accent);
    flex-shrink: 0;
}

.area-map {
    background: var(--green-dark);
    border-radius: 24px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder .mp-pin {
    font-size: 60px;
    display: block;
    margin-bottom: 12px;
}

.map-placeholder p {
    font-size: 14px;
    line-height: 1.5;
}

/* PA Map SVG */
.pa-map {
    width: 90%;
    opacity: 0.7;
}

/* ── FAQ ── */
.faq {
    padding: 100px 24px;
    background: var(--cream);
}

.faq-inner {
    max-width: 860px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 54px;
}

.faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.faq-header p {
    color: var(--text-mid);
    font-size: 16px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid rgba(10, 61, 31, 0.08);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: rgba(10, 61, 31, 0.25);
}

.faq-question {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
}

.faq-q-text {
    font-weight: 700;
    font-size: 15px;
    color: var(--green-dark);
    flex: 1;
}

.faq-city {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--green-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s;
    font-weight: 700;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--green-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

.faq-answer p {
    padding: 0 24px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-mid);
}

/* ── CONTACT ── */
.contact {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.contact-left p {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 14px;
    border: 1.5px solid rgba(10, 61, 31, 0.08);
    transition: all 0.2s;
}

.ci-item:hover {
    border-color: var(--green-dark);
    transform: translateX(4px);
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: var(--green-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ci-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ci-text span {
    font-size: 14px;
    color: var(--text-mid);
}

.ci-text a {
    color: var(--green-light);
    text-decoration: none;
    font-weight: 600;
}

.contact-form-wrap {
    background: var(--green-dark);
    border-radius: 24px;
    padding: 44px;
}

.contact-form-wrap h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group select option {
    background: var(--green-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--green-dark);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}

.form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
    background: var(--green-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 56px 24px 28px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 28px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.footer-logo-text .main {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.footer-logo-text .sub {
    font-size: 11px;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--gold-light);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.7s ease both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-image {
        grid-column: 1 / 3;
        grid-row: 1;
        min-height: 250px;
    }

    .bento-heading {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .bento-service {
        grid-column: 1;
        grid-row: 3;
    }

    .bento-stats {
        grid-column: 2;
        grid-row: 3;
    }

    .bento-heading h1 {
        font-size: 34px;
    }

    .about-grid,
    .area-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-right {
        margin-top: 40px;
    }

    .sticky-inner {
        grid-template-columns: 1fr;
    }

    .sticky-left {
        position: relative;
        top: 0;
    }

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

    .nav-menu {
        display: none;
    }

    .navbar {
        padding: 12px 20px;
    }
}

@media (max-width: 600px) {
    .bento-heading h1 {
        font-size: 28px;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .cta-card h2 {
        font-size: 34px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

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