/* ============================================================
   PRO EXCAVATING & UTILITIES — Main Stylesheet
   Brand: Black (#0a0a0a), Yellow (#F5C218), White (#ffffff)
   Fonts: Oswald (headings) + Open Sans (body)
   ============================================================ */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-card:   #1a1a1a;
  --yellow:      #F5C218;
  --yellow-dark: #d9aa10;
  --white:       #ffffff;
  --gray-light:  #f5f5f5;
  --gray-text:   #888888;
  --border:      rgba(255, 255, 255, 0.07);

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --ease: all 0.3s ease;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --radius: 4px;
}

/* ===== ACCESSIBILITY / SEO ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.text-yellow { color: var(--yellow); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray-text);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 194, 24, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 42px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }


/* ======================================================
   NAVBAR
   ====================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

/* ── Nav layout: left | CENTER LOGO | right ── */
.nav-container {
  width: 100%;
  padding: 0 36px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Center logo — absolutely centered regardless of link widths */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  line-height: 0;
}
.nav-logo .logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.nav-logo:hover .logo-img { transform: scale(1.04); }

/* Left nav links */
.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

/* Right group */
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-right-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

/* Shared link styles */
.nav-left a,
.nav-right-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-left a:hover,
.nav-right-links a:hover,
.nav-left a.active,
.nav-right-links a.active { color: var(--yellow); }

/* Social icons */
.nav-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}
.nav-social a:hover { color: var(--yellow); }

/* Nav CTA button — white outlined */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
  border-radius: var(--radius);
  transition: var(--ease);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ======================================================
   HERO  — Hugo Builders style: centered logo + single CTA
   ====================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 88px; /* offset for fixed navbar so logo is never hidden behind it */
}

/* Background video — image shows if iframe is blocked */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Subtle dark vignette — lighter than before so video shows */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Centered content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 0 24px;
  width: 100%;
}

/* Big logo in the center of the hero */
.hero-logo {
  width: min(400px, 60vw);
  max-height: 42vh; /* never tall enough to crowd out the scroll + button */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
}

/* Single outlined CTA — matches Hugo Builders style */
.btn-hero-cta {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.75);
  padding: 17px 52px;
  border-radius: var(--radius);
  transition: var(--ease);
}
.btn-hero-cta:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 194, 24, 0.4);
}

/* Scroll label + chevron — sits between logo and CTA button */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.scroll-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.65);
}
.scroll-chevron {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  animation: chevronBounce 1.6s ease-in-out infinite;
}
@keyframes chevronBounce {
  0%, 100% { transform: translateY(0); opacity: 0.65; }
  50% { transform: translateY(6px); opacity: 1; }
}


/* ======================================================
   INFO BAR
   ====================================================== */
.info-bar { background: var(--yellow); }

.info-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 22px 16px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--black);
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.info-item:last-child { border-right: none; }
.info-item i { font-size: 1.05rem; flex-shrink: 0; }


/* ======================================================
   SERVICES
   ====================================================== */
.services-section {
  background: var(--dark);
  padding: 110px 0;
}

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

.service-card {
  background: var(--dark-card);
  padding: 42px 34px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--dark-card);
  border-radius: var(--radius);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -3px; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(245, 194, 24, 0.15);
}

.service-icon {
  width: 58px; height: 58px;
  background: rgba(245, 194, 24, 0.08);
  border: 1px solid rgba(245, 194, 24, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--yellow);
  margin-bottom: 22px;
  transition: var(--ease);
}
.service-card:hover .service-icon {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--yellow);
  transition: var(--ease);
}
.service-link:hover { gap: 10px; }


/* ======================================================
   WHY CHOOSE US / ABOUT
   ====================================================== */
.why-section {
  background: var(--black);
  padding: 110px 0;
}

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

/* Image side */
.why-image-wrap { position: relative; }

.image-frame { position: relative; }
.image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.image-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--yellow);
  color: var(--black);
  padding: 26px 30px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(245, 194, 24, 0.4);
}
.badge-number {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.badge-plus { font-size: 2rem; }
.badge-text {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  opacity: 0.75;
}

/* Content side */
.why-content .section-title { text-align: left; }
.why-desc {
  color: var(--gray-text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.why-list {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
}
.why-list li:first-child { border-top: 1px solid var(--border); }
.why-list li i { color: var(--yellow); font-size: 1rem; flex-shrink: 0; }


/* ======================================================
   STATS
   ====================================================== */
.stats-section {
  background: var(--yellow);
  padding: 88px 0;
}

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

.stat-item {
  padding: 0 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 55%;
  background: rgba(0, 0, 0, 0.14);
}

.stat-top {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
  padding-bottom: 3px;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
}


/* ======================================================
   GALLERY
   ====================================================== */
.gallery-section {
  background: var(--dark);
  padding: 110px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 14px;
}
.gallery-tall {
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--dark-card);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.35s ease;
}
.gallery-overlay span {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 16px;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay { background: rgba(0, 0, 0, 0.42); }
.gallery-item:hover .gallery-overlay span { opacity: 1; transform: translateY(0); }


/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testimonials-section {
  background: var(--black);
  padding: 110px 0;
}

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

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
  position: relative;
  transition: var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 22px;
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.15;
}

.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stars i { color: var(--yellow); font-size: 0.88rem; }

.testimonial-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 26px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-info {
  display: flex;
  flex-direction: column;
}
.reviewer-info strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
}
.reviewer-info span { font-size: 0.8rem; color: var(--gray-text); }


/* ======================================================
   CTA BANNER
   ====================================================== */
.cta-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.65) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }


/* ======================================================
   CONTACT
   ====================================================== */
.contact-section {
  background: var(--dark);
  padding: 110px 0;
}

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

.contact-info .section-title { text-align: left; }
.contact-info > p {
  color: var(--gray-text);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.detail-icon {
  width: 42px; height: 42px;
  background: rgba(245, 194, 24, 0.08);
  border: 1px solid rgba(245, 194, 24, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-detail div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-detail strong {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  color: var(--gray-text);
  transition: var(--ease);
}
.contact-detail a:hover { color: var(--yellow); }

.contact-logo { margin-top: 36px; }
.contact-logo img {
  height: 130px;
  width: auto;
  object-fit: contain;
}

/* Form */
.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.32); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  background: rgba(245, 194, 24, 0.04);
}
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }


/* ======================================================
   FOOTER
   ====================================================== */
.footer { background: var(--black); }

.footer-top {
  padding: 88px 0 52px;
  border-bottom: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.footer-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 270px;
}

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  font-size: 0.9rem;
  transition: var(--ease);
}
.social-links a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--yellow);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--gray-text);
  font-size: 0.9rem;
  transition: var(--ease);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--yellow); padding-left: 5px; }

.footer-contact-col { }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--yellow);
  font-size: 0.88rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a,
.footer-contact-item span {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: var(--ease);
}
.footer-contact-item a:hover { color: var(--yellow); }
.footer-cta-btn { margin-top: 20px; padding: 12px 26px; }

/* Footer bottom */
.footer-bottom { padding: 22px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.3); font-size: 0.82rem; }


/* ======================================================
   SCROLL ANIMATIONS
   ====================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ======================================================
   RESPONSIVE — TABLET (≤1024px)
   ====================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}


/* ======================================================
   RESPONSIVE — MOBILE (≤768px)
   ====================================================== */
@media (max-width: 768px) {
  /* Nav */
  .nav-left,
  .nav-right-group { display: none; }
  .hamburger { display: flex; }

  /* Mobile menu drawer */
  .nav-left {
    flex-direction: column;
    position: absolute;
    top: 88px;
    left: 0; right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 28px 36px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    z-index: 800;
  }
  .nav-left.open { display: flex; }

  /* Center logo stays visible on mobile */
  .nav-logo { position: static; transform: none; }
  .nav-logo .logo-img { height: 60px; }

  /* Info bar */
  .info-container { grid-template-columns: repeat(2, 1fr); }
  .info-item:nth-child(2) { border-right: none; }
  .info-item:nth-child(3) { border-right: 1px solid rgba(0,0,0,0.12); }

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

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-image-wrap { order: -1; }
  .image-frame img { height: 360px; }
  .image-badge { right: 0; bottom: -20px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item:nth-child(1)::after,
  .stat-item:nth-child(3)::after {
    display: block;
    right: 0; height: 60%;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gallery-tall { grid-row: span 1; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-content { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
}


/* ======================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ====================================================== */
@media (max-width: 480px) {
  .info-container { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item img { height: 240px; }
}
