/* ============================================================
   Trinity Contracting — style.css
   Brand: Forest Green #1E692D · Gold #87784B · Merriweather + Inter
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:ital,wght@0,700;0,900;1,700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --color-primary:       #1E692D;
  --color-primary-dark:  #0F5220;
  --color-primary-light: #96C396;
  --color-accent:        #87784B;
  --color-accent-bright: #A8924A;
  --color-bg:            #F7F5F2;
  --color-surface:       #FFFFFF;
  --color-muted:         #E8E4DF;
  --color-text:          #2C2C2C;
  --color-text-muted:    #64748B;
  --color-border:        #D4D0CB;

  --font-heading: 'Merriweather', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius:    8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);

  --nav-height:  72px;
  --max-width:   1200px;
  --section-pad: clamp(4rem, 8vw, 7rem) 1.5rem;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Reusable responsive two-column grid (used in services.html inline sections) */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1100px;
  margin-inline: auto;
}
.two-col-grid > * { min-width: 0; }
@media (max-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 2rem; }
  .two-col-grid.reverse-mobile { direction: ltr; }
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem);  font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { max-width: min(68ch, 100%); }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding: var(--section-pad); }

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

.btn-primary {
  background: var(--color-accent-bright);
  color: #fff;
  box-shadow: 0 2px 8px rgba(168,146,74,.35);
}
.btn-primary:hover {
  background: var(--color-accent);
  box-shadow: 0 4px 14px rgba(168,146,74,.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn-green {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(30,105,45,.3);
}
.btn-green:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 14px rgba(30,105,45,.4);
}

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.reveal.revealed { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
.stat-number { animation: countUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stat-number {
    transition: none; animation: none; opacity: 1; transform: none;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding-inline: 1.5rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(18, 22, 16, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.nav-logo img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

@media (max-width: 480px) {
  .nav-logo-text {
    font-size: 0.875rem;
  }
  .nav-logo img {
    height: 36px;
    width: 36px;
  }
  .nav-logo {
    gap: 0.5rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: 3px; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--color-accent-bright);
  color: #fff !important;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
  min-height: 44px;
}
.nav-cta:hover { background: var(--color-accent); transform: translateY(-1px); }

.nav-cta .phone-icon { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta .phone-text { display: inline; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile nav open state */
.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(18, 22, 16, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

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

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.15s;
}
.mobile-nav a:hover { color: var(--color-primary-light); }

.mobile-nav .nav-cta {
  margin-top: 1rem;
  font-size: 1.1rem;
  padding: 0.9rem 2rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 3rem) 1.5rem 4rem;
  background: linear-gradient(150deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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");
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
}

.hero-logo {
  margin-bottom: 1.75rem;
}

.hero-logo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid rgba(168,146,74,.5);
  box-shadow: 0 8px 32px rgba(0,0,0,.35), 0 0 0 6px rgba(255,255,255,.06);
  object-fit: cover;
  margin-inline: auto;
}

@media (max-width: 480px) {
  .hero-logo img {
    width: 150px;
    height: 150px;
  }
}

/* Tagline under H1 */
.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-accent-bright);
  margin-top: -0.75rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

/* Dump trailer rental callout */
.rental-callout {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.rental-callout-icon {
  width: 52px;
  height: 52px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.rental-callout-icon svg { width: 100%; height: 100%; }
.rental-callout-body { flex: 1; min-width: 200px; }
.rental-callout-body h3 { margin-bottom: 0.25rem; font-size: 1.125rem; }
.rental-callout-body p { font-size: 0.9375rem; color: var(--color-text-muted); max-width: none; margin: 0; }

@media (max-width: 600px) {
  .rental-callout { flex-direction: column; align-items: flex-start; }
  .rental-callout .btn { width: 100%; justify-content: center; }
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(168,146,74,.6);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.25rem;
  margin-inline: auto;
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-micro-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
}

.hero-micro-bar .stars { color: #F5C518; letter-spacing: 2px; }

.hero-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.3);
  display: inline-block;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-muted);
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.trust-item strong {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
}

.trust-item span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: var(--section-pad);
  background: var(--color-bg);
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header h2 { margin-bottom: 0.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.placeholder-img {
  background: var(--color-primary);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.placeholder-img svg {
  width: 52px;
  height: 52px;
  color: rgba(255,255,255,.5);
}

/* Real photo in service card */
.service-card-img {
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

/* Real photo in services page two-col sections */
.service-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gallery real photos */
.gallery-grid figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  margin: 0;
  cursor: pointer;
}
.gallery-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
  padding: 2rem 1rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-grid figure:hover figcaption { transform: none; }

.service-card-body {
  padding: 1.5rem;
}

.service-card-body h3 {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.service-card-body p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  max-width: none;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent-bright);
  transition: gap 0.2s ease;
}
.link-arrow:hover { gap: 0.6rem; }
.link-arrow:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; border-radius: 3px; }

.services-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   WHY TRINITY
   ============================================================ */
.why-section {
  background: var(--color-primary);
  padding: var(--section-pad);
}

.why-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-header h2 { color: #fff; margin-bottom: 0.5rem; }
.why-header p { color: rgba(255,255,255,.75); margin-inline: auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}

.why-icon {
  width: 52px;
  height: 52px;
  color: var(--color-primary-light);
  margin: 0 auto 1rem;
}

.why-item h3 {
  color: #fff;
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
}

.why-item p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.72);
  max-width: 28ch;
  margin-inline: auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--color-surface);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-header h2 { margin-bottom: 0.5rem; }

.rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.rating-line .stars { color: #F5C518; font-size: 1rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  position: relative;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent-bright);
  opacity: 0.4;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  user-select: none;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  max-width: none;
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.testimonials-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-section {
  padding: var(--section-pad);
  background: var(--color-bg);
}

.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
}
.area-inner > *, .about-story-inner > * { min-width: 0; }

.area-content h2 { margin-bottom: 1rem; }
.area-content p { color: var(--color-text-muted); margin-bottom: 1.5rem; }

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.875rem;
  background: rgba(30,105,45,.1);
  color: var(--color-primary-dark);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
}
.city-tag.primary-city {
  background: var(--color-primary);
  color: #fff;
}

.area-call {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.area-call a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.area-van-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.area-van-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-section {
  background: var(--color-primary);
  padding: var(--section-pad);
}

.quote-inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.quote-inner h2 { color: #fff; margin-bottom: 0.5rem; }
.quote-inner > p { color: rgba(255,255,255,.78); margin-inline: auto; margin-bottom: 2.5rem; }

.quote-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.form-group label .req { color: var(--color-accent-bright); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  min-height: 44px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.45); }

.form-group select { color: #fff; }
.form-group select option { background: var(--color-primary-dark); color: #fff; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent-bright);
  background: rgba(255,255,255,.14);
}

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

.form-submit { text-align: center; margin-top: 0.5rem; }

.form-submit .btn { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 1rem; }

.form-call {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
}
.form-call a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 1.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  max-width: 30ch;
}

.footer-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary-light);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.75);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: #fff; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 0.625rem;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--color-primary-light); }
.footer-contact a { color: rgba(255,255,255,.75); transition: color 0.15s; }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(150deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: calc(var(--nav-height) + 3.5rem) 1.5rem 3.5rem;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,.8); margin-inline: auto; max-width: 52ch; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-block {
  padding: var(--section-pad);
  max-width: var(--max-width);
  margin-inline: auto;
}
.service-block:nth-child(even) { background: var(--color-surface); }

.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.service-block:nth-child(even) .service-block-inner { direction: rtl; }
.service-block:nth-child(even) .service-block-inner > * { direction: ltr; }

.service-block h2 { margin-bottom: 1rem; }
.service-block p { color: var(--color-text-muted); margin-bottom: 1.5rem; }

.service-img-placeholder {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-placeholder svg { width: 64px; height: 64px; color: rgba(255,255,255,.35); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: var(--section-pad);
  background: var(--color-muted);
}
.faq-inner { max-width: 780px; margin-inline: auto; }
.faq-inner h2 { text-align: center; margin-bottom: 2.5rem; }

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
}
.faq-item h3 { font-size: 1rem; color: var(--color-primary-dark); margin-bottom: 0.625rem; }
.faq-item p { font-size: 0.9375rem; color: var(--color-text-muted); max-width: none; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 3rem 1.5rem;
}

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-primary);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: rgba(255,255,255,.7);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
}
.gallery-card svg { width: 36px; height: 36px; color: rgba(255,255,255,.35); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: var(--section-pad); max-width: var(--max-width); margin-inline: auto; }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-story h2 { margin-bottom: 1rem; }
.about-story p { color: var(--color-text-muted); margin-bottom: 1rem; }

.team-placeholder {
  background: var(--color-muted);
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  border: 2px dashed var(--color-border);
}
.team-placeholder svg { width: 52px; height: 52px; color: var(--color-border); }

.about-team-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-team-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-van-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.about-van-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.values-section { padding: var(--section-pad); background: var(--color-surface); }
.values-section h2 { text-align: center; margin-bottom: 2.5rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--max-width); margin-inline: auto; }

.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  text-align: center;
}
.value-card h3 { margin-bottom: 0.5rem; font-size: 1.125rem; }
.value-card p { font-size: 0.9375rem; color: var(--color-text-muted); max-width: none; }

.license-callout {
  background: var(--color-muted);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.license-callout svg { width: 32px; height: 32px; color: var(--color-primary); flex-shrink: 0; }
.license-callout strong { display: block; font-size: 1rem; color: var(--color-text); }
.license-callout span { font-size: 0.875rem; color: var(--color-text-muted); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: var(--section-pad); overflow-x: hidden; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.25fr; gap: 4rem; max-width: var(--max-width); margin-inline: auto; }
.contact-inner > * { min-width: 0; }

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--color-text-muted); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}
.contact-detail svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-weight: 600; color: var(--color-text); }
.contact-detail span, .contact-detail a { color: var(--color-text-muted); }
.contact-detail a:hover { color: var(--color-primary); }

.contact-map-placeholder {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  height: 240px;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 0.875rem;
}

.contact-form-wrap {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h3 { color: #fff; margin-bottom: 0.375rem; font-size: 1.375rem; }
.contact-form-wrap > p { color: rgba(255,255,255,.75); font-size: 0.9rem; margin-bottom: 2rem; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(150deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}
.thankyou-content { max-width: 520px; }
.thankyou-icon { width: 72px; height: 72px; color: var(--color-primary-light); margin: 0 auto 1.5rem; }
.thankyou-content h1 { color: #fff; margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.thankyou-content p { color: rgba(255,255,255,.8); margin-bottom: 2rem; margin-inline: auto; }
.thankyou-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   404 PAGE
   ============================================================ */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--color-bg);
}
.notfound-content { max-width: 480px; }
.notfound-num { font-family: var(--font-heading); font-size: 7rem; font-weight: 900; color: var(--color-primary); line-height: 1; margin-bottom: 0.5rem; opacity: 0.15; }
.notfound-content h2 { margin-bottom: 0.75rem; }
.notfound-content p { color: var(--color-text-muted); margin-bottom: 2rem; margin-inline: auto; }

/* ============================================================
   CTA BAND (reusable)
   ============================================================ */
.cta-band {
  background: var(--color-primary);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,.78); margin-bottom: 2rem; margin-inline: auto; max-width: 52ch; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .area-inner,
  .about-story-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .service-block-inner { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block-inner { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }

  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta .phone-text { display: none; }

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

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

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

  .testimonials-grid {
    grid-template-columns: repeat(3, 85vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }
  .testimonial-card { scroll-snap-align: start; }

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

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

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

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

  .hero-divider { display: none; }
  .hero-micro-bar { flex-direction: column; gap: 0.375rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .cta-band-btns { flex-direction: column; align-items: stretch; }
  .cta-band-btns .btn { justify-content: center; }
}
