/* Copied from styles.css of the static site */
/* Hamburger button */
.hamburger { display: none; position: relative; width: 40px; height: 26px; background: none; border: none; padding: 0; cursor: pointer; }
.hamburger span,
.hamburger::before,
.hamburger::after { content: ''; position: absolute; left: 0; height: 3px; background: #1a1a1a; border-radius: 2px; width: 100%; }
.hamburger span { top: 50%; transform: translateY(-50%); }
.hamburger::before { top: 0; }
.hamburger::after { bottom: 0; }

/* Mobile slide-out menu */
.mobile-menu { display: none; position: absolute; top: 92px; left: 0; right: 0; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.08); box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 999; }
.mobile-menu-list { list-style: none; margin: 0; padding: 12px 16px; display: grid; gap: 10px; }
.mobile-menu-list a { text-decoration: none; font-weight: 700; color: #1a1a1a; }
.mobile-menu .mobile-group { margin-top: 6px; font-weight: 800; color: #666; }
.mobile-socials { display: flex; gap: 10px; padding: 12px 16px 16px; border-top: 1px solid rgba(0,0,0,0.06); }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
figure { margin: 0; padding: 0; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hero .container { max-width: none; padding: 0; }

.site-header { position: relative; background: #f2f2f2; border-bottom: 1px solid rgba(0,0,0,0.08); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 92px; }

.header-right-group {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* sit close to logo */
  gap: 32px;
  justify-self: start; /* grid cell aligns near logo */
}

.header-social {
  position: absolute;
  top: 50%;
  right: 20px; /* align with container padding */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 92px; /* match header height for vertical centering */
}

.nav { display: flex; gap: 32px; justify-content: center; align-items: center; }
.nav-left { justify-content: flex-end; justify-self: end; }
.nav-right { justify-content: flex-start; }
.nav a { text-decoration: none; color: #1a1a1a; font-weight: 700; letter-spacing: 0.02em; font-size: 18px; }
.nav a:hover { color: #f09a10; }

/* Dropdown Menu */
.dropdown { position: relative; }
.dropdown-trigger { text-decoration: none; color: #1a1a1a; font-weight: 700; letter-spacing: 0.02em; cursor: pointer; font-size: 18px; }
.dropdown-trigger:hover { color: #f09a10; }
.dropdown-arrow { font-size: 12px; margin-left: 6px; transition: transform 0.3s ease; }
.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu { 
  position: absolute; 
  top: 100%; 
  left: 0; 
  background: #fff; 
  border: 1px solid #e0e0e0; 
  border-radius: 8px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
  list-style: none; 
  padding: 8px 0; 
  margin: 0; 
  min-width: 200px; 
  opacity: 0; 
  visibility: hidden; 
  transform: translateY(-10px); 
  transition: all 0.3s ease; 
  z-index: 1000; 
}
.dropdown:hover .dropdown-menu { 
  opacity: 1; 
  visibility: visible; 
  transform: translateY(0); 
}
.dropdown-menu li { margin: 0; }
.dropdown-menu a { 
  display: block; 
  padding: 12px 20px; 
  color: #333; 
  text-decoration: none; 
  font-size: 14px; 
  font-weight: 600; 
  transition: background-color 0.2s ease; 
}
.dropdown-menu a:hover { 
  background-color: #f5f5f5; 
  color: #f09a10; 
}

.brand { display: inline-flex; align-items: center; justify-content: center; }
.brand { padding: 0 80px; }
.brand-logo { height: 60px; display: block; }

.button, .button-primary {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 24px; border-radius: 12px; border: none;
  text-decoration: none; font-weight: 700; cursor: pointer;
}
.button { background: #e6e6e6; color: #111; }
.button-primary { background: #f09a10; color: #111; font-size: 18px; }

/* Hero */
.hero { padding: 18px 0 36px; }
.hero-media { position: relative; border-radius: 12px; overflow: hidden; margin: 0 20px 36px 20px; height: 76vh; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-img.is-visible { opacity: 1; }
.hero-banner {
  position: relative;
  background: #565656; color: #fff; border-radius: 18px; padding: 48px 60px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
  box-shadow: 0 2px 0 rgba(0,0,0,0.25);
  margin: -150px auto 0 auto;
  max-width: 1160px;
  z-index: 10;
}
.hero-banner h1 { margin: 0; font-size: 44px; font-weight: 800; line-height: 1.15; max-width: 700px; }
.hero-banner .button-primary { height: 85px; padding: 0 50px; font-size: 22px; white-space: nowrap; }

/* Feature */
.dark { background: #333; color: #fff; }
.feature { 
  padding: 73px 0; 
  background-image: url('2ndsection.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.feature-media { aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; background: transparent !important; padding: 0; margin: 0; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; background: transparent; padding: 0; margin: 0; }
.feature-copy h2 { margin: 0 0 12px; font-size: 48px; }
.feature-copy p { margin: 0 0 18px; font-size: 20px; line-height: 1.5; }

/* Services */
.services { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 24px; padding-bottom: 40px; }
.section-header h2 { margin: 0; font-size: 48px; }
.section-header p { margin: 20px 0 0; font-size: 20px; color: #444; }
.services-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; align-items: stretch; }
.services-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-rows: repeat(4, 1fr); gap: 15px; height: 100%; align-self: stretch; }
.services-list li { background: #efefef; padding: 22px; border-radius: 15px; font-weight: 700; font-size: 20px; display: flex; align-items: center; cursor: pointer; transition: background .2s ease, color .2s ease; overflow: hidden; word-break: break-word; gap: 15px; }
.service-icon { width: 64px; height: 64px; flex-shrink: 0; }
.services-list li span { flex: 1; }
.services-list li:hover, .services-list li.active { background: #F39200; color: #111; }
.service-card {
  background: #efefef;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 25px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  height: 100%;
  align-items: stretch;
  overflow: hidden; /* clip overflowing media */
}
.service-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; background: #f8f8f8; border-radius: 8px; aspect-ratio: 4/3; }
.service-img.zoom { transform: none !important; }
.service-copy { padding: 8px 8px 8px 0; display: flex; flex-direction: column; gap: 18px; justify-content: space-between; overflow: hidden; }
.service-copy h3 { margin: 0; font-size: 28px; line-height: 1.2; }
.service-copy p { margin: 0; color: #4a4a4a; font-size: 18px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; text-align: left; align-self: center; padding-top: 20px; }
.service-copy .button-primary { width: 100%; padding: 20px 28px; font-size: 22px; border-radius: 12px; }

/* Stats */
.stats { padding: 80px 0; background: #4b4b4b; color: #fff; }
.stats-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 32px; }
.stats-number { font-size: 136px; font-weight: 800; color: #f09a10; line-height: 1; }
.stats-text { font-size: 22px; }

/* Testimonial bubbles on the right */
.testimonial-viewport { height: 360px; overflow: hidden; position: relative; }
/* soft fade top/bottom */
.testimonial-viewport { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1) 28px, rgba(0,0,0,1) calc(100% - 28px), rgba(0,0,0,0)); mask-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1) 28px, rgba(0,0,0,1) calc(100% - 28px), rgba(0,0,0,0)); }
.testimonial-track { display: grid; gap: 18px; will-change: transform; animation: scroll var(--scroll-duration, 20s) linear infinite; }
.testimonial-track:hover { animation-play-state: paused; }
.testimonial-track:focus-within { animation-play-state: paused; }
.testimonial-track { --scroll-distance: 0px; }
@keyframes scroll { from { transform: translateY(0); } to { transform: translateY(calc(-1 * var(--scroll-distance))); } }
.testimonial { background: #2f2f2f; color: #fff; padding: 18px 22px; border-radius: 12px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }

.testimonial a {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}

.testimonial a:hover {
  opacity: 0.8;
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(135deg, #f09a10 0%, #e0890f 100%);
  padding: 80px 0;
  color: #000;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.contact-hero-content p {
  font-size: 24px;
  margin: 0;
  opacity: 0.8;
}

.contact-info-section {
  padding: 80px 0;
  background: #fff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-details h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 0 0 40px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #f09a10;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.contact-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}

.contact-text p {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.contact-text a {
  color: #f09a10;
  text-decoration: none;
  font-weight: 600;
}

.contact-text a:hover {
  text-decoration: underline;
}

.business-hours {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 12px;
  margin-top: 32px;
}

.business-hours h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px 0;
}

.business-hours p {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Contact */
.contact { padding: 56px 0; margin-bottom: 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.contact-media img { width: 100%; height: 100%; border-radius: 12px; display: block; object-fit: cover; }
.contact-media { 
  align-self: stretch; 
  padding: 0; 
  margin: 0;
  display: block;
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; }
.contact-form input,
.contact-form textarea { 
  background: #e9e9e9;
  border: none;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px #d0d0d0;
  padding: 16px 14px;
  font: inherit;
  font-size: 18px;
}
.contact-form input { height: 56px; }
.contact-form textarea { grid-column: 1 / -1; min-height: 56px; resize: vertical; }
.contact-form .field-wide { grid-column: 1 / -1; }
.field { display: grid; gap: 8px; }
.field-title { font-weight: 700; }
.form-actions { grid-column: 1 / -1; display: flex; gap: 16px; align-items: center; width: 100%; }
.form-actions .button, .form-actions .button-primary { flex: 1 1 0; }
.file-upload-label { cursor: pointer; display: flex; align-items: center; justify-content: center; }

.contact-header { text-align: center; margin-bottom: 22px; padding: 40px 0; }
.contact-header h2 { margin: 0; font-size: 56px; }
.contact-header p { margin: 6px 0 0; font-size: 24px; color: #444; }

/* Custom select to match provided reference */
.select { position: relative; grid-column: auto; }
.select-trigger {
  width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: center;
  background: #e9e9e9; border: none; border-radius: 12px; padding: 16px 14px; font-weight: 700;
  box-shadow: inset 0 0 0 1px #d0d0d0; height: 56px; font-size: 18px;
}
.select-label { font-weight: 700; color: #222; display: none; }
.select-value { justify-self: start; }
.select-caret { justify-self: end; }
.select-menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); background: #e9e9e9; border-radius: 10px; padding: 14px 0;
  display: none; list-style: none; margin: 0; border: 1px solid #d0d0d0;
}
.select-menu li { padding: 12px 18px; text-align: center; font-weight: 700; cursor: pointer; }
.select-menu li.selected, .select-menu li:hover { background: #F39200; color: #111; }
.select.open .select-menu { display: block; }

/* Footer */
.site-footer { 
  padding: 120px 0; 
  background: url('footerBanner.jpg') center/cover no-repeat;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-inner { display: flex; justify-content: flex-end; }
.footer-info { text-align: right; }
.footer-brand { font-weight: 800; font-size: 32px; }
.footer-list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 12px; font-size: 22px; }
.footer-list li { display: inline-flex; align-items: center; justify-content: flex-end; gap: 12px; }
.footer-text { white-space: nowrap; }
.footer-icon { width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; color: inherit; }
.footer-icon svg { width: 20px; height: 20px; fill: currentColor; }
.footer-list .icon { width: 18px; height: 18px; display: inline-flex; }
.footer-list .icon svg { width: 18px; height: 18px; fill: currentColor; }

/* Sticky Phone Contact */
.sticky-phone {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
}

.phone-icon {
  width: 56px;
  height: 70px;
  background: #f09a10;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 30% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(240, 154, 16, 0.3);
  padding-left: 12px;
  padding-top: 8px;
  transition: all 0.3s ease;
  transform-origin: right center;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.phone-icon svg {
  width: 31px;
  height: 31px;
  fill: #000;
  transition: all 0.3s ease;
}

.phone-number {
  font-weight: 700;
  font-size: 22px;
  color: #000;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-left: 12px;
  position: absolute;
  left: 80px;
}

.sticky-phone:hover .phone-icon {
  width: 280px;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
  padding-left: 40px;
  justify-content: flex-start;
}

.sticky-phone:hover .phone-icon svg {
  width: 31px;
  height: 31px;
}

.sticky-phone:hover .phone-number {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Page Responsive */
@media (max-width: 840px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-hero-content h1 {
    font-size: 36px;
  }
  
  .contact-hero-content p {
    font-size: 20px;
  }
  
  .contact-details h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 60px 0;
  }
  
  .contact-info-section {
    padding: 60px 0;
  }
  
  .contact-hero-content h1 {
    font-size: 28px;
  }
  
  .contact-hero-content p {
    font-size: 18px;
  }
}

/* Social Links */
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-link {
  width: 36px;
  height: 36px;
  background: #f09a10;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #e0890f;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* RESPONSIVE: keep current (≈1080p) as base; scale for other sizes */
@media (min-width: 2560px) { /* 2K/4K large desktops */
  .container { max-width: 1600px; }
  .header-inner { height: 110px; }
  .brand-logo { height: 72px; }
  .nav { gap: 40px; }
  .nav a, .dropdown-trigger { font-size: 20px; }
  .hero-media { height: 77.52vh; }
  .hero-img { height: 84vh; }
  .hero-banner { padding: 56px 72px; max-width: 1400px; }
  .hero-banner h1 { font-size: 56px; max-width: 900px; }
  .hero-banner .button-primary { height: 96px; font-size: 24px; }
  .feature-grid { gap: 36px; }
  .feature-copy h2, .section-header h2 { font-size: 56px; }
  .feature-copy p, .section-header p { font-size: 22px; }
  .services-grid { gap: 28px; }
  .services-list { height: 100%; }
  .service-card { height: 100%; }
  .stats-number { font-size: 200px; }
}

@media (min-width: 3840px) { /* 4K */
  .container { max-width: 1920px; }
  .hero-img { height: 68vh; }
  .hero-banner h1 { font-size: 64px; }
}

@media (max-width: 1200px) { /* laptops */
  .container { max-width: 1024px; }
  .header-inner { gap: 28px; }
  .services-grid { grid-template-columns: 1fr 1.4fr; }
  .services-list { height: 100%; }
  .service-card { height: 100%; }
  /* Show hamburger on left; keep logo center; hide right nav; socials remain */
  .nav-left { position: relative; width: 40px; height: 26px; justify-content: flex-start; }
  .nav-left a { display: none; }
  .hamburger { display: inline-block; width: 40px; height: 26px; }
  .nav-right { display: none; }
  /* Hide external socials below this width; move them to mobile menu */
  .site-header .header-social { display: none !important; }
}

@media (max-width: 992px) { /* tablets landscape */
  .header-inner { grid-template-columns: auto auto auto; column-gap: 20px; }
  .brand-logo { height: 52px; }
  .nav a, .dropdown-trigger { font-size: 16px; }
  .hero-banner { padding: 36px 40px; margin-top: -120px; gap: 20px; }
  .hero-banner h1 { font-size: 36px; max-width: 520px; }
  .hero-banner .button-primary { height: 72px; font-size: 18px; padding: 0 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; height: auto; }
  .services-list { height: auto; grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr; gap: 24px; }
  /* Contact (5th section) - hide van image, single column form */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-media { display: none; }
  .contact-form { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }

  /* Tablet: convert navs to hamburger on the left, hide right nav; keep logo centered */
  .nav-left { position: relative; width: 36px; height: 24px; justify-content: flex-start; }
  .nav-left a { display: none; }
  .hamburger { display: inline-block; width: 36px; height: 24px; }
  .nav-right { display: none; }
  /* Socials smaller on tablet */
  .header-social .social-link { width: 32px; height: 32px; }
  .header-social .social-link svg { width: 18px; height: 18px; }
}

@media (max-width: 840px) { /* tablets portrait & large phones */
  .container { padding: 0 16px; }
  .header-inner { height: 80px; }
  .brand-logo { height: 46px; }
  .nav { gap: 18px; }
  .nav a, .dropdown-trigger { font-size: 15px; }
  /* ensure hamburger dimensions on smaller screens */
  .nav-left { width: 32px; height: 22px; }
  .hamburger { width: 32px; height: 22px; }
  .header-social .social-link { width: 28px; height: 28px; }
  .header-social .social-link svg { width: 16px; height: 16px; }
  .hero { padding: 12px 0 24px; }
  .hero-media { margin: 0 12px 20px 12px; }
  .hero-img { height: 56vh; border-radius: 10px; }
  .hero-banner { padding: 24px; gap: 16px; margin-top: -90px; }
  .hero-banner h1 { font-size: 28px; }
  .feature-copy h2, .section-header h2 { font-size: 34px; }
  .feature-copy p, .section-header p { font-size: 18px; }
  .services { padding: 60px 0; }
  .service-copy .button-primary { font-size: 18px; padding: 16px 20px; }
  .sticky-phone { right: 0; bottom: 0; }
  /* Prevent testimonial overflow on the right edge */
  .testimonial-viewport { padding-right: 12px; box-sizing: border-box; }
  .testimonial-track { padding-right: 4px; }
  .testimonial { width: 100%; }
  /* Ensure contact form stacks cleanly on mobile */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-media { display: none; }
  .contact-form { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; gap: 12px; }
  .form-actions .button,
  .form-actions .button-primary,
  .file-upload-label {
    width: 100%;
    min-height: 80px !important;
    height: auto !important;
    font-size: 22px !important;
    padding: 0 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
    border-radius: 14px;
  }
  .form-actions .button,
  .form-actions .button-primary,
  .file-upload-label {
    width: 100%;
    min-height: 80px !important;
    height: auto !important;
    font-size: 22px !important;
    padding: 0 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
    border-radius: 14px;
  }
  /* Make sure footer is not crowded and always visible */
  .contact { margin-bottom: 120px; }
  .site-footer { padding: 100px 0; }
  .footer-inner { justify-content: center; }
  .footer-info { text-align: center; }
  .footer-list li { justify-content: center; }
  .footer-text { white-space: normal; }
}

@media (max-width: 480px) { /* phones */
  .header-inner { column-gap: 12px; }
  .brand-logo { height: 42px; }
  .nav { gap: 12px; }
  .nav a, .dropdown-trigger { font-size: 14px; }
  /* Make hero image much taller and cropped on sides */
  .hero-media { margin: 0 12px 12px; border-radius: 12px; overflow: hidden; height: 69vh; position: relative; }
  .hero-img { width: 100%; height: 69vh; object-fit: cover; object-position: center; }
  /* Make banner overlap hero image at bottom */
  .hero-banner {
    position: absolute;
    bottom: 10%;
    left: 12px;
    right: 12px;
    width: auto;
    padding: 16px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-banner h1 { font-size: clamp(22px, 6vw, 30px); line-height: 1.2; margin: 0; overflow-wrap: anywhere; hyphens: auto; }
  .hero-banner .button-primary { height: 60px; font-size: 16px; padding: 0 16px; width: 100%; white-space: normal; }
  .hero { padding-bottom: 90px; }
  .services-list { grid-template-columns: 1fr; }
  .service-icon { width: 48px; height: 48px; }
  .form-actions .button,
  .form-actions .button-primary,
  .file-upload-label {
    min-height: 80px !important;
    height: auto !important;
    font-size: 20px !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
    border-radius: 14px;
  }
  /* Footer wrapping and centering on phones */
  .footer-inner { justify-content: center; }
  .footer-info { text-align: center; }
  .footer-list { font-size: 18px; }
  .footer-list li { justify-content: center; }
  .footer-text { white-space: normal; }
  /* Smaller socials on mobile */
  .header-social .social-link { width: 24px; height: 24px; }
  .header-social .social-link svg { width: 14px; height: 14px; }
}


