/* ===== Texas Demolition Root Styles Start ===== */
:root {
  /* Brand Colors */
  --tdls-blue: #00205B;
  --tdls-white: #ffffff;
  --tdls-red: #BF0D3E;

  /* Supporting Colors */
  --tdls-dark: #07111f;
  --tdls-charcoal: #1d2430;
  --tdls-steel: #d8dde6;
  --tdls-light: #f6f7f9;

  /* Texas Border */
  --tdls-border-texas: linear-gradient(
    90deg,
    var(--tdls-blue) 0 33.33%,
    var(--tdls-white) 33.33% 66.66%,
    var(--tdls-red) 66.66% 100%
  );

  /* Fonts */
  --font-brand: "Oswald", sans-serif;
  --font-heading: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-display: "Archivo Black", sans-serif;
}
/* ===== Texas Demolition Root Styles End ===== */


/* ===== Base Styles Start ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--tdls-dark);
  background-color: var(--tdls-white);
}

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

:focus-visible {
  outline: 3px solid var(--tdls-red);
  outline-offset: 3px;
}

/* ===== Skip Link Styles Start ===== */
.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1200;
  padding: 0.8rem 1rem;
  background: var(--tdls-white);
  color: var(--tdls-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}
/* ===== Skip Link Styles End ===== */
/* ===== Base Styles End ===== */


/* ===== Typography Styles Start ===== */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

p,
li,
.form-control,
.form-label {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
}

.btn,
button,
.service-tag,
.project-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-kicker,
.section-kicker {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* ===== Typography Styles End ===== */


/* ===== Navigation Styles Start ===== */
.nav-bar {
  background-color: var(--tdls-white);
  color: var(--tdls-blue);
  padding: 1rem 0;
  border-bottom: 6px solid transparent;
  border-image: var(--tdls-border-texas) 1;
}

.navbar-brand {
  color: var(--tdls-blue);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.05;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--tdls-red);
}

.desktop-only {
  display: inline-flex;
  align-items: center;
  max-width: 360px;
}

.mobile-only {
  display: none;
}

.logo-mobile {
  display: block;
  max-width: 150px;
  height: auto;
  margin: 0 auto;
}

.nav-item {
  width: auto;
  margin: 0;
}

.navbar-nav {
  gap: 0.15rem;
}

.nav-link {
  color: var(--tdls-blue);
  font-weight: 700;
  padding: 0.7rem 0.85rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  background-color: var(--tdls-blue);
  color: var(--tdls-white);
}

.nav-link[aria-current="page"] {
  background-color: var(--tdls-blue);
  color: var(--tdls-white);
}

.service-areas-dropdown-item {
  position: relative;
}

.nav-areas-toggle {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--tdls-blue);
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  text-align: left;
}

.nav-areas-toggle:hover,
.nav-areas-toggle:focus,
.nav-areas-toggle.show {
  background-color: var(--tdls-blue);
  color: var(--tdls-white);
}

.nav-areas-toggle:focus {
  box-shadow: none;
}

.nav-areas-menu {
  min-width: 220px;
  border: 1px solid rgba(0, 32, 91, 0.12);
  border-radius: 1rem;
  padding: 0.55rem;
  box-shadow: 0 1rem 2rem rgba(7, 17, 31, 0.16);
}

.nav-areas-menu .dropdown-item {
  border-radius: 0.7rem;
  color: var(--tdls-blue);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 0.9rem;
}

.nav-areas-menu .dropdown-item:hover,
.nav-areas-menu .dropdown-item:focus {
  background-color: rgba(191, 13, 62, 0.08);
  color: var(--tdls-red);
}

.contact-dropdown-item {
  margin-left: 0.5rem;
}

.nav-contact-btn {
  min-width: 180px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tdls-red) 0%, #8e0a2d 100%);
  color: var(--tdls-white);
  padding: 0.75rem 1.15rem;
}

.nav-contact-btn:hover,
.nav-contact-btn:focus,
.nav-contact-btn:active {
  background: linear-gradient(135deg, #cf1648 0%, #a30d34 100%);
  color: var(--tdls-white);
}

.nav-contact-btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(191, 13, 62, 0.25);
}

.nav-contact-menu {
  min-width: 360px;
  max-width: min(92vw, 360px);
  border: 1px solid rgba(0, 32, 91, 0.12);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 1rem 2rem rgba(7, 17, 31, 0.16);
}

.nav-contact-menu .quote-form-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-contact-menu .quote-form-card::before {
  display: none;
}

.nav-contact-menu .section-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--tdls-red);
}

.nav-contact-menu .quick-contact-title {
  margin: 0;
  color: var(--tdls-blue);
  font-size: 1.1rem;
}

.nav-contact-menu .quick-contact-copy {
  margin: 0.65rem 0 1rem;
  color: rgba(7, 17, 31, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.nav-contact-menu .quote-form .form-label {
  color: var(--tdls-blue);
  font-size: 0.75rem;
}

.nav-contact-menu .quote-form .form-control {
  min-height: 2.9rem;
  border-color: rgba(0, 32, 91, 0.12);
  background: rgba(7, 17, 31, 0.04);
  color: var(--tdls-dark);
}

.nav-contact-menu .quote-form .form-control:focus {
  background: var(--tdls-white);
  color: var(--tdls-dark);
}

.nav-contact-menu .quote-form textarea.form-control {
  min-height: 7.5rem;
}

.nav-contact-menu .quote-form .form-check {
  margin-bottom: 0;
}

.nav-contact-menu .quote-form .form-check-label {
  color: rgba(7, 17, 31, 0.76);
  font-size: 0.83rem;
}

.nav-contact-menu .quote-form .form-check-label a {
  color: var(--tdls-red);
}

.nav-contact-menu .quote-form .invalid-feedback {
  color: #b21e48;
}

.nav-contact-menu .alert {
  font-size: 0.9rem;
}

.nav-contact-menu .dropdown-item,
.nav-contact-menu .quick-contact-link {
  color: var(--tdls-blue);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-contact-menu .quick-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.7rem;
  background-color: rgba(191, 13, 62, 0.08);
}

.nav-contact-menu .dropdown-item:hover,
.nav-contact-menu .dropdown-item:focus,
.nav-contact-menu .quick-contact-link:hover,
.nav-contact-menu .quick-contact-link:focus {
  background-color: rgba(191, 13, 62, 0.08);
  color: var(--tdls-red);
}

@media (max-width: 1199.98px) {
  .desktop-only {
    max-width: 300px;
  }

  .nav-link {
    padding: 0.65rem 0.7rem;
    font-size: 0.95rem;
  }

  .nav-contact-btn {
    min-width: 160px;
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
  }

  .nav-contact-menu {
    min-width: min(100%, 360px);
  }
}

.navbar-toggler {
  border-color: rgba(0, 32, 91, 0.35);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(191, 13, 62, 0.25);
}
/* ===== Navigation Styles End ===== */


/* ===== Hero Section Styles Start ===== */
.hero-section {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem;
  overflow: hidden;
  background:
    url("../img/hero.png") center center / cover no-repeat;
  color: var(--tdls-white);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: var(--tdls-border-texas);
}

.hero-section .container {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.hero-section .logo {
  width: min(100%, 230px);
  height: auto;
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28));
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}
/* ===== Hero Section Styles End ===== */


/* ===== About Section Styles Start ===== */
.about-section {
  position: relative;
  padding: 5.5rem 1.5rem;
  background:
    linear-gradient(
      135deg,
      rgba(7, 17, 31, 0.98) 0%,
      rgba(0, 32, 91, 0.95) 52%,
      rgba(7, 17, 31, 0.98) 100%
    );
  color: var(--tdls-white);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(191, 13, 62, 0.28), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--tdls-border-texas);
}

.about-section .container {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.about-section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tdls-white);
}

.about-section h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 5px;
  margin-top: 1rem;
  background: var(--tdls-red);
  border-radius: 999px;
}

.about-section p {
  max-width: 850px;
  margin: 1.5rem 0 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}
/* ===== About Image Styles Start ===== */
.about-content {
  max-width: 680px;
}

.about-image-wrap {
  position: relative;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.about-image-wrap::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -1px;
  width: calc(100% + 2px);
  height: 7px;
  background: var(--tdls-border-texas);
}

.about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
/* ===== About Image Styles End ===== */
/* ===== About Section Styles End ===== */
/* ===== Services Section Styles Start ===== */
/* ===== Services Section Styles Start ===== */
.services-section {
  position: relative;
  padding: 5.5rem 1.5rem;
  background: var(--tdls-light);
  color: var(--tdls-dark);
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0, 32, 91, 0.08);
  pointer-events: none;
}

.services-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(191, 13, 62, 0.08);
  pointer-events: none;
}

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

.section-heading {
  max-width: 780px;
  margin: 0 auto 3rem;
}

.section-heading h2 {
  margin-bottom: 1rem;
  color: var(--tdls-blue);
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 5px;
  margin: 1rem auto 0;
  background: var(--tdls-red);
  border-radius: 999px;
}

.section-heading p {
  margin: 0;
  color: var(--tdls-charcoal);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 500;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0, 32, 91, 0.12);
  border-top: 6px solid transparent;
  border-image: var(--tdls-border-texas) 1;
  background: var(--tdls-white);
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.1);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(7, 17, 31, 0.16);
}

.service-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.service-card h3 {
  margin: 0 0 1.25rem;
  color: var(--tdls-blue);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.05;
  min-height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(0, 32, 91, 0.14);
  background: rgba(0, 32, 91, 0.06);
  color: var(--tdls-blue);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-tags span:nth-child(3) {
  background: rgba(191, 13, 62, 0.08);
  color: var(--tdls-red);
}

/* ===== Service Description Styles Start ===== */
.service-description {
  position: relative;
  margin: 1.25rem 0 0;
  padding: 1rem;
  flex-grow: 1;
  background: rgba(0, 32, 91, 0.045);
  border-left: 4px solid var(--tdls-red);
  color: var(--tdls-charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
}

.service-description strong {
  color: var(--tdls-blue);
  font-weight: 800;
}
/* ===== Service Description Styles End ===== */
/* ===== Services Section Styles End ===== */

/* ===== Service Area Section Styles Start ===== */
.service-area-section {
  position: relative;
  padding: 5.5rem 1.5rem;
  background:
    linear-gradient(
      135deg,
      rgba(7, 17, 31, 1) 0%,
      rgba(0, 32, 91, 0.96) 48%,
      rgba(7, 17, 31, 1) 100%
    );
  color: var(--tdls-white);
  overflow: hidden;
}

.service-area-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(191, 13, 62, 0.24), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.service-area-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--tdls-border-texas);
}

.service-area-section .container {
  position: relative;
  z-index: 2;
}

.service-area-shell {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}

.service-area-content {
  max-width: 560px;
}

.service-area-content h2 {
  margin: 0.7rem 0 1rem;
  color: var(--tdls-white);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
}

.service-area-content h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 5px;
  margin-top: 1rem;
  background: var(--tdls-red);
  border-radius: 999px;
}

.service-area-lead {
  margin: 0 0 1rem;
  color: var(--tdls-white);
  font-family: var(--font-heading);
  font-size: clamp(1.02rem, 1.9vw, 1.28rem);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.service-area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.service-area-cities li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--tdls-white);
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.service-area-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.9vw, 1.12rem);
  font-weight: 500;
  line-height: 1.75;
}

.service-area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.service-area-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--tdls-white);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-area-image-wrap {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.service-area-image-wrap::before {
  content: "";
  position: absolute;
  top: -0.45rem;
  left: 0;
  width: 10rem;
  max-width: 30%;
  height: 5px;
  background: linear-gradient(90deg, var(--tdls-white) 0%, var(--tdls-red) 100%);
  opacity: 0.95;
}

.service-area-image {
  width: 100%;
  height: auto;
  border: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: block;
}
/* ===== Service Area Section Styles End ===== */

/* ===== Service Gallery Button Styles Start ===== */
.gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: 1.25rem;
  min-height: 3rem;
  border: 1px solid rgba(0, 32, 91, 0.18);
  background: linear-gradient(135deg, var(--tdls-blue) 0%, var(--tdls-dark) 100%);
  color: var(--tdls-white);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.gallery-button-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: 1.25rem;
  min-height: 3rem;
  border: 1px solid rgba(0, 32, 91, 0.18);
  background: linear-gradient(135deg, var(--tdls-blue) 0%, var(--tdls-dark) 100%);
  color: var(--tdls-white);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.gallery-button-cta:hover,
.gallery-button-cta:focus {
  background: linear-gradient(135deg, var(--tdls-white) 0%, #ffffff 100%);
  color: var(--tdls-blue);
  border-color: rgba(191, 13, 62, 0.28);
  border: 2px solid rgba(94, 0, 27, 0.825);
  box-shadow: 0 16px 30px rgba(7, 17, 31, 0.18);
  transform: translateY(-2px);
}

.gallery-button-cta:focus {
  outline: none;
  box-shadow:
    0 0 0 0.22rem rgba(191, 13, 62, 0.22),
    0 16px 30px rgba(7, 17, 31, 0.18);
}

.gallery-button:hover,
.gallery-button:focus {
  background: linear-gradient(135deg, var(--tdls-red) 0%, #8f0b31 100%);
  color: var(--tdls-white);
  border-color: rgba(191, 13, 62, 0.28);
  box-shadow: 0 16px 30px rgba(7, 17, 31, 0.18);
  transform: translateY(-2px);
}

.gallery-button:focus {
  outline: none;
  box-shadow:
    0 0 0 0.22rem rgba(191, 13, 62, 0.22),
    0 16px 30px rgba(7, 17, 31, 0.18);
}
/* ===== Service Gallery Button Styles End ===== */

.service-card-actions {
  display: grid;
  gap: 0.85rem;
}

.service-link-button {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(191, 13, 62, 0.96) 0%, #8f0b31 100%);
  border-color: rgba(191, 13, 62, 0.28);
}

.service-link-button:hover,
.service-link-button:focus {
  background: linear-gradient(135deg, var(--tdls-blue) 0%, var(--tdls-dark) 100%);
  border-color: rgba(0, 32, 91, 0.18);
}

/* ===== Service Gallery Carousel Styles Start ===== */
.service-gallery-modal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 6px solid transparent;
  border-image: var(--tdls-border-texas) 1;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(8, 20, 48, 0.98), rgba(7, 17, 31, 0.98));
  color: var(--tdls-white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.service-gallery-modal .modal-header {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.35rem;
}

.service-gallery-modal .modal-title {
  margin: 0;
  color: var(--tdls-white);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-gallery-modal .modal-body {
  padding: 1.35rem;
}

.service-gallery-modal .btn-close {
  filter: invert(1);
  opacity: 0.92;
}

.service-gallery-modal .btn-close:focus-visible,
.service-gallery-carousel .carousel-control-prev:focus-visible,
.service-gallery-carousel .carousel-control-next:focus-visible {
  outline: 3px solid var(--tdls-red);
  outline-offset: 3px;
}

.service-gallery-carousel {
  padding-bottom: 2.9rem;
}

.service-gallery-carousel .carousel-indicators {
  bottom: -0.25rem;
  margin-bottom: 0;
}

.service-gallery-carousel .carousel-indicators [data-bs-target] {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.service-gallery-carousel .carousel-indicators .active {
  background-color: var(--tdls-red);
  border-color: var(--tdls-red);
}

.service-gallery-carousel .carousel-control-prev,
.service-gallery-carousel .carousel-control-next {
  width: 3.25rem;
  top: 40%;
  bottom: auto;
  opacity: 1;
}

.service-gallery-carousel .carousel-control-prev-icon,
.service-gallery-carousel .carousel-control-next-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: rgba(0, 32, 91, 0.82);
  background-size: 42%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.gallery-slide-img {
  width: 100%;
  max-height: min(58vh, 640px);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.gallery-slide-caption {
  margin-top: 0.85rem;
  padding: 0 3.75rem;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: center;
}
/* ===== Service Gallery Carousel Styles End ===== */
/*form*/
/* ===== Contact Section Styles Start ===== */
.contact-section {
  position: relative;
  padding: 6rem 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(191, 13, 62, 0.24), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(
      135deg,
      rgba(7, 17, 31, 1) 0%,
      rgba(0, 32, 91, 0.96) 48%,
      rgba(7, 17, 31, 1) 100%
    );
  color: var(--tdls-white);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 18px
    );
  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  width: 100%;
  background: var(--tdls-border-texas);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-content {
  max-width: 520px;
}

.contact-content .section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--tdls-red);
  font-size: 0.85rem;
}

.contact-content h2 {
  margin: 0 0 1rem;
  color: var(--tdls-white);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.contact-content h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 5px;
  margin-top: 1rem;
  background: var(--tdls-red);
  border-radius: 999px;
}

.contact-content p {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 500;
}

.contact-info {
  margin-top: 2rem;
  padding: 1.25rem;
  border-left: 5px solid var(--tdls-red);
  background: rgba(255, 255, 255, 0.06);
}

.contact-info span {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info a {
  color: var(--tdls-white);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  text-decoration: none;
}

.contact-info a:hover,
.contact-info a:focus {
  color: var(--tdls-red);
}

/* ===== Quote Form Card Styles Start ===== */
.quote-form-card {
  position: relative;
  padding: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
}

.quote-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 6px solid transparent;
  border-image: var(--tdls-border-texas) 1;
  pointer-events: none;
}

.quote-form .form-label {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.quote-form .form-control {
  min-height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: rgba(7, 17, 31, 0.68);
  color: var(--tdls-white);
  font-family: var(--font-body);
  font-weight: 500;
  box-shadow: none;
}

.quote-form textarea.form-control {
  min-height: 9rem;
  resize: vertical;
}

.quote-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.quote-form .form-control:focus {
  border-color: var(--tdls-red);
  background: rgba(7, 17, 31, 0.9);
  color: var(--tdls-white);
  box-shadow: 0 0 0 0.22rem rgba(191, 13, 62, 0.22);
}

.quote-form select.form-control {
  cursor: pointer;
}

.quote-form .invalid-feedback {
  color: #ffd3dc;
  font-weight: 600;
}

.quote-submit-btn {
  min-height: 3.4rem;
  border: 0;
  background: var(--tdls-red);
  color: var(--tdls-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.quote-submit-btn:hover,
.quote-submit-btn:focus {
  transform: translateY(-2px);
  background: #d7194c;
  color: var(--tdls-white);
  box-shadow: 0 18px 40px rgba(191, 13, 62, 0.32);
}

.quote-submit-btn:active {
  transform: translateY(0);
}
/* ===== Quote Form Card Styles End ===== */

/* ===== Thank You Page Styles Start ===== */
.thank-you-section {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
}

.thank-you-shell {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.25rem;
  height: 5.25rem;
  margin-bottom: 1.5rem;
  color: var(--tdls-red);
}

.thank-you-icon svg {
  width: 100%;
  height: 100%;
}

.thank-you-shell .section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--tdls-red);
}

.thank-you-shell h1 {
  margin: 0;
  color: var(--tdls-white);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.thank-you-shell h1::after {
  content: "";
  display: block;
  width: 96px;
  height: 5px;
  margin: 1rem auto 0;
  background: var(--tdls-red);
  border-radius: 999px;
}

.thank-you-shell p {
  max-width: 62ch;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 500;
}

.thank-you-shell p a {
  color: var(--tdls-white);
  font-family: var(--font-heading);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.thank-you-shell p a:hover,
.thank-you-shell p a:focus {
  color: var(--tdls-red);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.thank-you-primary-button,
.thank-you-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14rem;
  text-decoration: none;
}
/* ===== Thank You Page Styles End ===== */
/* ===== Contact Section Styles End ===== */

/* ===== Service Detail Page Styles Start ===== */
.service-hero {
  position: relative;
  min-height: 68vh;
  padding: 6rem 1.5rem;
  display: flex;
  align-items: center;
  color: var(--tdls-white);
  background-color: var(--tdls-dark);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.92) 0%, rgba(0, 32, 91, 0.8) 48%, rgba(7, 17, 31, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 55%);
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 7px;
  background: var(--tdls-border-texas);
}

.service-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.service-hero-content {
  max-width: 760px;
}

.service-hero .section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.88);
}

.service-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.service-hero p {
  margin: 1.5rem 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 500;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.service-cta-button,
.service-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  text-decoration: none;
}

.service-cta-button {
  background: var(--tdls-red);
  color: var(--tdls-white);
}

.service-cta-button:hover,
.service-cta-button:focus {
  background: #d7194c;
  color: var(--tdls-white);
  box-shadow: 0 18px 40px rgba(191, 13, 62, 0.32);
  transform: translateY(-2px);
}

.service-secondary-button {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--tdls-white);
}

.service-secondary-button:hover,
.service-secondary-button:focus {
  background: var(--tdls-white);
  color: var(--tdls-blue);
}

.service-hero--demolition {
  background-image: url("../img/gallery/demo2.JPG");
}

.service-hero--excavation {
  background-image: url("../img/gallery/excavation1.jpg");
}

.service-hero--land-clearing {
  background-image: url("../img/gallery/land2.JPG");
}

.service-overview,
.service-process-section,
.service-cta-section {
  padding: 5.5rem 1.5rem;
}

.service-overview {
  background: var(--tdls-white);
}

.service-overview .container,
.service-process-section .container,
.service-cta-section .container {
  max-width: 1200px;
}

.service-overview .container {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.service-copy-shell,
.service-includes-shell {
  padding: 2rem;
  border: 1px solid rgba(0, 32, 91, 0.12);
  border-top: 6px solid transparent;
  border-image: var(--tdls-border-texas) 1;
  background: var(--tdls-white);
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.08);
}

.service-copy-shell p {
  margin: 1rem 0 0;
  color: var(--tdls-charcoal);
  font-size: 1.02rem;
  font-weight: 500;
}

.service-copy-shell h2,
.service-includes-shell h2,
.service-showcase-copy h2 {
  margin: 0;
}

.service-includes-shell {
  background:
    linear-gradient(180deg, rgba(0, 32, 91, 0.03), rgba(191, 13, 62, 0.03)),
    var(--tdls-white);
}

.service-includes-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  background: rgba(0, 32, 91, 0.04);
  border-left: 4px solid var(--tdls-red);
  font-weight: 600;
  line-height: 1.55;
}

.service-includes-list li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  flex: 0 0 0.75rem;
  margin-top: 0.35rem;
  background: var(--tdls-red);
  transform: rotate(45deg);
}

.service-showcase-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(0, 32, 91, 0.12);
  border-top: 6px solid transparent;
  border-image: var(--tdls-border-texas) 1;
  background:
    linear-gradient(135deg, rgba(0, 32, 91, 0.04), rgba(191, 13, 62, 0.03)),
    var(--tdls-white);
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.08);
}

.service-showcase-copy p {
  margin: 1rem 0 0;
  color: var(--tdls-charcoal);
  font-size: 1rem;
  font-weight: 500;
}

.service-showcase-figure {
  margin: 0;
}

.service-showcase-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 16px 36px rgba(7, 17, 31, 0.14);
}

.service-showcase-image--mobile {
  display: none;
}

.service-showcase-caption {
  margin: 0.85rem 0 0;
  color: var(--tdls-charcoal);
  font-size: 0.95rem;
  font-weight: 500;
}

.service-process-section {
  background:
    linear-gradient(
      135deg,
      rgba(7, 17, 31, 1) 0%,
      rgba(0, 32, 91, 0.96) 48%,
      rgba(7, 17, 31, 1) 100%
    );
  color: var(--tdls-white);
}

.service-process-section .section-heading h2,
.service-process-section .section-heading p {
  color: var(--tdls-white);
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.75rem 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.08);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.2) 0%, rgba(7, 17, 31, 0.78) 100%),
    linear-gradient(135deg, rgba(0, 32, 91, 0.66), rgba(7, 17, 31, 0.72));
}

.process-card > * {
  position: relative;
  z-index: 1;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--tdls-red);
  color: var(--tdls-white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.process-card h3 {
  margin: 0 0 0.8rem;
  color: var(--tdls-white);
  font-size: 1.35rem;
  text-shadow: 1px 1px 2px #07111f;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  line-height: 1.7;
}

.service-cta-section {
  background: var(--tdls-light);
}

.service-cta-shell {
  padding: 2.2rem;
  border-top: 7px solid transparent;
  border-image: var(--tdls-border-texas) 1;
  background: var(--tdls-white);
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.12);
}

.service-cta-shell h2 {
  margin: 0;
  color: var(--tdls-blue);
}

.service-cta-shell p {
  margin: 1rem 0 0;
  max-width: 720px;
  color: var(--tdls-charcoal);
  font-size: 1.05rem;
  font-weight: 500;
}

.service-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid rgba(0, 32, 91, 0.18);
  background: linear-gradient(135deg, var(--tdls-blue) 0%, var(--tdls-dark) 100%);
  color: var(--tdls-white);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.service-contact-button:hover,
.service-contact-button:focus {
  background: linear-gradient(135deg, var(--tdls-red) 0%, #8f0b31 100%);
  color: var(--tdls-white);
  border-color: rgba(191, 13, 62, 0.28);
  box-shadow: 0 16px 30px rgba(7, 17, 31, 0.18);
  transform: translateY(-2px);
}

.service-cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-cta-meta li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.65rem 0.95rem;
  background: rgba(0, 32, 91, 0.05);
  border: 1px solid rgba(0, 32, 91, 0.12);
  color: var(--tdls-blue);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.estimate-modal .modal-dialog {
  max-width: 820px;
}

.estimate-modal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 6px solid transparent;
  border-image: var(--tdls-border-texas) 1;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.98) 0%, rgba(0, 32, 91, 0.96) 48%, rgba(7, 17, 31, 0.98) 100%);
  color: var(--tdls-white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.estimate-modal .modal-header {
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.estimate-modal .modal-title {
  margin: 0;
  color: var(--tdls-white);
}

.estimate-modal .btn-close {
  filter: invert(1);
  opacity: 0.92;
}

.estimate-modal .modal-body {
  padding: 1.35rem;
}

.estimate-modal .quote-form-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.estimate-modal .quote-form-card::before {
  display: none;
}

.estimate-modal-copy {
  margin-bottom: 1.35rem;
}

.estimate-modal-copy p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}
/* ===== Service Detail Page Styles End ===== */

/* ===== Footer Styles Start ===== */
.site-footer {
  position: relative;
  padding: 4.5rem 1.5rem 2rem;
  background:
    linear-gradient(
      135deg,
      rgba(7, 17, 31, 1) 0%,
      rgba(0, 32, 91, 0.96) 45%,
      rgba(7, 17, 31, 1) 100%
    );
  color: var(--tdls-white);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--tdls-border-texas);
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-block {
  min-width: 0;
}

.footer-title {
  margin: 0 0 1rem;
  color: var(--tdls-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  line-height: 1.7;
}

.footer-copy-small {
  font-size: 0.95rem;
}

.footer-service-area-title {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.98);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-service-area-list li {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 0.7rem;
}

.footer-links a,
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--tdls-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.footer-link-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-bottom a:hover,
.footer-bottom a:focus {
  color: var(--tdls-red);
}

.footer-links a[aria-current="page"] {
  color: var(--tdls-red);
}

.footer-links a:hover .footer-link-icon,
.footer-links a:focus .footer-link-icon {
  border-color: rgba(191, 13, 62, 0.36);
  background: rgba(191, 13, 62, 0.12);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
}
/* ===== Footer Styles End ===== */

/* ===== Policy Page Styles Start ===== */
.policy-hero {
  position: relative;
  padding: 5.5rem 1.5rem 3rem;
  background:
    radial-gradient(circle at top left, rgba(191, 13, 62, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(7, 17, 31, 1) 0%, rgba(0, 32, 91, 0.96) 48%, rgba(7, 17, 31, 1) 100%);
  color: var(--tdls-white);
  overflow: hidden;
}

.policy-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--tdls-border-texas);
}

.policy-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.policy-hero h1 {
  margin: 0;
  color: var(--tdls-white);
}

.policy-intro {
  margin: 1.5rem auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
}

.policy-section {
  padding: 4.5rem 1.5rem 5.5rem;
  background: var(--tdls-light);
}

.policy-section .container {
  max-width: 980px;
  display: grid;
  gap: 1.25rem;
}

.policy-card {
  padding: 1.75rem;
  border: 1px solid rgba(0, 32, 91, 0.12);
  border-left: 6px solid var(--tdls-red);
  background: var(--tdls-white);
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.08);
}

.policy-card h3 {
  margin: 0 0 0.75rem;
  color: var(--tdls-blue);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.1;
}

.policy-card p {
  margin: 0;
  color: var(--tdls-charcoal);
  font-size: 1rem;
  font-weight: 500;
}

.policy-card p + p {
  margin-top: 1rem;
}
/* ===== Policy Page Styles End ===== */

/* ===== Privacy Consent Styles Start ===== */
.quote-form .form-check {
  margin-top: 0.25rem;
}

.quote-form .form-check-input {
  margin-top: 0.3rem;
  border-color: rgba(0, 32, 91, 0.32);
}

.quote-form .form-check-input:focus {
  box-shadow: 0 0 0 0.22rem rgba(191, 13, 62, 0.18);
}

.quote-form .form-check-input.is-valid,
.quote-form .form-check-input.is-invalid {
  background-position: right calc(0.375em + 0.1875rem) center;
}

.quote-form .form-check-label {
  color: inherit;
  font-size: 0.96rem;
  line-height: 1.7;
}

.quote-form .form-check-label a {
  color: var(--tdls-blue);
  font-weight: 700;
}

.quote-form .form-check-label a:hover,
.quote-form .form-check-label a:focus {
  color: var(--tdls-red);
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 1400;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(1.5rem);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 1160px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(0, 32, 91, 0.14);
  border-top: 6px solid transparent;
  border-image: var(--tdls-border-texas) 1;
  background: var(--tdls-white);
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.12);
}

.cookie-consent__content {
  flex: 1 1 34rem;
}

.cookie-consent__title {
  margin: 0 0 0.5rem;
  color: var(--tdls-blue);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.cookie-consent__description {
  margin: 0;
  max-width: 46rem;
  color: var(--tdls-charcoal);
  font-size: 0.98rem;
  font-weight: 500;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.cookie-consent__button {
  min-width: 11rem;
  min-height: 2.75rem;
  margin: 0;
}

.cookie-consent__link {
  color: var(--tdls-blue);
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.cookie-consent__link:hover,
.cookie-consent__link:focus {
  color: var(--tdls-red);
  text-decoration: underline;
}

.policy-index,
.policy-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--tdls-charcoal);
}

.policy-index li + li,
.policy-list li + li {
  margin-top: 0.45rem;
}

.policy-updated {
  color: var(--tdls-blue);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* ===== Privacy Consent Styles End ===== */
/* ===== Mobile Styles Start ===== */
@media (max-width: 1199.98px) {
  /* ===== Mobile Navigation Styles Start ===== */
  .nav-bar .container {
    position: relative;
    justify-content: center;
  }

  .mobile-only {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .desktop-only {
    display: none;
  }

  .logo-mobile {
    display: block;
    max-width: 150px;
    height: auto;
    margin: 0 auto;
  }

  .navbar-toggler {
    position: absolute;
    right: 0.75rem;
  }

  #navbarNav,
  #policyNavbarNav {
    width: 100%;
    padding-top: 0.9rem;
  }

  .navbar-nav {
    gap: 0.4rem;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: left;
  }

  .contact-dropdown-item {
    width: 100%;
    margin-top: 0.6rem;
    margin-left: 0;
  }

  .service-areas-dropdown-item {
    width: 100%;
  }

  .nav-contact-btn {
    width: 100%;
  }

  .nav-areas-toggle {
    display: block;
    width: 100%;
    padding: 0.7rem 0.85rem;
  }

  .nav-contact-menu {
    width: 100%;
    max-width: 100%;
    position: static !important;
    transform: none !important;
    margin-top: 0.5rem;
  }

  .nav-areas-menu {
    width: 100%;
    position: static !important;
    transform: none !important;
    margin-top: 0.5rem;
  }

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

  .footer-grid .footer-block:first-child {
    grid-column: 1 / -1;
  }
  /* ===== Mobile Navigation Styles End ===== */


  /* ===== Mobile Hero Section Styles Start ===== */
  .hero-section {
    min-height: 64vh;
    padding: 4.75rem 1rem 3.5rem;
    background: url("../img/hero.png") 62% center / cover no-repeat;
  }

  .hero-title {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
    line-height: 1;
  }

  .hero-section .logo {
    width: min(100%, 180px);
    margin-bottom: 1.1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  /* ===== Mobile Hero Section Styles End ===== */


  /* ===== Mobile About Section Styles Start ===== */
  .about-section {
    padding: 4.5rem 1rem;
    text-align: center;
  }

  .about-section .container {
    padding: 2rem 1.25rem;
  }

  .about-section h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .about-section h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-section p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.7;
  }

  .services-section {
  padding: 4.5rem 1rem;
}

  .service-area-section {
    padding: 4.5rem 1rem;
    text-align: center;
  }

  .service-area-shell {
    padding: 1.5rem;
  }

  .service-area-image-wrap {
    margin-bottom: 0.5rem;
  }

  .service-area-content {
    max-width: 100%;
  }

  .service-area-content h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .service-area-lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .service-area-cities {
    justify-content: center;
  }

  .service-area-badges {
    justify-content: center;
  }

  .section-heading {
    margin-bottom: 2.25rem;
  }

  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .service-icon {
    width: 100px;
    height: 100px;
  }

  .service-tags {
    gap: 0.5rem;
  }

  .service-tags span {
    font-size: 0.75rem;
    padding: 0.5rem 0.65rem;
  }

  .contact-section {
    padding: 4.5rem 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .thank-you-section {
    min-height: auto;
  }

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

  .contact-content h2::after {
    margin-left: auto;
    margin-right: auto;
  }

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

  .quote-form-card {
    padding: 1.5rem;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-primary-button,
  .thank-you-secondary-button {
    width: 100%;
    min-width: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-consent__inner {
    align-items: stretch;
    padding: 1.1rem 1.15rem;
  }

  .cookie-consent__actions {
    justify-content: flex-start;
  }
}

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

  .policy-hero {
    padding: 4.5rem 1rem 2.5rem;
  }

  .policy-section {
    padding: 3.75rem 1rem 4.5rem;
  }

  .policy-card {
    padding: 1.35rem;
  }

  .service-hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }

  .service-hero {
    min-height: auto;
    padding: 5.25rem 1.25rem 4.5rem;
  }

  .service-overview,
  .service-process-section,
  .service-cta-section {
    padding: 4.75rem 1.25rem;
  }

  .service-overview-grid,
  .service-showcase-shell {
    grid-template-columns: 1fr;
  }

  .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-copy-shell,
  .service-includes-shell,
  .service-showcase-shell,
  .service-cta-shell {
    padding: 1.75rem;
  }

  .estimate-modal .modal-body,
  .estimate-modal .modal-header {
    padding: 1rem;
  }
  /* ===== Mobile About Section Styles End ===== */
}

@media (max-width: 767.98px) {
  .service-hero {
    padding: 4.75rem 1rem 3.75rem;
  }

  .service-hero p {
    font-size: 1rem;
  }

  .service-overview,
  .service-process-section,
  .service-cta-section {
    padding: 4rem 1rem;
  }

  .service-overview-grid,
  .service-process-grid,
  .service-includes-list {
    grid-template-columns: 1fr;
  }

  .service-copy-shell,
  .service-includes-shell,
  .service-showcase-shell,
  .service-cta-shell {
    padding: 1.35rem;
  }

  .service-showcase-image {
    aspect-ratio: auto;
    object-fit: contain;
    background: rgba(0, 32, 91, 0.04);
  }

  .service-showcase-image--desktop {
    display: none;
  }

  .service-showcase-image--mobile {
    display: block;
  }

  .service-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-cta-button,
  .service-secondary-button,
  .service-contact-button {
    width: 100%;
  }

  .cookie-consent {
    bottom: 0.75rem;
    padding: 0 0.75rem;
  }

  .cookie-consent__inner {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-consent__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__button {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .service-gallery-modal .modal-header,
  .service-gallery-modal .modal-body {
    padding: 1rem;
  }
 .desktop-only {
    display: none;
  }
  .service-gallery-carousel {
    padding-bottom: 2.75rem;
  }

  .service-gallery-carousel .carousel-control-prev,
  .service-gallery-carousel .carousel-control-next {
    width: 2.7rem;
    top: 35%;
  }

  .service-gallery-carousel .carousel-control-prev-icon,
  .service-gallery-carousel .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }

  .gallery-slide-img {
    max-height: none;
    aspect-ratio: auto;
    min-height: 220px;
  }

  .gallery-slide-caption {
    padding: 0 0.5rem;
    font-size: 0.95rem;
  }

  .service-area-cities li,
  .footer-service-area-list li {
    width: 100%;
    justify-content: center;
  }

  .about-image {
    height: 320px;
  }

  .policy-card h3 {
    font-size: 1.3rem;
  }

  .estimate-modal .modal-dialog {
    max-width: calc(100% - 1rem);
    margin: 0.5rem auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cookie-consent {
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ===== Mobile Styles End ===== */

.star{
   width: 300px;  
  aspect-ratio: 1;
  background: var(--tdls-blue);
  clip-path: polygon(50% 0,
    calc(50%*(1 + sin(.4turn))) calc(50%*(1 - cos(.4turn))),
    calc(50%*(1 - sin(.2turn))) calc(50%*(1 - cos(.2turn))),
    calc(50%*(1 + sin(.2turn))) calc(50%*(1 - cos(.2turn))),
    calc(50%*(1 - sin(.4turn))) calc(50%*(1 - cos(.4turn))) 
   ); 
  /* or more simple
  clip-path: polygon(50% 0,79% 90%,2% 35%,98% 35%,21% 90%); 
   */
}

.step-one {
  background-image: url("/img/services-steps/excavation-step-1.png");
  background-size: cover;
  background-position: center;
}
.step-two {
  background-image: url("/img/services-steps/excavation-step-2.png");
  background-size: cover;
  background-position: center;
}
.step-three {
  background-image: url("/img/services-steps/excavation-step-3.png");
  background-size: cover;
  background-position: center;
}
.step-four {
  background-image: url("/img/services-steps/excavation-step-4.png");
  background-size: cover;
  background-position: center;
}
.step-five {
  background-image: url("/img/services-steps/excavation-step-5.png");
  background-size: cover;
  background-position: center;
}
.step-six {
  background-image: url("/img/services-steps/excavation-step-6.png");
  background-size: cover;
  background-position: center;  
}

.demo-step-one {background-image: url("/img/services-steps/demo-step-1.png");
  background-size: cover;
  background-position: center;  }
.demo-step-two {background-image: url("/img/services-steps/demo-step-2.png");
  background-size: cover;
  background-position: center;  }
.demo-step-three {background-image: url("/img/services-steps/demo-step-3.png");
  background-size: cover;
  background-position: center;  }
.demo-step-four {background-image: url("/img/services-steps/demo-step-4.png");
  background-size: cover;
  background-position: center;  }
.demo-step-five {background-image: url("/img/services-steps/demo-step-5.png");
  background-size: cover;
  background-position: center;  }
.demo-step-six {background-image: url("/img/services-steps/demo-step-6.png");
  background-size: cover;
  background-position: center;  }
.demo-step-seven {background-image: url("/img/services-steps/demo-step-7.png");
  background-size: cover;
  background-position: center;  }

  .land-step-one {background-image: url("/img/services-steps/land-step-1.png");
  background-size: cover;
  background-position: center;  }
.land-step-two {background-image: url("/img/services-steps/land-step-2.png");
  background-size: cover;
  background-position: center;  }
.land-step-three {background-image: url("/img/services-steps/land-step-3.png");
  background-size: cover;
  background-position: center;  }
.land-step-four {background-image: url("/img/services-steps/land-step-4.png");
  background-size: cover;
  background-position: center;  }
.land-step-five {background-image: url("/img/services-steps/land-step-5.png");
  background-size: cover;
  background-position: center;  }
.land-step-six {background-image: url("/img/services-steps/land-step-6.png");
  background-size: cover;
  background-position: center;  }
.land-step-seven {background-image: url("/img/services-steps/land-step-7.png");
  background-size: cover;
  background-position: center;  }
