/* Morris Paving & Construction - Dark Contractor Remaster */

:root {
  --black: #101010;
  --asphalt: #171717;
  --panel: #242424;
  --panel-light: #303030;
  --orange: #f26a21;
  --gold: #f5b400;
  --white: #ffffff;
  --muted: #bdbdbd;
  --border: rgba(255,255,255,0.12);
  --shadow: 0 24px 70px rgba(0,0,0,0.35);
  --max-width: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16,16,16,0.96);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 980px) {
  .site-header {
    position: static !important;
    top: auto !important;
  }
}
@media (max-width: 640px) {
  .site-header {
    position: static !important;
    top: auto !important;
  }
}

.top-line {
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.top-line-inner {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-line a {
  color: var(--gold);
  font-weight: 700;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  max-height: 95px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  width: auto;
  margin: 1rem 0;
}

.brand-logo:hover {
  transform: scale(1.03);
}
.brand-logo {
  max-height: 95px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a:hover {
  color: var(--gold);
}
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: var(--panel);
  border: 1px solid var(--border);
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--white);
  border-bottom: 1px solid var(--border);
}

.dropdown-menu a:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}


.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.accent-frame {
  position: relative;
  max-width: 720px;
  padding: 1.8rem 0 1.8rem 2rem;
}

.accent-frame::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 145px;
  height: 100%;
  border-left: 6px solid var(--gold);
  border-top: 6px solid var(--gold);
  border-bottom: 6px solid var(--gold);
}


.state-card {
  padding: 1rem;
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--gold);
  font-weight: 800;
  transition: all 0.3s ease;
}

.state-card:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateX(4px);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
/* Buttons */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.9rem 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  margin: 0.5rem 0;
}

.btn-primary:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  margin: 0.5rem 0;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
/* Video Section */

.video-section {
  padding: 6rem 0;
  background: var(--black);
}

.video-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.video-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

.video-copy p {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.video-wrapper iframe {
  width: 100%;
  min-height: 420px;
  display: block;
}

@media (max-width: 980px) {

  .video-grid {
    grid-template-columns: 1fr;
  }

}

.hero-side-content {
  display: grid;
  gap: 1.5rem;
}

.hero-video {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #000;
}

.hero-video iframe {
  width: 100%;
  min-height: 540px;
  display: block;
}

/* Contact Card */

.hero-contact-card {
  background: rgba(18,18,18,0.92);
  border: 1px solid var(--border);
  padding: 1.8rem;
}

.hero-contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero-contact-card p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}
/* Thank You Card */
/* THANK YOU PAGE */

.thank-you-page {
  background: #050505;
  color: #ffffff;
}

.thank-you-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.thank-you-content {
  max-width: 850px;
}

.section-label {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.thank-you-content h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.95;
  font-weight: 900;
  margin-bottom: 2rem;
  max-width: 900px;
}

.thank-you-text {
  font-size: 1.15rem;
  color: #d2d2d2;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 3rem;
}

.thank-you-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
}
/* RESIDENTIAL PAGE */

.residential-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* COMMERCIAL PAGE */

.commercial-header {
  background: #070707;
  border-bottom: 1px solid var(--border);
}

.commercial-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.commercial-proof-bar {
  background: linear-gradient(90deg, #111, #1b1b1b, #111);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-grid {
  min-height: 130px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  border-right: 1px solid var(--border);
  text-transform: uppercase;
}

.proof-item:last-child {
  border-right: none;
}

.proof-icon {
  color: var(--orange);
  font-size: 2.2rem;
  line-height: 1;
}

.proof-item strong {
  font-size: 0.95rem;
  line-height: 1.45;
}

.commercial-services-page {
  padding: 6rem 0;
  background: var(--asphalt);
}

@media (max-width: 1050px) {
  .commercial-nav {
    flex-direction: column;
    padding: 2rem 0;
    min-height: auto;
  }

  .commercial-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.3rem;
  }

  .commercial-logo img {
    width: 230px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item {
    min-height: 120px;
  }
}

@media (max-width: 640px) {
  .commercial-logo img {
    width: 220px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    justify-content: flex-start;
    padding: 1.4rem 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* SEAL COATING PAGE */
.seal-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.seal-highlight-bar {
  background: linear-gradient(90deg, #f4b400, #ff8c1a);
  padding: 1.4rem 0;
}

.seal-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.seal-services-page,
.seal-benefits-section {
  padding: 6rem 0;
  background: var(--asphalt);
}

.seal-benefits-section {
  background: #101010;
}

@media (max-width: 980px) {

  .seal-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .seal-highlight-grid {
    grid-template-columns: 1fr;
  }
}

/*defense page*/
/* Defense Info Section */

.defense-info-section {
  background: #0b0b0b;
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.defense-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-left: 6px solid var(--orange);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.defense-info-card h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 1.2rem;
  max-width: 950px;
}

.defense-info-intro {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 980px;
  margin-bottom: 2rem;
}

.defense-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin: 2rem 0 3rem;
}

.defense-info-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.4rem;
}

.defense-info-box h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.defense-info-box p {
  color: var(--muted);
  line-height: 1.65;
}

.defense-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.defense-two-column h3,
.defense-notice h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.defense-two-column ul {
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.defense-two-column li {
  margin-bottom: 0.35rem;
}

.defense-two-column strong {
  color: var(--gold);
}

.defense-notice {
  margin: 3rem;
  padding: 1.4rem 1.6rem;
  background: rgba(242,106,33,0.08);
  border-left: 4px solid var(--orange);
}

.defense-notice p {
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .defense-info-grid,
  .defense-two-column {
    grid-template-columns: 1fr;
  }

  .defense-info-card {
    padding: 2rem;
  }
}

.gov-data-section {
  background: #0b0b0b;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gov-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gov-data-card {
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--orange);
  padding: 1.4rem 1.5rem;
}

.gov-data-card span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 0.45rem;
}

.gov-data-card strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.3;
}

.gov-data-card p {
  color: var(--muted);
  margin-top: 0.45rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .gov-data-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gov-data-grid {
    grid-template-columns: 1fr;
  }
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.capability-item {
  background: linear-gradient(145deg, #1c1c1c, #121212);
  border-left: 4px solid #f4b400;
  padding: 1.25rem 1.5rem;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: 0.3s ease;
}

.capability-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(145deg, #252525, #161616);
}
.capabilities-heading {
  padding-bottom: 3rem;
}

.capabilities-heading h2 {
  max-width: 900px;
}
.capabilities-section {
  padding: 6rem 0;
  background: #101010;
}

.capabilities-grid-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.capabilities-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

.capabilities-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.capabilities-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.capability-card {
  padding: 1.15rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--gold);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.capability-card:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateX(4px);
}
.capabilities-copy ul,
.capabilities-copy li {
  color: rgba(255,255,255,0.78);
}
.capabilities-copy li {
  margin-bottom: 0.75rem;
}
.supported-label {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 980px) {
  .capabilities-grid-layout {
    grid-template-columns: 2fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .capabilities-card-grid {
    grid-template-columns: 2fr;
  }
}

@media (max-width: 900px) {
  .capabilities-grid {
    grid-template-columns: 2fr;
  }
}
/* Quote Card */

.quote-card {
  background: rgba(18,18,18,0.92);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.quote-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.quote-card p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.quote-card form {
  display: grid;
  gap: 0.85rem;
}

.quote-card label {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  padding: 0.9rem;
  font: inherit;
}

.quote-card input::placeholder,
.quote-card textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.quote-card select option {
  color: var(--black);
}

/* Sections */

.dark-section {
  background: var(--asphalt);
}

.intro-section,
.services-section,
.service-area-section,
.showcase-section,
.cta-section2,
.cta-section {
  padding: 6rem 0;
}

.hero-grid,
.intro-grid,
.showcase-grid,
.footer-grid {
  grid-template-columns: 1fr;
}

.section-title-block h2,
.specialization-card h2,
.section-heading-row h2,
.service-area-section h2,
.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.intro-content p,
.service-area-section p,
.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.mini-service-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.mini-service-grid span {
  position: relative;
  color: var(--white);
  padding-left: 1.4rem;
  font-weight: 700;
}

.mini-service-grid span::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

/* Showcase */

.showcase-section {
  background: var(--black);
}

.image-panel {
  position: relative;
}

.image-panel img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.image-panel::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 50px;
  width: 140px;
  height: 220px;
  border: 6px solid var(--gold);
  z-index: -1;
}

.experience-badge {
  position: absolute;
  right: 2rem;
  bottom: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
}

.experience-badge strong {
  display: block;
  font-size: 1.2rem;
}

.experience-badge span {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.specialization-card {
  background: var(--panel);
  padding: 3rem;
  border: 1px solid var(--border);
}

.check-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.check-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

.check-list span {
  color: var(--muted);
}

/* Service Cards */

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.text-link {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 310px;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-card {
  background: var(--panel-light);
  border-top: 5px solid var(--gold);
}

.card-number {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.7rem;
}

.service-card h3 {
  margin: 1.3rem 0 0.8rem;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  margin-top: 1.5rem;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}



/* CTA SECTION */

.cta-section,
.cta-section2 {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  text-align: center;
}

/* DEFAULT CTA */

.cta-section {
  background: var(--orange);
  color: var(--white);
}

/* RESIDENTIAL CTA */

.cta-section2 {
  background:
    linear-gradient(
      135deg,
      #f4b400 0%,
      #ad5e0f 100%
    );
}

.cta-inner,
.cta2-inner {
  max-width: 820px;
  margin: 0 auto;
}

.cta-section .eyebrow,
.cta-section2 .eyebrow {
  color: rgba(0,0,0,0.75);
}

.cta-section h2,
.cta-section2 h2 {
  color: var(--black);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.cta-section p,
.cta-section2 p {
  color: rgba(0,0,0,0.72);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* CTA BUTTON AREA */

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* OPTIONAL residential contrast */

.cta-section2 .btn-primary {
  background: #050505;
  color: #ffffff;
}

.cta-section2 .btn-primary:hover {
  background:var(--panel);
}

.cta-section2 .btn-outline {
  border-color: rgba(0,0,0,0.35);
  color: #050505;
}

.cta-section2 .btn-outline:hover {
  border-color: var(--white);
  color: #050505;
}

@media (max-width: 640px) {

  .cta-section,
  .cta-section2 {
    padding: 4.5rem 0;
  }

}

/* Footer */

.site-footer {
  background: #0b0b0b;
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}

.footer-grid {
  align-items: start;
}

.site-footer h2,
.site-footer h3 {
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
}

.site-footer a:hover {
  color: var(--gold);
}

/* Responsive */

@media (max-width: 980px) {
  .nav-inner,
  .top-line-inner {
    flex-direction: column;
    padding: 1rem 0;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-grid,
  .intro-grid,
  .showcase-grid,
  .service-area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    max-width: 560px;
  }

  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

    .specialization-card {
    padding: 2rem;
  }

  .image-panel img {
    min-height: 320px;
  }
}


/* CONTACT PAGE */

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-section {
  padding: 6rem 0;
  background: var(--asphalt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

.contact-copy p {
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-detail-list {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.contact-detail-card {
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
}

.contact-detail-card span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}

.contact-detail-card a,
.contact-detail-card p {
  color: var(--white);
  font-weight: 700;
}

.contact-form-card {
  width: 100%;
}

.contact-form-card button {
  width: 100%;
  margin-top: 0.5rem;
}


/* ================================
   SERVICE AREA PAGE
================================ */

/* Service Area */

.service-area-section {
  background:
    linear-gradient(rgba(16,16,16,0.92), rgba(16,16,16,0.92)),
    #101010;
  padding: 6rem 0;
}

.service-area-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.service-area-section h2 {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  max-width: 680px;
}

.service-area-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
  max-width: 620px;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.state-card {
  display: block;
  padding: 1.15rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--gold);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.state-card:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .service-area-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .state-grid {
    grid-template-columns: 1fr;
  }
}

.state-tile {
  width: 100%;
  min-height: 58px;
  border: none;
  text-align: left;
  background: #202020;
  color: #fff;
  padding: 18px 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-left: 4px solid var(--orange);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.state-tile:hover,
.state-tile.active {
  transform: translateY(-4px);
  background: var(--orange);
  color: #111;
  box-shadow: 0 16px 30px rgba(0,0,0,0.3);
}

/* State Modal */

.state-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999;
}

.state-modal.is-open {
  display: flex;
}

.state-modal-card {
  position: relative;
  width: min(640px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #151515;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 6px solid var(--orange);
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.state-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.state-modal-kicker {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.state-modal-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.state-modal-credentials p {
  margin: 0;
  padding: 8px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.state-modal-credentials strong {
  color: var(--orange);
  text-transform: uppercase;
}

.state-modal-card h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  margin: 0 0 14px;
}

.state-modal-card h3 {
  margin: 24px 0 10px;
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.state-modal-card p {
  color: #ddd;
  line-height: 1.6;
}

#stateModalCities,
#stateModalServices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.82);
}

.state-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.state-modal-cta,
.state-modal-facebook {
  display: inline-block;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 18px;
}

.state-modal-cta {
  background: var(--orange);
  color: #111;
}

.state-modal-facebook {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}

.state-modal-facebook:hover {
  background: #fff;
  color: #111;
}

/* Mobile */

@media (max-width: 900px) {
  .service-area-hero {
    min-height: auto;
    padding: 120px 0 70px;
    background:
            url("images/service-area-map.png") center bottom / 100% auto no-repeat;

    background-color: #070707;
  }

  .service-area-content {
    margin-left: 28px;
    margin-right: 28px;
  }

  .service-area-content h1 {
    font-size: clamp(3.6rem, 14vw, 5.6rem);
  }

  .service-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  #stateModalCities,
  #stateModalServices {
    grid-template-columns: 1fr;
  }

  .state-modal-card {
    padding: 28px 24px;
  }
}
/* ================================
   HOME PAGE HERO
================================ */

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.72)),
    url("../images/hero-bg.jpg") center / cover no-repeat;
    
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(242,106,33,0.18), transparent 32%),
    linear-gradient(90deg, rgba(0,0,0,0.84), rgba(0,0,0,0.25));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  align-items: center;
  gap: 4rem;
  padding: 6rem 0;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.65);
}

.hero-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.12rem;
  line-height: 1.85;
  max-width: 760px;
  margin: 1.6rem 0 1.4rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.75);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0;
}

.hero-stats div {
  min-width: 145px;
  padding: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1.1;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 7rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }
}
/* ================================
   UNIFIED PAGE HERO SYSTEM
================================ */

.residential-page-hero,
.commercial-page-hero,
.seal-page-hero,
.defense-page-hero,
.contact-page-hero,
.service-area-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Individual Hero Images */

.residential-page-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.62) 38%, rgba(0,0,0,0.14) 75%),
    url("images/residential-page-hero.png") center center / cover no-repeat;
}

.commercial-page-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.62) 38%, rgba(0,0,0,0.14) 75%),
    url("images/commercial-hero.jpg.png") center center / cover no-repeat;
}

.seal-page-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.62) 38%, rgba(0,0,0,0.14) 75%),
    url("images/seal-page-hero.jpg.png") center center / cover no-repeat;
}

.defense-page-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.62) 38%, rgba(0,0,0,0.14) 75%),
    url("images/defense-page-hero.jpg.png") center center / cover no-repeat;
}

.contact-page-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.62) 38%, rgba(0,0,0,0.14) 75%),
    url("images/contact-page-hero.png") center center / cover no-repeat;
}

/* Service Area Hero - desktop */
.service-area-hero {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.76) 34%,
      rgba(0,0,0,0.22) 72%,
      rgba(0,0,0,0.05) 100%
    ),
    url("images/service-area-map.png") right center / 78% auto no-repeat;
  background-color: #070707;
}

/* Hide Extra Hero Overlays */

.residential-hero-overlay,
.commercial-hero-overlay,
.seal-hero-overlay,
.contact-hero-overlay,
.service-area-overlay,
.defense-page-hero .hero-overlay {
  display: none;
}

/* Hero Content Position */

.residential-hero-content,
.commercial-hero-content,
.seal-hero-content,
.defense-hero-content,
.contact-hero-content,
.service-area-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin-left: 110px;
  padding-top: 90px;
}

/* Hero Kicker Text */

.defense-page-kicker,
.residential-kicker,
.commercial-kicker,
.seal-kicker,
.contact-kicker,
.service-area-kicker {
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.24em;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

/* Credentials Under Kicker */

.hero-credentials {
  margin-bottom: 0.75rem;
}

.hero-credentials p {
  color: rgba(255,255,255,0.9);
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  line-height: 1.25;
}

/* Orange Short Line */

.residential-short-line,
.defense-short-line,
.commercial-short-line,
.seal-short-line,
.contact-short-line,
.service-area-short-line {
  display: block;
  width: 120px;
  height: 4px;
  background: var(--orange);
  margin-bottom: 2rem;
}

/* Hero Headlines */

.residential-page-hero h1,
.commercial-page-hero h1,
.seal-page-hero h1,
.defense-page-hero h1,
.contact-page-hero h1,
.service-area-hero h1 {
  color: #ffffff;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  margin-bottom: 2rem;
  max-width: 760px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.65);
}

.residential-page-hero h1 span,
.commercial-page-hero h1 span,
.seal-page-hero h1 span,
.defense-page-hero h1 span,
.contact-page-hero h1 span,
.service-area-hero h1 span {
  color: var(--orange);
}

/* Hero Paragraph Text */

.residential-hero-text,
.commercial-hero-text,
.seal-hero-text,
.contact-hero-text,
.service-area-intro,
.defense-page-hero .commercial-hero-text,
.defense-page-hero .hero-sub-note {
  max-width: 580px;
  color: rgba(255,255,255,0.92);
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 2.6rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.75);
}

/* Hero Button Rows */

.residential-actions,
.commercial-actions,
.seal-actions,
.contact-actions,
.defense-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================
   MOBILE HERO FIX
================================ */

@media (max-width: 980px) {
  .residential-page-hero,
  .commercial-page-hero,
  .seal-page-hero,
  .defense-page-hero,
  .contact-page-hero,
  .service-area-hero {
    min-height: auto;
    padding: 7rem 0 5rem;
    background-position: center center;
  }

  .service-area-hero {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.96) 0%,
        rgba(0,0,0,0.82) 48%,
        rgba(0,0,0,0.96) 100%
      ),
      url("images/service-area-map.png") right 58% / 78% auto no-repeat;
    background-color: #070707;
  }

  .residential-hero-content,
  .commercial-hero-content,
  .seal-hero-content,
  .defense-hero-content,
  .contact-hero-content,
  .service-area-content {
    margin-left: 0;
    padding: 0 1.5rem;
  }

  .residential-page-hero h1,
  .commercial-page-hero h1,
  .seal-page-hero h1,
  .defense-page-hero h1,
  .contact-page-hero h1,
  .service-area-hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .service-area-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .state-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   FINAL BUG FIXES
================================ */

.service-area-section {
  background:
    linear-gradient(rgba(16,16,16,0.92), rgba(16,16,16,0.92)),
    #101010;
  padding: 6rem 0;
}

@media (min-width: 981px) {
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 420px;
  }

  .intro-grid,
  .showcase-grid,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-area-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
  }

  .service-area-hero {
    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,0.96) 0%,
        rgba(0,0,0,0.76) 34%,
        rgba(0,0,0,0.22) 72%,
        rgba(0,0,0,0.05) 100%
      ),
      url("images/service-area-map.png") right center / 78% auto no-repeat;
    background-color: #070707;
  }
}

@media (max-width: 980px) {
  .service-area-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-area-hero {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.96) 0%,
        rgba(0,0,0,0.82) 48%,
        rgba(0,0,0,0.96) 100%
      ),
      url("images/service-area-map.png") center bottom / 120% auto no-repeat;
    background-color: #070707;
  }
}

@media (max-width: 560px) {
  .state-grid,
  #stateModalCities,
  #stateModalServices,
  #stateModalRegions,
  #stateModalProjects {
    grid-template-columns: 1fr;
  }
}