/* ==========================================================================
   HOMEMAINTENANCEANDLAWNCARE.COM - OFFICIAL STYLESHEET
   Design Archetype: Exact Original Flyer Theme (Light Sky Blue, Deep Navy, Safety Orange)
   ========================================================================== */

:root {
  /* Color Palette - Directly Extracted from the Original Flyer */
  --color-orange: #ff5722;          /* Flyer Safety Blaze Orange */
  --color-orange-hover: #e64a19;    /* Deeper Orange for Hover */
  --color-orange-light: #fff3e0;    /* Soft Tint for Backgrounds */

  --color-navy: #0b2545;            /* Flyer Deep Navy Blue */
  --color-navy-hover: #07192f;      /* Darker Navy */
  --color-navy-light: #134074;      /* Medium Navy */

  --color-sky-bg: #eaf4fc;          /* Flyer Light Sky Blue Background */
  --color-sky-light: #f4f9fd;       /* Ultra-Light Sky Tint */
  --color-white: #ffffff;           /* Card White */

  --text-dark: #0b2545;            /* Dark Navy Text */
  --text-body: #1e293b;            /* Charcoal Slate Body Text */
  --text-muted: #52677d;           /* Muted Slate */
  --text-white: #ffffff;           /* White Text */

  --border-light: #cfe2f3;         /* Soft Blue Border */
  --border-orange: #ff5722;        /* Vibrant Orange Border */
  --border-navy: #0b2545;          /* Navy Border */

  /* Typography */
  --font-display: 'Oswald', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-condensed: 'Barlow Semi Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 6px 16px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 12px 28px rgba(11, 37, 69, 0.16);

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.2s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-sky-bg);
  color: var(--text-body);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--color-sky-bg);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-center { text-align: center; }
.text-orange { color: var(--color-orange); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-orange {
  background-color: var(--color-orange);
  color: #ffffff;
  border-color: var(--color-orange);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.btn-orange:hover {
  background-color: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
}

.btn-navy {
  background-color: var(--color-navy);
  color: #ffffff;
  border-color: var(--color-navy);
}

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

.btn-phone {
  background-color: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-phone:hover {
  background-color: var(--color-navy);
  color: #ffffff;
}

.phone-num-desktop {
  display: inline;
}

.phone-num-mobile {
  display: none;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   TOP NAVIGATION
   ========================================================================== */
.top-nav-bar {
  background-color: #ffffff;
  border-bottom: 2px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 12px;
}

.brand-left {
  flex-shrink: 1;
  min-width: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.nav-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 3.2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-menu .nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-navy);
  padding: 6px 0;
  position: relative;
}

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

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background-color: var(--color-orange);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  background: var(--color-navy);
  color: #ffffff;
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
  transition: var(--transition);
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus-visible {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #ffffff;
}

.mobile-drawer {
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 16px 20px;
}

.mobile-drawer.open {
  display: block;
}

.mobile-menu-list li {
  margin-bottom: 12px;
}

.mobile-nav-item {
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-navy);
  display: block;
}

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

.mobile-phone-call {
  margin-top: 16px;
}

/* ==========================================================================
   HERO SECTION (THEMED ON THE ORIGINAL FLYER)
   ========================================================================== */
.flyer-hero-section {
  padding: 36px 0 54px 0;
  background-color: #daecf9;
  text-align: center;
}

.flyer-top-container {
  max-width: 960px;
  margin: 0 auto;
}

.hero-logo-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-logo {
  margin: 0 auto;
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  display: block;
}

.flyer-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.flyer-star {
  font-size: 2.2rem;
  color: var(--color-orange);
  line-height: 1;
}

.flyer-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-navy);
  text-transform: uppercase;
  line-height: 1.15;
  overflow-wrap: break-word;
  word-break: break-word;
}

.flyer-title-and {
  color: var(--color-navy);
}

.flyer-title-orange {
  color: var(--color-orange);
}

.flyer-cta-banner {
  margin-bottom: 20px;
}

.flyer-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--color-orange);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 18px rgba(255, 87, 34, 0.4);
  transition: var(--transition);
  max-width: 100%;
}

.cta-text-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.flyer-phone-btn:hover {
  background: var(--color-orange-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 87, 34, 0.5);
}

.flyer-veteran-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.dec-line {
  flex-grow: 1;
  max-width: 140px;
  height: 2px;
  background: var(--color-orange);
}

.dec-star {
  color: var(--color-orange);
  font-size: 1.25rem;
}

.veteran-text {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-navy);
  text-transform: uppercase;
  text-align: center;
}

.flyer-checkmarks-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chk-item {
  font-family: var(--font-condensed);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.chk-box {
  color: var(--color-orange);
  font-size: 1.15rem;
}

.flyer-navy-banner {
  background: var(--color-navy);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}

.navy-line-1 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

.navy-line-2 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.6vw, 1.95rem);
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.25;
}

/* ==========================================================================
   SERVICES OFFERED SECTION
   ========================================================================== */
.services-offered-section {
  padding: 70px 0;
  background-color: var(--color-sky-light);
}

.section-title-wrap {
  margin-bottom: 40px;
}

.main-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.heading-call-btn .btn-navy {
  font-size: 1.25rem;
  padding: 8px 24px;
}

/* 8 Flyer Service Boxes */
.flyer-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

.service-box {
  background: #ffffff;
  border: 2px solid var(--color-orange);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: var(--transition);
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--color-orange-light);
}

.service-box-icon {
  color: var(--color-orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-box-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Pressure Washing Estimate Policy Callout Banner (From Original Website) */
.pricing-callout-banner {
  background-color: #ffffff;
  border: 2px solid var(--color-orange);
  border-left: 6px solid var(--color-orange);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.pricing-note-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.pricing-note-content {
  font-size: 1rem;
  color: var(--color-navy);
  line-height: 1.5;
}

.pricing-note-content strong {
  color: var(--color-navy);
}

/* 2 Detailed Panels (Yard Services & Property Specialties) */
.flyer-panels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 35px;
}

.flyer-panel {
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.panel-header {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.yard-header {
  background: #0f3d2e;
}

.property-header {
  background: var(--color-navy);
}

.panel-icon {
  font-size: 1.4rem;
}

.panel-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.panel-body {
  padding: 24px;
}

.flyer-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.property-body .flyer-checklist {
  grid-template-columns: 1fr;
}

.flyer-checklist li {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bullet-check {
  color: var(--color-orange);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Website Verbatim Card */
.website-verbatim-card {
  background: #ffffff;
  border-left: 4px solid var(--color-orange);
  border-radius: var(--radius-sm);
  padding: 24px 30px;
  box-shadow: var(--shadow-sm);
}

.verbatim-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ==========================================================================
   TRUST PILLARS (THE EXACT 6 PILLARS)
   ========================================================================== */
.trust-pillars-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.pillar-card {
  background: var(--color-sky-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 24px 14px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-orange);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  color: var(--color-orange);
  margin-bottom: 12px;
}

.pillar-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.2;
}

.pillar-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
  padding: 70px 0;
  background-color: var(--color-sky-bg);
}

.about-cards-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 32px;
  align-items: start;
}

.about-content-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-bottom: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.about-paragraph {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
}

.community-highlight-box,
.mgmt-highlight-box {
  background: var(--color-sky-light);
  border-left: 4px solid var(--color-navy);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.community-title,
.mgmt-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.community-highlight-box p,
.mgmt-highlight-box p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Sidebar Box */
.about-side-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bbb-accredited-box {
  background: #ffffff;
  border: 2px solid #005a9c;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bbb-ribbon {
  background: #005a9c;
  color: #ffffff;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 6px;
}

.bbb-grade {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: #005a9c;
  text-align: center;
  line-height: 1;
  padding-top: 14px;
}

.bbb-info {
  padding: 12px 18px 18px 18px;
  text-align: center;
}

.bbb-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-navy);
}

.bbb-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.quick-facts-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.facts-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-orange);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.facts-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
}

/* ==========================================================================
   WORK GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 70px 0;
  background-color: var(--color-sky-light);
  border-top: 1px solid var(--border-light);
}

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

.before-after-card {
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.ba-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ba-col {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.ba-tag {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.before-tag { background: #dc2626; color: #fff; }
.after-tag { background: #16a34a; color: #fff; }

.ba-photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  aspect-ratio: 1/1;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   CONTACT SECTION (MATCHING ORIGINAL WEBSITE FORM & LAYOUT)
   ========================================================================== */
.contact-section {
  padding: 70px 0;
  background-color: var(--color-sky-bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
}

.form-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.form-ctrl {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #fdfdfd;
}

.form-ctrl:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.2);
}

.form-notification {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.form-notification.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.info-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-block {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border-light);
}

.info-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.info-subheading {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-line {
  color: var(--text-body);
  font-size: 0.95rem;
}

.contact-link {
  color: var(--color-orange);
  font-weight: bold;
}

.map-embed {
  margin-top: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

/* ==========================================================================
   FLYER FOOTER BANNER (NAVY BAR FROM ORIGINAL FLYER)
   ========================================================================== */
.flyer-footer-banner {
  background: var(--color-navy);
  padding: 22px 0;
  border-top: 3px solid var(--color-orange);
}

.footer-banner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-mission-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flag-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.mission-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--color-orange);
  text-transform: uppercase;
}

.mission-desc {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.footer-domain {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: 0.06em;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: #061528;
  padding: 20px 0;
  color: #8da4be;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .flyer-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .photos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .main-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: inline-flex;
    padding: 7px 13px;
    font-size: 0.88rem;
  }
  .btn-phone {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  .nav-inner {
    height: 64px;
    gap: 8px;
  }
  .flyer-panels-grid {
    grid-template-columns: 1fr;
  }
  .about-cards-layout {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-banner-flex {
    flex-direction: column;
    text-align: center;
  }
  .footer-phone-wrap {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .phone-num-desktop {
    display: none;
  }
  .phone-num-mobile {
    display: inline;
    font-weight: 800;
  }
  .nav-domain {
    display: none;
  }
  .flyer-star {
    display: none;
  }
  .flyer-title-row {
    margin-bottom: 14px;
  }
  .cta-sep {
    display: none;
  }
  .cta-text-wrap {
    flex-direction: column;
    gap: 2px;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .flyer-services-grid {
    grid-template-columns: 1fr;
  }
  .flyer-checklist {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .about-content-card {
    padding: 22px 16px;
  }
  .pricing-callout-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px;
  }
  .flyer-phone-btn {
    padding: 12px 16px;
    font-size: 1rem;
    gap: 8px;
    width: 100%;
    max-width: 380px;
  }
  .flyer-checkmarks-row {
    gap: 8px;
  }
  .chk-item {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .nav-inner {
    height: 56px;
    gap: 6px;
  }
  .brand-left {
    min-width: 0;
  }
  .nav-title {
    font-size: clamp(0.78rem, 3.4vw, 0.95rem);
  }
  .btn-phone {
    padding: 6px 9px;
    font-size: 0.78rem;
    gap: 4px;
  }
  .btn-phone svg {
    width: 13px;
    height: 13px;
  }
  .mobile-menu-btn {
    padding: 6px 10px;
    font-size: 0.82rem;
  }
  .hero-main-logo {
    max-width: 220px;
  }
  .dec-line {
    max-width: 35px;
  }
  .veteran-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .nav-inner {
    gap: 4px;
  }
  .btn-phone {
    padding: 5px 7px;
    font-size: 0.75rem;
  }
  .mobile-menu-btn {
    padding: 5px 8px;
    font-size: 0.78rem;
  }
  .nav-title {
    font-size: 0.76rem;
  }
  .hero-main-logo {
    max-width: 190px;
  }
}
