/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@400;500;600&family=Roboto+Slab:wght@400&display=swap');

:root {
    --accent: #EF8F24;
    --accent-hover: #d97d15;
    --black: #000000;
    --near-black: #020202;
    --dark-text: #000000;
    --body-text: #656565;
    --light-gray: #E1E1E1;
    --border-gray: #ABABAB;
    --white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-quote: 'Roboto Slab', serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    font-family: var(--font-body);
    color: var(--body-text);
    line-height: 1.65;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: color 0.2s;
}

a:hover {
    color: var(--black);
}

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

ul {
    list-style: none;
}

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

/* ===== HEADER (ORANGE) ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--accent);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding: 0 24px;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--near-black);
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.header-cta:hover {
    background: var(--light-gray);
    color: var(--black);
}

/* Mobile menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--near-black);
    margin: 6px 0;
    transition: 0.3s;
}

.mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--accent);
    padding: 16px 24px;
    z-index: 99;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--near-black);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    text-transform: uppercase;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--white);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 44px;
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--black);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 20px 40px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--border-gray);
    cursor: pointer;
    transition: all 0.2s;
    min-height: 44px;
}

.btn-ghost:hover {
    background: var(--accent);
    color: var(--black);
    border-color: transparent;
}

.btn-ghost-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--accent);
    padding: 20px 40px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: all 0.2s;
    min-height: 44px;
}

.btn-ghost-orange:hover {
    background: var(--white);
    color: var(--black);
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 20px 40px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--white);
    cursor: pointer;
    transition: all 0.2s;
    min-height: 44px;
}

.btn-ghost-white:hover {
    background: var(--white);
    color: var(--black);
}

/* ===== HERO (full viewport, image + overlay) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    margin-top: -90px;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3em;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero h1 span {
    font-size: 1.85em;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--border-gray);
    margin: 20px auto;
}

.hero p {
    font-family: var(--font-heading);
    font-size: 1.1em;
    font-weight: 400;
    color: var(--light-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CAROUSEL ===== */
/* ===== SHOWCASE SLIDER ===== */
.showcase-heading {
    background: var(--white);
    text-align: center;
    padding: 48px 24px 32px;
}

.showcase-heading h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
}

.showcase-heading h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 14px auto 0;
    border-radius: 2px;
}

.showcase {
    position: relative;
    width: 100%;
    height: 572px;
    overflow: hidden;
    background: var(--near-black);
}

.showcase-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.showcase-slide.active {
    opacity: 1;
    z-index: 1;
}

.showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.15) 50%,
        rgba(0,0,0,0.05) 100%
    );
}

.showcase-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 0 24px;
}

.showcase-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.showcase-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.showcase-content p {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 500px;
    margin: 0 auto;
}

.showcase-controls {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
}

.showcase-arrow {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s;
    backdrop-filter: blur(4px);
}

.showcase-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.showcase-pips {
    display: flex;
    gap: 10px;
    align-items: center;
}

.showcase-pip {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.showcase-pip.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.25);
}

.showcase-pip:hover {
    border-color: var(--white);
}

.showcase-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--accent);
    z-index: 4;
}

/* ===== SERVICES OVERVIEW (homepage) ===== */
.services-overview {
    padding: 5em 24px;
    background: var(--white);
    text-align: center;
}

.services-overview h2 {
    font-family: var(--font-heading);
    font-size: 2.5em;
    font-weight: 600;
    color: var(--black);
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.3;
}

.services-overview h2 span {
    color: var(--accent);
}

.services-overview p {
    font-family: var(--font-heading);
    font-size: 1.1em;
    font-weight: 400;
    color: var(--body-text);
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.65;
}

/* ===== SERVICE AREA BANNER (black bg) ===== */
.service-area {
    padding: 3em 24px;
    background: var(--black);
}

.service-area-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.service-area h2 {
    font-family: var(--font-heading);
    font-size: 1em;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.5px;
}

.service-area h2 span {
    color: var(--accent);
}

.service-area .btn-ghost-orange {
    white-space: nowrap;
    padding: 14px 28px;
    font-size: 13px;
}

/* ===== PROMISE SECTION (column dividers) ===== */
.promise {
    padding: 3em 24px 5em;
    background: var(--white);
}

.promise-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.promise-card {
    text-align: center;
    padding: 24px 28px;
    border-right: 1px solid #C6C6C6;
}

.promise-card:last-child {
    border-right: none;
}

.promise-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2em;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.promise-card p {
    font-size: 1em;
    color: var(--body-text);
    line-height: 1.6;
}

/* ===== TESTIMONIAL (bg image + 75% overlay) ===== */
.testimonial {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 7em;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.testimonial-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    opacity: 0.75;
}

.testimonial-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-quote {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.quote-icon {
    width: 160px;
    height: auto;
    margin: 0 auto 24px;
    opacity: 0.5;
}

.testimonial blockquote {
    font-family: var(--font-quote);
    font-size: 2em;
    font-weight: 400;
    font-style: normal;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial cite {
    font-family: var(--font-body);
    font-size: 1em;
    font-style: normal;
    font-weight: 600;
    color: var(--accent);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.testimonial-nav button {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 24px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.testimonial-nav button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

/* ===== BOTTOM CTA (black bg) ===== */
.bottom-cta {
    padding: 3em 24px;
    background: var(--black);
}

.bottom-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bottom-cta h2 {
    font-family: var(--font-heading);
    font-size: 1.5em;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
}

.bottom-cta h2 a {
    color: var(--white);
}

.bottom-cta h2 a:hover {
    color: var(--accent);
}

.bottom-cta-center {
    text-align: center;
    justify-content: center;
}

.bottom-cta-center h2 {
    margin-bottom: 20px;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-text);
    margin-bottom: 16px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 50px 24px 30px;
    text-align: center;
    background: var(--white);
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-text);
}

/* ===== ABOUT PAGE (unified gray section) ===== */
.about-main {
    padding: 5em 24px;
    background: #ECECEC;
    text-align: center;
}

.about-main h1 {
    font-family: var(--font-heading);
    font-size: 4em;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

.about-story-inner {
    max-width: 800px;
    margin: 0 auto 4em;
    text-align: center;
}

.motto {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 20px;
}

.about-story-inner p {
    font-family: var(--font-body);
    font-size: 1.1em;
    color: #3E3E3E;
    line-height: 29px;
    margin-bottom: 12px;
}

/* Team Grid */
.team-section {
    padding: 5em 24px;
    background: #ECECEC;
}

.team-section h2 {
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.team-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3em;
}

.team-card {
    text-align: center;
    background: var(--white);
    overflow: hidden;
}

.team-card img {
    width: 90%;
    margin: 5% auto 0;
    height: auto;
    object-fit: cover;
}

.team-card-info {
    padding: 1em 1em 2em;
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 2em;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.team-card p {
    font-family: var(--font-body);
    font-size: 1.1em;
    color: var(--body-text);
}

.team-card a {
    font-size: 14px;
}

/* About closing */
.about-closing {
    padding: 3em 24px;
    text-align: center;
    background: var(--white);
}

.about-closing p {
    font-family: var(--font-heading);
    font-size: 1.4em;
    font-weight: 500;
    color: var(--body-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bottom CTA with background image */
.bottom-cta-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.bottom-cta-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.bottom-cta-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    opacity: 0.5;
}

.bottom-cta-hero-content {
    position: relative;
    z-index: 2;
}

.bottom-cta-hero-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2em;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

/* ===== SERVICES PAGE ===== */
.services-intro {
    padding: 40px 24px;
    text-align: center;
    background: var(--white);
}

.services-intro p {
    font-size: 16px;
    color: var(--body-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.65;
}

.services-grid-section {
    padding: 40px 24px 60px;
    background: var(--white);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-text {
    padding: 20px 0;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.6;
}

/* Guarantee (bg image + overlay) */
.guarantee {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.guarantee-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/Pain-Free-Excavation-02.webp');
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.guarantee-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    opacity: 0.5;
}

.guarantee-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 5em;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee h2 {
    font-family: var(--font-heading);
    font-size: 2.2em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.guarantee p {
    font-family: var(--font-heading);
    font-size: 1.2em;
    font-weight: 500;
    color: var(--white);
    line-height: 2em;
    letter-spacing: 0.5px;
    margin: 0 auto 24px;
}

/* ===== OUR WORK / GALLERY ===== */
.gallery-intro {
    padding: 40px 24px;
    text-align: center;
    background: var(--white);
}

.gallery-intro p {
    font-size: 16px;
    color: var(--body-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.65;
}

.gallery-section {
    padding: 20px 24px 60px;
    background: var(--white);
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 300;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* ===== CONTACT PAGE ===== */
.contact-header {
    padding: 50px 24px 20px;
    text-align: center;
    background: var(--white);
}

.contact-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-header p {
    font-size: 16px;
    color: var(--body-text);
    max-width: 600px;
    margin: 0 auto 16px;
    line-height: 1.65;
}

.contact-header .phone-link {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.contact-header .phone-link:hover {
    color: var(--black);
}

.contact-form-section {
    padding: 30px 24px 60px;
    background: var(--white);
}

.contact-form-inner {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    font-size: 16px;
    font-family: var(--font-body);
    border: 1px solid #ccc;
    border-radius: 3px;
    background: var(--white);
    color: var(--dark-text);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(239,143,36,0.12);
}

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

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

.form-submit {
    text-align: center;
    margin-top: 8px;
}

.form-submit .btn-primary {
    width: 100%;
    padding: 14px 28px;
    font-size: 16px;
}

.form-success {
    background: #edfcf2;
    border: 1px solid #b6f0cc;
    color: #166534;
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 15px;
    text-align: center;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 15px;
    text-align: center;
}

/* ===== FOOTER (WHITE bg) ===== */
.footer {
    background: var(--white);
    padding: 3em 24px;
    border-top: 1px solid #eee;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--near-black);
    transition: color 0.2s;
}

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

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social a {
    color: var(--accent);
    font-size: 20px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--black);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 999px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promise-card {
        border-right: none;
        border-bottom: 1px solid #C6C6C6;
    }

    .promise-card:nth-child(odd) {
        border-right: 1px solid #C6C6C6;
    }

    .promise-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-area-inner,
    .bottom-cta-inner {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-inner {
        height: 70px;
    }

    .mobile-nav {
        top: 70px;
    }

    .hero {
        min-height: 90vh;
        margin-top: -70px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero h1 span {
        font-size: 2.2em;
    }

    .testimonial {
        padding: 60px 24px;
    }

    .testimonial blockquote {
        font-size: 1.4em;
    }

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

    .promise-card {
        border-right: none;
        border-bottom: 1px solid #C6C6C6;
    }

    .promise-card:last-child {
        border-bottom: none;
    }

    .about-main h1 {
        font-size: 2.5em;
    }

    .about-main {
        padding: 3em 24px;
    }

    .team-card h3 {
        font-size: 1.5em;
    }

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

    .bottom-cta-hero {
        min-height: 50vh;
    }

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

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

    .footer-nav {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

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

    .showcase {
        height: 440px;
    }

    .showcase-content h2 {
        font-size: 28px;
    }

    .showcase-content p {
        font-size: 14px;
    }

    .showcase-content {
        bottom: 50px;
    }

    .section-title {
        font-size: 26px;
    }

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

    .service-area-inner {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-content {
        padding: 3em 2em;
    }

    .guarantee h2 {
        font-size: 1.6em;
    }

    .guarantee p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 16px;
    }

    .hero h1 span {
        font-size: 1.8em;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-ghost,
    .btn-ghost-orange,
    .btn-ghost-white {
        width: 100%;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .team-card h3 {
        font-size: 1.3em;
    }

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

    .gallery-item img {
        height: 200px;
    }
}
