:root {
  --primary-blue: #1e1e4b;
  --accent-yellow: #ffbc3b;
  --text-gray: #5c5c77;
  --light-bg: #f8f9fa;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-gray);
}

.section-title {
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 15px;
}



.service-card {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(30, 30, 75, 0.1);
  border-color: var(--accent-yellow);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-yellow);
  margin-bottom: 20px;
  background-color: rgba(255, 188, 59, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-header {
  margin-bottom: 3rem;
}

.accent-text {
  color: var(--accent-yellow);
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 25px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}



:root {
  --primary-blue: #1e1e4b;
  --accent-yellow: #ffbc3b;
  --text-gray: #5c5c77;
  --light-bg: #f8f9fa;
  --light-yellow: #fff8e8;
  --medium-blue: #2d2d6b;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.contact-section {
  padding: 80px 0 0 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--medium-blue) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.business-card {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(30, 30, 75, 0.12);
  border-top: 5px solid var(--accent-yellow);
  margin-bottom: 60px;
}

.business-logo {
  text-align: center;
  margin-bottom: 40px;
}

.logo-text {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.logo-subtext {
  color: var(--accent-yellow);
  font-size: 1.2rem;
  font-weight: 600;
}

.info-row {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.info-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 188, 59, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-yellow);
  margin-bottom: 20px;
}

.info-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.info-content {
  font-size: 1.1rem;
  line-height: 1.7;
}

.info-content a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.info-content a:hover {
  color: var(--accent-yellow);
}

.phone-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin: 10px 0;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
  border: 1px solid #eaeaea;
}

.map-placeholder {
  background: linear-gradient(135deg, #e6f0ff 0%, #f0f5ff 100%);
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.map-icon {
  font-size: 4rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.hours-box {
  background-color: var(--light-yellow);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 60px;
  border: 2px solid rgba(255, 188, 59, 0.3);
}

.hours-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
}

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

.day-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 188, 59, 0.2);
}

.day-row:last-child {
  border-bottom: none;
}

.day-name {
  font-weight: 600;
  color: var(--primary-blue);
}

.day-hours {
  font-weight: 600;
  color: var(--text-gray);
}

.emergency-notice {
  background-color: var(--primary-blue);
  color: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 60px;
}

.emergency-icon {
  font-size: 2.5rem;
  color: var(--accent-yellow);
  margin-bottom: 15px;
}

.footer {
  background-color: var(--primary-blue);
  color: white;
  padding: 30px 0;
  text-align: center;
}

.copyright {
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-links {
  margin-top: 15px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-yellow);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 0;
  }

  .contact-header {
    padding: 40px 20px;
  }

  .contact-title {
    font-size: 2.2rem;
  }

  .business-card {
    padding: 30px 20px;
    margin: -40px 20px 40px;
  }

  .phone-number {
    font-size: 1.5rem;
  }

  .map-placeholder {
    height: 300px;
    padding: 20px;
  }
}

:root {
  --primary-blue: #1e1e4b;
  --accent-yellow: #ffbc3b;
  --text-gray: #5c5c77;
  --light-bg: #f8f9fa;
  --light-yellow: #fff8e8;
  --medium-blue: #2d2d6b;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-gray);
  line-height: 1.6;
}

.service-areas-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}



.section-subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

.main-city-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--medium-blue) 100%);
  color: white;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 15px 40px rgba(30, 30, 75, 0.15);
  position: relative;
  overflow: hidden;
}

.main-city-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: var(--accent-yellow);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.main-city-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background-color: var(--accent-yellow);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(-50px, 50px);
}

.main-city-icon {
  font-size: 3.5rem;
  color: var(--accent-yellow);
  margin-bottom: 20px;
}

.main-city-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.main-city-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 25px;
}

.main-city-highlight {
  display: inline-block;
  background-color: var(--accent-yellow);
  color: var(--primary-blue);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 15px;
}

.areas-grid {
  margin-bottom: 60px;
}

.area-card {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(30, 30, 75, 0.1);
  border-color: var(--accent-yellow);
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-icon {
  font-size: 2rem;
  color: var(--accent-yellow);
  margin-bottom: 15px;
}

.area-name {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.area-distance {
  color: var(--accent-yellow);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.area-distance i {
  margin-right: 8px;
}

.area-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

.county-section {
  margin-bottom: 40px;
}

.county-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-yellow);
  display: inline-block;
}

.service-map-container {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
  border: 1px solid #eaeaea;
}

.map-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
}

.map-visual {
  background: linear-gradient(135deg, #f0f5ff 0%, #e6f0ff 100%);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  border: 2px dashed var(--accent-yellow);
}

.map-icon {
  font-size: 4rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.map-center-point {
  display: inline-block;
  background-color: var(--accent-yellow);
  color: var(--primary-blue);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.coverage-badge {
  background-color: var(--light-yellow);
  color: var(--primary-blue);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 188, 59, 0.3);
}

.coverage-badge.primary {
  background-color: var(--accent-yellow);
}

.free-estimate-box {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--medium-blue) 100%);
  color: white;
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(30, 30, 75, 0.2);
}

.estimate-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.estimate-phone {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin: 25px 0;
}

.estimate-btn {
  background-color: var(--accent-yellow);
  border: none;
  color: var(--primary-blue);
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-top: 20px;
}

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

@media (max-width: 768px) {
  .service-areas-section {
    padding: 60px 0;
  }

  .main-city-card {
    padding: 30px 20px;
  }

  .main-city-title {
    font-size: 2rem;
  }

  .service-map-container {
    padding: 30px 20px;
  }

  .estimate-phone {
    font-size: 1.8rem;
  }

  .free-estimate-box {
    padding: 40px 25px;
  }
}
:root {
  --primary-blue: #1e1e4b;
  --accent-yellow: #ffbc3b;
  --text-gray: #5c5c77;
  --light-bg: #f8f9fa;
  --light-yellow: #fff8e8;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-gray);
  line-height: 1.6;
}

.faq-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}


.section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

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

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

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

.faq-question:hover {
  background-color: var(--light-yellow);
}

.faq-question h3 {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0;
  padding-right: 20px;
}

.faq-question .city-mention {
  color: var(--accent-yellow);
  font-weight: 700;
}

.faq-toggle {
  color: var(--accent-yellow);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer.open {
  padding: 0 30px 30px 30px;
  max-height: 1000px;
}

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

.faq-answer ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 10px;
}

.faq-answer li:before {
  content: '•';
  color: var(--accent-yellow);
  font-weight: bold;
  position: absolute;
  left: -10px;
}

.local-highlight {
  background-color: var(--primary-blue);
  color: white;
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  margin: 5px 0;
}

.contact-box {
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 10px 30px rgba(30, 30, 75, 0.1);
  border-top: 5px solid var(--accent-yellow);
}

.contact-box h3 {
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.contact-btn {
  background-color: var(--accent-yellow);
  border: none;
  color: var(--primary-blue);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin: 10px;
}

.contact-btn:hover {
  background-color: var(--primary-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(30, 30, 75, 0.15);
}

.phone-highlight {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 15px 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.badge {
  background-color: var(--light-yellow);
  color: var(--primary-blue);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

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

  .contact-btn {
    display: block;
    margin: 10px 0;
  }
}



:root {
  --primary-blue: #1e1e4b;
  --accent-yellow: #ffbc3b;
  --text-gray: #5c5c77;
  --light-bg: #f8f9fa;
  --section-padding: 80px 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-gray);
}

.additional-services-section {
  padding: var(--section-padding);
  background-color: white;
}

.section-title {
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}



.zigzag-item {
  margin-bottom: 100px;
}

.zigzag-item:last-child {
  margin-bottom: 0;
}

.service-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 400px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

.feature-box {
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(30, 30, 75, 0.08);
  border-top: 5px solid var(--accent-yellow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--accent-yellow);
  color: var(--primary-blue);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.feature-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.feature-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.feature-list li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

.feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
  font-weight: bold;
  font-size: 1.2rem;
}

.feature-btn {
  background-color: var(--accent-yellow);
  border: none;
  color: var(--primary-blue);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.feature-btn:hover {
  background-color: var(--primary-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(30, 30, 75, 0.15);
}

.local-badge {
  background-color: var(--primary-blue);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .zigzag-item {
    margin-bottom: 60px;
  }

  .service-image {
    min-height: 300px;
    margin-bottom: 30px;
  }

  .feature-box {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .additional-services-section {
    padding: 60px 0;
  }

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