/* McMinnville Gas Landing Page Custom Styles */

:root {
  /* Brand Color Palette */
  --navy-primary: #002d62;
  --navy-dark: #061c3a;
  --navy-light: #0b3c75;
  --orange-primary: #f26522;
  --orange-hover: #d54e0c;
  --blue-secondary: #004890;
  --blue-hover: #00366d;
  --bg-light: #f4f7fa;
  --bg-white: #ffffff;

  /* Text Colors */
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --text-light: #9ca3af;
  --text-white: #ffffff;

  /* Borders and Shadows */
  --border-color: #e5e7eb;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-premium: 0 25px 50px -12px rgba(6, 28, 58, 0.15);

  /* Transition and Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-circle: 50%;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & CORE STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #031454;
  line-height: 1.25;
}

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

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-orange {
  background-color: var(--orange-primary);
  color: var(--text-white);
}

.btn-orange:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--text-white);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-blue-dark {
  background-color: rgb(6 48 137);
  color: var(--text-white);
  padding: 0.575rem 2rem;
  font-size: 1.5rem;
}

.btn-blue-dark:hover {
  background-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 28, 58, 0.2);
}

.btn-blue {
  background-color: #0045ba;
  color: var(--text-white);
}

.btn-blue:hover {
  background-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 72, 144, 0.2);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--blue-secondary);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* SECTION STRUCTURES */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.propane-choice-section-container {}

.section-header {
  text-align: center;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: 3.825rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.325rem;
  color: var(--text-muted);
  font-weight: 400;
  width: 100%;
  max-width: 610px;
  margin: 0 auto;
}

.testimonial-section-subtitle {
  font-size: 1.325rem;
  color: #ffffff;
  font-weight: 400;

}

.help-section-subtitle {
  font-size: 1.325rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* MAIN NAVIGATION HEADER */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

/* Scrolled header style */
.main-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 85px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-dark);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange-primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--orange-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.pay-bill-link {
  color: var(--blue-secondary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-quote {
  background-color: var(--orange-primary);
  color: var(--text-white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-quote:hover {
  background-color: var(--orange-hover);
  box-shadow: 0 4px 10px rgba(242, 101, 34, 0.2);
}

.btn-phone {
  background-color: var(--navy-primary);
  color: var(--text-white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-phone:hover {
  background-color: var(--navy-dark);
  box-shadow: 0 4px 10px rgba(6, 28, 58, 0.15);
}

.phone-icon {
  width: 16px;
  height: 16px;
}

/* MOBILE TOGGLE & MENU */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--navy-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background-color: var(--bg-white);
  z-index: 99;
  transform: translateX(-100%);
  transition: var(--transition-slow);
  box-shadow: var(--shadow-lg);
  padding: 2rem 1.5rem;
}

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

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy-dark);
  display: block;
}

.mobile-pay-bill {
  color: var(--blue-secondary);
}

.mobile-action-item {
  margin-top: 1rem;
}

.mobile-btn-quote {
  display: block;
  background-color: var(--orange-primary);
  color: var(--text-white);
  text-align: center;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.mobile-btn-phone {
  display: block;
  background-color: var(--navy-primary);
  color: var(--text-white);
  text-align: center;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 790px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(6 28 58 / 87%) 27%, rgb(6 28 58 / 22%) 40%, rgb(6 28 58 / 0%) 100%);
  z-index: 1;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  color: var(--text-white);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-subtitle {
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.hero-help-text {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}

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

@media (max-width: 991px) {
  .hero-section {
    background-image: url('home assets/hero-mobile-bg.jpg') !important;
    background-position: center bottom;
    background-size: cover;
    height: auto;
    min-height: 720px;
    padding: 5.5rem 0 21rem;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 15, 32, 0.94) 0%, rgba(4, 15, 32, 0.72) 48%, rgba(4, 15, 32, 0.1) 80%, rgba(4, 15, 32, 0) 100%);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.45;
    margin-bottom: 1.1rem;
  }

  .hero-help-text {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
  }

  .hero-actions .btn-outline {
    background: rgba(6, 28, 58, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    backdrop-filter: blur(4px);
  }
}

/* WHY CHOOSE SECTION */
.why-choose-section {
  background-color: rgb(244 245 247);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.why-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-slow);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 101, 34, 0.15);
}

.card-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.why-card:hover .card-icon-wrapper {
  background-color: rgba(242, 101, 34, 0.1);
  transform: scale(1.05);
}

.card-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.card-title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 1.0rem;
  color: var(--text-muted);
}

.why-actions {
  text-align: center;
}

/* HOW CAN WE HELP SECTION */
.help-section {
  background-color: #f7f7fb;
}

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

.help-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.help-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.help-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

/* Badge Overlay centered or offset bottom left */
.help-card-icon-badge {
  position: absolute;
  bottom: 7px;
  left: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 2;
}

.badge-icon {
  width: 88px;
  height: 70px;
  object-fit: contain;

}

.help-card-content {
  padding: 2.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.help-card-title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.help-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-help-action {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;

  position: relative;
  background-color: #0c43a4;
  padding: 5px 10px 5px 10px;
}

.btn-help-action::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--blue-secondary);
  transition: var(--transition);
}

.btn-help-action:hover {
  color: var(--blue-hover);
}

.btn-help-action:hover::after {
  width: 100%;
}

/* PROUDLY SERVING WILLAMETTE VALLEY SECTION */
/* PROUDLY SERVING WILLAMETTE VALLEY SECTION */
.serving-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0;
}

.serving-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.serving-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 4.5rem 4rem;
  box-shadow: 0 15px 40px rgba(6, 28, 58, 0.08);
  border: 1px solid rgba(6, 28, 58, 0.04);
}

.serving-layout {
  display: flex;
  align-items: center;
  gap: 4.5rem;
}

.serving-map-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.map-wrapper {
  position: relative;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(6, 28, 58, 0.04);
  border: 1px solid rgba(6, 28, 58, 0.07);
  width: 100%;
  max-width: 440px;
  display: block;
}

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

.map-badge {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: var(--radius-circle);
  background-color: var(--bg-white);
  box-shadow: 0 6px 20px rgba(6, 28, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 2;
  display: none;
}

.map-badge-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.serving-content-col {
  flex: 1.1;
}

.accent-header-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.accent-line {
  width: 60px;
  height: 2px;
  background-color: var(--orange-primary);
}

.serving-flame-accent {
  width: 250px;
  object-fit: contain;
  margin: 0 auto;
}

.serving-title {
  color: var(--navy-dark);
  font-size: 3.0rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
}

.serving-description {
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.counties-grid {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.25rem;
}

.county-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.county-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.checkmark-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-circle);
  background-color: var(--navy-primary);
  color: var(--text-white);
  flex-shrink: 0;
}

.check-svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.county-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-dark);
  font-family: 'Outfit', sans-serif;
}

.availability-card {
  background-color: #f0f4f8;
  border: 1px solid #d0deee;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.availability-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  background-color: var(--bg-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.phone-inline-svg {
  width: 22px;
  height: 22px;
  fill: var(--orange-primary);
}

.availability-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.availability-heading {
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 1.1rem;
  line-height: 1.3;
}

.availability-sub {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.btn-serving {
  padding: 0.875rem 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}


/* TESTIMONIALS SECTION */
.testimonials-section {
  background-color: var(--navy-primary);
  color: var(--text-white);
}

.testimonials-section .section-title {
  color: var(--text-white);
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  color: var(--text-main);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-slow);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.65rem;
  margin: 0 auto;
  margin-bottom: 7px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.testimonial-platform {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.platform-icon {
  width: 16px;
  height: 16px;
}

.platform-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 74px;
  height: 74px;
  border-radius: var(--radius-circle);
  object-fit: cover;

}

.reviewer-meta {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-dark);
}

.reviewer-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonials-meta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.average-stars {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.star-gold {
  color: #ffc107;
  font-size: 1.35rem;
}

.btn-reviews {
  padding: 0.875rem 2.5rem;
  font-size: 1.4rem;
}

/* PROPANE: A SMART ENERGY CHOICE SECTION */
.propane-choice-section {
  background-color: var(--bg-white);

}

.propane-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(6, 28, 58, 0.08);
  border: 1px solid rgba(6, 28, 58, 0.04);
  overflow: hidden;
}

.propane-layout {
  display: flex;
  align-items: stretch;
}

.propane-img-col {
  position: relative;
  flex: 1.1;
  background-size: cover;
  background-position: center left;
  min-height: 620px;
}

.propane-img-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--bg-white));
}

.propane-content-col {
  flex: 1;
  padding: 4.5rem 4.5rem 4.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.propane-title {
  color: #031454;
  font-size: 3.45rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
}

.propane-subtitle {
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.choice-items-list {
  display: flex;
  flex-direction: column;
  margin: 1.5rem 0 2.5rem;
}

.choice-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
}

.choice-item:not(:last-child) {
  border-bottom: 1px solid #e1e9f3;
}

.choice-item:first-child {
  padding-top: 0;
}

.choice-item:last-child {
  padding-bottom: 0;
}

.choice-icon-wrapper {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-circle);
  background-color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(6, 28, 58, 0.05);
  border: 1px solid rgba(6, 28, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.choice-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.choice-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.choice-item-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #031454;
  font-family: 'Outfit', sans-serif;
}

.choice-item-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn-propane {
  padding: 0.675rem 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  align-self: flex-start;
}


/* READY FOR RELIABLE SERVICE CTA BANNER */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
  text-align: center;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 28, 58, 0.82) 0%, rgba(6, 28, 58, 0.88) 100%);
  z-index: 1;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 6.5rem 1.5rem 10rem 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-accent {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-title {
  color: var(--text-white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2.75rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.cta-btn {
  background-color: var(--orange-primary);
  color: var(--text-white);
  padding: 1.05rem 2.5rem;
  border-radius: var(--radius-sm);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(242, 101, 34, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
}

.cta-btn:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
}

.cta-phone {
  background-color: var(--bg-white);
  color: var(--navy-dark);
  padding: 1.05rem 2.25rem;
  border-radius: var(--radius-sm);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  transition: var(--transition);
}

.cta-phone:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.phone-icon-blue {
  width: 20px;
  height: 20px;
  color: var(--navy-dark);
}

.cta-curve-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}

.cta-curve-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}


/* =============================================
   FOOTER
   ============================================= */

.main-footer {
  background-color: #061c3a;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
}

/* Full-width footer layout */
.footer-inner {
  display: block;
  width: 100%;
}

.footer-left {
  width: 100%;
  padding: 4.5rem 0 4rem;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1.5fr 1fr 1.15fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-cols>.footer-col:not(:first-child) {

  padding-left: 1.75rem;
}

.footer-right {
  display: none !important;
}

/* Brand column */
.footer-logo {
  height: 90px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
  object-fit: contain;
}

.brand-slogan {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-family: 'Outfit', sans-serif;
  line-height: 1.4;
}

.brand-sub-slogan {
  color: var(--orange-primary);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 500;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.social-icons {
  display: flex;
  gap: 0.6rem;
}

.social-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: var(--transition);
}

.social-circle:hover {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
  transform: translateY(-2px);
}

/* Column headings */
.footer-heading-wrapper {
  display: inline-block;
  border-bottom: 2px solid #3a7bd5;
  padding-bottom: 0.4rem;
  margin-bottom: 1.3rem;
}

.footer-heading {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  margin: 0;
  letter-spacing: 0.04em;
}


/* Contact column */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-icon-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #f26522;
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}

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

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-main-link {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-main-link:hover {
  color: var(--orange-primary);
}

.contact-main-text {
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact-sub-text {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

/* Links columns */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--orange-primary);
  transform: translateX(3px);
}

/* RIGHT PANEL: truck image + floating card */
.footer-right {
  position: relative;
  flex: 0 0 33%;
  max-width: 33%;
  overflow: hidden;
}

.footer-truck-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  min-height: 400px;
}

/* Floating "Need propane service?" card */
.need-service-card {
  position: absolute;
  top: 6rem;
  right: 8.5rem;
  z-index: 10;
  background: rgb(5 22 52 / 48%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 200px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.card-flame-icon {
  width: 32px;

  object-fit: contain;
}

.card-title-white {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin: 0;
  line-height: 1.3;
}

.card-desc-grey {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin: 0;
}

.btn-card-phone {
  width: 100%;
  background-color: var(--orange-primary);
  color: #fff;
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: background 0.2s, transform 0.2s;
  border: none;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
}

.btn-card-phone:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 101, 34, 0.35);
}

.card-phone-svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex-shrink: 0;
}

/* FOOTER BOTTOM SECTION */
.footer-bottom-wrap {
  background-color: #051628;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-wrap .footer-container {
  max-width: 100%;
  padding: 0 3rem;
}

.footer-bottom-divider {
  display: none;
}

.footer-bottom-bar {
  text-align: center;
  padding: 1.5rem 0 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.bottom-serving-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.pin-svg {
  width: 16px;
  height: 16px;
  fill: #3a7bd5;
  flex-shrink: 0;
}

.bottom-counties-list {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-bottom-line {
  width: 100%;
  max-width: 900px;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0.25rem auto;
}

.bottom-copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  padding-bottom: 0.5rem;
}

.bottom-copyright a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.2s, border-color 0.2s;
}

.bottom-copyright a:hover {
  color: var(--orange-primary);
  border-bottom-color: var(--orange-primary);
}


/* =============================================
   RESIDENTIAL PAGE STYLES
   ============================================= */

/* Residential Hero */
.res-hero-section {
  position: relative;
  height: 790px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* PROPANE FOR EVERYDAY HOME COMFORT */
.res-comfort-section {
  background-color: #f7f7fb;
}

.res-comfort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.res-comfort-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-slow);
}

.res-comfort-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 101, 34, 0.15);
}

.res-comfort-icon-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.res-comfort-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.res-comfort-title {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
  color: #031454;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.res-comfort-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* RELIABLE DELIVERY WHEN YOU NEED IT */
.res-delivery-section {
  background-color: var(--bg-white);
  padding: 5rem 0;
}

.res-delivery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.res-delivery-layout {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.res-delivery-img-col {
  flex: 1.05;
}

.res-delivery-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  object-fit: cover;
}

.res-delivery-content-col {
  flex: 1;
}

.res-section-flame {
  width: auto;
  object-fit: contain;
}


.res-delivery-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #031454;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.res-delivery-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Pill-style delivery feature cards */
.res-delivery-pills {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.res-delivery-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid #e0e7ef;
  border-radius: 50px;
  background-color: #ffffff;
  transition: var(--transition);
}

.res-delivery-pill:hover {
  border-color: var(--orange-primary);
  box-shadow: 0 2px 10px rgba(242, 101, 34, 0.08);
}

.res-pill-icon-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.res-pill-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.res-pill-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #031454;
}

/* GETTING STARTED IS EASY */
.res-started-section {
  background-color: #f4f5f7;
}

/* Header flame + line accent */
.res-steps-header-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.res-steps-accent-line {
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--orange-primary);
  border-radius: 2px;
}

.res-steps-accent-flame {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* 3-step horizontal row */
.res-steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

/* Arrow connector */
.res-step-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-bottom: 3.5rem;
  /* visual centering with card icon area */
}

/* Step card v2 */
.res-step-card-v2 {
  flex: 1;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e8ecf1;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(6, 28, 58, 0.05);
  transition: var(--transition-slow);
  min-width: 0;
}

.res-step-card-v2:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(242, 101, 34, 0.2);
}

.res-step-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--orange-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.res-step-icon-v2 {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.res-step-title-v2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #031454;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.res-step-text-v2 {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA below steps */
.res-steps-cta {
  text-align: center;
  margin-top: 0.5rem;
}

.res-steps-btn {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

/* A LOCAL PROPANE COMPANY FAMILIES CAN COUNT ON */
.res-local-section {
  background-color: var(--bg-white);
  padding: 5rem 0;
}

.res-local-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.res-local-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.res-local-img-col {
  flex: 1.05;
}

.res-local-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  display: block;
  object-fit: cover;
}

.res-local-content-col {
  flex: 1;
}

.res-local-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #031454;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.res-local-desc,
.res-local-desc-secondary {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.res-local-desc-secondary {
  margin-bottom: 1.75rem;
}

/* Local stat cards */
.res-local-cards {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.res-local-card {
  flex: 1;
  background-color: #ffffff;
  border: 1.5px solid #e8ecf1;
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(6, 28, 58, 0.02);
  transition: var(--transition);
}

.res-local-card:hover {
  border-color: var(--orange-primary);
  box-shadow: 0 4px 14px rgba(242, 101, 34, 0.08);
  transform: translateY(-2px);
}

.res-local-card-icon-wrap {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.res-local-card-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.res-local-card-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #031454;
  line-height: 1.25;
}

/* Navy CTA button */
.btn-navy {
  background-color: #031454;
  color: var(--text-white);
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.btn-navy:hover {
  background-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 20, 84, 0.25);
}

.res-local-btn-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-navy:hover .res-local-btn-chevron {
  transform: translateX(3px);
}


/* RESIDENTIAL PROPANE ACROSS THE WILLAMETTE VALLEY */
.res-service-area-section {
  background-color: #f7f7fb;
  padding: 5rem 0;
}

.res-service-area-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.res-service-area-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.res-service-area-map-col {
  flex: 0.85;
  display: flex;
  justify-content: center;
}

.res-service-area-map {
  width: 100%;
  max-width: 420px;
  object-fit: contain;
}

.res-service-area-content-col {
  flex: 1;
}

.res-service-area-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #031454;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.res-service-area-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Service area county grid */
.res-area-counties {
  display: flex;
  gap: 3rem;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
}

.res-area-county-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.res-area-county-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.res-area-county-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}

.res-area-county-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #4b5563;
}

.res-area-cta-wrap {
  margin-top: 2.25rem;
}


/* RESIDENTIAL FAQ SECTION */
.res-faq-section {
  background-color: var(--bg-white);
}

.res-faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.res-faq-item {
  border-bottom: 1px solid var(--border-color);
}

.res-faq-item:first-child {
  border-top: 1px solid var(--border-color);
}

.res-faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #031454;
  text-align: left;
  transition: var(--transition);
}

.res-faq-question:hover {
  color: var(--orange-primary);
}

.res-faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--orange-primary);
}

.res-faq-item.open .res-faq-chevron {
  transform: rotate(180deg);
}

.res-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.res-faq-item.open .res-faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.res-faq-answer p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA Trust Features Row */
.res-cta-features-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 3.5rem;
}

.res-cta-feature-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 0 1.5rem;
}

.res-cta-feature-box-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.res-cta-feature-box-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.2px;
}

.res-cta-feature-box-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.res-cta-feature-divider {
  width: 1px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Orange CTA button chevron slide */
.cta-btn-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.cta-btn:hover .cta-btn-chevron {
  transform: translateX(4px);
}


/* =============================================
   RESIDENTIAL RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .res-delivery-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .res-local-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .res-service-area-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .res-steps-row {
    flex-direction: column;
    align-items: stretch;
  }

  .res-step-arrow {
    display: none;
  }

  .res-step-card-v2 {
    flex: none;
  }
}

@media (max-width: 768px) {
  .res-comfort-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .res-delivery-title,
  .res-local-title,
  .res-service-area-title {
    font-size: 2rem;
  }

  .res-local-cards {
    flex-direction: column;
    gap: 1rem;
  }

  .res-area-counties {
    flex-direction: column;
    gap: 1rem;
  }

  .res-faq-question {
    font-size: 1.05rem;
  }

  .res-cta-features-row {
    flex-direction: column;
    gap: 2.5rem;
  }

  .res-cta-feature-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .res-comfort-grid {
    grid-template-columns: 1fr;
  }

  .res-step-icon-v2 {
    width: 85px;
    height: 85px;
  }

  .res-delivery-title,
  .res-local-title,
  .res-service-area-title {
    font-size: 1.75rem;
  }
}

/* SCROLL REVEAL ANIMATIONS FALLBACK SUPPORT */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 1024px) {
  .serving-card {
    padding: 3rem 2rem;
  }

  .serving-layout {
    flex-direction: column;
    gap: 3.5rem;
  }

  .serving-map-col,
  .serving-content-col {
    width: 100%;
    max-width: 100%;
  }

  .map-wrapper {
    max-width: 100%;
  }

  .propane-card {
    border-radius: var(--radius-md);
  }

  .propane-layout {
    flex-direction: column;
  }

  .propane-img-col {
    width: 100%;
    min-height: 350px;
    height: 350px;
    background-image: url('home assets/Propane Choice Mobile.jpg') !important;
    background-position: center;
    background-size: cover;
  }

  .propane-img-fade {
    display: none;
  }

  .propane-content-col {
    width: 100%;
    padding: 3rem 2rem;
  }

  /* Footer responsive at 1024px: stack to single column */
  .footer-inner {
    flex-direction: column;
  }

  .footer-right {
    flex: none;
    max-width: 100%;
    width: 100%;
    min-height: 320px;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-cols>.footer-col:not(:first-child) {
    border-left: none;
    padding-left: 0;
  }

  .footer-container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {

  /* Headings */
  .hero-title {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  /* Mobile nav */
  .desktop-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Grids reduce */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .help-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* CTA */
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .cta-phone {
    width: 100%;
    justify-content: center;
  }

  .serving-card {
    padding: 2rem 1rem;
  }

  .counties-grid {
    flex-direction: column;
    gap: 0.85rem;
  }

  /* Footer */
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-container {
    padding: 0 1.5rem;
  }

  .footer-left {
    padding: 3rem 0 2.5rem;
  }

  .footer-logo {
    margin: 0 auto 1.25rem;
  }

  .brand-col {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-right {
    min-height: 260px;
  }

  .need-service-card {
    top: 1.5rem;
    right: 1rem;
    width: 175px;
    padding: 1.2rem 1rem;
  }

  .footer-bottom-wrap .footer-container {
    padding: 0 1.5rem;
  }

  .bottom-counties-list {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }

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

  .propane-card {
    border-radius: var(--radius-md);
  }

  .propane-content-col {
    padding: 2rem 1.25rem;
  }

  .propane-title {
    font-size: 2.25rem;
  }

  .footer-right {
    min-height: 220px;
  }

  .need-service-card {
    width: 155px;
  }
}

/* =============================================
   ABOUT US HERO SECTION STYLES
   ============================================= */
.about-hero-section {
  position: relative;
  height: 680px;
  background-color: #01152a;
  background-image: url('about us assets/Hero Header Section.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(1, 21, 42, 0.95) 0%, rgba(1, 21, 42, 0.85) 30%, rgba(1, 21, 42, 0.4) 60%, rgba(1, 21, 42, 0) 100%);
  z-index: 1;
}

.about-hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.about-hero-content {
  max-width: 580px;
}

.about-hero-subtitle {
  color: var(--orange-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}

.about-hero-title {
  color: var(--text-white);
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0px;
}

.about-hero-divider {
  width: 48px;
  height: 3px;
  background-color: var(--orange-primary);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.about-hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.about-hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-about-customer {
  background-color: var(--orange-primary);
  color: var(--text-white);
  border: 2px solid var(--orange-primary);
}

.btn-about-customer:hover {
  background-color: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3);
}

.btn-about-phone {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--text-white);
}

.btn-about-phone:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-icon {
  margin-right: 0.5rem;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* Responsive adjustments for About Us page */
@media (max-width: 991px) {
  .about-hero-section {
    background-position: 70% center;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    height: auto;
    padding: 140px 0 60px 0;
    background-position: center;
  }

  .about-hero-overlay {
    background: linear-gradient(180deg, rgba(1, 21, 42, 0.95) 0%, rgba(1, 21, 42, 0.85) 100%);
  }

  .about-hero-title {
    font-size: 2.75rem;
  }

  .about-hero-description {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .about-hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

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

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 2.25rem;
  }

  .about-hero-description {
    font-size: 1rem;
  }
}

/* =============================================
   ABOUT US OUR STORY STYLES
   ============================================= */
.about-story-section {
  background-color: var(--bg-white);
  position: relative;
}

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

.story-content-col {
  display: flex;
  flex-direction: column;
}

.story-subtitle {
  color: var(--orange-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.story-title {
  color: #031454;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.75rem;
}

.story-text p {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.story-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.story-image-wrapper:hover .story-img {
  transform: scale(1.02);
}

/* Story Responsive Styles */
@media (max-width: 991px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .story-title {
    font-size: 2rem;
  }

  .story-text p {
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* =============================================
   ABOUT US FUTURE STYLES
   ============================================= */
.about-future-section {
  background-color: var(--bg-white);
  position: relative;
}

.future-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.future-image-col {
  height: 100%;
}

.future-image-wrapper {
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
}

.future-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.future-image-wrapper:hover .future-img {
  transform: scale(1.02);
}

.future-content-col {
  height: 100%;
}

.future-card {
  background-color: #f8fafc;
  padding: 4.5rem 3.5rem;
  height: 100%;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.future-title {
  color: #031454;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.25;
}

.future-divider {
  width: 48px;
  height: 3px;
  background-color: var(--orange-primary);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.future-text p {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.future-text p:last-child {
  margin-bottom: 0;
}

/* Future Responsive Styles */
@media (max-width: 991px) {
  .future-grid {
    grid-template-columns: 1fr;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  .future-image-wrapper {
    height: 380px;
  }

  .future-card {
    padding: 3rem 2.5rem;
  }

  .future-title {
    font-size: 2.35rem;
  }
}

@media (max-width: 480px) {
  .future-image-wrapper {
    height: 280px;
  }

  .future-card {
    padding: 2.5rem 1.5rem;
  }

  .future-title {
    font-size: 2rem;
  }

  .future-text p {
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* =============================================
   ABOUT US METRICS STYLES
   ============================================= */
.about-metrics-section {
  background-color: var(--bg-white);
  position: relative;
}

.metrics-card-box {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(6, 28, 58, 0.04);
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3.5rem 1.5rem;
  align-items: flex-start;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.metric-item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.metric-icon-wrapper {
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.metric-title {
  color: #031454;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.metric-text {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

/* Metrics Responsive Styles */
@media (max-width: 991px) {
  .metrics-card-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 0;
    padding: 3rem 1rem;
  }

  .metric-item {
    border-right: none !important;
  }

  /* Vertical borders on tablet: left side items get a border-right */
  .metric-item:nth-child(odd) {
    border-right: 1px solid var(--border-color) !important;
  }
}

@media (max-width: 576px) {
  .metrics-card-box {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 1rem;
  }

  .metric-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
  }

  .metric-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* =============================================
   ABOUT US COMMUNITY STYLES
   ============================================= */
.about-community-section {
  background-color: #f9fafb;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.community-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.community-subtitle {
  color: var(--orange-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.community-subtitle::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--orange-primary);
}

.community-title {
  color: #031454;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.community-divider {
  width: 48px;
  height: 3px;
  background-color: var(--orange-primary);
  margin-top: 1.75rem;
  border-radius: 2px;
}

.community-text p {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.community-text p:last-child {
  margin-bottom: 0;
}

/* Community Responsive Styles */
@media (max-width: 991px) {
  .community-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .community-title {
    font-size: 2.35rem;
  }
}

@media (max-width: 480px) {
  .community-title {
    font-size: 2rem;
  }

  .community-text p {
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* =============================================
   ABOUT US SECTORS STYLES
   ============================================= */
.about-sectors-section {
  background-color: var(--bg-white);
  position: relative;
}

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

.sector-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 3rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(6, 28, 58, 0.08);
  border-color: rgba(242, 101, 34, 0.2);
}

.sector-icon-wrapper {
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sector-title {
  color: #031454;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sector-divider {
  width: 32px;
  height: 2px;
  background-color: var(--orange-primary);
  margin: 0.75rem auto 1.25rem auto;
  border-radius: 1px;
}

.sector-text {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Sectors Responsive Styles */
@media (max-width: 991px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sector-card {
    padding: 2.5rem 1.5rem;
  }
}

/* =============================================
   ABOUT US SERVICES STYLES
   ============================================= */
.about-services-section {
  background-color: var(--bg-white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.services-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  line-height: 0;
}

.services-img {
  width: 100%;
  height: 900px;
  display: block;
}

.services-subtitle {
  color: var(--orange-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.services-subtitle::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--orange-primary);
}

.services-title {
  color: #031454;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.services-description {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border-color);
}

.service-list-item:first-child {
  padding-top: 0;
}

.service-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.service-item-content {
  margin-left: 1.25rem;
}

.service-item-title {
  color: #031454;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.service-item-desc {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Services Responsive Styles */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .services-title {
    font-size: 2.35rem;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 2rem;
  }

  .services-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .service-list-item {
    padding: 1rem 0;
  }

  .service-item-title {
    font-size: 0.95rem;
  }

  .service-item-desc {
    font-size: 0.9rem;
  }
}

/* =============================================
   ABOUT US HIGHLIGHTS STYLES
   ============================================= */
.about-highlights-section {
  background-color: #031454;
  /* Deep Brand Navy */
  padding: 0 0;
  position: relative;
}

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

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.highlight-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.highlight-icon-wrapper {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.highlight-text-label {
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

.highlight-text-orange {
  color: var(--orange-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 0.15rem;
}

.highlight-stat {
  color: var(--bg-white);
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0.25rem;
}

.highlight-text-bold {
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0.25rem 0;
  line-height: 1.2;
}

/* Highlights Responsive Styles */
@media (max-width: 991px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 0;
  }

  .highlight-item {
    border-right: none !important;
  }

  /* Vertical borders on tablet */
  .highlight-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
}

@media (max-width: 576px) {
  .about-highlights-section {
    padding: 3.5rem 0;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .highlight-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 2.5rem;
  }

  .highlight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* =============================================
   ABOUT US CAPACITY STYLES
   ============================================= */
.about-capacity-section {
  background-color: var(--bg-white);
  position: relative;
}

.capacity-grid {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 4.5rem;
  align-items: center;
}

.capacity-subtitle {
  color: var(--orange-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.capacity-title {
  color: #031454;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.capacity-divider {
  width: 48px;
  height: 3px;
  background-color: var(--orange-primary);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.capacity-text p {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.capacity-text p:last-child {
  margin-bottom: 0;
}

.capacity-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  line-height: 0;
}

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

/* Capacity Responsive Styles */
@media (max-width: 991px) {
  .capacity-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .capacity-title {
    font-size: 2.35rem;
  }
}

@media (max-width: 480px) {
  .capacity-title {
    font-size: 2rem;
  }

  .capacity-text p {
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* =============================================
   ABOUT US CAPABILITIES STYLES
   ============================================= */
.about-capabilities-section {
  background-color: var(--bg-white);
  position: relative;
  padding-top: 0;
  /* Align with capacity section above */
}

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

.capability-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(6, 28, 58, 0.08);
  border-color: rgba(242, 101, 34, 0.2);
}

.capability-icon-wrapper {
  width: 72px;
  height: 72px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capability-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.capability-title {
  color: #031454;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.capability-text {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Capabilities Responsive Styles */
@media (max-width: 991px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .capability-card {
    padding: 2.5rem 1.5rem;
  }
}

/* =============================================
   ABOUT US FLEET STYLES
   ============================================= */
.about-fleet-section {
  background-color: var(--bg-white);
  position: relative;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 4.5rem;
  align-items: center;
}

.fleet-subtitle {
  color: var(--orange-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.fleet-title {
  color: #031454;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.fleet-divider {
  width: 48px;
  height: 3px;
  background-color: var(--orange-primary);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.fleet-text p {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.fleet-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.fleet-mini-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.fleet-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(6, 28, 58, 0.06);
  border-color: rgba(242, 101, 34, 0.2);
}

.fleet-mini-icon-wrapper {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-mini-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fleet-mini-title {
  color: #031454;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.fleet-mini-text {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.4;
}

.fleet-images-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fleet-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  line-height: 0;
}

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

/* Fleet Responsive Styles */
@media (max-width: 991px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .fleet-title {
    font-size: 2.35rem;
  }
}

@media (max-width: 576px) {
  .fleet-cards-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .fleet-mini-card {
    padding: 1.5rem;
  }

  .fleet-title {
    font-size: 2rem;
  }

  .fleet-text p {
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* =============================================
   ABOUT US SERVICE AREA STYLES
   ============================================= */
.about-service-area-section {
  background-color: #f9fafb;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: center;
}

.service-area-subtitle {
  color: var(--orange-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-area-subtitle::before {
  content: "";
  width: 24px;
  height: 2px;
  background-color: var(--orange-primary);
  display: inline-block;
}

.service-area-title {
  color: #031454;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.service-area-description {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-area-list-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.service-area-badge-wrapper {
  width: 36px;
  height: 36px;
  background-color: #031454;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.service-area-badge-svg {
  width: 20px;
  height: 20px;
}

.service-area-badge-text {
  color: #031454;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.service-area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-area-item {
  display: flex;
  align-items: center;
}

.service-area-check {
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.service-area-item-name {
  color: #031454;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.service-area-map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  line-height: 0;
  border: 1px solid var(--border-color);
}

.service-area-map-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Service Area Responsive Styles */
@media (max-width: 991px) {
  .service-area-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .service-area-title {
    font-size: 2.35rem;
  }
}

@media (max-width: 576px) {
  .service-area-title {
    font-size: 2rem;
  }

  .service-area-description {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
}

/* =============================================
   ABOUT US HIGHLIGHT FEATURES STYLES
   ============================================= */
.about-features-section {
  background-color: var(--bg-white);
  position: relative;
  padding-top: 0;
  /* Reduce gap after map section */
}

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

.feature-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(6, 28, 58, 0.08);
  border-color: rgba(242, 101, 34, 0.2);
}

.feature-icon-wrapper {
  width: 72px;
  height: 72px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-title {
  color: #031454;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.feature-divider {
  width: 24px;
  height: 2px;
  background-color: var(--orange-primary);
  margin: 0 auto 1.25rem;
  border-radius: 1px;
}

.feature-text {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Features Responsive Styles */
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2.5rem 1.5rem;
  }
}

/* =============================================
   ABOUT US CTA BANNER STYLES
   ============================================= */
.about-cta-section {
  background-image: url('about us assets/CTA Building Background.png');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #031454;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(3, 20, 84, 0.95) 0%, rgba(3, 20, 84, 0.8) 40%, rgba(3, 20, 84, 0) 100%);
  z-index: 1;
}

.about-cta-section .section-container {
  position: relative;
  z-index: 2;
}

.cta-content-wrapper {
  max-width: 55%;
}

.cta-title {
  color: #ffffff;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta-divider {
  width: 48px;
  height: 3px;
  background-color: var(--orange-primary);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.cta-action-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange-primary);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1.1rem 2.2rem;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.cta-btn-orange:hover {
  background-color: #d65118;
  transform: translateY(-2px);
}

.cta-btn-border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1.1rem 2.2rem;
  border-radius: 6px;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.cta-btn-border:hover {
  background-color: #ffffff;
  color: #031454;
  transform: translateY(-2px);
}

.cta-btn-icon-left {
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.cta-btn-arrow {
  margin-left: 0.75rem;
  font-weight: bold;
}

/* CTA Responsive Styles */
@media (max-width: 991px) {
  .about-cta-section {
    padding: 5.5rem 0;
  }

  .about-cta-section::before {
    background: linear-gradient(180deg, rgba(3, 20, 84, 0.95) 0%, rgba(3, 20, 84, 0.85) 60%, rgba(3, 20, 84, 0.7) 100%);
  }

  .cta-content-wrapper {
    max-width: 100%;
    text-align: center;
  }

  .cta-divider {
    margin: 1.5rem auto;
  }

  .cta-action-buttons {
    justify-content: center;
  }

  .cta-title {
    font-size: 2.35rem;
  }
}

@media (max-width: 576px) {
  .cta-action-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1rem;
    line-height: 1.55;
  }
}

/* =============================================
   SERVICE & SAFETY HERO SECTION STYLES
   ============================================= */
.safety-hero-section {
  position: relative;
  height: 596px;
  background-color: #061c3a;
  background-image: url('home assets/service-safety-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.safety-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(6, 28, 58, 0.95) 0%, rgba(6, 28, 58, 0.85) 30%, rgba(6, 28, 58, 0.3) 60%, rgba(6, 28, 58, 0) 100%);
  z-index: 1;
}

.safety-hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.safety-hero-content {
  max-width: 620px;
}

.safety-hero-title {
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0px;
}

.safety-hero-divider {
  width: 48px;
  height: 3.5px;
  background-color: var(--orange-primary);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.safety-hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.safety-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
}

.safety-btn-row {
  display: flex;
  gap: 1rem;
}

.safety-btn-row .btn {
  flex: 1;
  text-align: center;
  padding: 0.875rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.btn-safety-orange {
  background-color: var(--orange-primary);
  color: var(--text-white);
  border: 2px solid var(--orange-primary);
}

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

.btn-safety-outline {
  background-color: transparent;
  border: 2px solid var(--text-white);
  color: var(--text-white);
}

.btn-safety-outline:hover {
  background-color: var(--text-white);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-safety-phone {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(6, 28, 58, 0.4);
  color: var(--text-white);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
  cursor: pointer;
  box-sizing: border-box;
}

.btn-safety-phone:hover {
  border-color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-safety-phone .phone-icon-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Responsive styles for Safety Hero */
@media (max-width: 991px) {
  .safety-hero-section {
    height: 720px;
  }

  .safety-hero-title {
    font-size: 2.75rem;
  }

  .safety-hero-overlay {
    background: linear-gradient(180deg, rgba(6, 28, 58, 0.95) 0%, rgba(6, 28, 58, 0.85) 60%, rgba(6, 28, 58, 0.6) 100%);
  }

  .safety-hero-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .safety-hero-section {
    height: auto;
    padding: 7.5rem 0 4rem 0;
  }

  .safety-hero-title {
    font-size: 2.25rem;
  }

  .safety-btn-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .safety-hero-actions {
    max-width: 100%;
  }

  .safety-hero-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
  }
}

/* =============================================
   SMELL GAS SAFETY SECTION STYLES
   ============================================= */
.gas-safety-section {
  background-color: #f4f7fa;
  padding: 1rem 0;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.safety-left-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.safety-section-title {
  color: #061c3a;
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0px;
}

.safety-graphic-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

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

.safety-steps-col {
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  padding: 0 3rem;
}

.safety-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.safety-step-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.safety-step-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.safety-step-item:first-child {
  padding-top: 0;
}

.step-num-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.step-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #1f2937;
  font-weight: 500;
  line-height: 1.5;
}

.safety-card-col {
  display: flex;
  justify-content: center;
}

.safety-emergency-card {
  background-color: var(--navy-dark);
  border-radius: 16px;
  padding: 1.4rem 2rem;
  width: 100%;
  max-width: 360px;
  text-align: center;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-flame-wrapper {
  margin-bottom: 1rem;
}

.card-flame-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.card-divider-orange {
  width: 60px;
  height: 3px;
  background-color: var(--orange-primary);
  margin: 1rem auto 1.5rem auto;
  border-radius: 2px;
}

.card-emergency-title {
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.card-emergency-action {
  color: var(--orange-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0;
}

.card-divider-white {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 2rem 0;
}

.card-emergency-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.card-emergency-phone:hover {
  color: var(--orange-primary);
  transform: scale(1.03);
}

.card-phone-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Responsive styles for Safety Grid */
@media (max-width: 991px) {
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .safety-left-col {
    align-items: center;
    text-align: center;
  }

  .safety-graphic-wrapper {
    justify-content: center;
  }

  .safety-steps-col {
    border-left: none;
    border-right: none;
    padding: 0;
  }

  .safety-step-item {
    padding: 1.25rem 0;
  }
}

/* =============================================
   SERVICE SUPPORT SECTION STYLES
   ============================================= */
.service-support-section {
  background-color: #ffffff;
  padding: 1rem 0;
}

.support-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.support-title {
  color: #061c3a;
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.support-subtitle {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.support-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 2rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: transparent;
}

.support-card-icon-wrapper {
  margin-bottom: 2rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card-icon {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

.support-card-title {
  color: #061c3a;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.support-card-desc {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive styles for Support Grid */
@media (max-width: 991px) {
  .service-support-section {
    padding: 4.5rem 0;
  }

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

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

  .support-card {
    padding: 2.5rem 1.5rem;
  }

  .support-title {
    font-size: 2rem;
  }
}

/* =============================================
   PROPANE SAFETY TIPS SECTION STYLES
   ============================================= */
.safety-tips-section {
  background-color: #f4f7fa;
  padding: 1rem 0;
}

.tips-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tips-title {
  color: #061c3a;
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tips-subtitle {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.tips-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tips-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: transparent;
}

.tips-card-icon-wrapper {
  margin-bottom: 2rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tips-card-icon {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

.tips-card-title {
  color: #061c3a;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.tips-card-desc {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive styles for Tips Grid */
@media (max-width: 991px) {
  .safety-tips-section {
    padding: 4.5rem 0;
  }

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

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

  .tips-card {
    padding: 2.5rem 1.5rem;
  }

  .tips-title {
    font-size: 2rem;
  }
}

/* =============================================
   SAFETY HELP SPLIT SECTION STYLES
   ============================================= */
.safety-help-split-section {
  display: flex;
  min-height: 520px;
  background-color: #ffffff;
  width: 100%;
}

.split-image-col {
  flex: 1;
  position: relative;
  overflow: hidden;
}

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

.split-content-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5rem 6rem;
  background-color: #ffffff;
}

.split-content-inner {
  max-width: 550px;
}

.split-title {
  color: #061c3a;
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.split-desc {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.split-actions {
  display: flex;
  gap: 1.5rem;
}

.split-btn-orange {
  padding: 1rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  background-color: var(--orange-primary);
  color: var(--text-white);
  border: 2px solid var(--orange-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

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

.btn-split-outline-blue {
  padding: 1rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  background-color: transparent;
  color: #061c3a;
  border: 2px solid #061c3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-split-outline-blue:hover {
  background-color: #061c3a;
  color: var(--text-white);
  transform: translateY(-2px);
}

.split-phone-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Responsive styles for Split Section */
@media (max-width: 991px) {
  .safety-help-split-section {
    flex-direction: column;
  }

  .split-image-col {
    height: 380px;
    width: 100%;
  }

  .split-content-col {
    padding: 4rem 2rem;
    justify-content: center;
  }

  .split-content-inner {
    max-width: 100%;
  }

  .split-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 576px) {
  .split-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .split-btn-orange,
  .btn-split-outline-blue {
    width: 100%;
  }

  .split-image-col {
    height: 280px;
  }
}

/* =============================================
   FAQ SECTION STYLES
   ============================================= */
.faq-section {
  background-color: #f4f7fa;
  padding: 1rem 0;
}

.faq-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  color: #061c3a;
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-header-divider {
  width: 48px;
  height: 3.5px;
  background-color: var(--orange-primary);
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

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

.faq-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(6, 28, 58, 0.15);
}

.faq-item {
  width: 100%;
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  list-style: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #061c3a;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.faq-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #f0f5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: #061c3a;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.faq-item[open] .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--orange-primary);
}

.faq-content {
  padding: 0 2rem 1.5rem 6.25rem;
  /* Indented to align with the question text */
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: left;
}

/* Responsive styles for FAQ Grid */
@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .faq-summary {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
  }

  .faq-icon-circle {
    width: 44px;
    height: 44px;
  }

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

  .faq-content {
    padding: 0 1.5rem 1.25rem 5.25rem;
  }
}

/* =============================================
   SAFETY CTA BANNER SECTION STYLES
   ============================================= */
.safety-cta-section {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
}

.safety-cta-section .section-container {
  width: 100%;
}


.safety-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(6, 28, 58, 0.85) 0%, rgba(6, 28, 58, 0.4) 50%, rgba(6, 28, 58, 0) 100%);
  z-index: 1;
}

.safety-cta-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  text-align: left;
}

.safety-cta-title {
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0px;
}

.safety-cta-divider {
  width: 48px;
  height: 3.5px;
  background-color: var(--orange-primary);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.safety-cta-desc {
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.safety-cta-actions {
  display: flex;
  gap: 1.25rem;
}

.safety-cta-actions .btn {
  padding: 0.875rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Responsive styles for Safety CTA */
@media (max-width: 991px) {
  .safety-cta-section {
    min-height: 380px;
  }

  .safety-cta-title {
    font-size: 2.25rem;
  }

  .safety-cta-overlay {
    background: linear-gradient(180deg, rgba(6, 28, 58, 0.9) 0%, rgba(6, 28, 58, 0.6) 100%);
  }

  .safety-cta-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .safety-cta-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .safety-cta-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   BECOME A CUSTOMER PAGE STYLES
   ========================================================================== */

.customer-hero {
  position: relative;
  background-image: url('become-customer assets/become-customer-hero.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 8rem 1.5rem 6.5rem;
  color: var(--text-white);
  min-height: 420px;
  display: flex;
  align-items: center;
}

.customer-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(6, 28, 58, 0.95) 0%, rgba(6, 28, 58, 0.8) 45%, rgba(6, 28, 58, 0.15) 100%);
  z-index: 1;
}

.customer-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.customer-hero-content {
  max-width: 620px;
}

.customer-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -1px;
}

.customer-hero-accent {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.customer-hero-accent-line {
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--orange-primary);
  border-radius: 2px;
}

.customer-hero-accent-flame {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.customer-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* Page Layout */
.customer-page-section {
  background-color: #f4f7fa;
  padding: 4rem 1.5rem;
}

.customer-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .customer-layout-grid {
    grid-template-columns: 2.1fr 1fr;
    align-items: start;
  }
}

/* Card Style (Left Column Form) */
.customer-card-form {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
  padding: 3rem;
}

/* Form Sections */
.form-section-fieldset {
  border: none;
  margin: 0 0 3rem 0;
  padding: 0;
}

.form-section-fieldset:last-of-type {
  margin-bottom: 1.5rem;
}

.form-section-legend {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.legend-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  background-color: var(--navy-dark);
  color: var(--text-white);
  flex-shrink: 0;
}

.legend-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.legend-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.legend-sub-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: normal;
  margin-left: 0.5rem;
}

/* Form Controls & Layout */
.form-group-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .form-group-row-2col {
    grid-template-columns: 1fr 1fr;
  }

  .form-group-row-3col {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.required-star {
  color: var(--orange-primary);
  margin-left: 3px;
}

/* Text Input, Select, Textarea styling */
.form-input,
.form-select,
.form-textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--bg-white);
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  min-height: 48px;
  width: 100%;
  transition: var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
  opacity: 0.8;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 72, 144, 0.15);
}

.form-select {
  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='%234b5563' 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.25rem;
  padding-right: 2.5rem;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Radio & Checkbox Styling */
.radio-group-flex {
  display: flex;
  gap: 2.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 2rem;
  margin-top: 0.5rem;
}

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

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

.custom-option-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
  user-select: none;
  font-weight: 500;
  min-height: 32px;
}

.custom-option-input {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--bg-white);
}

.custom-option-input[type="radio"] {
  border-radius: var(--radius-circle);
}

.custom-option-input:checked {
  border-color: var(--blue-secondary);
  background-color: var(--blue-secondary);
}

.custom-option-input[type="checkbox"]:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--text-white);
  border-bottom: 2px solid var(--text-white);
  transform: rotate(-45deg) translate(1px, -1px);
}

.custom-option-input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-circle);
  background-color: var(--text-white);
}

.custom-option-input:focus-visible {
  outline: 3px solid rgba(0, 72, 144, 0.35);
  outline-offset: 2px;
}

.other-specify-wrapper {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

/* Captcha Block */
.captcha-container-mock {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d1d5db;
  background-color: #f9fafb;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  width: 100%;
  max-width: 320px;
  margin-top: 0.5rem;
}

.captcha-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.captcha-checkbox-mock {
  appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background-color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.captcha-checkbox-mock:checked {
  border-color: #0b3c75;
}

.captcha-checkbox-mock:checked::before {
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  border-left: 3px solid #22c55e;
  border-bottom: 3px solid #22c55e;
  transform: rotate(-45deg) translate(1px, -2px);
}

.captcha-label-text {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 0.9rem;
  color: #2b2b2b;
  font-weight: 500;
}

.captcha-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.captcha-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.captcha-logo-text {
  font-size: 0.65rem;
  color: #555;
  font-weight: 400;
  margin-top: 2px;
}

/* Submit Block */
.form-submit-wrapper {
  margin-top: 2.5rem;
}

.btn-form-submit {
  width: 100%;
  background-color: var(--orange-primary);
  color: var(--text-white);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(242, 101, 34, 0.2);
}

.btn-form-submit:hover {
  background-color: var(--orange-hover);
  box-shadow: 0 6px 12px rgba(242, 101, 34, 0.3);
  transform: translateY(-2px);
}

.btn-form-submit svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-form-submit:hover svg {
  transform: translateX(4px);
}

/* Sticky Sidebar Column */
.customer-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 992px) {
  .customer-sidebar {
    position: sticky;
    top: 100px;
  }
}

.sidebar-card {
  background-color: #f0f4f8;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(11, 60, 117, 0.08);
}

.sidebar-help-widget {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.help-widget-icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-circle);
  background-color: #dbeafe;
  color: var(--navy-light);
  margin-bottom: 1.25rem;
}

.help-widget-icon-ring svg {
  width: 32px;
  height: 32px;
}

.help-widget-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.help-widget-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.help-widget-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.btn-sidebar-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background-color: var(--blue-secondary);
  color: var(--text-white);
  padding: 0.9rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 72, 144, 0.15);
}

.btn-sidebar-phone:hover {
  background-color: var(--blue-hover);
  transform: translateY(-2px);
}

.btn-sidebar-phone svg {
  width: 18px;
  height: 18px;
}

/* Sidebar Value Props */
.sidebar-value-props {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.value-prop-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.value-prop-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-circle);
  background-color: var(--blue-secondary);
  color: var(--text-white);
  flex-shrink: 0;
}

.value-prop-icon-circle svg {
  width: 20px;
  height: 20px;
}

.value-prop-content {
  display: flex;
  flex-direction: column;
}

.value-prop-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.value-prop-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Sidebar Office Hours */
.sidebar-hours-widget {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(11, 60, 117, 0.05);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hours-icon-wrapper {
  color: var(--orange-primary);
  flex-shrink: 0;
}

.hours-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.hours-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hours-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.hours-text {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
}

.hours-closed {
  color: var(--text-muted);
}

/* Bottom CTA section with Vineyard BG */
.customer-cta-section {
  position: relative;
  background-image: url('become-customer assets/become-customer-footer-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  color: var(--text-white);
  overflow: hidden;
}

.customer-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(6, 28, 58, 0.9) 0%, rgba(6, 28, 58, 0.72) 100%);
  z-index: 1;
}

.customer-cta-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.cta-horizontal-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .cta-horizontal-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

.cta-title-col {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-accent-horizontal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-accent-dash {
  width: 32px;
  height: 3px;
  background-color: var(--orange-primary);
  border-radius: 2px;
}

.cta-accent-flame-small {
  height: 18px;
  width: auto;
}

.cta-title-horizontal {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin: 0;
  text-align: left;
}

@media (min-width: 1200px) {
  .cta-title-horizontal {
    font-size: 2.85rem;
  }
}

.cta-desc-col {
  flex: 1.5;
  text-align: left;
}

.cta-desc-horizontal {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 600px;
}

.cta-desc-horizontal u {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.highlight-orange {
  color: var(--orange-primary);
  font-weight: 700;
}

.cta-actions-col {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 480px) {
  .cta-actions-col {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .cta-actions-col {
    justify-content: flex-end;
  }
}

.cta-btn-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--orange-primary);
  color: var(--text-white);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 6px rgba(242, 101, 34, 0.2);
  text-decoration: none;
  min-height: 52px;
  flex-shrink: 0;
}

.cta-btn-horizontal:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(242, 101, 34, 0.3);
}

.cta-btn-chevron-horizontal {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cta-btn-horizontal:hover .cta-btn-chevron-horizontal {
  transform: translateX(4px);
}

.cta-phone-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--bg-white);
  color: #004890;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  border: 1px solid rgba(0, 72, 144, 0.15);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  min-height: 52px;
  flex-shrink: 0;
}

.cta-phone-horizontal:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.phone-icon-blue-horizontal {
  width: 18px;
  height: 18px;
  color: #004890;
}

/* Features Bar Styling */
.cta-features-bar {
  position: relative;
  z-index: 2;
  background-color: #031022;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2rem 2.5rem 2rem;
  text-align: left;
}

.cta-features-bar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 576px) {
  .cta-features-bar-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .cta-features-bar-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.cta-feature-bar-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-white);
}

.cta-feature-bar-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-circle);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  flex-shrink: 0;
}

.cta-feature-bar-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.cta-feature-bar-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cta-feature-bar-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-white);
}

.cta-feature-bar-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Responsive fixes for customer card padding */
@media (max-width: 768px) {
  .customer-card-form {
    padding: 2rem 1.5rem;
  }

  .customer-hero {
    padding: 6rem 1.5rem 4.5rem;
    text-align: center;
  }

  .customer-hero-content {
    margin: 0 auto;
  }

  .customer-hero-accent {
    justify-content: center;
  }

  .customer-hero-title {
    font-size: 2.5rem;
  }

  .customer-hero-subtitle {
    font-size: 1.1rem;
  }
}

/* ==========================================
   COMMERCIAL PAGE - HERO SECTION STYLES
   ========================================== */
.comm-hero-section {
  position: relative;
  min-height: 750px;
  height: 80vh;
  max-height: 820px;
  background-image: url('Commercial assets/Hero Section.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.comm-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(3, 20, 50, 0.82) 0%, rgba(3, 20, 50, 0.52) 42%, rgba(3, 20, 50, 0.1) 75%, rgba(3, 20, 50, 0) 100%);
  z-index: 1;
}

.comm-hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.comm-hero-content {
  max-width: 620px;
}

.comm-hero-title {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}

.comm-hero-description {
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 2.25rem;
}

.comm-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.comm-btn-orange {
  background-color: #ff5400;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 1.85rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid #ff5400;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.comm-btn-orange:hover {
  background-color: #e04a00;
  border-color: #e04a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 84, 0, 0.4);
}

.comm-btn-outline {
  background-color: rgba(6, 28, 58, 0.35);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 1.85rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(4px);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.comm-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.comm-btn-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Responsive Commercial Hero */
@media (max-width: 992px) {
  .comm-hero-section {
    min-height: 650px;
    height: auto;
    padding: 5rem 0;
  }

  .comm-hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .comm-hero-section {
    min-height: 560px;
    padding: 4rem 0;
  }

  .comm-hero-title {
    font-size: 2.25rem;
  }

  .comm-hero-description {
    font-size: 1rem;
  }

  .comm-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .comm-btn-orange,
  .comm-btn-outline {
    justify-content: center;
    width: 100%;
  }
}

/* ==========================================
   COMMERCIAL PAGE - RELIABLE DELIVERY SECTION
   ========================================== */
.comm-delivery-section {
  background-color: #ffffff;
  padding: 1.5rem 0;
}

.comm-delivery-container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.comm-delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.comm-delivery-img-col {
  width: 100%;
}

.comm-delivery-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(6, 28, 58, 0.08);
}

.comm-delivery-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.comm-flame-wrapper {
  margin-bottom: 1.25rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.comm-flame-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.comm-delivery-title {
  color: #061a48;
  font-family: 'Outfit', sans-serif;
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
  text-align: left;
}

.comm-delivery-desc {
  color: #4b5563;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.comm-delivery-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
}

.comm-delivery-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.comm-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #061a48;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comm-list-text {
  color: #0c2156;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
}

/* Responsive adjustments for Reliable Delivery section */
@media (max-width: 1024px) {
  .comm-delivery-grid {
    gap: 2.5rem;
  }

  .comm-delivery-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 868px) {
  .comm-delivery-section {
    padding: 4rem 0;
  }

  .comm-delivery-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .comm-delivery-img {
    border-radius: 16px;
  }

  .comm-delivery-title {
    font-size: 2rem;
  }
}

/* ==========================================
   COMMERCIAL PAGE - LOCAL BUSINESSES SECTION
   ========================================== */
.comm-biz-section {
  background-color: #f7f9fc;
  padding: 5.5rem 0;
}

.comm-biz-container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.comm-biz-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.comm-flame-center {
  justify-content: center;
}

.comm-biz-title {
  color: #061a48;
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

.comm-biz-subtitle {
  color: #4b5563;
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.55;
}

.comm-biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.comm-biz-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(6, 28, 58, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comm-biz-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(6, 28, 58, 0.08);
  border-color: rgba(242, 101, 34, 0.2);
}

.comm-biz-icon-wrap {
  width: 110px;
  height: 110px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comm-biz-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.comm-biz-card-title {
  color: #061a48;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.comm-biz-card-text {
  color: #4b5563;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Responsive adjustments for Local Businesses Grid */
@media (max-width: 1024px) {
  .comm-biz-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .comm-biz-title {
    font-size: 2.35rem;
  }
}

@media (max-width: 640px) {
  .comm-biz-section {
    padding: 1.5rem 0;
  }

  .comm-biz-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comm-biz-title {
    font-size: 2rem;
  }

  .comm-biz-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================
   COMMERCIAL PAGE - SETUP IS SIMPLE SECTION
   ========================================== */
.comm-setup-section {
  background-color: #f7f9fc;
  padding: 1.5rem 0;
}

.comm-setup-container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.comm-setup-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.comm-setup-title {
  color: #061a48;
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0.5rem;
  letter-spacing: -0.015em;
}

.comm-setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.comm-setup-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 4px 16px rgba(6, 28, 58, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-slow);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.comm-setup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(6, 28, 58, 0.08);
  border-color: rgba(242, 101, 34, 0.2);
}

.comm-setup-icon-wrap {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comm-setup-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.comm-setup-card-content {
  display: flex;
  flex-direction: column;
}

.comm-setup-card-title {
  color: #061a48;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.comm-setup-card-text {
  color: #4b5563;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
}

.comm-setup-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.comm-setup-btn {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

/* Responsive adjustments for Commercial Setup section */
@media (max-width: 1100px) {
  .comm-setup-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto 3rem;
  }
}

@media (max-width: 768px) {
  .comm-setup-section {
    padding: 4rem 0;
  }

  .comm-setup-title {
    font-size: 2rem;
  }

  .comm-setup-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

/* ==========================================
   COMMERCIAL PAGE - SERVICE AREA SECTION
   ========================================== */
.comm-area-section {
  background-color: #ffffff;
  padding: 1.5rem 0;
}

.comm-area-container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.comm-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.comm-area-img-col {
  width: 100%;
  display: flex;
  justify-content: center;
}

.comm-area-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  object-fit: contain;
}

.comm-area-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.comm-area-title {
  color: #061a48;
  font-family: 'Outfit', sans-serif;
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}

.comm-area-desc {
  color: #4b5563;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.comm-counties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 2rem;
  margin-bottom: 2.25rem;
  width: 100%;
}

.comm-county-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.comm-btn-navy {
  background-color: #061a48;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 1.85rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid #061a48;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.comm-btn-navy:hover {
  background-color: #002d62;
  border-color: #002d62;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 28, 58, 0.3);
}

/* Responsive adjustments for Service Area section */
@media (max-width: 1024px) {
  .comm-area-grid {
    gap: 2.5rem;
  }

  .comm-area-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 868px) {
  .comm-area-section {
    padding: 4rem 0;
  }

  .comm-area-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .comm-counties-grid {
    grid-template-columns: 1fr;
  }

  .comm-area-title {
    font-size: 2rem;
  }
}

/* ==========================================
   COMMERCIAL PAGE - REVIEWS & TESTIMONIALS SECTION
   ========================================== */
.comm-reviews-section {
  background-color: #061c3a;
  padding: 1.5rem 0;
  color: #ffffff;
}

.comm-reviews-container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.comm-reviews-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.comm-reviews-title {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0.5rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
}

.comm-reviews-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.55;
}

.comm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.comm-review-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-slow);
}

.comm-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comm-review-stars {
  color: #ff5400;
  font-size: 1.35rem;
  letter-spacing: 0.15rem;
  margin-bottom: 1.25rem;
}

.comm-review-quote {
  color: #374151;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: normal;
  flex-grow: 1;
}

.comm-review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.comm-review-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comm-review-author-info {
  display: flex;
  flex-direction: column;
}

.comm-review-author-name {
  color: #061a48;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

.comm-review-author-loc,
.comm-review-author-role {
  color: #6b7280;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.35;
}

.comm-reviews-cta-wrap {
  display: flex;
  justify-content: center;
}

.comm-reviews-btn {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

/* Responsive adjustments for Reviews section */
@media (max-width: 1024px) {
  .comm-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .comm-reviews-title {
    font-size: 2.35rem;
  }
}

@media (max-width: 768px) {
  .comm-reviews-section {
    padding: 4rem 0;
  }

  .comm-reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comm-reviews-title {
    font-size: 2rem;
  }

  .comm-review-card {
    padding: 1.75rem 1.5rem;
  }
}

/* ==========================================
   COMMERCIAL PAGE - FAQS SECTION
   ========================================== */
.comm-faq-section {
  background-color: #f7f9fc;
  padding: 1.5rem 0;
}

.comm-faq-container {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.comm-faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.comm-faq-title {
  color: #061a48;
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0.5rem;
  letter-spacing: -0.015em;
}

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

.comm-faq-item {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1.5px solid rgba(6, 28, 58, 0.08);
  box-shadow: 0 4px 12px rgba(6, 28, 58, 0.02);
  overflow: hidden;
  transition: var(--transition);
}

.comm-faq-item:hover {
  border-color: rgba(242, 101, 34, 0.3);
  box-shadow: 0 6px 20px rgba(6, 28, 58, 0.06);
}

.comm-faq-question {
  width: 100%;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #061a48;
  gap: 1rem;
}

.comm-faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1.5px solid #ff5400;
  color: #ff5400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: var(--transition);
}

.comm-faq-item.open .comm-faq-toggle-icon {
  background-color: transparent;
  color: #ff5400;
  border-color: #ff5400;
}

.comm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
}

.comm-faq-item.open .comm-faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.35rem;
}

.comm-faq-answer p {
  color: #4b5563;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive adjustments for FAQ section */
@media (max-width: 768px) {
  .comm-faq-section {
    padding: 4rem 0;
  }

  .comm-faq-title {
    font-size: 2rem;
  }

  .comm-faq-question {
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
  }

  .comm-faq-answer {
    padding: 0 1.25rem;
  }

  .comm-faq-item.open .comm-faq-answer {
    padding: 0 1.25rem 1.15rem;
  }
}

/* ==========================================
   COMMERCIAL PAGE - BOTTOM CTA BANNER SECTION
   ========================================== */
.comm-cta-banner-section {
  position: relative;
  background-image: url('Commercial assets/Bottom Section.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 5.5rem 0 4rem;
  color: #ffffff;
  overflow: hidden;
}

.comm-cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(4, 18, 42, 0.92) 0%, rgba(4, 18, 42, 0.72) 48%, rgba(4, 18, 42, 0.25) 82%, rgba(4, 18, 42, 0.05) 100%);
  z-index: 1;
}

.comm-cta-banner-container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.comm-cta-banner-content {
  max-width: 620px;
  margin-bottom: 4.5rem;
}

.comm-cta-banner-title {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}

.comm-cta-banner-desc {
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.55;
  margin-bottom: 2.25rem;
}

.comm-cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.comm-btn-white-phone {
  background-color: #ffffff;
  color: #061a48;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 1.85rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.comm-btn-white-phone:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.comm-cta-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.comm-cta-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.comm-cta-feature-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.comm-cta-feature-text {
  display: flex;
  flex-direction: column;
}

.comm-cta-feature-title {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

.comm-cta-feature-desc {
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.35;
}

/* Responsive adjustments for Bottom CTA Banner */
@media (max-width: 1100px) {
  .comm-cta-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .comm-cta-banner-section {
    padding: 4rem 0 3rem;
  }

  .comm-cta-banner-title {
    font-size: 2.25rem;
  }

  .comm-cta-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .comm-btn-white-phone {
    justify-content: center;
    width: 100%;
  }

  .comm-cta-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* =============================================
   NEWSLETTER SECTION STYLES
   ============================================= */
.newsletter-section {
  background-color: #04142c;
  padding: 4rem 2rem;
  border-top: 3px solid #f26522;
  display: none;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.newsletter-content {
  flex: 1 1 500px;
}

.newsletter-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
}

.newsletter-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.newsletter-form {
  flex: 1 1 400px;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  border-color: #f26522;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  padding: 0.85rem 1.75rem;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

@media (max-width: 768px) {
  .newsletter-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
    text-align: center;
  }
}

/* =============================================
   PRIVACY POLICY PAGE STYLES
   ============================================= */
.privacy-page {
  background-color: #f2f5f9;
}

.privacy-main {
  padding-bottom: 5rem;
}

.privacy-hero {
  background: linear-gradient(180deg, #04142c 0%, #08244d 100%);
  color: #ffffff;
  padding: 6.5rem 1.5rem 4rem;
  text-align: center;
}

.privacy-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.badge-line {
  width: 40px;
  height: 2px;
  background-color: #f26522;
  display: inline-block;
}

.privacy-lock-svg {
  width: 22px;
  height: 22px;
  color: #f26522;
}

.privacy-page-title {
  color: #ffffff;
  font-size: 3.25rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.privacy-page-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy-date {
  color: #f26522;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}

/* Privacy Content Cards Container */
.privacy-content-section {
  padding: 3.5rem 1.5rem 2rem;
}

.privacy-container {
  max-width: 920px;
  margin: 0 auto;
}

.privacy-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.25rem 2.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 5px 20px rgba(6, 28, 58, 0.05);
  border: 1px solid rgba(6, 28, 58, 0.04);
}

.privacy-card-title {
  color: #061c3a;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.orange-bar {
  width: 5px;
  height: 1.3em;
  background-color: #f26522;
  border-radius: 3px;
  display: inline-block;
  flex-shrink: 0;
}

.privacy-card p {
  color: #3b4c66;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

.privacy-bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.privacy-bullet-list li {
  position: relative;
  padding-left: 1.75rem;
  color: #3b4c66;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.privacy-bullet-list li:last-child {
  margin-bottom: 0;
}

.privacy-bullet-list li::before {
  content: "•";
  color: #f26522;
  font-size: 1.5rem;
  position: absolute;
  left: 0.25rem;
  top: -0.1rem;
}

.privacy-contact-block p {
  margin-bottom: 0.5rem;
}

.privacy-contact-block a {
  color: #f26522;
  text-decoration: none;
  font-weight: 600;
}

.privacy-contact-block a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-hero {
    padding: 5.5rem 1.25rem 3rem;
  }

  .privacy-page-title {
    font-size: 2.35rem;
  }

  .privacy-card {
    padding: 1.5rem 1.35rem;
  }

  .privacy-card-title {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   NEWSLETTER HUB & ARTICLE STYLES (NEWS.HTML & NEWS-ARTICLE.HTML & ADMIN)
   ========================================================================== */

.news-page-body {
  background-color: #F8FAFC;
  color: #1E293B;
  font-family: 'Inter', sans-serif;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header utility buttons */
.btn-pay-bill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0A2540;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-pay-bill:hover {
  background-color: #14385C;
  color: #FFFFFF;
}

.btn-request-delivery {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #F36E21;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-request-delivery:hover {
  background-color: #E05B10;
  color: #FFFFFF;
}

/* HERO SECTION */
.news-hero-section {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.news-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 35%, rgba(255, 255, 255, 0) 60%);
  z-index: 1;
}

.news-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.news-hero-content {
  max-width: 580px;
}

.news-flame-divider {
  display: none;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.news-flame-divider .divider-line {
  width: 48px;
  height: 1.5px;
  background-color: #F36E21;
}

.news-flame-divider .flame-img {
  height: 28px;
  width: auto;
  display: block;
}

.news-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0A2540;
  margin-bottom: 1.25rem;
}

.news-hero-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 1.5rem;
}

.btn-admin-manage {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748B;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #CBD5E1;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-admin-manage:hover {
  color: #0A2540;
  border-color: #0A2540;
  background-color: #FFFFFF;
}

/* SECTION TITLES & ICONS */
.current-newsletter-section,
.previous-newsletters-section {
  padding: 3.5rem 0;
}

.section-title-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.section-title-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #0A2540;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(10, 37, 64, 0.2);
}

.section-title-icon.icon-archive {
  background-color: #0A2540;
}

.section-title-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0A2540;
  margin: 0;
  line-height: 1.2;
}

.edition-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #F36E21;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #64748B;
  margin-top: 0.25rem;
}

/* CURRENT NEWSLETTER FEATURED CARD */
.current-newsletter-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 3.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.current-newsletter-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.current-news-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.current-news-title-link:hover .current-news-heading {
  color: #F36E21;
}

.current-news-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0A2540;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.current-news-subheading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 1.5rem;
}

.current-news-body p {
  font-size: 1.025rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 1.25rem;
}

.current-news-action {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}

.btn-read-full {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  background-color: #F36E21;
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.btn-read-full:hover {
  background-color: #d85711;
  transform: translateY(-2px);
}

/* CALLOUT BOXES GRID */
.current-news-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #F1F5F9;
}

.callout-box {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.callout-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #0A2540;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callout-icon.icon-warning {
  background-color: #0A2540;
}

.callout-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 0.35rem;
}

.callout-info p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #475569;
  margin: 0;
}

/* PREVIOUS NEWSLETTERS GRID */
.previous-newsletters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.newsletter-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.card-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: #E2E8F0;
}

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

.newsletter-card:hover .card-thumb-img {
  transform: scale(1.06);
}

.card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-summary {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #64748B;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.btn-view-newsletter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  background-color: #FFFFFF;
  color: #0A2540;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.newsletter-card:hover .btn-view-newsletter,
.btn-view-newsletter:hover {
  border-color: #0A2540;
  background-color: #F8FAFC;
  color: #0A2540;
}

.btn-view-newsletter svg {
  transition: transform 0.2s ease;
}

.btn-view-newsletter:hover svg {
  transform: translateX(4px);
}

/* CTA BANNER */
.news-cta-banner {
  margin-top: 70px !important;
  background-color: #0A2540;
  color: #FFFFFF;
  padding: 3.5rem 0;
}

.cta-banner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #FFFFFF;
}

.cta-banner-text p {
  font-size: 1rem;
  color: #CBD5E1;
  margin: 0;
}

.cta-banner-features {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-feature-item .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F36E21;
}

.cta-feature-item .feature-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta-feature-item .feature-info span {
  display: block;
  font-size: 0.8rem;
  color: #CBD5E1;
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-cta {
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-white {
  background-color: #FFFFFF;
  color: #0A2540;
}

.btn-white:hover {
  background-color: #F1F5F9;
  color: #0A2540;
}

/* ARTICLE DETAIL PAGE STYLES */
.article-page-main {
  padding: 0;

}

.article-breadcrumbs {
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  margin-top: 25px;
}

.article-breadcrumbs a {
  color: #F36E21;
  text-decoration: none;
  font-weight: 600;
}

.article-breadcrumbs a:hover {
  text-decoration: underline;
}

.article-breadcrumbs .sep {
  margin: 0 0.5rem;
  color: #94A3B8;
}

.article-detail-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 3.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  margin-bottom: 3.5rem;
}

.article-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 1.5rem;
}

.article-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #0A2540;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.article-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: #475569;
}

.article-featured-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* ADMIN PAGE STYLES */
.admin-page-body {
  background-color: #F1F5F9;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

.admin-badge-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.admin-indicator {
  background-color: #FEF3C7;
  color: #92400E;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}

.btn-back-site {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.admin-main {
  padding: 3rem 0 5rem;
}

.admin-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.admin-header-title {
  margin-bottom: 2rem;
}

.admin-header-title h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #0A2540;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.admin-form-card,
.admin-side-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.form-card-title,
.admin-side-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #FFFFFF;
  color: #0A2540;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F36E21;
  box-shadow: 0 0 0 3px rgba(243, 110, 33, 0.15);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-callouts-box {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-callouts-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 1rem;
}

.callout-group-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.5rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  border: none;
}

.btn-navy {
  background-color: #0A2540;
  color: #FFFFFF;
}

.btn-navy:hover {
  background-color: #14385C;
}

.btn-outline-danger {
  background-color: #FFFFFF;
  border: 1px solid #FCA5A5;
  color: #DC2626;
  font-weight: 600;
}

.btn-outline-danger:hover {
  background-color: #FEF2F2;
}

.admin-side-card {
  margin-bottom: 1.5rem;
}

.admin-alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.admin-alert.alert-success {
  background-color: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
}

.admin-posts-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.admin-post-item {
  padding: 0.85rem;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background-color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-post-info strong {
  display: block;
  font-size: 0.9rem;
  color: #0A2540;
}

.admin-post-info span {
  font-size: 0.8rem;
  color: #64748B;
}

.btn-sm-del {
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #DC2626;
  font-size: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  transition: all 0.2s ease;
}

.btn-sm-del:hover {
  background-color: #DC2626;
  border-color: #DC2626;
  color: #FFFFFF;
  text-decoration: none;
}

/* ADMIN AUTHENTICATION OVERLAY */
.admin-auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admin-auth-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.auth-brand-logo {
  margin-bottom: 1.25rem;
}

.auth-brand-logo img {
  height: 50px;
  width: auto;
}

.auth-header-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 0.5rem;
}

.auth-header-text p {
  font-size: 0.92rem;
  color: #64748B;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.admin-login-form {
  text-align: left;
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper input {
  padding-right: 2.8rem;
}

.btn-toggle-pass {
  position: absolute;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.btn-toggle-pass:hover {
  opacity: 1;
}

.auth-error-msg {
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #DC2626;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.auth-footer-link {
  margin-top: 1.5rem;
  font-size: 0.88rem;
}

.auth-footer-link a {
  color: #64748B;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.auth-footer-link a:hover {
  color: #F36E21;
}

.btn-logout {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #EF4444;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 0.5rem;
}

.btn-logout:hover {
  background-color: #EF4444;
  color: #FFFFFF;
}

/* FEATURED IMAGE UPLOAD */
.file-upload-dropzone {
  position: relative;
  border: 2px dashed #CBD5E1;
  border-radius: 10px;
  background-color: #F8FAFC;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.file-upload-dropzone:hover,
.file-upload-dropzone.dragover {
  border-color: #F36E21;
  background-color: #FFF7ED;
}

.file-input-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: #64748B;
  pointer-events: none;
}

.dropzone-content svg {
  stroke: #F36E21;
}

.dropzone-content span {
  font-weight: 600;
  color: #0A2540;
  font-size: 0.92rem;
}

.dropzone-content small {
  font-size: 0.78rem;
  color: #94A3B8;
}

.image-preview-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 3;
}

.image-preview-img {
  max-height: 160px;
  width: auto;
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #E2E8F0;
}

.btn-remove-preview {
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #DC2626;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-remove-preview:hover {
  background-color: #DC2626;
  color: #FFFFFF;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .previous-newsletters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner-features {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .news-hero-title {
    font-size: 2.25rem;
  }

  .current-newsletter-card {
    padding: 1.75rem;
  }

  .current-news-callouts {
    grid-template-columns: 1fr;
  }

  .previous-newsletters-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-card {
    flex-direction: column;
    align-items: flex-start;
  }

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