/* RV INFRATECH - Pixel Accurate PEB Manufacturer Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

/* Color Variables */
:root {
  --navy: #0B2447;
  --navy-light: #163666;
  --orange: #FF6B1A;
  --orange-hover: #e0570b;
  --white: #FFFFFF;
  --light-gray: #F5F6F8;
  --border-gray: #E2E8F0;
  --text-dark: #1E293B;
  --text-gray: #6B7280;
  --star-yellow: #FBBF24;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1fbd59;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --container-max: 1280px;
  --transition: all 0.25s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Utility Classes */
.text-navy { color: var(--navy); }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-gray { color: var(--text-gray); }

.bg-white { background-color: var(--white); }
.bg-light-gray { background-color: var(--light-gray); }
.bg-navy { background-color: var(--navy); }

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

.section-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 4.5rem 0;
}

/* Headings */
.section-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

.section-heading-left {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.75rem 2.5rem;
  height: 80px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-badge {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.65rem;
  color: var(--text-gray);
  letter-spacing: 0.09em;
  margin-top: 3px;
}

/* Navigation Links */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}

.nav-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.nav-item:hover,
.nav-item.active {
  color: var(--orange);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--orange);
  border-radius: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.btn-phone-pill {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--navy);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-phone-pill:hover {
  background-color: var(--navy-light);
  transform: translateY(-1px);
}

.icon-phone {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
}

@media (min-width: 768px) {
  .btn-phone-pill {
    display: flex;
  }
}

.btn-orange-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: var(--white);
  padding: 0.68rem 1.35rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.btn-orange-solid:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 26, 0.25);
}

/* Hamburger button */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.hamburger-bar {
  width: 24px;
  height: 3px;
  background-color: var(--navy);
  border-radius: 2px;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1100;
  padding: 1.5rem;
  box-shadow: -5px 0 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-gray);
}

.drawer-close-btn {
  font-size: 2rem;
  line-height: 1;
  color: var(--navy);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.drawer-item {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.drawer-item:hover {
  color: var(--orange);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.drawer-actions .btn-phone-pill {
  display: flex;
  justify-content: center;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 3.5rem 0 4rem 0;
  background-color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero-h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-h1 {
    font-size: 2.8rem;
  }
}

@media (min-width: 1200px) {
  .hero-h1 {
    font-size: 3.1rem;
  }
}

.hero-subheadings {
  margin-bottom: 1.25rem;
}

.sub-line-1, .sub-line-2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.btn-whatsapp-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--orange);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(255, 107, 26, 0.25);
}

.btn-whatsapp-solid:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
}

.icon-whatsapp {
  width: 20px;
  height: 20px;
}

.btn-navy-outline {
  display: inline-block;
  background-color: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.btn-navy-outline:hover {
  background-color: var(--navy);
  color: var(--white);
}

/* Hero Right Image */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 36px 4px 36px 4px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(11, 36, 71, 0.12);
}

.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background-color: var(--navy);
  color: var(--white);
  padding: 2.2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-wrapper svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.65rem;
  line-height: 1.1;
  color: var(--white);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}


/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid-6 {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
  }
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-gray);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--orange);
}

.service-img-box {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img-box img {
  transform: scale(1.05);
}

.service-info {
  padding: 1.2rem 0.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.orange-line {
  width: 36px;
  height: 3px;
  background-color: var(--orange);
  border-radius: 2px;
}


/* ==========================================================================
   WHY PEB CONSTRUCTION SECTION
   ========================================================================== */
.why-peb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 992px) {
  .why-peb-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.feature-rows-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.feature-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(11, 36, 71, 0.15);
}

.feature-icon-badge svg {
  width: 22px;
  height: 22px;
}

.feature-details {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Why Choose Card Right */
.why-peb-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.construction-photo-box {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.construction-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.why-choose-card {
  background-color: var(--navy);
  color: var(--white);
  padding: 2.2rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 36, 71, 0.2);
}

.why-choose-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.why-choose-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-choose-checklist li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.check-icon {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  flex-shrink: 0;
}


/* ==========================================================================
   AREAS WE SERVE SECTION
   ========================================================================== */
.areas-outer-box {
  background-color: var(--light-gray);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.areas-3col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .areas-3col-grid {
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 2rem;
    align-items: center;
  }
}

.state-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.cluster-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.area-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.area-bullet-list li {
  font-size: 0.9rem;
  line-height: 1.4;
}

.area-subtext {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.simple-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style-type: disc;
  padding-left: 1.25rem;
}

.simple-bullet-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Map center graphic */
.map-center-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-graphic-box {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.states-map-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.08));
}

/* Connectivity Strip */
.connectivity-strip {
  background-color: var(--white);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border-gray);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.connectivity-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 107, 26, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.connectivity-icon svg {
  width: 20px;
  height: 20px;
}

.connectivity-text {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.5;
}


/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-steps-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-steps-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
  }
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

.step-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px stroke var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
  background-color: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.process-step-item:hover .step-circle {
  background-color: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.step-circle svg {
  width: 32px;
  height: 32px;
}

.step-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-gray);
  max-width: 180px;
  line-height: 1.4;
}

.step-arrow-divider {
  display: none;
  align-items: center;
  justify-content: center;
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .step-arrow-divider {
    display: flex;
  }
}

.step-arrow-divider svg {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}


/* ==========================================================================
   PROJECTS GALLERY SECTION
   ========================================================================== */
.projects-5col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .projects-5col-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-5col-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.project-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  height: 180px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.btn-navy-solid {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.btn-navy-solid:hover {
  background-color: var(--navy-light);
  transform: translateY(-2px);
}


/* ==========================================================================
   WHY GROWTH IS HAPPENING HERE
   ========================================================================== */
.growth-section {
  background-color: var(--navy);
  color: var(--white);
  padding: 4.5rem 0;
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .growth-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.growth-h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.growth-subtext {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.growth-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.growth-checklist li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.check-icon-white {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  flex-shrink: 0;
}

/* Growth Right Image & Floating Badges */
.growth-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.expressway-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.growth-badges-stack {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.badge-pill {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 3px solid var(--orange);
}


/* ==========================================================================
   MACRO SECTION: TESTIMONIALS & FAQ (LEFT) + GET FREE QUOTE FORM (RIGHT)
   ========================================================================== */
.macro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .macro-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

/* Testimonials 3 Columns */
.testimonials-3col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials-3col-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quote-icon {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--orange);
  margin-bottom: -0.5rem;
}

.stars-row {
  color: var(--star-yellow);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.client-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-gray);
}

/* FAQ 2 Columns Accordion */
.faq-2col-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .faq-2col-accordion {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--white);
  transition: var(--transition);
}

.accordion-header {
  width: 100%;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);

}

.accordion-header:hover {
  background-color: var(--light-gray);
}

.accordion-icon {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--white);
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  padding: 0 1.2rem 1rem 1.2rem;
}

.accordion-item.active .accordion-icon {
  content: '−';
}

.accordion-body p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
}


/* Right Column Lead Form Card */
.quote-form-card {
  background-color: var(--navy);
  color: var(--white);
  padding: 2.2rem 2rem;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(11, 36, 71, 0.22);
}

@media (min-width: 992px) {
  .quote-form-card {
    position: sticky;
    top: 96px;
  }
}

.form-card-h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.form-card-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.8rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-control {
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.2);
}

.select-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%20%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
}

.btn-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background-color: var(--orange);
  color: var(--white);
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  margin-top: 0.4rem;
}

.btn-form-submit:hover {
  background-color: var(--orange-hover);
}

.icon-arrow {
  width: 18px;
  height: 18px;
}

.btn-form-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background-color: var(--whatsapp-green);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.btn-form-whatsapp:hover {
  background-color: var(--whatsapp-hover);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 4.5rem 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-logo {
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.social-links-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-circle:hover {
  background-color: var(--orange);
  border-color: var(--orange);
}

.social-circle svg {
  width: 16px;
  height: 16px;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.footer-links-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-nav a:hover {
  color: var(--orange);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}

.serving-badge {
  display: inline-block;
  background-color: rgba(255, 107, 26, 0.15);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 107, 26, 0.3);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--navy);
  color: var(--white);
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.toast-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
