.service-area-banner {
  width: 100%;
  background: #c81010;
  color: #ffffff;
  padding: 11px 20px;
  position: relative;
  z-index: 20;
}

.service-area-banner p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.4px;
  text-align: center;
  text-transform: uppercase;
}

.header-logo,
.allstar-logo img,
.small-logo {
  width: auto;
  object-fit: contain;
}

.header-logo,
.allstar-logo img {
  max-height: 72px;
}

@media (max-width: 768px) {
  .service-area-banner {
    padding: 9px 14px;
  }

  .service-area-banner p {
    font-size: 12px;
    letter-spacing: 0.2px;
  }

  .header-logo,
  .allstar-logo img,
  .small-logo {
    max-height: 54px;
  }
}

.hero.hero-slider {
  position: relative;
  min-height: 700px;
  height: auto;
  padding: 0;
  overflow: hidden;
  text-align: left;
  justify-content: stretch;
  background-image: none;
}

.hero.hero-slider::before {
  display: none;
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slider .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 19, 52, 0.78) 0%, rgba(7, 19, 52, 0.66) 52%, rgba(7, 19, 52, 0.42) 100%);
}

.hero-slider .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slider .hero-container {
  position: relative;
  z-index: 2;
  width: min(92%, 1180px);
  margin: 0 auto;
  max-width: none;
  background: none;
  backdrop-filter: none;
  border-radius: 0;
}

.hero-slider .hero-content {
  max-width: 660px;
  text-align: left;
  margin: 0;
  padding: 22px 0;
}

.hero-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 1.8px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.95;
}

.hero-slider .hero-content h1,
.hero-slider .hero-content h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.05;
  color: #ffffff;
}

.hero-slider .hero-content p {
  margin: 0 0 24px;
  max-width: 640px;
  color: #ffffff;
  font-size: 1.04rem;
  line-height: 1.65;
}

.hero-slider .hero-buttons {
  justify-content: flex-start;
}

.hero-slider .hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(7, 19, 52, 0.52);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.hero-slider .hero-nav:hover {
  background: rgba(200, 16, 16, 0.88);
}

.hero-slider .hero-nav-prev {
  left: 18px;
}

.hero-slider .hero-nav-next {
  right: 18px;
}

.hero-slider .hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-slider .hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-slider .hero-dot.is-active {
  background: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 1024px) {
  .hero.hero-slider {
    min-height: 600px;
  }
}

@media (max-width: 768px) {
  .hero.hero-slider {
    min-height: 620px;
  }

  .hero-slider .hero-slide::before {
    background: linear-gradient(180deg, rgba(7, 19, 52, 0.78) 0%, rgba(7, 19, 52, 0.72) 100%);
  }

  .hero-slider .hero-content {
    max-width: 100%;
    padding-top: 56px;
    padding-bottom: 78px;
  }

  .hero-slider .hero-buttons {
    width: 100%;
  }

  .hero-slider .hero-buttons .btn {
    width: 100%;
  }

  .hero-slider .hero-nav {
    top: auto;
    bottom: 78px;
    transform: none;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .hero-slider .hero-nav-prev {
    left: 16px;
  }

  .hero-slider .hero-nav-next {
    right: 16px;
  }
}

html,
body {
  margin: 0;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.contact-hub-section {
  padding: 86px 0 78px;
  background: linear-gradient(180deg, #f6f9ff 0%, #eff5fb 100%);
}

.contact-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

.contact-panel,
.hours-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 16px 40px rgba(10, 29, 62, 0.12);
}

.contact-panel h2,
.hours-panel h2 {
  margin: 0 0 12px;
  color: #0b1d3a;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.16;
}

.contact-intro {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.75;
}

.contact-cards-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #dde5f1;
  border-radius: 18px;
  padding: 24px 22px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(10, 29, 62, 0.08);
  transition: .35s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 29, 62, 0.16);
}

.contact-info-icon,
.why-contact-icon,
.contact-service-area-icon {
  color: #c81010;
  font-size: 28px;
  line-height: 1;
}

.contact-info-card h3,
.why-contact-card h3 {
  margin: 14px 0 8px;
  color: #0b1d3a;
  font-size: 22px;
  font-weight: 800;
}

.contact-info-card p,
.why-contact-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.65;
}

.contact-cta-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-email-btn {
  border-color: #0b1d3a;
  color: #0b1d3a !important;
}

.contact-email-btn:hover {
  border-color: #c81010;
  color: #fff !important;
  background: #c81010;
}

.hours-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.hours-row {
  border: 1px solid #e1e7f0;
  border-radius: 14px;
  background: #f7f9fd;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hours-row span {
  color: #374151;
  font-weight: 700;
}

.hours-row strong {
  color: #0b1d3a;
  font-weight: 800;
}

.hours-note {
  margin: 14px 0 0;
  color: #5b6472;
  line-height: 1.65;
  font-size: 15px;
}

.contact-service-area {
  margin-top: 26px;
  background: #0b1d3a;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 14px 28px rgba(8, 20, 45, 0.24);
}

.contact-service-area h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 22px;
}

.contact-service-area p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.about-hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image: url("../images/hero-home-construction.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 20, 46, 0.84) 0%, rgba(7, 20, 46, 0.68) 54%, rgba(7, 20, 46, 0.58) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.about-breadcrumb {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  letter-spacing: 0.3px;
}

.about-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.about-breadcrumb a:hover {
  color: #e2a52b;
}

.about-hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4.4vw, 4.1rem);
  line-height: 1.08;
  color: #ffffff;
  max-width: 840px;
}

.about-hero-content p {
  margin: 0 0 26px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.7;
}

.about-story-section {
  padding: 94px 0;
  background: #f5f7fb;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: center;
}

.about-story-image-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(10, 29, 62, 0.16);
}

.about-story-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-story-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: #c81010;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.about-story-content h2 {
  margin: 0 0 16px;
  color: #0b1d3a;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
}

.about-story-content p {
  margin: 0 0 14px;
  color: #4b5563;
  line-height: 1.75;
  font-size: 16px;
}

.about-story-actions {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.about-contact-link {
  color: #0b1d3a;
  text-decoration: none;
  font-weight: 700;
}

.about-contact-link:hover {
  color: #c81010;
}

.about-highlights-section {
  padding: 0 0 92px;
  background: #f5f7fb;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.about-highlight-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #dde5f1;
  box-shadow: 0 14px 32px rgba(10, 29, 62, 0.1);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 29, 62, 0.18);
}

.about-highlight-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #c81010;
  box-shadow: 0 12px 28px rgba(200, 16, 16, 0.28);
}

.about-highlight-icon i {
  font-size: 24px;
}

.about-highlight-card h3 {
  margin: 14px 0 8px;
  color: #0b1d3a;
  font-size: 21px;
}

.about-highlight-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.65;
}

.about-values-section {
  padding: 96px 0;
  background: #071a32;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.about-value-card {
  position: relative;
  min-height: 245px;
  padding: 30px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 3px solid #c81010;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 165, 43, 0.45);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.3);
}

.about-value-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 22px;
}

.about-value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.68;
}

.about-values-section .service-benefit-icon {
  margin-bottom: 18px;
}

.about-services-section {
  padding: 96px 0;
  background: #f5f7fb;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dbe4f0;
  box-shadow: 0 16px 36px rgba(10, 29, 62, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(10, 29, 62, 0.2);
}

.about-service-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-service-content {
  padding: 22px;
}

.about-service-content h3 {
  margin: 0 0 10px;
  color: #0b1d3a;
  font-size: 24px;
}

.about-service-content p {
  margin: 0 0 16px;
  color: #4b5563;
  line-height: 1.65;
}

.about-benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-contact-section {
  margin-top: 34px;
}

.why-contact-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 22px;
}

.why-contact-heading span {
  display: inline-block;
  color: #c81010;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.why-contact-heading h2 {
  margin: 0;
  color: #0b1d3a;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
}

.why-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.why-contact-card {
  background: #ffffff;
  border: 1px solid #dde5f1;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 26px rgba(10, 29, 62, 0.1);
  transition: .35s ease;
}

.why-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(10, 29, 62, 0.17);
}

@media (max-width: 1080px) {
  .contact-hub-grid {
    grid-template-columns: 1fr;
  }

  .hours-panel {
    padding-top: 30px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights-grid,
  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-benefits-grid.about-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .contact-cards-grid,
  .why-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hub-section {
    padding: 68px 0;
  }

  .contact-panel,
  .hours-panel {
    padding: 24px;
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-service-area {
    padding: 20px;
    align-items: flex-start;
  }

  .about-hero-section {
    min-height: 500px;
  }

  .about-story-section,
  .about-values-section,
  .about-services-section {
    padding: 72px 0;
  }

  .about-highlights-section {
    padding-bottom: 72px;
  }

  .about-story-image {
    min-height: 280px;
  }

  .about-services-grid,
  .about-highlights-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .service-benefits-grid.about-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.quote-form .btn {
  border: none;
  cursor: pointer;
}

.allstar-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.allstar-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.allstar-nav a:hover {
  color: #d4a017;
}

.row.g-4 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.col-lg-4,
.col-md-6 {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    width: 33.3333%;
  }
}

.service-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #ececec;
  height: 100%;
}

.service-image img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.service-image {
  position: relative;
}

.service-image-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  background: rgba(11, 29, 99, 0.88);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-body {
  padding: 18px;
}

.service-body h4 {
  margin: 0 0 10px;
  font-size: 20px;
}

.service-body h4 a {
  color: #0b1d63;
  text-decoration: none;
}

.service-body p {
  margin: 0;
  color: #444444;
  line-height: 1.5;
}

.service-hero {
  position: relative;
  min-height: 320px;
  padding: 70px 20px;
  background-image: url("../images/hero-landscaping.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 29, 99, 0.84) 0%, rgba(5, 5, 5, 0.78) 100%);
}

.service-hero-content {
  position: relative;
  z-index: 1;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.text-center {
  text-align: center;
}

.mb-60 {
  margin-bottom: 60px;
}

.section-title span {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c81010;
  margin-bottom: 8px;
}

.section-title h2 {
  margin: 0 0 10px;
  color: #0b1d63;
}

.section-title p {
  margin: 0 auto;
  max-width: 760px;
  color: #4a4a4a;
}

.featured-service-box {
  position: relative;
  display: block;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  border-top: 4px solid #c81010;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

.featured-service-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  display: block;
  transition: .4s ease;
}

.featured-service-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .82), rgba(0, 0, 0, .25), rgba(0, 0, 0, .05));
}

.featured-service-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.featured-service-content h4,
.featured-service-content p {
  color: #fff !important;
}

.featured-service-content h4 {
  font-size: 24px;
  margin-bottom: 8px;
}

.featured-service-content p {
  margin: 0;
  opacity: .95;
}

.featured-service-box:hover img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .pt-120 {
    padding-top: 72px;
  }

  .pb-120 {
    padding-bottom: 72px;
  }
}

@media (max-width: 860px) {
  .allstar-header-inner {
    position: relative;
  }

  .header-row {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .allstar-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    background: #0b1d63;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 190px;
    z-index: 1100;
  }

  .allstar-nav.active {
    display: flex;
  }
}

/* ==========================ALL STAR QUOTE FORM========================== */
.allstar-quote-section {
  padding: 90px 0;
  background: #f5f7fb;
}

.quote-heading {
  max-width: 700px;
  text-align: center;
  margin: 0 auto 45px;
}

.quote-heading span {
  color: #c81010;
  font-weight: 800;
}

.quote-heading h2 {
  color: #0b1d3a;
  font-size: 42px;
  font-weight: 800;
}

.allstar-quote-form {
  background: #ffffff;
  max-width: 900px;
  margin: auto;
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.allstar-quote-form input,
.allstar-quote-form select,
.allstar-quote-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.allstar-submit {
  background: #c81010;
  color: white;
  border: none;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
}

.allstar-submit:hover {
  background: #0b1d3a;
}

.nav a[href="#quote-form"],
.allstar-nav a[href="#quote-form"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #c81010;
  color: #ffffff !important;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav a[href="#quote-form"]:hover,
.allstar-nav a[href="#quote-form"]:hover {
  background: #0b1d3a;
  color: #ffffff !important;
}

.service-footer {
  background: linear-gradient(180deg, #050505 0%, #08133a 60%, #050505 100%);
  border-top: 2px solid #c81010;
}

.service-footer p {
  color: #d9d9d9;
}

@media(max-width:768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   ALL-STAR SERVICE DETAIL PAGES
========================================= */

.allstar-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: #0b1d3a;
  box-shadow: 0 10px 26px rgba(5, 12, 28, 0.26);
}

.allstar-header-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.allstar-logo a {
  display: inline-flex;
  align-items: center;
}

.allstar-logo img {
  width: auto;
  max-width: 220px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.allstar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.allstar-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}

.allstar-nav a:hover {
  color: #d4a017;
}

.allstar-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c81010;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.allstar-header-btn:hover {
  background: #d81919;
}

.service-page-hero,
.service-page-content,
.service-benefits-section,
.allstar-quote-section {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.service-page-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1d3a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.service-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 23, 50, 0.60) 0%,
      rgba(7, 23, 50, 0.58) 48%,
      rgba(7, 23, 50, 0.56) 100%
    );
  z-index: 1;
}

.service-page-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  color: #fff;
}

.service-page-hero.kitchen-bath-hero {
  width: 100%;
  min-height: 420px;
  height: 420px;
  background-image: url("../images/hero-kitchen-bath.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.service-page-hero.kitchen-bath-hero .service-page-hero-overlay {
  background: rgba(7, 23, 50, 0.66);
}

.service-page-hero.kitchen-bath-hero .service-page-hero-content,
.service-page-hero.kitchen-bath-hero .service-page-hero-content h1 {
  color: #fff;
}

.service-page-hero.kitchen-bath-hero .service-page-hero-content span {
  color: #d4a017;
}

.service-page-hero.landscaping-hero {
  width: 100%;
  min-height: 420px;
  height: 420px;
  background-image: url("../images/hero-landscaping.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.service-page-hero.landscaping-hero .service-page-hero-overlay {
  background: rgba(7, 23, 50, 0.66);
}

.service-page-hero.landscaping-hero .service-page-hero-content,
.service-page-hero.landscaping-hero .service-page-hero-content h1 {
  color: #fff;
}

.service-page-hero.landscaping-hero .service-page-hero-content span {
  color: #d4a017;
}

.service-page-hero-content span,
.service-page-label,
.service-page-sidebar > span,
.quote-heading span {
  display: block;
  color: #d4a017;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-page-hero-content h1 {
  color: #fff;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.service-page-hero-subheading {
  margin: -4px 0 14px;
  color: #ffffff;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
}

.service-page-hero-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.service-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c81010;
  color: #fff !important;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.service-page-btn:hover {
  background: #0b1d3a;
  transform: translateY(-2px);
}

.service-page-content {
  padding: 104px 0;
  background: #f5f7fb;
}

.service-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.65fr);
  gap: 32px;
  align-items: start;
}

.service-page-main,
.service-page-sidebar {
  background: #fff;
  border-radius: 22px;
  padding: 44px;
  box-shadow: 0 18px 45px rgba(11, 29, 58, 0.09);
}

.service-page-main h2 {
  color: #0b1d3a;
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 20px;
}

.service-page-main h3,
.service-page-sidebar h3 {
  color: #0b1d3a;
  font-weight: 800;
  margin-top: 0;
}

.service-page-main p,
.service-page-sidebar p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.8;
}

.service-page-list-box {
  margin-top: 32px;
  padding: 28px;
  background: #edf3fa;
  border-left: 5px solid #c81010;
  border-radius: 14px;
}

.service-page-list-box ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.service-page-list-box li {
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.6;
}

.service-page-sidebar {
  position: sticky;
  top: 115px;
  border-top: 6px solid #c81010;
}

.service-page-sidebar .service-page-btn {
  width: 100%;
  margin-top: 14px;
}

.service-benefits-section {
  position: relative;
  overflow: hidden;
  padding: 90px 20px;
  background:
    radial-gradient(
      circle at top center,
      rgba(44, 76, 123, 0.32),
      transparent 48%
    ),
    #071a32;
  color: #ffffff;
}

.service-benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025),
      transparent 45%
    );
  pointer-events: none;
}

.service-benefits-section .container {
  position: relative;
  z-index: 1;
}

.service-benefits-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.service-benefits-heading span {
  display: block;
  margin-bottom: 12px;
  color: #e2a52b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-benefits-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
}

.service-benefits-intro {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-benefits-grid.about-benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 265px;
  padding: 34px 30px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  opacity: 1;
  visibility: visible;
  transform: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.service-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  background: #c81010;
  border-radius: 0 0 6px 6px;
}

.service-benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 165, 43, 0.45);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.055)
    );
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.service-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
  color: #ffffff;
  background: #c81010;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(200, 16, 16, 0.28);
}

.service-benefit-icon i {
  font-size: 27px;
}

.service-benefit-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.3;
}

.service-benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.allstar-quote-section {
  padding: 90px 0;
  background: #f5f7fb;
}

.quote-heading {
  max-width: 720px;
  text-align: center;
  margin: 0 auto 42px;
}

.quote-heading h2 {
  color: #0b1d3a;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  margin: 0 0 10px;
}

.quote-heading p {
  color: #5b6472;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.allstar-quote-form {
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(11, 29, 58, 0.11);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.allstar-quote-form input,
.allstar-quote-form select,
.allstar-quote-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #d8dee8;
  border-radius: 10px;
  background: #fff;
  color: #1f2937;
  font: inherit;
}

.allstar-quote-form input:focus,
.allstar-quote-form select:focus,
.allstar-quote-form textarea:focus {
  outline: none;
  border-color: #c81010;
  box-shadow: 0 0 0 3px rgba(200, 16, 16, 0.12);
}

.allstar-submit {
  background: #c81010;
  color: #fff;
  border: 0;
  padding: 16px 34px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.allstar-submit:hover {
  background: #0b1d3a;
}

.services-page-hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.services-page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 50, 0.66);
  z-index: 1;
}

.services-page-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.services-page-hero-content span {
  color: #d4a017;
  font-weight: 800;
  letter-spacing: 2px;
}

.services-page-hero-content h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 68px);
  margin: 10px 0;
}

.services-page-hero-content p {
  max-width: 700px;
  color: #fff;
  font-size: 18px;
}

.services-directory {
  padding: 90px 0;
  background: #f5f7fb;
}

.services-directory-heading {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 45px;
}

.services-directory-heading span {
  color: #c81010;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.services-directory-heading h2 {
  color: #0b1d3a;
  font-size: clamp(36px, 5vw, 52px);
}

.services-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.services-directory .featured-service-box {
  position: relative;
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  display: block;
  border-top: 4px solid #c81010;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(11, 29, 58, 0.13);
}

/* =========================================
   STANDARD QUOTE REQUEST FORM
========================================= */

.allstar-quote-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #f8faff 0%, #f2f6fb 100%);
}

.quote-heading {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.quote-heading span {
  display: inline-block;
  color: #c81010;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.quote-heading h2 {
  margin: 0 0 12px;
  color: #0b1d3a;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
}

.quote-heading p {
  margin: 0;
  color: #445064;
  line-height: 1.7;
}

.allstar-quote-form {
  max-width: 1020px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 36px;
  border: 1px solid #e1e7f0;
  box-shadow: 0 18px 42px rgba(9, 26, 56, 0.12);
}

.form-section-heading {
  margin: 8px 0 18px;
}

.form-section-heading h3 {
  margin: 0 0 6px;
  color: #0b1d3a;
  font-size: 20px;
}

.form-section-heading p {
  margin: 0;
  color: #5a677e;
  font-size: 15px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-row-three {
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
}

.form-group {
  margin-bottom: 18px;
}

.form-group-wide {
  grid-column: 1 / -1;
}

.allstar-quote-form label {
  display: inline-block;
  margin-bottom: 8px;
  color: #0f203f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.allstar-quote-form label span {
  color: #c81010;
  font-weight: 800;
}

.allstar-quote-form input,
.allstar-quote-form select,
.allstar-quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #ccd6e4;
  border-radius: 10px;
  background: #ffffff;
  color: #1f2937;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.allstar-quote-form textarea {
  min-height: 170px;
  resize: vertical;
}

.allstar-quote-form input:focus,
.allstar-quote-form select:focus,
.allstar-quote-form textarea:focus {
  outline: none;
  border-color: #c81010;
  box-shadow: 0 0 0 3px rgba(200, 16, 16, 0.15);
}

.allstar-quote-form [aria-invalid="true"] {
  border-color: #c81010;
  box-shadow: 0 0 0 3px rgba(200, 16, 16, 0.12);
}

.field-error {
  margin: 8px 0 0;
  color: #b90d0d;
  font-size: 13px;
  font-weight: 700;
}

.quote-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 6px 0 14px;
}

.quote-consent .form-check-input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 2px 0 0;
}

.quote-consent .form-check-label {
  margin: 0;
  color: #32425e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.quote-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote-submit-row {
  margin-top: 6px;
}

.allstar-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 30px;
  border: none;
  border-radius: 999px;
  background: #c81010;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.allstar-submit:hover {
  background: #0b1d3a;
  transform: translateY(-1px);
}

.allstar-submit:disabled {
  opacity: 0.72;
  cursor: progress;
  transform: none;
}

.quote-privacy-note {
  margin: 10px 0 0;
  color: #5d6a81;
  font-size: 13px;
}

.quote-form-message {
  margin-top: 14px;
  border-radius: 12px;
  padding: 0;
}

.quote-form-message.is-success,
.quote-form-message.is-error {
  padding: 14px 16px;
}

.quote-form-message.is-success {
  background: #e8f7ee;
  border: 1px solid #7cca9a;
  color: #13492c;
}

.quote-form-message.is-error {
  background: #fff0f0;
  border: 1px solid #e99898;
  color: #7c1212;
}

.quote-form-message h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.quote-form-message p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .allstar-quote-form {
    padding: 30px;
  }
}

@media (max-width: 860px) {
  .form-row,
  .form-row-three {
    grid-template-columns: 1fr;
  }

  .allstar-submit {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .allstar-quote-section {
    padding: 68px 0;
  }

  .allstar-quote-form {
    padding: 22px;
    border-radius: 16px;
  }
}

.services-directory .featured-service-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.services-directory .featured-service-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .88), rgba(0, 0, 0, .24), transparent);
}

.services-directory .featured-service-content {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.services-directory .featured-service-content h3,
.services-directory .featured-service-content p {
  color: #fff !important;
}

.services-directory .featured-service-content h3 {
  font-size: 23px;
  margin-bottom: 8px;
}

.services-directory .featured-service-content p {
  margin: 0;
  line-height: 1.55;
}

.services-directory .featured-service-box:hover img {
  transform: scale(1.06);
}

@media (max-width: 991px) {
  .allstar-header-inner {
    min-height: 82px;
    gap: 12px;
  }

  .allstar-logo img {
    max-width: 190px;
    height: 42px;
  }

  .allstar-nav,
  .allstar-header-btn {
    display: none;
  }

  .service-page-grid {
    grid-template-columns: 1fr;
  }

  .service-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .services-directory-grid {
    grid-template-columns: 1fr;
  }

  .services-page-hero {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .service-page-hero {
    min-height: 500px;
  }

  .service-page-hero.landscaping-hero {
    min-height: 420px;
    height: 420px;
  }

  .service-page-hero-overlay {
    background: rgba(7, 23, 50, 0.58);
  }

  .service-page-main,
  .service-page-sidebar,
  .allstar-quote-form {
    padding: 26px;
  }

  .service-benefits-section {
    padding: 70px 16px;
  }

  .service-benefit-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 640px) {
  .service-benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-benefits-heading {
    margin-bottom: 34px;
  }
}

@media (max-width: 1080px) {
  .service-benefits-grid.about-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-benefits-grid.about-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.service-page-breadcrumb {
  margin: 0 0 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.service-page-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.service-page-breadcrumb a:hover {
  color: #e2a52b;
}

.service-page-hero.masonry-hero .service-page-hero-overlay {
  background: linear-gradient(105deg, rgba(8, 23, 52, 0.82) 0%, rgba(8, 23, 52, 0.68) 52%, rgba(8, 23, 52, 0.56) 100%);
}

.hero-content-right {
  margin-left: auto;
  text-align: right;
}

.hero-content-right p,
.hero-content-right h2,
.hero-content-right .hero-eyebrow {
  margin-left: auto;
}

.masonry-process-section {
  padding: 90px 0;
  background: #f5f7fb;
}

.masonry-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.masonry-process-card {
  background: #ffffff;
  border: 1px solid #dce4f0;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 14px 34px rgba(8, 20, 45, 0.1);
}

.masonry-process-number {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #c81010;
  color: #ffffff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.masonry-process-card h3 {
  margin: 0 0 10px;
  color: #0b1d3a;
  font-size: 21px;
}

.masonry-process-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.65;
}

.service-area .featured-service-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991px) {
  .masonry-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-content-right {
    text-align: left;
  }

  .masonry-process-grid {
    grid-template-columns: 1fr;
  }
}
