/* ============================================================
   G & G ASPHALT PAVING — Main Stylesheet
   Colors: Black | Asphalt Dark Gray | Gold/Yellow | Metallic Silver
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --black:         #0a0a0a;
  --asphalt-900:   #111112;
  --asphalt-800:   #1a1a1c;
  --asphalt-700:   #242426;
  --asphalt-600:   #2e2e31;
  --asphalt-500:   #3c3c40;
  --gold:          #f0a500;
  --gold-light:    #ffbf2e;
  --gold-dark:     #c07f00;
  --silver:        #b0b0b8;
  --silver-light:  #d4d4dc;
  --white:         #ffffff;
  --text-dim:      #888890;
  --border:        rgba(255,255,255,0.07);
  --border-gold:   rgba(240,165,0,0.28);
  --shadow:        0 8px 32px rgba(0,0,0,0.45);
  --shadow-gold:   0 8px 28px rgba(240,165,0,0.32);
  --radius:        6px;
  --transition:    all 0.3s cubic-bezier(0.25,0.8,0.25,1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--asphalt-900);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

section { padding: 90px 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1rem; }

p { color: var(--silver-light); line-height: 1.78; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title { color: var(--white); margin-bottom: 16px; }
.section-title span { color: var(--gold); }

.section-sub {
  color: var(--silver);
  max-width: 600px;
  margin-bottom: 48px;
  font-size: 1.02rem;
}

.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

.gold-line {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 28px;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-lg { padding: 17px 40px; font-size: 1rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, transparent 100%);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  background: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-light);
  padding: 8px 14px;
  border-radius: 4px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  border-radius: 1px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.8rem; letter-spacing: 0.06em; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 951;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* Mobile Full-screen Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.99);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.2s ease, opacity 0.4s ease, transform 0.4s ease;
}

.mobile-nav.open a {
  opacity: 1;
  transform: none;
}

.mobile-nav.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav .btn { font-size: 1rem; padding: 15px 36px; }
.mobile-nav-divider {
  width: 40px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

/* Mobile Sticky Call Bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 899;
  background: var(--gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--black);
}

/* ============================================================
   HERO — HOME PAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1920&q=85&fm=webp');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.3) saturate(0.7);
  transform: scale(1.06);
  transition: transform 10s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(10,10,10,0.92) 0%,
    rgba(15,15,15,0.72) 50%,
    rgba(10,10,10,0.88) 100%
  );
  z-index: 1;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--asphalt-900));
  z-index: 2;
}

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

.hero-logo {
  width: 110px;
  height: auto;
  margin-bottom: 36px;
  filter: drop-shadow(0 4px 24px rgba(240,165,0,0.35));
  animation: heroLogo 1s ease both;
  background: transparent;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-sub {
  font-size: 1.04rem;
  color: var(--silver-light);
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.78;
  animation: fadeUp 0.8s 0.6s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.8s ease both;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--asphalt-700);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.25s ease;
}

.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(240,165,0,0.05); }

.trust-icon {
  width: 38px;
  height: 38px;
  background: rgba(240,165,0,0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--silver-light);
  white-space: nowrap;
}

/* ============================================================
   SERVICES OVERVIEW (HOME)
   ============================================================ */
.services-overview { background: var(--asphalt-900); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: var(--radius);
}

.svc-card {
  background: var(--asphalt-800);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s ease;
}

.svc-card:hover { background: var(--asphalt-700); transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card:hover::before { width: 100%; }

.svc-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}

.svc-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 12px;
}

.svc-card p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.svc-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--asphalt-800); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: visible;
}

.why-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  filter: brightness(0.88);
}

.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 116px;
  height: 116px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  border: 4px solid var(--asphalt-800);
  z-index: 2;
}

.why-badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.why-badge-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3a2800;
  line-height: 1.3;
  margin-top: 3px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-point:hover {
  background: rgba(240,165,0,0.04);
  border-color: var(--border-gold);
}

.why-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(240,165,0,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
}

.why-text h4 {
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.why-text p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.65; }

/* ============================================================
   AREAS SERVED
   ============================================================ */
.areas {
  background: var(--asphalt-900);
  position: relative;
  overflow: hidden;
}

.areas::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,165,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  background: var(--asphalt-700);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-light);
  transition: var(--transition);
}

.area-tag:hover {
  background: rgba(240,165,0,0.1);
  border-color: var(--border-gold);
  color: var(--gold);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  background: var(--asphalt-800);
  overflow: hidden;
  padding: 100px 0;
}

.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1920&q=60&fm=webp');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 { margin-bottom: 20px; }
.cta-content p { margin-bottom: 40px; font-size: 1.04rem; max-width: 520px; margin-left: auto; margin-right: auto; }

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 52px;
  padding-bottom: 52px;
}

.footer-logo img {
  height: 68px;
  width: auto;
  margin-bottom: 20px;
  background: transparent;
}

.footer-about {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--silver-light);
}

.footer-contact-row .fi { color: var(--gold); font-size: 0.9rem; }

.footer-contact-row a:hover { color: var(--gold); }

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-areas-text {
  font-size: 0.855rem;
  color: var(--text-dim);
  line-height: 2;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }

/* ============================================================
   INNER PAGE HERO (Services, About, Contact)
   ============================================================ */
.inner-hero {
  position: relative;
  padding: 150px 0 72px;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1920&q=70&fm=webp');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.2) saturate(0.5);
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.75) 100%);
}

.inner-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-dim); }

.inner-hero h1 { color: var(--white); margin-bottom: 16px; }

.inner-hero p.sub { font-size: 1rem; color: var(--silver); max-width: 560px; }

/* ============================================================
   SERVICES PAGE — Full Service Cards
   ============================================================ */
.svc-full-section { background: var(--asphalt-900); }

.svc-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.svc-full-card {
  background: var(--asphalt-800);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  opacity: 1 !important;
  transform: none !important;
}

.svc-full-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border-color: var(--border-gold);
}

.sfc-header {
  background: linear-gradient(135deg, var(--asphalt-700) 0%, var(--asphalt-600) 100%);
  padding: 28px 28px 24px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
}

.sfc-icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  background: rgba(240,165,0,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sfc-header h3 { font-size: 1.05rem; color: var(--white); }

.sfc-body { padding: 28px; }
.sfc-body p { font-size: 0.875rem; color: var(--text-dim); margin-bottom: 20px; line-height: 1.72; }

.sfc-bullets { display: flex; flex-direction: column; gap: 8px; }

.sfc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.845rem;
  color: var(--silver);
  line-height: 1.5;
}

.sfc-bullets li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--asphalt-900); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  filter: brightness(0.85);
}

.about-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
}

.about-img-label p {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-text p { margin-bottom: 20px; }

.about-values { background: var(--asphalt-800); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--asphalt-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--border-gold);
  background: var(--asphalt-600);
  transform: translateY(-4px);
}

.value-icon { font-size: 2.4rem; margin-bottom: 16px; }
.value-card h4 { color: var(--white); margin-bottom: 10px; font-size: 0.92rem; }
.value-card p { font-size: 0.845rem; color: var(--text-dim); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--asphalt-900); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child { border-bottom: none; }

.ci-icon {
  width: 50px;
  height: 50px;
  background: rgba(240,165,0,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ci-text h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}

.ci-text p,
.ci-text a {
  font-size: 1.02rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}

.ci-text a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--asphalt-800);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
}

.form-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 32px;
}

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

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

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--asphalt-700);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  transition: border 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--asphalt-600);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.1);
}

.form-group select option { background: var(--asphalt-700); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroLogo {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Hard fallback — ensure cards ALWAYS show after 1.4s max */
.stagger > *:nth-child(1)  { animation: staggerReveal 0s 1.0s forwards; }
.stagger > *:nth-child(2)  { animation: staggerReveal 0s 1.1s forwards; }
.stagger > *:nth-child(3)  { animation: staggerReveal 0s 1.2s forwards; }
.stagger > *:nth-child(4)  { animation: staggerReveal 0s 1.3s forwards; }
.stagger > *:nth-child(5)  { animation: staggerReveal 0s 1.4s forwards; }
.stagger > *:nth-child(6)  { animation: staggerReveal 0s 1.5s forwards; }
.stagger > *:nth-child(7)  { animation: staggerReveal 0s 1.6s forwards; }
.stagger > *:nth-child(8)  { animation: staggerReveal 0s 1.7s forwards; }
.stagger > *:nth-child(9)  { animation: staggerReveal 0s 1.8s forwards; }
.stagger > *:nth-child(10) { animation: staggerReveal 0s 1.9s forwards; }
.stagger > *:nth-child(11) { animation: staggerReveal 0s 2.0s forwards; }
.stagger > *:nth-child(12) { animation: staggerReveal 0s 2.1s forwards; }
.stagger > *:nth-child(13) { animation: staggerReveal 0s 2.2s forwards; }
.stagger > *:nth-child(14) { animation: staggerReveal 0s 2.3s forwards; }

@keyframes staggerReveal {
  to { opacity: 1; transform: none; }
}

.stagger.visible > *:nth-child(1)  { opacity:1;transform:none;transition-delay:0.05s;animation:none; }
.stagger.visible > *:nth-child(2)  { opacity:1;transform:none;transition-delay:0.1s;animation:none; }
.stagger.visible > *:nth-child(3)  { opacity:1;transform:none;transition-delay:0.15s;animation:none; }
.stagger.visible > *:nth-child(4)  { opacity:1;transform:none;transition-delay:0.2s;animation:none; }
.stagger.visible > *:nth-child(5)  { opacity:1;transform:none;transition-delay:0.25s;animation:none; }
.stagger.visible > *:nth-child(6)  { opacity:1;transform:none;transition-delay:0.3s;animation:none; }
.stagger.visible > *:nth-child(7)  { opacity:1;transform:none;transition-delay:0.35s;animation:none; }
.stagger.visible > *:nth-child(8)  { opacity:1;transform:none;transition-delay:0.4s;animation:none; }
.stagger.visible > *:nth-child(9)  { opacity:1;transform:none;transition-delay:0.45s;animation:none; }
.stagger.visible > *:nth-child(10) { opacity:1;transform:none;transition-delay:0.5s;animation:none; }
.stagger.visible > *:nth-child(11) { opacity:1;transform:none;transition-delay:0.55s;animation:none; }
.stagger.visible > *:nth-child(12) { opacity:1;transform:none;transition-delay:0.6s;animation:none; }
.stagger.visible > *:nth-child(13) { opacity:1;transform:none;transition-delay:0.65s;animation:none; }
.stagger.visible > *:nth-child(14) { opacity:1;transform:none;transition-delay:0.7s;animation:none; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .why-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-img-wrap img,
  .about-img-wrap img { height: 380px; }

  .why-badge { right: 0; bottom: -12px; width: 98px; height: 98px; }
  .why-badge-num { font-size: 1.6rem; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta { display: none; }

  .nav-toggle { display: flex; }

  .mobile-call-bar { display: block; }

  body { padding-bottom: 56px; }

  section { padding: 64px 0; }

  .hero {
    padding-top: 80px;
    padding-bottom: 80px;
    align-items: flex-end;
  }

  .hero-logo { width: 88px; margin-bottom: 24px; }

  .hero-sub { font-size: 0.95rem; margin-bottom: 32px; }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
  }

  .trust-item:last-child { border-bottom: none; }

  .svc-grid { grid-template-columns: 1fr; gap: 0; }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .svc-full-grid { grid-template-columns: 1fr; }

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

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

  .contact-form-wrap { padding: 28px 20px; }

  .inner-hero { padding: 130px 0 56px; }

  .about-img-wrap img { height: 300px; }
}

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

  h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

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

  .areas-tags { gap: 8px; }

  .area-tag { padding: 8px 14px; font-size: 0.76rem; }

  .why-badge { width: 84px; height: 84px; }
  .why-badge-num { font-size: 1.4rem; }

  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-rating-summary { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ============================================================
   GOOGLE REVIEWS SECTION
   ============================================================ */

.reviews-section {
  padding: 90px 0 80px;
  background: var(--asphalt-900);
}

.reviews-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.reviews-big-score {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.reviews-stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews-stars {
  font-size: 1.6rem;
  color: #FBBC05;
  letter-spacing: 2px;
}

.reviews-count {
  font-size: 0.82rem;
  color: var(--silver);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.google-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #fff;
  color: #333;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.google-badge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(var(--gold-rgb, 212,175,55), 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a07830);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 2px;
}

.review-stars {
  color: #FBBC05;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.review-google-icon {
  margin-left: auto;
  opacity: 0.7;
  flex-shrink: 0;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--silver);
  font-style: italic;
  margin: 0;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-rating-summary { flex-direction: column; gap: 16px; align-items: center; }
}

/* ============================================================
   TRUSTMARY STYLE REVIEWS WIDGET (DARK THEME)
   ============================================================ */

.tm-reviews-section {
  padding: 80px 0;
  background: var(--asphalt-900);
  font-family: 'Inter', Arial, sans-serif;
  color: #fff;
}

/* Tabs */
.tm-tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.tm-tab {
  background: none;
  border: none;
  color: #999;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0 0 12px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.tm-tab strong { 
  margin-left: 4px; 
  color: #ccc; 
}

.tm-tab:hover { color: #fff; }

.tm-tab.active {
  color: #fff;
}
.tm-tab.active strong { color: #fff; }

.tm-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold); /* Used gold for dark theme matching */
}

/* Header */
.tm-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.tm-header-left h2 {
  font-size: 2.2rem;
  margin: 0 0 10px;
  color: #fff;
  font-weight: 800;
}

.tm-score-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-score {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.tm-stars {
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.tm-based-on {
  font-size: 0.95rem;
  color: #aaa;
  font-weight: 500;
}

.tm-write-btn {
  background: var(--gold);
  color: #000;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  transition: opacity 0.3s ease;
}

.tm-write-btn:hover {
  opacity: 0.9;
}

/* Track & Cards */
.tm-track-wrap {
  width: 100%;
  overflow: hidden;
  margin: 0 -10px;
  padding-left: 10px;
  padding-right: 10px;
}

.tm-track {
  display: flex;
  gap: 20px;
  padding-top: 45px; /* Space for protruding avatars moved here to prevent clipping */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}

.tm-track::-webkit-scrollbar { display: none; }

.tm-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 250px;
  background: var(--asphalt-800);
  border-radius: 8px;
  padding: 40px 20px 20px;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.tm-avatar {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--asphalt-900); /* Match section background */
  overflow: hidden;
  background: var(--asphalt-800);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tm-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tm-letter-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
}

.tm-name {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 12px;
  font-weight: 700;
  text-align: center;
}

.tm-text {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tm-read-more {
  display: inline-block;
  font-size: 0.85rem;
  color: #999;
  text-decoration: underline;
  margin-top: 6px;
  margin-bottom: 20px;
}
.tm-read-more:hover { color: #fff; }

.tm-footer {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.tm-card-stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.tm-time {
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
  margin-left: auto;
  margin-right: 8px;
}

.tm-g-logo {
  width: 18px;
  height: 18px;
}

/* Navigation */
.tm-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.tm-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #000;
  background: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  padding: 0;
}

.tm-nav-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .tm-card { flex: 0 0 calc(25% - 15px); }
}

@media (max-width: 900px) {
  .tm-card { flex: 0 0 calc(33.333% - 13px); }
}

@media (max-width: 768px) {
  .tm-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .tm-card { flex: 0 0 calc(50% - 10px); }
  .tm-tabs { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 500px) {
  .tm-card { flex: 0 0 100%; min-width: 100%; }
}

