h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b1c2c;
  margin-bottom: 12px;
}

i {
  color: #f26c00;
}

.btn {
  background: #f26c00;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  border: none;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  background: #d75a00;
}

.btn.alt-ghost {
  background: transparent;
  color: #0b1c2c;
  border: 1px solid #d8d8d8;
}

.btn.alt-ghost:hover {
  background: #fff4ea;
  border-color: #f26c00;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(242, 108, 0, 0.35);
  outline-offset: 3px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
  transition: filter 0.3s ease;
  margin-top: -80px;
}

.map-wrapper.clicked iframe {
  pointer-events: auto;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #0b1c2c;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: #0b1c2c;
}

p {
  font-weight: 400;
}

/* Navbar */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  height: 60px;
  display: block;
}

.nav nav {
  display: flex;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: #0b1c2c;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 16px;
  letter-spacing: 0.5px;
  position: relative;
}

.nav a:hover {
  color: #f26c00;
}

.nav-links a.active {
  color: #f26c00;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: #f26c00;
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url("../images/hero-truck.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  height: 100dvh;
  padding-top: 100px;
  overflow: hidden;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px 60px;
  text-align: center;
}

.hero-top {
  margin-top: 40px;
}

.hero-top h1 {
  font-size: 3rem;
  color: #fff;
}

.hero-bottom p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: 0.8px;
}

.hero-subtext {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  margin-bottom: 25px;
}

/* Services Section */
.services {
  background: #fff;
  padding: 100px 20px 80px;
  box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.04);
  border-radius: 0 0 60px 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-title {
  position: relative;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1c2c;
  text-transform: uppercase;
  z-index: 2;
}

.section-title-main,
.section-title-sub {
  display: block;
}

.section-title-sub {
  margin-top: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, #f26c00, #ff8800);
}

.section-subtext {
  position: relative;
  font-size: 1rem;
  max-width: 680px;
  margin: 12px auto 0;
  color: #666;
  line-height: 1.6;
  z-index: 2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.service-box {
  position: relative;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-box:hover img {
  transform: scale(1.05);
}

.service-box h3 {
  font-size: 1.2rem;
  color: #f26c00;
  margin: 16px 0 8px;
  padding: 0 20px;
  font-weight: 700;
  text-align: center;
}

.service-box p {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  text-align: left;
}
.service-box:hover .service-overlay {
  background: rgba(0, 0, 0, 0.75);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  transition: background 0.3s ease;
  z-index: 2;
}

.service-overlay h3 {
  color: white;
  margin-bottom: 4px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.service-overlay p {
  color: #f0f0f0;
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.4;
  margin: 0;
  text-align: center;
  transition: color 0.3s ease;
}

.service-box:hover .service-overlay h3 {
  color: #f26c00; /* your orange */
}

.centered-btn {
  margin-top: 40px;
}

.map-area-full {
  padding: 80px 0 40px;
  background: #f8f8f8;
  text-align: center;
}

.map-area-full h2 {
  font-size: 2rem;
  color: #0b1c2c;
  margin-bottom: 20px;
}

.map-area-full .map-wrapper {
  width: 100%;
  height: 650px;
  /* ⬆️ increased from 300 */
  overflow: hidden;
  position: relative;
}

.map-area-full iframe {
  width: 100%;
  height: 800px;
  border: 0;
  margin-top: -80px;
  /* adjust as needed for perfect centering */
  display: block;
}

.map-wrapper iframe {
  pointer-events: none;
  transition: filter 0.3s ease;
}

.map-wrapper.clicked iframe {
  pointer-events: auto;
}

.map-frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border: 2px solid #eee;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.map-frame:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #f26c00;
}

.section-heading-service-area {
  text-align: center;
  background: linear-gradient(to right, #fff, #f8f8f8);
  border-bottom: 1px solid #eee;
  padding: 20px;
}

.section-heading-service-area h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1c2c;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.section-heading-service-area h2 i {
  font-size: 1.6rem;
  color: #f26c00;
}

.section-heading-service-area .section-subtext {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.service-area-text {
  padding: 40px 20px 0;
}

.service-area-text ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.service-area-text li {
  font-weight: 600;
  color: #0b1c2c;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-area-note-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #fff7f1;
  border-top: 1px solid #f0e0d6;
  border-bottom: 1px solid #f0e0d6;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  text-align: center;
  flex-wrap: wrap;
}

.service-area-note-bar i {
  color: #f26c00;
  font-size: 1.1rem;
}

.service-area-note-bar a {
  color: #f26c00;
  font-weight: 600;
  margin-left: 6px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.service-area-note-bar a:hover {
  color: #d75a00;
}

/* Why Choose Us */
.why-choose {
  background: url("/images/bg-why-choose.webp") no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  /* dark overlay */
  z-index: 1;
}

.why-choose h2,
.why-choose .reasons {
  position: relative;
  z-index: 2;
  color: white;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.reason h3 {
  color: white;
}

.reason strong {
  color: white;
}

.reason {
  background: rgba(255, 255, 255, 0.1);
  /* translucent box */
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(3px);
  z-index: 2;
}

.industries {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

.industries h2 {
  font-size: 2.2rem;
  color: #0b1c2c;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.industries-subtext {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.industry-box {
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.industry-box i {
  font-size: 30px;
  margin-bottom: 12px;
  color: #f26c00;
}

.industry-box p {
  font-weight: 700;
  color: #0b1c2c;
  font-size: 0.95rem;
  margin: 0;
}

.industry-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.industry-cta {
  margin-top: 40px;
  font-size: 1rem;
  color: #0b1c2c;
  font-weight: 500;
}

.industry-cta a {
  color: #f26c00;
  font-weight: 600;
  text-decoration: underline;
}

.scroll-hint {
  display: none;
  font-size: 0.9rem;
  color: #888;
  margin-top: 15px;
  text-align: center;
  font-style: italic;
}

.scroll-hint i {
  margin-right: 6px;
  color: #f26c00;
}

/* How It Works */
.how-it-works {
  padding: 80px 20px;
  background: #fefefe;
  text-align: center;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.step {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 25px 20px;
  border-radius: 12px;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.step:hover {
  transform: translateY(-6px);
}

.step i {
  font-size: 32px;
  color: #f26c00;
  margin-bottom: 15px;
}

.step h4 {
  font-size: 1.1rem;
  color: #0b1c2c;
  margin-bottom: 10px;
  font-weight: 700;
}

.step p {
  color: #555;
  font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
  background: #f26c00;
  color: white;
  padding: 70px 20px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}

.stats-section .stat {
  max-width: 220px;
}

.stats-section i {
  font-size: 32px;
  margin-bottom: 12px;
  color: white;
}

.stats-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats-section p {
  font-size: 1rem;
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  background: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2.2rem;
  color: #0b1c2c;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
}

/* FAQ Items */
.faq-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 18px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b1c2c;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #fef2ea;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 25px;
}

.faq-answer.open {
  padding: 15px 25px 35px;
  max-height: 500px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #555;
}

.faq-question .icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f26c00;
  transition: transform 0.3s ease;
}

.faq-question.active .icon {
  transform: rotate(45deg);
}

/* About Section */
.about-home-preview {
  background: #fff;
  padding: 100px 20px;
}

.about-home-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: linear-gradient(to right, #ffffff, #fdfdfd);
}

.about-home-image {
  flex: 1 1 50%;
}

.about-home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-home-text {
  flex: 1 1 50%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fefefe;
}

.about-home-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0b1c2c;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-home-text h2 i {
  color: #f26c00;
  font-size: 1.5rem;
}

.about-home-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.about-home-text .btn.small {
  align-self: start;
  font-size: 0.9rem;
  padding: 10px 20px;
}

.recent-work {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.recent-work-compact {
  padding-top: 20px;
}

.recent-work-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.recent-work-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.recent-work-header p {
  color: #555;
  line-height: 1.7;
}

.recent-work-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.work-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 14px 32px rgba(11, 28, 44, 0.08);
}

.work-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.work-card figcaption {
  padding: 18px 18px 22px;
  color: #444;
  line-height: 1.6;
}

.testimonials {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

/* Page Hero Section for Internal Pages */
.page-hero {
  background-color: #0b1c2c;
  color: white;
  padding: 120px 20px 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

/* About Page Layout Enhancements */

section.about-hero.rich-hero {
  background: url("../images/about-hero.webp") no-repeat center center/cover !important;
  padding: 180px 20px 120px;
  color: white;
  text-align: center;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.about-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-icons-row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-icon-box i {
  font-size: 28px;
  color: #f26c00;
  margin-bottom: 10px;
}

.about-section {
  background: #fff;
  padding: 80px 20px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 80px;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-container.reverse {
  direction: rtl;
}

.about-container.reverse .about-text,
.about-container.reverse img {
  direction: ltr;
}

.about-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  margin-bottom: 15px;
  color: #0d1b2a;
  font-size: 1.6rem;
  font-weight: 700;
}

.about-text p {
  color: #444;
  line-height: 1.7;
}

.core-values-grid {
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 0 20px;
  text-align: center;
}

.core-value-card {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.core-value-card:hover {
  transform: translateY(-4px);
}

.core-value-card i {
  font-size: 32px;
  color: #f26c00;
  margin-bottom: 12px;
}

.core-value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0b1c2c;
}

.core-value-card p {
  font-size: 0.95rem;
  color: #555;
}

.mission-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mission-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0b1c2c;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.mission-header h2 i {
  color: #f26c00;
  font-size: 1.6rem;
}

.mission-header p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  font-weight: 500;
}

/* Contact Page Styles */
section.contact-hero.rich-hero {
  background: url("../images/contact-hero.jpg") no-repeat center center/cover !important;
  padding: 180px 20px 120px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 29, 0.22), rgba(10, 18, 29, 0.62));
  z-index: 1;
}

.contact-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.contact-kicker {
  display: inline-block;
  padding: 0;
  margin-bottom: 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.contact-hero h1 {
  font-size: clamp(2.7rem, 4.5vw, 4.2rem);
  line-height: 1.05;
  color: white;
  margin-bottom: 16px;
}

.contact-hero-copy {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-hero-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-hero-actions .btn {
  min-width: 180px;
}

.contact-hero-actions .hero-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.contact-hero-actions .hero-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.contact-hero-meta {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.contact-hero-meta span {
  position: relative;
}

.contact-hero-meta span + span::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.contact-shell {
  position: relative;
  background: #faf9f7;
  padding: 58px 20px 90px;
}

.contact-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  padding: 0 10px;
  text-align: center;
}

.contact-intro-kicker,
.contact-panel-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f26c00;
  margin-bottom: 10px;
}

.contact-intro h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin-bottom: 10px;
}

.contact-intro p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  padding: 0;
  max-width: 1160px;
  margin: 0 auto;
}

.contact-section {
  align-items: flex-start;
}

.contact-panel,
.contact-card {
  border-radius: 22px;
  border: 1px solid rgba(11, 28, 44, 0.08);
  box-shadow: 0 10px 26px rgba(11, 28, 44, 0.05);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-panel {
  background: white;
  padding: 28px;
}

.contact-form-header {
  margin-bottom: 22px;
}

.contact-form-header h3,
.contact-card h3 {
  font-size: 1.75rem;
  line-height: 1.12;
  margin-bottom: 10px;
}

.contact-form-header p,
.contact-card p,
.contact-map-copy p {
  color: #555;
  line-height: 1.7;
}

.contact-info h2 {
  font-size: 1.5rem;
  color: #0b1c2c;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  scroll-margin-top: 120px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-hidden {
  position: absolute;
  left: -9999px;
}

.form-status {
  padding: 16px 18px;
  margin-bottom: 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  line-height: 1.6;
}

.form-status strong {
  font-weight: 700;
}

.form-status a {
  color: inherit;
  font-weight: 700;
}

.form-status-success {
  background: #eef8f1;
  border-color: #bedfc6;
  color: #205634;
}

.form-status-info {
  background: #fff5eb;
  border-color: #f3c89b;
  color: #8b4a12;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 15px 16px;
  border: 1px solid #d9d6d1;
  border-radius: 16px;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  resize: vertical;
  background: white;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  border-color: #c7c2bc;
}

.contact-form.form-attempted input:invalid,
.contact-form.form-attempted textarea:invalid,
.contact-form.form-attempted select:invalid {
  border-color: #d58d8d;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  background: white;
  border-color: rgba(242, 108, 0, 0.45);
  box-shadow: 0 0 0 5px rgba(242, 108, 0, 0.12);
  outline: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
  color: #0b1c2c;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group input[type="radio"] {
  margin-right: 6px;
  accent-color: #f26c00;
}
.form-group div {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.form-group div label {
  max-width: 140px;
  word-break: break-word;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label[for] {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-form select,
.contact-form input[type="date"],
.contact-form input[type="radio"] {
  font-family: inherit;
  font-size: 1rem;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 54px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.25L7 9.25L11 5.25' stroke='%230b1c2c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
}

.contact-info {
  min-width: 300px;
}

.contact-info img {
  margin-top: 20px;
  border-radius: 8px;
  max-width: 100%;
}

.contact-card {
  background: white;
  padding: 28px;
}

.contact-card-primary,
.contact-card-secondary {
  background: white;
}

.contact-method-list {
  display: grid;
  gap: 14px;
}

.contact-method {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: #faf9f7;
  border: 1px solid rgba(11, 28, 44, 0.08);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.contact-method:hover {
  background: white;
  border-color: rgba(242, 108, 0, 0.22);
  transform: translateY(-1px);
}

.contact-method-static {
  background: #faf9f7;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3e7;
}

.contact-method strong {
  display: block;
  font-size: 1rem;
  color: #0b1c2c;
}

.contact-method small {
  display: block;
  margin-top: 3px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.contact-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: #f4f1ed;
  color: #8c4b14;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-highlight-list li {
  position: relative;
  padding-left: 22px;
}

.contact-highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f26c00;
  box-shadow: 0 0 0 6px rgba(242, 108, 0, 0.14);
}

.contact-map-shell {
  padding: 0;
  overflow: hidden;
}

.contact-map-copy {
  padding: 24px 24px 8px;
}

.contact-map-heading {
  font-size: 1.55rem;
  color: #0b1c2c;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: 0;
  text-transform: none;
}

.map-card {
  background: white;
  border-top: 1px solid #ece7e0;
  padding: 0;
  box-shadow: none;
  max-width: none;
  margin: 0;
  overflow: hidden;
}

.map-card:hover {
  box-shadow: none;
  transform: none;
}

.map-card .map-wrapper {
  height: 550px;
  border-radius: 12px;
  overflow: hidden;
}

.map-card .map-wrapper iframe {
  width: 100%;
  height: 610px;
  border: 0;
  display: block;
  pointer-events: none;
  transition: filter 0.3s ease;
  margin-top: -60px; /* hides Google bar */
}

.map-wrapper.clicked iframe {
  pointer-events: auto;
}

.rich-footer {
  background: #1c1c1c;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h4 {
  color: #f26c00;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #f26c00;
}

.footer-column p {
  margin-bottom: 10px;
}

.footer-contact-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #f26c00;
}

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-areas ul {
  padding: 0;
  list-style: disc inside;
  color: #ddd;
}

.footer-note {
  text-align: center;
  padding-top: 30px;
  font-size: 13px;
  color: #bbb;
}

.footer-socials {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.footer-socials a {
  color: white;
  font-size: 20px;
  transition:
    color 0.3s,
    transform 0.3s;
}

.footer-socials a:hover {
  color: #f26c00;
  transform: scale(1.2);
}

/* --- Modern Hamburger Icon & Dropdown Menu --- */
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-right: 10px;
  height: 60px;
  /* Optional: match logo height */
}

.hamburger {
  display: none;
  width: 28px;
  height: 2px;
  background: #0b1c2c;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-left: auto;
  margin-top: 2px;
  /* Fine vertical tweak */
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background: #0b1c2c;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.hamburger.open {
  background: transparent;
}

.hamburger.open::before {
  transform: rotate(45deg);
  top: 0;
}

.hamburger.open::after {
  transform: rotate(-45deg);
  top: 0;
}

.nav-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  position: static;
  background: none;
  box-shadow: none;
  padding: 0;
}

.nav {
  z-index: 1000;
}

.mobile-contact {
  display: none;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  align-items: center;
  width: 100%;
  display: none;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0);
  /* semi-transparent white */
  backdrop-filter: blur(1px);
  /* frosted glass effect */

  padding: 12px 10px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.cta-btn {
  flex: 1;
  background: #f26c00;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  margin: 0 5px;
  border-radius: 8px;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-btn.alt {
  background: #0b1c2c;
}

.cta-btn:hover {
  opacity: 0.9;
}

.cta-btn i {
  color: white;
}
/* ===================== */
/* Services Page Layout */
/* ===================== */

.rich-hero {
  background: url("../images/section-heading.webp") no-repeat center
    center/cover;
  padding: 160px 20px 80px;
  text-align: center;
  color: white;
  position: relative;
}

.rich-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* adjust darkness here */
  z-index: 1;
}

.rich-hero .hero-inner {
  position: relative;
  z-index: 2;
}

.rich-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.rich-hero p {
  font-size: 1.05rem;
  color: #ddd;
  line-height: 1.6;
}

.hero-wave-divider {
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  position: relative;
  top: -1px;
  background: #f9f9f9;
  /* Add this line */
}

.hero-wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.full-services {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-img {
  flex: 1 1 500px;
}

.service-img img {
  width: 100%;
  border-radius: 10px;
  height: 380px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-text {
  flex: 1 1 500px;
}

.service-text h3 {
  font-size: 1.8rem;
  color: #f26c00;
  margin-bottom: 20px;
}

.service-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.service-cta-message {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 2rem;
  color: #0b1c2c;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
}

.service-features {
  list-style: none;
  margin-top: 20px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #333;
  gap: 8px;
}

.service-features i {
  color: #f26c00;
  font-size: 1rem;
}

.service-highlights {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.service-highlights h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0b1c2c;
  font-weight: 700;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* force 3 per row */
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.highlight-box {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.highlight-box i {
  font-size: 28px;
  color: #f26c00;
  margin-bottom: 12px;
}

.highlight-box p {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.floating-book-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #0b1c2c;
  color: white;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  transition:
    background 0.3s,
    transform 0.3s;
}

.floating-book-btn:hover {
  background: #f26c00;
  transform: translateY(-2px);
}

.section-divider {
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f6f6f6 0%, #ffffff 100%);
}

.thank-you-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
}

.thank-you-card {
  max-width: 760px;
  background: white;
  border-radius: 24px;
  padding: 42px 34px;
  box-shadow: 0 20px 44px rgba(11, 28, 44, 0.08);
  text-align: center;
}

.thank-you-card i {
  font-size: 3rem;
  margin-bottom: 16px;
}

.thank-you-card h1 {
  font-size: 2.3rem;
  margin-bottom: 14px;
}

.thank-you-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.next-steps {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  text-align: left;
}

.next-steps li {
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 14px 16px;
}

.service-link-wrapper {
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease;
}

.service-link-wrapper:hover {
  transform: scale(1.01);
}

.scroll-hint-services {
  display: none;
}

/* Landing Pages */
.landing-hero {
  padding: 170px 20px 96px;
}

.landing-hero .hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.landing-breadcrumb {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.landing-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.landing-breadcrumb a:hover {
  color: #ffffff;
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.landing-hero p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.landing-cta-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.landing-hero .btn.alt-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
}

.landing-hero .btn.alt-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.62);
}

.landing-meta-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-meta-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

.septic-landing-hero {
  background-image: url("../images/service-septic.webp");
}

.portable-landing-hero {
  background-image: url("../images/service-toilet.webp");
}

.repair-landing-hero {
  background-image: url("../images/service-repairs.webp");
}

.excavation-landing-hero {
  background-image: url("../images/service-excavation.webp");
}

.landing-overview {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.landing-overview-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.landing-copy-card,
.landing-aside-card,
.landing-detail-card {
  background: white;
  border: 1px solid #ece7e0;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(11, 28, 44, 0.06);
}

.landing-copy-card,
.landing-aside-card {
  padding: 34px 32px;
}

.landing-copy-card h2,
.landing-detail-card h2,
.landing-links-inner h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.landing-copy-card p,
.landing-aside-card p,
.landing-detail-card p,
.landing-detail-card li {
  color: #555;
  line-height: 1.75;
}

.landing-local-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
}

.landing-local-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: #faf9f7;
  border: 1px solid #efe8e0;
  font-weight: 600;
  color: #0b1c2c;
}

.landing-aside-card h3,
.landing-detail-card h3,
.landing-link-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.landing-aside-card .service-features {
  margin-top: 16px;
}

.landing-details {
  padding: 20px 20px 90px;
  background: #f8f8f8;
}

.landing-details-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.landing-detail-card {
  padding: 30px;
}

.landing-detail-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.landing-detail-card li + li {
  margin-top: 10px;
}

.landing-links-section {
  padding: 84px 20px;
  background: #ffffff;
}

.landing-links-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.landing-links-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8c4b14;
  margin-bottom: 12px;
}

.landing-links-inner > p:last-of-type {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

.landing-links-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.landing-link-card {
  display: block;
  text-align: left;
  text-decoration: none;
  color: inherit;
  padding: 24px 22px;
  border-radius: 22px;
  border: 1px solid #ece7e0;
  background: #faf9f7;
  box-shadow: 0 12px 28px rgba(11, 28, 44, 0.05);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.landing-link-card:hover {
  transform: translateY(-4px);
  background: white;
  border-color: rgba(242, 108, 0, 0.22);
  box-shadow: 0 18px 36px rgba(11, 28, 44, 0.08);
}

.landing-link-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #8c4b14;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-link-card p {
  color: #555;
  line-height: 1.65;
}

.landing-page .landing-hero {
  padding: 182px 20px 148px;
}

.landing-page .landing-hero::before {
  background: linear-gradient(180deg, rgba(11, 28, 44, 0.42), rgba(11, 28, 44, 0.72));
}

.landing-page .landing-hero h1 {
  font-size: clamp(3rem, 4.4vw, 4.6rem);
  line-height: 1;
  margin-bottom: 18px;
}

.landing-page .landing-hero p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.landing-page .landing-meta-pill {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.landing-page .landing-overview {
  margin-top: -72px;
  padding: 0 20px 72px;
  position: relative;
  z-index: 4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f8f8f8 110px);
}

.landing-page .landing-overview-grid {
  gap: 22px;
}

.landing-page .landing-copy-card,
.landing-page .landing-aside-card,
.landing-page .landing-link-card {
  box-shadow: 0 22px 42px rgba(11, 28, 44, 0.08);
}

.landing-page .landing-copy-card h2 {
  font-size: clamp(2rem, 3vw, 2.45rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.landing-page .landing-copy-card p,
.landing-page .landing-aside-card p {
  font-size: 1rem;
}

.landing-page .landing-local-list {
  margin-top: 24px;
}

.landing-page .landing-local-list li {
  background: #fff8f2;
  border-color: #f5e0cf;
}

.landing-page .landing-aside-card {
  align-self: stretch;
  background: linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.landing-page .landing-aside-card h3 {
  font-size: 1.5rem;
}

.landing-page .service-highlights {
  padding: 8px 20px 72px;
  background: #f8f8f8;
}

.landing-page .service-highlights h2 {
  margin-bottom: 26px;
}

.landing-page .highlight-grid {
  max-width: 1180px;
}

.landing-page .highlight-box {
  text-align: left;
  align-items: flex-start;
  border-radius: 24px;
  border: 1px solid #ece7e0;
  box-shadow: 0 16px 34px rgba(11, 28, 44, 0.06);
  padding: 28px 24px;
}

.landing-page .highlight-box i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3e7;
  margin-bottom: 16px;
}

.landing-page .highlight-box p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #0b1c2c;
}

.landing-page .faq-section {
  padding: 20px 20px 72px;
  background: #f8f8f8;
}

.landing-page .faq-section h2 {
  margin-bottom: 26px;
}

.landing-page .faq-list {
  max-width: 980px;
}

.landing-cta-panel {
  padding: 0 20px 72px;
  background: #f8f8f8;
}

.landing-cta-panel-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 38px 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0b1c2c 0%, #132c43 72%, #18324a 100%);
  color: white;
  box-shadow: 0 26px 46px rgba(11, 28, 44, 0.16);
  text-align: center;
}

.landing-cta-panel-inner h2 {
  color: white;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.landing-cta-panel-inner p {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.landing-cta-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.landing-cta-actions .btn.alt-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.landing-cta-actions .btn.alt-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.landing-cta-note {
  margin-top: 16px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.landing-page .landing-links-section {
  padding: 12px 20px 84px;
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.landing-page .landing-links-inner h2 {
  margin-bottom: 14px;
}

.landing-page .landing-links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ===================== */
/* Services Page Layout End */
/* ===================== */

@media (max-width: 768px) {
  /* Navbar stack */
  .hamburger {
    display: block;
  }

  .hamburger,
  .hamburger::before,
  .hamburger::after {
    background: white;
    width: 24px;
    height: 2px;
  }

  .hamburger {
    margin-left: auto;
    margin-right: 10px;
  }

  .logo {
    display: none;
  }

  .mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 15px;
    flex: 1;
    min-width: 0;
  }

  .mobile-contact p {
    margin: 0;
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    column-gap: 8px;
    align-items: start;
  }

  .mobile-contact i {
    margin-right: 0;
    margin-top: 4px;
    line-height: 1;
  }

  .mobile-contact a {
    word-break: normal;
    overflow-wrap: anywhere;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 600;
    color: white;
    text-decoration: none;
    min-width: 0;
    text-shadow: 0 1px 2px rgba(11, 28, 44, 0.28);
  }

  .mobile-contact a:hover {
    text-decoration: underline;
  }

  .nav a {
    color: white;
  }

  .nav a:hover {
    color: #f26c00;
  }

  .nav {
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 18px rgba(11, 28, 44, 0.03);
  }

  .nav-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: white;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    width: auto;
    min-width: 160px;
    max-width: 200px;
    animation: fadeDown 0.3s ease forwards;
    z-index: 999;
  }

  .nav-content.active {
    display: flex;
  }

  .nav-content a {
    color: #0b1c2c !important;
  }

  .nav-content a:hover {
    color: #f26c00 !important;
  }

  .nav-content .nav-links a.active::after {
    bottom: -4px;
  }

  .nav nav {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .hero {
    background-image: url("../images/hero-mobile.webp");
    filter: saturate(1.3) brightness(1.1) contrast(1);
    background-position: 80% center;
    background-size: cover;
    padding-bottom: 50px;
    position: relative;
    background-attachment: scroll;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.25);
    /* <-- darker for mobile */
    position: absolute;
    inset: 0;
    z-index: 1;
    padding-bottom: 100px;
    /* match hero padding */
  }

  /* Hero text shrink */
  .hero-top h1 {
    font-size: 2rem;
    margin-top: 60px;
    /* ⬅️ was too low before */
  }

  .hero-bottom p {
    font-size: 1rem;
  }

  .hero-btn {
    display: none;
    font-size: 0.9rem;
    padding: 8px 20px;
  }

  .section-subtext {
    margin-bottom: 40px; /* ⬅️ was too small before */
  }

  .service-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 12px 16px; /* Optional: adjust side padding */
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* Smooth on iOS */
    scroll-behavior: smooth;
    scroll-padding-left: 12px;
  }

  .service-box {
    flex: 0 0 80vw; /* ⬅️ wider card (80% of screen) */
    height: 600px;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease; /* ⬆️ taller image experience */
    scroll-snap-align: start;
    width: 280px;
  }

  .service-box.visible .service-overlay {
    background: rgba(0, 0, 0, 0.75);
  }

  .service-box.visible .service-overlay h3 {
    color: #f26c00;
  }

  .service-grid::-webkit-scrollbar {
    display: none;
  }

  @media (max-width: 768px) {
    .scroll-hint-services {
      display: block;
      font-size: 0.9rem;
      color: #888;
      margin-top: 10px;
      text-align: center;
      font-style: italic;
    }

    .scroll-hint-services i {
      margin-right: 6px;
      color: #f26c00;
      animation: pulseRight 1.5s infinite;
    }
  }

  /* Service grid spacing */
  .service-grid,
  .reasons,
  .recent-work-grid {
    grid-template-columns: 1fr;
  }

  .map-area-full .map-wrapper {
    height: 350px;
    /* ⬆️ increased from 300 */
  }

  .map-card {
    height: 580px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
  }

  .map-card .map-wrapper {
    height: 580px;
    overflow: hidden;
    border-radius: 14px;
  }

  .map-card .map-wrapper iframe {
    height: calc(100% + 64px) !important;
    margin-top: -64px !important;
    display: block;
    width: 100%;
  }

  .map-area-full iframe {
    margin-top: -220px;
    /* adjust as needed for perfect centering */
  }

  .industry-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    gap: 16px;
  }

  .industry-box {
    flex: 0 0 auto;
    min-width: 180px;
    scroll-snap-align: start;
  }

  .industry-grid::-webkit-scrollbar {
    display: none;
  }

  .scroll-hint {
    display: block;
  }

  /* About section mobile layout */

  section.about-hero.rich-hero {
    background: url("../images/about-hero-mobile.webp") no-repeat center
      center/cover !important;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    padding: 25px 20px;
  }

  .about-container.reverse {
    direction: ltr;
  }

  .about-container.reverse img {
    order: -1;
  }

  .hero-icons-row {
    flex-direction: column;
    align-items: center;
  }

  .core-values-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  /* Contact layout */

  section.contact-hero.rich-hero {
    padding: 150px 18px 90px;
  }

  .contact-kicker {
    margin-bottom: 18px;
  }

  .contact-hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .contact-hero-meta span + span::before {
    display: none;
  }

  .contact-shell {
    padding: 40px 16px 70px;
  }

  .contact-intro {
    margin: 0 auto 28px;
    padding: 0 4px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .contact-panel,
  .contact-card {
    padding: 22px;
  }

  .contact-info {
    text-align: left;
  }

  .contact-method {
    grid-template-columns: 44px 1fr;
    padding: 14px;
    align-items: flex-start;
  }

  .contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-top: 2px;
  }

  .contact-method span:last-child {
    min-width: 0;
  }

  .contact-method strong,
  .contact-method small {
    word-break: break-word;
  }

  .contact-map-copy {
    padding: 22px 22px 10px;
  }

  .contact-map-heading {
    text-align: center;
  }

  .contact-info .map-wrapper {
    margin-top: 0;
  }

  .contact-form,
  .contact-form form {
    align-items: center;
    text-align: center;
  }

  .contact-form .form-group {
    align-items: center;
    width: 100%;
  }

  .contact-form .form-group label {
    justify-content: center;
    text-align: center;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    box-sizing: border-box;
    display: block;
  }

  /* Footer stacking */
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-areas {
    flex-direction: column;
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .mobile-cta-bar {
    display: flex;
  }

  .floating-book-btn {
    display: none;
  }

  .highlight-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    /* mobile flexibility */
  }

  .work-card img {
    height: 220px;
  }

  .thank-you-card {
    padding: 32px 22px;
  }

  .landing-hero {
    padding: 170px 20px 110px;
  }

  .landing-page .landing-hero {
    padding: 170px 20px 124px;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.08;
  }

  .section-title-sub {
    margin-top: 12px;
    font-size: 0.9em;
  }

  .landing-breadcrumb {
    font-size: 0.85rem;
    gap: 8px;
  }

  .landing-meta-row,
  .landing-cta-row {
    align-items: stretch;
  }

  .landing-cta-row .btn {
    width: 100%;
    max-width: 320px;
  }

  .landing-overview-grid,
  .landing-details-grid,
  .landing-links-grid {
    grid-template-columns: 1fr;
  }

  .landing-copy-card,
  .landing-aside-card,
  .landing-detail-card {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .landing-page .landing-overview {
    margin-top: -42px;
    padding-bottom: 54px;
  }

  .landing-copy-card h2,
  .landing-detail-card h2,
  .landing-links-inner h2 {
    font-size: 1.65rem;
  }

  .landing-local-list {
    grid-template-columns: 1fr;
  }

  .landing-page .highlight-grid,
  .landing-page .landing-links-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .highlight-box {
    padding: 24px 20px;
  }

  .landing-cta-panel {
    padding-bottom: 54px;
  }

  .landing-cta-panel-inner {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .landing-cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .rich-hero {
    background: url("../images/section-heading-mobile.webp") no-repeat center
      center/cover;
    padding: 180px 20px 120px;
    min-height: 100vh;
  }

  .rich-hero .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .septic-landing-hero {
    background-image: url("../images/service-septic.webp");
  }

  .portable-landing-hero {
    background-image: url("../images/service-toilet.webp");
  }

  .repair-landing-hero {
    background-image: url("../images/service-repairs.webp");
  }

  .excavation-landing-hero {
    background-image: url("../images/service-excavation.webp");
  }
}

@keyframes pulseRight {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(6px);
    opacity: 0.5;
  }
}
