/* ============================================================
   FIELD GROUNDWORKS LTD — MASTER STYLESHEET
   Brand: Black #000000 | Deep Red #C00000 | White #FFF | Dark Grey #111
   ============================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', 'Arial Black', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', 'Impact', 'Arial Black', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.05;
}

h1 { font-size: clamp(2.4rem, 7vw, 5rem); }
h2 { font-size: clamp(1.9rem, 5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h4 { font-size: 1.15rem; letter-spacing: 1px; }

p { font-size: 1.05rem; line-height: 1.75; color: #ccc; }
p strong { color: #fff; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C00000;
  margin-bottom: 0.6rem;
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 5rem 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* --- COLOUR UTILITIES --- */
.bg-black  { background: #000; }
.bg-dark   { background: #111; }
.bg-darker { background: #0a0a0a; }
.bg-red    { background: #C00000; }
.text-red  { color: #C00000; }
.text-white{ color: #fff; }
.text-grey { color: #888; }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', 'Impact', 'Arial Black', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}

.btn-red {
  background: #C00000;
  color: #fff;
}
.btn-red:hover {
  background: #a00000;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192,0,0,0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.1rem; }

/* --- NAVIGATION --- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Fallback text logo (shown if image fails) */
.nav-logo .logo-main {
  font-family: 'Barlow Condensed', 'Impact', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}
.nav-logo .logo-sub {
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: #C00000;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ccc;
  padding: 0.5rem 0.85rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.85rem; right: 0.85rem;
  height: 2px;
  background: #C00000;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.82rem;
  padding: 0.55rem 1.3rem;
}

/* --- NAV DROPDOWN --- */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.nav-dropdown-toggle .chevron {
  font-style: normal;
  font-size: 0.65rem;
  transition: transform 0.25s;
  line-height: 1;
  color: #C00000;
}
.nav-item-dropdown:hover .chevron,
.nav-item-dropdown.open .chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #0d0d0d;
  border: 1px solid #222;
  border-top: 2px solid #C00000;
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 999;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: #999;
  border-bottom: 1px solid #1a1a1a;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { background: #1a0000; color: #fff; padding-left: 1.6rem; }
.nav-dropdown li a::after { display: none; }

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    border: none;
    border-left: 3px solid #C00000;
    background: #0a0a0a;
    transition: max-height 0.35s ease, visibility 0.35s;
    padding: 0;
  }
  .nav-item-dropdown.open .nav-dropdown {
    visibility: visible;
    max-height: 600px;
    padding: 0.25rem 0;
  }
  .nav-dropdown li a {
    padding: 0.65rem 2.5rem;
    font-size: 0.78rem;
  }
  .nav-dropdown-toggle::after { display: none; }
}

/* --- LOCATION PAGE STYLES --- */
.loc-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.loc-service-item {
  background: #111;
  border: 1px solid #1e1e1e;
  border-left: 3px solid #C00000;
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: background 0.2s, transform 0.2s;
}
.loc-service-item:hover { background: #150000; transform: translateX(3px); }
.loc-service-item .icon { font-size: 1.8rem; flex-shrink: 0; }
.loc-service-item h4 { color: #fff; margin-bottom: 0.3rem; font-size: 1rem; letter-spacing: 1px; }
.loc-service-item p { font-size: 0.88rem; margin: 0; }
.loc-service-item a { color: #C00000; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: inline-block; margin-top: 0.4rem; }
.loc-service-item a:hover { text-decoration: underline; }

.loc-nearby {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.loc-nearby a {
  background: #111;
  border: 1px solid #222;
  color: #888;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.loc-nearby a:hover { background: #C00000; color: #fff; border-color: #C00000; }

/* Location hub grid */
.loc-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.loc-hub-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-top: 3px solid #C00000;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.loc-hub-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(192,0,0,0.18); }
.loc-hub-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.3rem; }
.loc-hub-card .postcode { font-size: 0.72rem; letter-spacing: 2px; color: #555; text-transform: uppercase; margin-bottom: 0.8rem; display: block; }
.loc-hub-card p { font-size: 0.88rem; margin-bottom: 1.2rem; }
.loc-hub-card a.btn { font-size: 0.8rem; padding: 0.6rem 1.3rem; }

@media (max-width: 768px) {
  .loc-services-grid { grid-template-columns: 1fr; }
  .loc-hub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .loc-hub-grid { grid-template-columns: 1fr; }
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(192,0,0,0.18) 0%, rgba(0,0,0,0.0) 50%),
    linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85)),
    url('../images/field.png') center/cover no-repeat;
  z-index: 0;
}

/* Geometric overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(192,0,0,0.03) 60px,
    rgba(192,0,0,0.03) 61px
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #C00000;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 span { color: #C00000; }

.hero-sub {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 2rem;
  max-width: 580px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.trust-item svg { color: #C00000; flex-shrink: 0; }

/* --- STATS BAR --- */
.stats-bar {
  background: #111;
  border-top: 3px solid #C00000;
  border-bottom: 1px solid #222;
  padding: 2.5rem 0;
}

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

.stat-item {
  padding: 1rem;
  border-right: 1px solid #222;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Barlow Condensed', 'Impact', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #C00000;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-top: 0.3rem;
}

/* --- SERVICES SECTION --- */
.services-section { background: #0a0a0a; }

.section-header {
  margin-bottom: 3rem;
}

.service-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-top: 3px solid #C00000;
  padding: 2rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: #C00000;
  box-shadow: 0 8px 32px rgba(192,0,0,0.2);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #C00000;
}

.service-card h3 { color: #fff; margin-bottom: 0.7rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 1.2rem; }

.service-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C00000;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.8rem; }

/* --- ABOUT SECTION --- */
.about-section { background: #000; }

.about-image {
  position: relative;
}
.about-image-inner {
  background: #111;
  border: 2px solid #C00000;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-image-inner img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: #C00000;
  color: #fff;
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.about-badge .years {
  font-family: 'Barlow Condensed', 'Impact', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.about-badge .years-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.about-text { padding-left: 1rem; }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; }

.checkmarks { list-style: none; margin: 1.5rem 0; }
.checkmarks li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: #ccc;
}
.checkmarks li::before {
  content: '✓';
  color: #C00000;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* --- AREAS SECTION --- */
.areas-section { background: #111; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #222;
  border: 1px solid #222;
  margin-top: 2.5rem;
}

.area-item {
  background: #111;
  padding: 1.4rem 1rem;
  text-align: center;
  transition: background 0.2s;
  display: block;
  text-decoration: none;
}
.area-item:hover { background: #1a0000; }

.area-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  display: block;
}
.area-item small {
  font-size: 0.72rem;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- WHY US --- */
.why-section { background: #0a0a0a; }

.why-card {
  background: #111;
  border: 1px solid #1e1e1e;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.why-card:hover { transform: translateY(-3px); }
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #C00000;
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #C00000;
  display: block;
}

.why-card h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  letter-spacing: 1.5px;
}
.why-card p { font-size: 0.88rem; }

/* --- REVIEWS --- */
.reviews-section { background: #000; }

.review-card {
  background: #111;
  border: 1px solid #1e1e1e;
  padding: 2rem;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 5rem;
  color: #C00000;
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  color: #C00000;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.reviewer-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.reviewer-loc {
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- FAQ --- */
.faq-section { background: #111; }

.faq-list { margin-top: 2.5rem; }

.faq-item {
  border-bottom: 1px solid #1e1e1e;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  cursor: pointer;
  font-family: 'Barlow Condensed', 'Impact', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.2s;
  gap: 1rem;
}
.faq-question:hover { color: #C00000; }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: #C00000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer p {
  padding-bottom: 1.3rem;
  font-size: 0.95rem;
}

/* --- MAP & CONTACT --- */
.contact-section { background: #0a0a0a; }

.map-wrapper {
  background: #111;
  border: 2px solid #C00000;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(90%) contrast(1.1);
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-block {
  background: #111;
  border-left: 3px solid #C00000;
  padding: 1.4rem 1.5rem;
}
.contact-block h4 {
  font-size: 0.78rem;
  letter-spacing: 3px;
  color: #C00000;
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.contact-block a,
.contact-block p {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}
.contact-block a:hover { color: #C00000; }

/* --- CTA BANNER --- */
.cta-banner {
  background: #C00000;
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 { color: #fff; margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.1rem; }

.cta-banner .btn-outline {
  border-color: #fff;
  color: #fff;
}
.cta-banner .btn-outline:hover {
  background: #fff;
  color: #C00000;
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background:
    linear-gradient(135deg, rgba(192,0,0,0.18) 0%, rgba(0,0,0,0.0) 50%),
    linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85)),
    url('../images/field.png') center/cover no-repeat;
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #C00000;
}
.page-hero-driveway {
  background:
    linear-gradient(135deg, rgba(192,0,0,0.18) 0%, rgba(0,0,0,0.0) 50%),
    linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85)),
    url('../images/driveway.jpg') center/cover no-repeat !important;
}
.page-hero-patios {
  background:
    linear-gradient(135deg, rgba(192,0,0,0.18) 0%, rgba(0,0,0,0.0) 50%),
    linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85)),
    url('../images/patios.png') center/cover no-repeat !important;
}
.page-hero-drainage {
  background:
    linear-gradient(135deg, rgba(192,0,0,0.18) 0%, rgba(0,0,0,0.0) 50%),
    linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85)),
    url('../images/Drain.png') center/cover no-repeat !important;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(192,0,0,0.04) 40px,
    rgba(192,0,0,0.04) 41px
  );
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero h1 span { color: #C00000; }
.page-hero p {
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 1.5rem;
}
.page-hero .breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 1rem;
}
.page-hero .breadcrumb span { color: #C00000; }

/* --- PROCESS SECTION --- */
.process-section { background: #111; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #C00000;
  color: #fff;
  font-family: 'Barlow Condensed', 'Impact', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 2.8rem;
  left: calc(50% + 28px);
  right: 0;
  height: 2px;
  background: #C00000;
  opacity: 0.3;
}
.process-step:last-child::after { display: none; }

.process-step h4 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.88rem; }

/* --- GALLERY PLACEHOLDER --- */
.gallery-section { background: #0a0a0a; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.gallery-item {
  background: #111;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  border: 1px solid #1e1e1e;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* --- CONTACT FORM --- */
.form-section { background: #111; }

.contact-form {
  max-width: 680px;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #000;
  border: 1px solid #2a2a2a;
  border-top: 2px solid #333;
  color: #fff;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C00000;
}

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

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

/* --- FOOTER --- */
footer {
  background: #000;
  border-top: 2px solid #1a1a1a;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  object-fit: contain;
}
.footer-brand .logo-main {
  font-family: 'Barlow Condensed', 'Impact', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  display: block;
  margin-bottom: 0.2rem;
}
.footer-brand .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: #C00000;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C00000;
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: #555;
  transition: color 0.2s;
  letter-spacing: 0.5px;
}
.footer-links a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
}
.footer-contact-item small {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 0.15rem;
}
.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.92rem;
  color: #bbb;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #333;
  letter-spacing: 0.5px;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: #333;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #C00000; }

/* --- DIVIDER --- */
.red-divider {
  width: 50px;
  height: 4px;
  background: #C00000;
  margin: 1rem 0 1.5rem;
}

/* --- TRUST BAR --- */
.trust-bar {
  background: #111;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 1.5rem 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
}
.trust-bar-item svg,
.trust-bar-item .icon { color: #C00000; }

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   ============================================================ */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: transparent; border-bottom: 2px solid #C00000; padding: 1rem 0; gap: 0; }
  .nav-links.open { display: flex; background: #000; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.8rem 1.5rem; border-bottom: 1px solid #111; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta-desktop { display: none; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .about-text { padding-left: 0; }
  .about-badge { bottom: 1rem; right: 1rem; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid #222; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-image-inner { height: 280px; }
}
