
:root {
  --primary: #9e0413;
  --primary-light: #b33541;
  --primary-dark: #7a0310;
  --dark: #222;
  --light: #f8f9fa;
  --gray: #6c757d;
  --transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  --nav-height: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========== PERFECT NAVBAR =========== */
nav.navbar {
  height: var(--nav-height);
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px 0 rgba(34, 34, 34, 0.07);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: background .25s, box-shadow .25s;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}

.navbar-logo {
  font-size: 2.2rem;
  color: var(--primary);
  vertical-align: bottom;
}

.navbar-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: .5px;
}

.navbar-title span {
  color: var(--primary);
}

.navbar-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
}

.navbar-links li:last-child {
  margin-left: 16px;
}

.navbar-links a {
  display: inline-block;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.08rem;
  position: relative;
  transition: color .14s;
  padding: 2px 0;
}

.navbar-links a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .23s cubic-bezier(.68, -0.55, .27, 1.55);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--primary);
}

.navbar-links a:hover:after,
.navbar-links a.active:after {
  transform: scaleX(1);
}

.navbar-links .btn {
  padding: 11px 28px;
  border-radius: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(158, 4, 19, 0.09);
  letter-spacing: .05em;
}

.navbar-links .btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  outline: none;
  font-size: 2rem;
  color: var(--dark);
  margin-left: 18px;
  cursor: pointer;
  z-index: 20001;
  transition: color .15s;
}

@media (max-width: 980px) {
  .navbar-links {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    width: 70vw;
    max-width: 360px;
    height: calc(100vh - var(--nav-height));
    background: #fff;
    box-shadow: -3px 0 25px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 34px 0 0 0;
    transition: transform 0.33s cubic-bezier(.4, 0, .2, 1);
    transform: translateX(100%);
    z-index: 19999;
  }

  .navbar-links li {
    margin: 0;
    text-align: left;
  }

  .navbar-links li:not(:last-child) {
    border-bottom: 1px solid #eee;
  }

  .navbar-links li:last-child {
    margin-top: 18px;
  }

  .navbar-links.open {
    transform: translateX(0);
  }

  .navbar-toggle {
    display: block;
  }
}

@media (max-width: 650px) {
  .navbar .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-title {
    font-size: 1.1rem;
  }
}
/* ============ HERO HEADER =========== */
.hero-header-section {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.99) 60%, rgba(244, 241, 242, 0.86)),  no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  box-sizing: border-box;
}

.hero-header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 660px;
  gap: 40px;
}

.hero-header-content {
  flex: 1 1 440px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-tagline {
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.13rem;
  margin-bottom: 14px;
}

.hero-header-title {
  font-size: 3.1rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.13;
  margin-bottom: 18px;
}

.hero-header-title span {
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.hero-header-title span:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 11px;
  background: rgba(158, 4, 19, 0.10);
  z-index: -1;
  border-radius: 5px;
}

.hero-desc {
  color: #5d5d5d;
  font-size: 1.17rem;
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 530px;
}

.hero-header-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 2.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
}

.hero-stat-label {
  color: var(--gray);
  font-size: 1.05rem;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  border-radius: 25px;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--primary);
  color: #fff;
  background: var(--primary);
  transition: var(--transition);
  box-shadow: 0 9px 16px rgba(158, 4, 19, 0.07);
}

.hero-cta-btn.secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.hero-cta-btn:hover,
.hero-cta-btn:focus {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

.hero-cta-btn.secondary:hover,
.hero-cta-btn.secondary:focus {
  background: var(--primary);
  color: #fff;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  margin-top: 24px;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust-icon {
  background: rgba(158, 4, 19, 0.08);
  color: var(--primary-dark);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-trust-text {
  color: var(--gray);
  font-size: .97rem;
  font-weight: 500;
}

.hero-header-img {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-header-img img {
  max-width: 98%;
  max-height: 530px;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(158, 4, 19, 0.11), 0 2px 8px rgba(0, 0, 0, 0.02);
  object-fit: cover;
  object-position: center;
  transition: box-shadow .21s, transform .23s;
}

.hero-header-img img:hover {
  transform: scale(1.018) rotateY(-5deg);
  box-shadow: 0 34px 90px rgba(158, 4, 19, 0.17), 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1060px) {
  .hero-header-inner {
    flex-direction: column;
    text-align: left;
    min-height: 560px;
    gap: 0;
  }

  .hero-header-content {
    padding-top: 44px;
    padding-bottom: 12px;
  }

  .hero-header-img {
    margin-top: 28px;
    margin-bottom: 36px;
    width: 100%;
    justify-content: flex-start;
  }

  .hero-header-img img {
    max-width: 99%;
    margin: auto;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .hero-header-section {
    min-height: 90vh;
    background-position: right center;
    padding-top: 70px;
  }

  .hero-header-title {
    font-size: 2.0rem;
    margin-bottom: 14px;
  }

  .hero-header-content {
    padding-top: 22px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-header-img img {
    max-width: 98%;
    max-height: 340px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 7px;
  }

  .hero-header-title {
    font-size: 1.18rem;
  }

  .hero-trust-row {
    gap: 11px;
  }

  .hero-header-img img {
    max-height: 190px;
  }

  .hero-cta-btn,
  .navbar-links .btn {
    font-size: 1rem;
    padding: 12px 19px;
  }

  .hero-header-content {
    padding-bottom: 18px;
  }
}





.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(to right, #f9f7f5 50%, #fff 50%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #9e0413;
}

.about-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1;
  min-width: 300px;
  padding-right: 20px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

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

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(158, 4, 19, 0) 70%, rgba(158, 4, 19, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.image-caption {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #9e0413;
  border-radius: 2px;
}

.about-content p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #555;
}

.highlight-box {
  background-color: rgba(158, 4, 19, 0.05);
  border-left: 4px solid #9e0413;
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box p {
  margin-bottom: 0;
  font-style: italic;
  color: #444;
}

.btn {
  display: inline-block;
  background-color: #9e0413;
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #9e0413;
  box-shadow: 0 5px 15px rgba(158, 4, 19, 0.2);
  margin-top: 10px;
}

.btn:hover {
  background-color: transparent;
  color: #9e0413;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(158, 4, 19, 0.25);
}

/* Features Section */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 80px;
}

.feature-box {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #9e0413d0;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(158, 4, 19, 0.1);
}

.feature-box i {
  font-size: 2.5rem;
  color: #9e0413;
  margin-bottom: 20px;
  background-color: rgba(158, 4, 19, 0.1);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
}

.feature-box h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #222;
}

.feature-box p {
  font-size: 1rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about {
    background: #f9f7f5;
  }

  .about-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about-content {
    padding-right: 0;
  }

  h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 70px 0;
  }

  h2 {
    font-size: 2rem;
  }

  .feature-box {
    padding: 25px 20px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}




.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: #9e0413;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #9e0413;
  border-radius: 2px;
}

/* Services Intro Section */
.services-intro {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.intro-content,
.intro-image {
  flex: 1;
  min-width: 300px;
}

.intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.intro-image:hover img {
  transform: scale(1.03);
}

.intro-content h3 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 25px;
}

.intro-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

.highlight-box {
  background-color: rgba(158, 4, 19, 0.05);
  border-left: 4px solid #9e0413;
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box p {
  margin-bottom: 0;
  font-style: italic;
  color: #444;
}

/* Services Detail Section */
.services-detail {
  display: flex;
  gap: 60px;
  margin-bottom: 100px;
}

.detail-left,
.detail-right {
  flex: 1;
  min-width: 300px;
}

.detail-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-box {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 3px solid #9e0413;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(158, 4, 19, 0.1);
}

.feature-box i {
  font-size: 2rem;
  color: #9e0413;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.feature-box p {
  font-size: 0.95rem;
  color: #666;
}

/* Accordion Services */
.accordion-container {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 25px 30px;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(158, 4, 19, 0.02);
}

.accordion-header.active {
  background-color: rgba(158, 4, 19, 0.05);
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.accordion-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(158, 4, 19, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9e0413;
}

.accordion-text h3 {
  font-size: 1.4rem;
  color: #222;
}

.accordion-text p {
  font-size: 0.95rem;
  color: #9e0413;
  margin-top: 5px;
}

.accordion-toggle {
  font-size: 1.5rem;
  color: #9e0413;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content.active {
  padding: 0 30px 25px;
  max-height: 500px;
}

.accordion-content ul {
  list-style: none;
  margin-top: 15px;
}

.accordion-content li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.accordion-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9e0413;
  font-weight: bold;
}

.service-benefits {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.benefit {
  background-color: rgba(158, 4, 19, 0.05);
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #9e0413;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* CTA Section */
.cta-section {
  background-color: #9e0413;
  padding: 60px;
  border-radius: 12px;
  text-align: center;
  color: white;
  margin-bottom: 80px;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: #9e0413;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-btn:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {

  .services-intro,
  .services-detail {
    flex-direction: column;
    gap: 40px;
  }

  .feature-boxes {
    grid-template-columns: 1fr;
  }

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

  .cta-section {
    padding: 50px 30px;
  }
}

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

  .intro-content h3 {
    font-size: 1.8rem;
  }

  .accordion-header {
    padding: 20px;
  }

  .accordion-content {
    padding: 0 20px;
  }

  .accordion-content.active {
    padding: 0 20px 20px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .feature-box {
    padding: 20px 15px;
  }

  .accordion-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}




.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: #9e0413;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #9e0413;
  border-radius: 2px;
}

/* Service Area Section */
.service-area {
  margin-bottom: 100px;
}

.area-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.area-intro p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.highlight-text {
  color: #9e0413;
  font-weight: 600;
}

/* Area Cards Layout */
.area-container {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.primary-area,
.secondary-area {
  flex: 1;
  min-width: 300px;
}

.area-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.area-header {
  background-color: #9e0413;
  color: white;
  padding: 25px 30px;
  position: relative;
}

.area-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.area-icon {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 2.5rem;
  opacity: 0.3;
}

.area-content {
  padding: 30px;
}

.area-list {
  list-style: none;
  margin-bottom: 25px;
}

.area-list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
}

.area-list li:last-child {
  border-bottom: none;
}

.area-list li::before {
  content: '📍';
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.area-list li.primary-city::before {
  content: '🏠';
  color: #9e0413;
}

.primary-city {
  color: #9e0413;
  font-weight: 600;
}

.service-distance {
  display: inline-block;
  background-color: rgba(158, 4, 19, 0.1);
  color: #9e0413;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-left: 10px;
  font-weight: 500;
}

/* Coverage Map */
.coverage-map {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
  text-align: center;
}

.map-title {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 30px;
}

.map-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.map-visual {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.map-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #9e0413;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(158, 4, 19, 0.3);
  z-index: 2;
}

.map-legend {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.legend-color.primary {
  background-color: #9e0413;
}

.legend-color.secondary {
  background-color: #ff6b6b;
}

.legend-color.tertiary {
  background-color: #4ecdc4;
}

/* Service Request CTA */
.service-request {
  background-color: #9e0413;
  border-radius: 12px;
  padding: 60px;
  text-align: center;
  color: white;
  margin-bottom: 80px;
}

.request-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.request-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.request-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.form-input {
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
}

.request-btn {
  background-color: white;
  color: #9e0413;
  padding: 16px 35px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid white;
}

.request-btn:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.phone-cta {
  margin-top: 30px;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Free Estimate Banner */
.estimate-banner {
  background: linear-gradient(135deg, #222 0%, #444 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 80px;
}

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

.banner-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.banner-text p {
  opacity: 0.9;
}

.banner-btn {
  background-color: #9e0413;
  color: white;
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #9e0413;
}

.banner-btn:hover {
  background-color: transparent;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {

  .area-container,
  .map-container {
    flex-direction: column;
    gap: 30px;
  }

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

  .service-request {
    padding: 50px 30px;
  }

  .request-form {
    flex-direction: column;
  }

  .form-input {
    min-width: 100%;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
  }
}

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

  .area-header h3 {
    font-size: 1.6rem;
  }

  .map-center {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .request-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .area-content {
    padding: 20px;
  }

  .area-list li {
    padding-left: 30px;
    font-size: 1rem;
  }

  .coverage-map {
    padding: 30px 20px;
  }

  .estimate-banner {
    padding: 30px 20px;
  }
}




.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: #9e0413;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #9e0413;
  border-radius: 2px;
}

/* Additional Services Section */
.additional-services {
  margin-bottom: 100px;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.services-intro p {
  font-size: 1.2rem;
  color: #555;
}

/* Horizontal Services Layout */
.horizontal-services {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-row {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 5px solid #9e0413;
}

.service-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(158, 4, 19, 0.1);
}

.service-icon {
  flex: 0 0 120px;
  background-color: rgba(158, 4, 19, 0.1);
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 2.5rem;
  color: #9e0413;
}

.service-content {
  flex: 1;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.service-info {
  flex: 1;
}

.service-title {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 10px;
}

.service-tagline {
  color: #9e0413;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-description {
  color: #666;
  margin-bottom: 15px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.feature-tag {
  background-color: rgba(158, 4, 19, 0.08);
  color: #9e0413;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.service-action {
  flex: 0 0 200px;
  text-align: right;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.price-note {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #9e0413;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #9e0413;
}

.service-btn:hover {
  background-color: transparent;
  color: #9e0413;
  transform: translateY(-3px);
}

/* Special Offer Banner */
.special-offer {
  background: linear-gradient(135deg, #9e0413 0%, #7a0310 100%);
  border-radius: 12px;
  padding: 40px;
  margin: 50px 0;
  color: white;
  text-align: center;
  box-shadow: 0 15px 35px rgba(158, 4, 19, 0.2);
}

.offer-badge {
  display: inline-block;
  background-color: #ffcc00;
  color: #222;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.offer-title {
  font-size: 2rem;
  margin-bottom: 15px;
}

.offer-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.offer-details {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.offer-item {
  text-align: center;
}

.offer-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.offer-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Service Guarantee */
.service-guarantee {
  background-color: rgba(158, 4, 19, 0.05);
  border-radius: 12px;
  padding: 40px;
  margin: 50px 0;
  border-left: 5px solid #9e0413;
}

.guarantee-title {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.guarantee-icon {
  width: 50px;
  height: 50px;
  background-color: #9e0413;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.guarantee-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.guarantee-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.guarantee-point i {
  color: #9e0413;
  font-size: 1.2rem;
  margin-top: 5px;
}

/* Why Choose Us Footer */
.why-choose {
  margin-top: 60px;
  text-align: center;
}

.why-title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 30px;
}

.why-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.reason {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.reason i {
  font-size: 2.5rem;
  color: #9e0413;
  margin-bottom: 20px;
}

.reason h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-content {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .service-action {
    width: 100%;
    text-align: left;
  }

  .service-icon {
    min-height: 120px;
  }

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

@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
  }

  .service-icon {
    width: 100%;
    min-height: 100px;
    flex: 0 0 auto;
  }

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

  .service-title {
    font-size: 1.6rem;
  }

  .special-offer {
    padding: 30px 20px;
  }

  .offer-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .service-content {
    padding: 20px;
  }

  .service-features {
    gap: 8px;
  }

  .feature-tag {
    font-size: 0.8rem;
  }

  .service-guarantee {
    padding: 30px 20px;
  }

  .guarantee-title {
    font-size: 1.5rem;
  }
}





.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: #9e0413;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #9e0413;
  border-radius: 2px;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 100px;
}

.faq-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.faq-intro p {
  font-size: 1.2rem;
  color: #555;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #9e0413;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(158, 4, 19, 0.02);
}

.faq-question.active {
  background-color: rgba(158, 4, 19, 0.05);
}

.question-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  flex: 1;
}

.city-tag {
  display: inline-block;
  background-color: rgba(158, 4, 19, 0.1);
  color: #9e0413;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 10px;
}

.faq-toggle {
  color: #9e0413;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  padding: 0 30px 25px;
  max-height: 500px;
}

.faq-answer p {
  color: #555;
  margin-bottom: 15px;
}

.faq-note {
  background-color: rgba(158, 4, 19, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 0.95rem;
}

/* Contact Us Section */
.contact-section {
  margin-bottom: 100px;
}

.contact-container {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 300px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.map-placeholder {
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, #eee 0%, #ddd 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
  text-align: center;
  padding: 20px;
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #9e0413;
}

.contact-info {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-title {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(158, 4, 19, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  color: #9e0413;
  font-size: 1.2rem;
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #222;
}

.contact-text p {
  color: #666;
}

.contact-link {
  color: #9e0413;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #7a0310;
  text-decoration: underline;
}

.hours-info {
  background-color: rgba(158, 4, 19, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.hours-title {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-table {
  width: 100%;
}

.hours-table tr {
  border-bottom: 1px solid rgba(158, 4, 19, 0.1);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 8px 0;
  color: #555;
}

.hours-table td:first-child {
  font-weight: 600;
  width: 40%;
}

/* Contact Form */
.contact-form-container {
  background-color: white;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #9e0413;
  box-shadow: 0 0 0 3px rgba(158, 4, 19, 0.1);
}

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

.form-submit {
  grid-column: 1 / -1;
  background-color: #9e0413;
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid #9e0413;
}

.form-submit:hover {
  background-color: transparent;
  color: #9e0413;
  transform: translateY(-3px);
}

/* Footer Section */
.footer-section {
  background-color: #222;
  color: white;
  padding: 70px 0 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #9e0413;
}

.footer-tagline {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 400px;
}

.footer-address {
  text-align: right;
}

.address-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: white;
}

.address-details p {
  margin-bottom: 8px;
  color: #aaa;
}

.address-details a {
  color: #9e0413;
  text-decoration: none;
  transition: color 0.3s ease;
}

.address-details a:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

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

.copyright {
  color: #aaa;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #9e0413;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-address {
    text-align: center;
  }
}

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

  .faq-question {
    padding: 20px;
  }

  .question-text {
    font-size: 1.1rem;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .form-title {
    font-size: 1.8rem;
  }

  .footer-logo h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .faq-question {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .city-tag {
    align-self: flex-start;
    margin-left: 0;
  }

  .contact-info {
    padding: 30px 20px;
  }

  .contact-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-icon {
    margin-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
