:root {
    --primary-color: #87CEEB;
    --secondary-color: #f4f4f4;
    --dark-color: #1a237e;
    --light-color: #fff;
    --accent-color: #FFC107;
    --primary-deep: #3aa4cc;
    --soft-shadow: 0 10px 25px rgba(0,0,0,0.08);
    --soft-shadow-hover: 0 16px 35px rgba(0,0,0,0.12);
    --font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background: #f7f9fc;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1150px;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; letter-spacing: -0.5px; }
h2 { font-size: 2.5rem; color: var(--primary-color); text-align: center; }
p { margin-bottom: 1rem; }

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.2s ease-in, background-color 0.2s ease-in, color 0.2s ease-in;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.btn:hover {
    transform: scale(1.05);
    background: var(--primary-deep);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--dark-color);
}

.btn-accent:hover {
    background: #ffb300;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--light-color);
    color: var(--light-color);
}

.btn-outline:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

.main-header {
    background: var(--light-color);
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 10;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-nav ul li a {
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 600;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.main-nav ul li a.btn-accent:hover {
     color: var(--dark-color);
}

.social-link-header a {
    padding: 0.5rem 0.5rem;
}

.social-link-header svg {
    width: 24px;
    height: 24px;
    fill: var(--dark-color);
    transition: fill 0.2s ease-in-out;
    vertical-align: middle;
}

.social-link-header a:hover svg {
    fill: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--dark-color);
    transition: all 0.25s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--dark-color);
    transition: all 0.25s ease-in-out;
}

.hamburger::before { transform: translateY(-8px); }
.hamburger::after { transform: translateY(8px); }

.nav-open .hamburger { background: transparent; }
.nav-open .hamburger::before { transform: rotate(45deg); }
.nav-open .hamburger::after { transform: rotate(-45deg); }


.hero {
    min-height: 75vh;
    background: linear-gradient(120deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35)), url('images/hero.webp') no-repeat center center/cover;
    color: var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.section {
    padding: 4.5rem 0;
}

.section-light { background: var(--light-color); }
.section-grey { background: linear-gradient(180deg, #f4f4f4, #eef2f7); }

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.about-lead {
    max-width: 780px;
    margin: 0 auto 2.5rem auto;
}

.personal-touch {
    font-style: italic;
    color: #555;
    max-width: 600px;
    margin: 1.5rem auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    text-align: center;
}

.process-step {
    background: var(--light-color);
    border-radius: 14px;
    padding: 1.6rem 1.4rem;
    box-shadow: var(--soft-shadow);
    border: 1px solid #eef1f5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--soft-shadow-hover);
}

.process-step .icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

.process-step h4 {
    margin-top: 0.8rem;
    margin-bottom: 0.6rem;
}

.about-grid div {
    padding: 1rem;
}

.about-grid .icon svg {
    width: 48px;
    height: 48px;
    fill: var(--primary-color);
}

.about-card {
    background: var(--light-color);
    border-radius: 14px;
    padding: 1.6rem 1.2rem;
    box-shadow: var(--soft-shadow);
    border: 1px solid #eef1f5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--soft-shadow-hover);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.services-full {
    margin-top: 4rem;
    text-align: center;
}

.services-full h3 {
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-bottom: 1.6rem;
    letter-spacing: -0.2px;
}

.service-card {
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--soft-shadow-hover);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #eee;
}

.service-card-content {
    padding: 1.5rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content p,
.service-card-content .digger-services-list {
    flex-grow: 1;
}

.service-card-content .service-btn {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.digger-services-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
    font-size: 0.95rem;
    fill: var(--primary-color);
}

.digger-services-list li {
    margin-bottom: 0.5rem;
}

.detailed-services-list {
    list-style-type: none;
    padding: 0;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.detailed-services-list li {
    background: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 5px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.detailed-services-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--soft-shadow);
    border-left-color: var(--primary-deep);
}

.detailed-services-list li .icon {
   margin-right: 0.75rem;
   flex-shrink: 0;
}

.detailed-services-list li .icon svg {
     width: 20px;
     height: 20px;
     fill: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2rem;
}

.gallery-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item-caption {
    font-weight: 600;
    padding: 1rem 1.2rem;
    text-align: left;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,1));
    border-top: 1px solid #eef1f5;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--soft-shadow-hover);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.areas-list {
    text-align: center;
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.areas-chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 0.9rem;
    margin-top: 1.5rem;
    padding: 0;
}

.areas-chips li {
    background: var(--light-color);
    color: var(--dark-color);
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.testimonial-slider {
    max-width: 800px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 3rem 4rem;
    background: var(--light-color);
    text-align: center;
}

.testimonial-slide p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    font-style: normal !important;
    color: var(--primary-color);
}

.faq-list {
    max-width: 860px;
    margin: 2rem auto 0;
    display: grid;
    gap: 1rem;
    text-align: left;
}

.faq-item {
    background: var(--light-color);
    border: 1px solid #eef1f5;
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
    box-shadow: var(--soft-shadow);
}

.faq-item h4 {
    margin-bottom: 0.6rem;
    color: var(--dark-color);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}

.arrow-prev { left: 15px; }
.arrow-next { right: 15px; }

.stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.main-footer {
    background: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 70px;
}

.main-footer a {
    color: var(--light-color);
    text-decoration: none;
}

.footer-socials {
    margin: 1.5rem 0;
}

.footer-socials svg {
    width: 32px;
    height: 32px;
    fill: var(--light-color);
    transition: opacity 0.2s ease-in-out;
}

.footer-socials a:hover svg {
    opacity: 0.8;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.footer-credit a {
    color: var(--light-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-credit-label {
    opacity: 0.85;
}

.waste-carrier-info {
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 300px;
}

.waste-carrier-info img {
    height: 55px;
    width: auto;
    flex-shrink: 0;
}

.waste-carrier-info div {
    text-align: left;
}

.waste-carrier-info p {
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--light-color);
    border-top: 1px solid #ddd;
    z-index: 99;
    padding: 0.9rem 0.75rem;
}

.mobile-sticky-footer .btn-group {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.mobile-sticky-footer .btn {
    width: 100%;
    font-size: 1rem;
    padding: 1.05rem 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-sticky-footer .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-sticky-footer .btn-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.mobile-sticky-footer .btn:not(.btn-accent) { color: var(--dark-color); }

@media (min-width: 576px) {
    .detailed-services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }
    .section { padding: 3rem 0; }

    .main-nav ul {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--light-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .main-nav.nav-open ul {
        transform: translateX(0);
    }

    .main-nav ul li {
        margin: 1.5rem 0;
    }
    
    .main-nav ul li a {
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: block;
    }
    
    .btn-mobile-hide {
        display: none;
    }
    
    .social-link-header {
        display: block;
    }
    
    .mobile-sticky-footer {
        display: block;
    }
    
    .main-footer {
        margin-bottom: 70px;
    }

    .about-grid, .services-grid, .process-grid {
        grid-template-columns: 1fr;
    }

    .detailed-services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-slide {
        padding: 2rem;
    }
}

@media (min-width: 769px) {
    .main-footer {
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
     .gallery-grid {
        grid-template-columns: 1fr;
    }

    .detailed-services-list {
        grid-template-columns: 1fr;
    }
}

.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-container.show {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: var(--light-color);
    padding: 2rem 2.5rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal-container.show .modal {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.2rem;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
}

.modal h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.modal p {
    font-size: 0.9rem;
    color: #666;
}

body.modal-open {
    overflow: hidden;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
}

.modal .btn {
    width: 100%;
    text-align: center;
}

#form-status {
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0;
}

#form-status.success {
    color: #1b5e20;
}

#form-status.error {
    color: #b71c1c;
}
:focus-visible {
  outline: 3px solid #005A9C;
  outline-offset: 2px;
  border-radius: 2px;
}
@media (max-width: 600px) {
    .modal {
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-y: auto;
    }
}

.accreditations-section {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid #eee;
}

.accreditations-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.waste-carrier-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.waste-carrier-info img {
  max-height: 60px;
  width: auto;
}

/* 2026 responsive visual refresh */
:root {
  --ink: #101b4f;
  --muted: #58617b;
  --surface: #ffffff;
  --surface-soft: #f3f8fb;
  --line: rgba(26, 35, 126, 0.11);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --page-padding: clamp(1rem, 4vw, 2.25rem);
}

html { scroll-padding-top: 96px; }

body {
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1180px, 100%);
  padding-inline: var(--page-padding);
  overflow: visible;
}

h1, h2, h3, h4 { text-wrap: balance; }
h1 { font-size: clamp(2.65rem, 6vw, 5.25rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -0.045em; color: var(--dark-color); }
h3 { letter-spacing: -0.025em; }
p { color: var(--muted); }

.utility-bar {
  background: var(--dark-color);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar a { color: #fff; text-decoration: none; }

.main-header { padding: 0; border: 0; box-shadow: 0 8px 30px rgba(16,27,79,.07); }
.main-header .container { min-height: 76px; }
.main-header .logo { display: flex; align-items: center; font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--dark-color); }
.main-header .logo img { width: 32px; height: 32px !important; object-fit: contain; }
.main-nav ul { gap: .15rem; }
.main-nav ul li a { padding: .65rem .8rem; border-radius: 10px; font-size: .9rem; }
.main-nav ul li a:hover { background: var(--surface-soft); }
.main-nav ul li a.nav-cta { background: var(--accent-color); color: var(--dark-color); margin-left: .4rem; padding-inline: 1rem; }

.hero {
  min-height: min(780px, calc(100svh - 112px));
  padding: clamp(5rem, 9vw, 8rem) 0 3rem;
  align-items: stretch;
  text-align: left;
  background-position: 58% center;
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(transparent, rgba(8,17,53,.44));
}

.hero-inner { margin: auto; }
.hero-inner > * { max-width: 820px; }
.hero h1 { margin: .9rem 0 1.25rem; text-shadow: 0 3px 20px rgba(0,0,0,.35); }
.hero p { max-width: 680px; color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 2vw, 1.28rem); text-shadow: none; }

.eyebrow, .section-kicker {
  display: block;
  width: fit-content;
  margin: 0 auto .9rem;
  color: var(--primary-deep);
  font-size: .76rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.eyebrow { margin-left: 0; color: var(--dark-color); background: var(--accent-color); padding: .65rem .85rem; border-radius: 999px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.btn { min-height: 50px; padding: .83rem 1.35rem; border-radius: 12px; display: inline-flex; justify-content: center; align-items: center; transform: none; }
.btn:hover { transform: translateY(-2px); }
.hero .btn-outline { border-color: rgba(255,255,255,.7); backdrop-filter: blur(8px); }

.hero-trust { list-style: none; display: flex; gap: clamp(1rem, 5vw, 3.5rem); margin-top: clamp(3rem, 7vw, 5.5rem); padding: 0; }
.hero-trust li { display: grid; gap: .1rem; padding-left: 1rem; border-left: 2px solid var(--primary-color); }
.hero-trust strong { color: #fff; font-size: 1.25rem; }
.hero-trust span { color: rgba(255,255,255,.72); font-size: .78rem; }

.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-grey { background: var(--surface-soft); }
.section > .container > h2 { max-width: 850px; margin-inline: auto; }

.about-intro { max-width: 1180px; }
.about-lead { max-width: 800px; font-size: 1.05rem; }
.about-grid, .process-grid { gap: 1rem; }
.about-card, .process-step { border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 40px rgba(26,35,126,.06); }
.about-card { text-align: left; min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; }
.about-grid .icon, .process-step .icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: rgba(135,206,235,.18); }
.about-grid .icon svg { width: 30px; height: 30px; }
.about-grid h4 { font-size: 1rem; }
.process-step { text-align: left; }
.process-step p { font-size: .9rem; margin: 0; }

.services-grid { gap: 1.25rem; }
.service-card { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 14px 45px rgba(26,35,126,.08); }
.service-card img { height: 245px; }
.service-card-content { padding: 1.6rem; position: relative; }
.service-card-content h3 { padding-right: 2.5rem; }
.card-number { position: absolute; right: 1.5rem; top: 1.7rem; color: var(--primary-deep); font-size: .75rem; font-weight: 700; letter-spacing: .1em; }
.detailed-services-list { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.detailed-services-list li { border: 1px solid var(--line); border-left: 4px solid var(--primary-color); border-radius: var(--radius-sm); box-shadow: none; text-align: left; font-size: .9rem; }

.accreditations-section { margin-top: 4rem; padding-bottom: 0; }
.accreditations-logos { align-items: stretch; }
.waste-carrier-info { max-width: 390px; margin: 0; padding: 1rem 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }

.gallery-grid { gap: 1.25rem; }
.gallery-item { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 14px 45px rgba(26,35,126,.08); }
.gallery-item-caption { padding: 1.15rem 1.3rem; }

.testimonial-slider { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 18px 55px rgba(26,35,126,.09); }
.testimonial-slide { padding: clamp(2.5rem, 6vw, 4rem) clamp(3.5rem, 8vw, 6rem); }
.testimonial-slide p { color: var(--ink); font-size: clamp(1rem, 2vw, 1.18rem); }
.slider-arrow { width: 42px; height: 42px; padding: 0; border-radius: 50%; background: var(--dark-color); font-size: 1.25rem; }

.areas-chips li { border-color: var(--line); box-shadow: none; padding: .55rem 1rem; }
.faq-item { border-color: var(--line); border-radius: var(--radius-sm); box-shadow: none; }

.contact-panel { background: var(--dark-color); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 6vw, 4.5rem); display: grid; grid-template-columns: 1.5fr .75fr; align-items: center; gap: 2rem; box-shadow: 0 24px 70px rgba(26,35,126,.2); }
.contact-panel h2, .contact-panel p { color: #fff; text-align: left; }
.contact-panel p { opacity: .78; max-width: 690px; margin-bottom: 0; }
.contact-panel .section-kicker { color: var(--primary-color); margin-left: 0; }
.contact-actions { display: grid; gap: 1rem; justify-items: stretch; }
.contact-phone { color: #fff; text-align: center; text-decoration: none; font-size: .9rem; }

.main-footer { padding: 3.25rem 0; }
.modal { border-radius: var(--radius); }
.form-group input, .form-group textarea { border-radius: 10px; border-color: var(--line); }

@media (max-width: 980px) {
  .about-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .service-card:last-child img { height: 100%; min-height: 310px; }
  .detailed-services-list { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-actions { justify-items: start; }
}

@media (max-width: 768px) {
  .utility-bar { display: none; }
  .main-header .container { min-height: 68px; }
  .nav-toggle { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: var(--surface-soft); }
  .main-nav ul { top: 68px; height: calc(100svh - 68px); justify-content: flex-start; padding: 3rem var(--page-padding); gap: .4rem; }
  .main-nav ul li { width: 100%; margin: 0; }
  .main-nav ul li a { display: block; width: 100%; padding: .8rem; font-size: 1.2rem; text-align: center; }
  .main-nav ul li a.nav-cta { margin: 1rem 0 0; padding: 1rem; }
  .hero { min-height: calc(100svh - 68px); padding-top: 4rem; background-position: 63% center; }
  .hero-trust { gap: .75rem; justify-content: space-between; }
  .hero-trust li { padding-left: .65rem; }
  .hero-trust span { max-width: 100px; }
  .about-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; display: flex; }
  .service-card:last-child img { height: 245px; min-height: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-sticky-footer { padding: .65rem; box-shadow: 0 -8px 25px rgba(16,27,79,.1); }
  .mobile-sticky-footer .btn { min-height: 48px; padding: .7rem; }
  .main-footer { margin-bottom: 66px; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.5rem, 13vw, 3.7rem); }
  .hero { text-align: center; }
  .eyebrow { margin-inline: auto; }
  .hero-actions { display: grid; }
  .hero-trust { margin-top: 3.5rem; }
  .hero-trust li { border-left: 0; border-top: 2px solid var(--primary-color); padding: .6rem .2rem 0; }
  .hero-trust strong { font-size: 1rem; }
  .hero-trust span { font-size: .68rem; }
  .about-grid, .process-grid, .detailed-services-list, .gallery-grid { grid-template-columns: 1fr; }
  .about-card { min-height: 145px; }
  .service-card img, .service-card:last-child img { height: 215px; }
  .testimonial-slide { padding: 2.5rem 3.1rem; }
  .arrow-prev { left: 7px; }
  .arrow-next { right: 7px; }
  .contact-panel { border-radius: var(--radius); }
  .contact-actions, .contact-actions .btn { width: 100%; }
  .footer-credit { flex-direction: column; border-radius: var(--radius-sm); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Second pass: more image-led, less template-like */
.hero-inner > * { max-width: 760px; }
.hero h1 { font-size: clamp(2.7rem, 5.4vw, 4.8rem); line-height: 1.02; }

.about-story {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  text-align: left;
  margin: 1.25rem 0 clamp(3rem, 6vw, 5rem);
}

.about-story .about-lead { margin: 0; }
.about-story h2 { text-align: left; }
.about-story .personal-touch { margin: 1.25rem 0; font-style: normal; color: var(--muted); }
.about-image { position: relative; margin: 0; }
.about-image::before { content: ''; position: absolute; width: 42%; height: 60%; right: -16px; top: -16px; border-radius: var(--radius); background: var(--primary-color); z-index: 0; }
.about-image img { position: relative; z-index: 1; display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(16,27,79,.16); }
.about-image figcaption { position: absolute; z-index: 2; left: 1.2rem; bottom: 1.2rem; padding: .65rem .9rem; color: #fff; background: rgba(16,27,79,.88); border-radius: 9px; font-size: .78rem; font-weight: 600; }
.text-link { display: inline-flex; gap: .5rem; align-items: center; color: var(--dark-color); font-weight: 700; text-underline-offset: 5px; }

.about-grid { gap: 0; border-block: 1px solid var(--line); }
.about-card { min-height: 0; border: 0; border-radius: 0; box-shadow: none; padding: 1.35rem !important; flex-direction: row; justify-content: flex-start; align-items: center; gap: .7rem; background: transparent; }
.about-card + .about-card { border-left: 1px solid var(--line); }
.about-grid .icon { width: 34px; height: 34px; flex: 0 0 34px; background: transparent; }
.about-grid .icon svg { width: 24px; height: 24px; }
.about-grid h4 { text-align: left; }
.about-card:hover { transform: none; box-shadow: none; }

#process { background: var(--dark-color); }
#process h2 { color: #fff; }
#process .section-kicker { color: var(--primary-color); }
.process-grid { position: relative; gap: 0; margin-top: 3.5rem; }
.process-grid::before { content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 1px; background: rgba(255,255,255,.22); }
.process-step { position: relative; padding: 0 clamp(1rem, 2.5vw, 2rem); border: 0; border-radius: 0; background: transparent; box-shadow: none; text-align: center; }
.process-step:hover { transform: none; box-shadow: none; }
.process-step .icon { position: relative; z-index: 1; margin: 0 auto 1.25rem; border: 1px solid rgba(255,255,255,.2); background: var(--dark-color); }
.process-step .icon svg { width: 25px; height: 25px; fill: var(--primary-color); }
.process-number { color: var(--accent-color); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.process-step h4 { color: #fff; margin-top: .35rem; }
.process-step p { color: rgba(255,255,255,.64); }

.services-grid { grid-template-columns: 1.15fr .85fr; grid-template-rows: 1fr 1fr; }
.service-card:first-child { grid-row: 1 / 3; }
.service-card:first-child img { height: 420px; }
.service-card:not(:first-child) { display: grid; grid-template-columns: 42% 58%; }
.service-card:not(:first-child) img { height: 100%; min-height: 255px; }
.service-card-content { justify-content: center; }
.service-card-content p { flex-grow: 0; }
.service-card:nth-child(3) .digger-services-list { columns: 2; column-gap: 1.25rem; font-size: .82rem; }
.services-full { margin-top: clamp(4rem, 8vw, 6.5rem); }

.gallery-grid { grid-template-columns: 1.25fr 1fr 1fr; align-items: stretch; }
.gallery-item:first-child img { aspect-ratio: 5 / 4; }
.gallery-item:not(:first-child) img { aspect-ratio: 4 / 3; }

@media (max-width: 980px) {
  .about-story { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .about-card:nth-child(4) { border-top: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .service-card:first-child { grid-row: auto; }
  .service-card:first-child img { height: 300px; }
  .service-card:not(:first-child) { display: flex; }
  .service-card:not(:first-child) img { height: 300px; min-height: 0; }
  .service-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .service-card:last-child img { height: 100%; min-height: 330px; }
}

@media (max-width: 720px) {
  .about-story { grid-template-columns: 1fr; }
  .about-story .about-lead { order: 1; }
  .about-image { order: 0; }
  .about-image::before { right: -8px; top: -8px; }
  .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-grid::before { top: 0; bottom: 0; left: 25px; right: auto; width: 1px; height: auto; }
  .process-step { display: grid; grid-template-columns: 52px 1fr; column-gap: 1rem; text-align: left; padding: 0; }
  .process-step .icon { grid-row: 1 / 4; margin: 0; }
  .process-step .process-number, .process-step h4, .process-step p { grid-column: 2; }
  .process-step h4 { margin: .25rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:first-child img, .service-card:not(:first-child) img { height: 230px; }
  .service-card:last-child { grid-column: auto; display: flex; }
  .service-card:last-child img { height: 230px; min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child img, .gallery-item:not(:first-child) img { aspect-ratio: 4 / 3; }
}

@media (max-width: 480px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-card + .about-card { border-left: 0; border-top: 1px solid var(--line); }
  .service-card:nth-child(3) .digger-services-list { columns: 1; }
}

/* Scannable full service directory */
.services-full {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  text-align: left;
}

.services-full-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, .65fr);
  align-items: end;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.services-full-heading .section-kicker { margin: 0 0 .75rem; }
.services-full-heading h3 { margin: 0; color: var(--dark-color); font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
.services-full-heading p { margin: 0; }

.service-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.service-group {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
}

.service-group:nth-child(even) { border-left: 1px solid var(--line); }
.service-group:nth-child(n+3) { border-top: 1px solid var(--line); }

.service-group-number {
  position: absolute;
  top: clamp(2rem, 4vw, 3rem);
  right: clamp(2rem, 4vw, 3rem);
  color: var(--primary-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.service-group h4 {
  max-width: calc(100% - 2.5rem);
  margin-bottom: 1.25rem;
  color: var(--dark-color);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.service-group ul { display: grid; gap: .72rem; margin: 0; padding: 0; list-style: none; }
.service-group li { position: relative; padding-left: 1.45rem; color: var(--muted); font-size: .92rem; line-height: 1.45; }
.service-group li::before { content: ''; position: absolute; left: 0; top: .42em; width: 7px; height: 7px; border: 2px solid var(--primary-deep); border-radius: 50%; }

.services-full-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--dark-color);
}

.services-full-cta p { max-width: 690px; margin: 0; color: rgba(255,255,255,.78); }
.services-full-cta strong { color: #fff; }
.services-full-cta .btn { flex: 0 0 auto; background: var(--accent-color); color: var(--dark-color); }

@media (max-width: 720px) {
  .services-full { padding: 1.25rem; }
  .services-full-heading { grid-template-columns: 1fr; gap: .75rem; padding: .75rem .5rem 1.5rem; }
  .service-groups { grid-template-columns: 1fr; }
  .service-group { padding: 1.75rem .5rem; }
  .service-group:nth-child(even) { border-left: 0; }
  .service-group:nth-child(n+2) { border-top: 1px solid var(--line); }
  .service-group-number { top: 1.9rem; right: .5rem; }
  .service-group li { font-size: .9rem; }
  .services-full-cta { align-items: stretch; flex-direction: column; padding: 1.4rem; }
  .services-full-cta .btn { width: 100%; }
}
