/* ================================================
   SPOT ON DRIVEWAYS & LANDSCAPING
   Brand: Navy #1a2d4f | Orange #e85c0d | Green #4cbb17
   Fonts: Barlow Condensed (display) + DM Sans (body)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Bebas+Neue&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy:       #1a2d4f;
  --navy-dark:  #0f1c30;
  --navy-light: #243d68;
  --orange:     #e85c0d;
  --orange-dark:#c44d0b;
  --orange-light:#ff7733;
  --green:      #4cbb17;
  --green-dark: #3a9912;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --light:      #eef1f7;
  --grey:       #6b7280;
  --dark:       #111827;
  --charcoal:   #0d1117;
  --mid:        #4b5563;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow:     0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.18);
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }
p { color: var(--grey); }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.tag--green { color: var(--green); }
.tag--white { color: rgba(255,255,255,.75); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header p { margin-top: 14px; font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,92,13,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,45,79,.3);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(76,187,23,.35);
}
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  transition: color .2s;
}
.top-bar a:hover { color: var(--green); }
.top-bar a span.icon { font-size: 1rem; }
.top-bar .phone-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  font-weight: 700;
  font-size: .95rem;
}
.nav-main {
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  background: #fff;
  padding: 5px 10px;
  border-radius: 7px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO — SPLIT PANEL ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

/* LEFT: content panel */
.hero-left {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: clamp(100px,12vh,140px) clamp(24px,5vw,72px) clamp(60px,8vh,100px) clamp(24px,7vw,96px);
  position: relative;
}
.hero-accent-bar {
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 6px;
  background: linear-gradient(180deg, var(--green) 0%, var(--orange) 100%);
  border-radius: 0 4px 4px 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero-headline {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: clamp(3.8rem,7vw,7rem);
  font-weight: 400;
  line-height: .92;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: .03em;
}
.hero-hl-accent {
  display: block;
  color: var(--orange);
  font-style: normal;
}
.hero-content .lead {
  color: rgba(255,255,255,.75);
  font-size: 1.06rem;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.72;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
}
.trust-item .t-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-item .t-text strong { display: block; font-size: .86rem; color: var(--white); }
.trust-item .t-text span { font-size: .75rem; color: rgba(255,255,255,.58); }

/* RIGHT: image panel */
.hero-right {
  position: relative;
  overflow: hidden;
}
/* Diagonal notch cut from left edge */
.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 56px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 3;
}
/* CLIENT: replace picsum URL with your best project photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://picsum.photos/seed/driveway-hero-v2/900/1100');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,45,79,.1) 0%, rgba(26,45,79,.72) 100%);
  z-index: 1;
}
/* Stats strip at base of image */
.hero-stats-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(13,17,23,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 24px;
  display: flex;
  justify-content: space-around;
  border-top: 3px solid var(--orange);
}
.hsp-item { text-align: center; }
.hsp-num {
  display: block;
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}
.hsp-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--charcoal);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform .3s ease;
}
.stat-item:hover::after { transform: translateX(-50%) scaleX(1); }
.stat-item .stat-number {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
}
.stat-item:nth-child(3) .stat-number { color: var(--green); }
.stat-item .stat-label {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* ── SERVICES ── */
.services-section { padding: 90px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 5px solid var(--orange);
  position: relative;
}
.service-card:nth-child(3n+2) { border-top-color: var(--green); }
.service-card:nth-child(3n+3) { border-top-color: var(--navy); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,.16);
}
.service-image {
  height: 210px;
  background: var(--light);
  overflow: hidden;
  position: relative;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.service-card:hover .service-image img { transform: scale(1.06); }
.service-body { padding: 24px; }
.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.service-card:nth-child(3n+2) .service-icon { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.service-card:nth-child(3n+3) .service-icon { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.service-body h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
.service-body p { font-size: .93rem; line-height: 1.6; margin-bottom: 16px; }
.service-link {
  font-weight: 700;
  font-size: .88rem;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }
.service-card:nth-child(3n+2) .service-link { color: var(--green); }
.service-card:nth-child(3n+3) .service-link { color: var(--navy); }

/* ── WHY CHOOSE US ── */
.why-section {
  padding: 90px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}
.why-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}
.why-section .section-header { color: var(--white); }
.why-section .section-header p { color: rgba(255,255,255,.65); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 20px;
}
.why-icon--green { background: var(--green); }
.why-icon--navy  { background: var(--navy-light); }
.why-card h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.why-card p { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ── PROCESS ── */
.process-section { padding: 100px 0 90px; background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 3px;
  background: linear-gradient(to right, var(--orange), var(--green));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 76px;
  height: 76px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--orange);
  transition: var(--transition);
}
.process-step:hover .step-number {
  background: var(--orange);
  box-shadow: 0 0 0 3px var(--navy);
  transform: scale(1.1);
}
.process-step h4 { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.process-step p { font-size: .9rem; }

/* ── GALLERY PREVIEW ── */
.gallery-preview-section { padding: 90px 0; background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
  margin-bottom: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,45,79,.85) 100%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}
.gallery-cta { text-align: center; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 90px 0; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  border-bottom: 4px solid var(--orange);
  transition: var(--transition);
}
.testimonial-card:nth-child(2) { border-bottom-color: var(--green); }
.testimonial-card:nth-child(3) { border-bottom-color: var(--navy); }
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--orange);
  opacity: .25;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-style: italic;
  color: var(--dark);
  font-size: .97rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.author-location { font-size: .8rem; color: var(--grey); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E") center/80px;
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 { color: var(--white); margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,.85); font-size: 1.05rem; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

/* ── AREAS SECTION ── */
.areas-section { padding: 70px 0; background: var(--light); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}
.area-tag,
.area-pill {
  padding: 8px 18px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 30px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  cursor: default;
}
.area-tag:hover,
.area-pill:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 7px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  color: var(--white);
  font-size: .95rem;
}
.social-btn:hover { background: var(--orange); }
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
}
.contact-item .ci-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}
.footer-bottom a:hover { color: var(--orange); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: var(--orange);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: .15;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.page-hero .breadcrumb a { color: var(--orange); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.4); }

/* ── SERVICES PAGE ── */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--light);
}
.service-detail:nth-child(even) { background: var(--off-white); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail:nth-child(even) .service-detail-inner > * { direction: ltr; }
.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-content h2 { color: var(--navy); margin-bottom: 16px; }
.service-detail-content p { margin-bottom: 20px; line-height: 1.75; }
.benefit-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
}
.benefit-item .bi-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; font-size: 1.1rem; }

/* ── GALLERY PAGE ── */
.gallery-section { padding: 70px 0; }
.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--light);
  background: var(--white);
  border-radius: 30px;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-full-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-full-item:hover img { transform: scale(1.05); }
.gfi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,45,79,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-full-item:hover .gfi-overlay { opacity: 1; }
.gfi-overlay span { color: var(--white); font-size: 2rem; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
.contact-form-wrapper {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.contact-form-wrapper h3 { color: var(--navy); margin-bottom: 8px; }
.contact-form-wrapper > p { margin-bottom: 30px; font-size: .95rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info h3 { color: var(--navy); margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
}
.info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-card-text strong { display: block; color: var(--navy); font-size: .95rem; margin-bottom: 4px; }
.info-card-text a, .info-card-text span { color: var(--grey); font-size: .9rem; }
.info-card-text a:hover { color: var(--orange); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 55% 45%; }
  .hero-headline { font-size: clamp(3.2rem,6vw,5.5rem); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 24px 56px; align-items: flex-start; }
  .hero-accent-bar { top: 10%; bottom: 10%; }
  .hero-right { height: 380px; }
  .hero-right::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    padding: 16px;
    gap: 4px;
    z-index: 1000;
    border-top: 2px solid var(--green);
  }
  .nav-links.open a { color: rgba(255,255,255,.85); }
  .nav-links.open + .nav-cta { display: none; }
  .hero-trust { gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: unset; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar .top-bar-right { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   PREMIUM REFINEMENTS
════════════════════════════════════════════════ */

/* Bigger, bolder section headers */
.section-header h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
}
h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); }

/* Services section — off-white with subtle dot pattern */
.services-section {
  background: var(--off-white);
  background-image: radial-gradient(circle, rgba(26,45,79,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Service body typography */
.service-body h3 {
  font-size: 1.5rem;
  letter-spacing: .01em;
}

/* Why section — card glow on hover */
.why-card:hover {
  box-shadow: 0 0 0 1px rgba(232,92,13,.3), 0 12px 40px rgba(0,0,0,.2);
}

/* Process — step number hover becomes green */
.process-step:hover .step-number {
  background: var(--green);
  box-shadow: 0 0 0 3px var(--navy);
  transform: scale(1.1);
}

/* Testimonials — dramatic quote mark */
.quote-icon {
  font-size: 5rem;
  opacity: .15;
  margin-bottom: 4px;
  line-height: 1;
  color: var(--navy);
}

/* Gallery section — off-white dot pattern */
.gallery-preview-section {
  background: var(--off-white);
  background-image: radial-gradient(circle, rgba(26,45,79,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Gallery items — stronger overlay */
.gallery-overlay {
  background: linear-gradient(180deg, transparent 40%, rgba(26,45,79,.92) 100%);
  opacity: 0;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* CTA banner — add subtle geo pattern */
.cta-banner {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-light) 100%);
  position: relative;
}
.cta-banner::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: rgba(0,0,0,.12);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-phone {
  font-size: 2.4rem;
  letter-spacing: .02em;
}

/* Areas section — crisper */
.areas-section { background: var(--off-white); }

/* Footer headings — green underline accent */
.footer-col h5 { border-bottom-color: var(--green); }

/* Page hero (services/gallery/contact) — green diagonal accent */
.page-hero::after { background: var(--green); opacity: .18; }

/* Smoother image placeholders */
.service-image { background: var(--light); }
.service-image img { transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.service-card:hover .service-image img { transform: scale(1.08); }
