/* ==========================================
   COLORS & VARIABLES
========================================== */
:root {
  --primary-orange: #FF6B35;
  --primary-orange-dark: #E65A2B;
  --dark-bg: #2C3E50;
  --darker-bg: #1a252f;
  --light-gray: #F5F5F5;
  --white: #ffffff;
  --text-dark: #333333;
  --text-gray: #666666;
}

/* ==========================================
   RESET
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ==========================================
   TOP BAR
========================================== */
.top-bar {
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 12px 0;
}

.top-bar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.emergency-label, .office-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.top-bar-phone {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-phone svg {
  flex-shrink: 0;
}

.schedule-btn {
  background-color: var(--white);
  color: var(--primary-orange);
  border: none;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.schedule-btn:hover {
  background-color: #f8f8f8;
  transform: translateY(-1px);
}

/* ==========================================
   NAVBAR
========================================== */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.brand h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.brand p {
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-orange);
}

/* ==========================================
   BUTTONS
========================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

.btn-orange {
  background-color: var(--primary-orange);
  color: var(--white);
}

.btn-orange:hover {
  background-color: var(--primary-orange-dark);
}

.btn-phone {
  background-color: var(--white);
  color: var(--primary-orange);
  font-size: 16px;
  padding: 16px 40px;
}

.btn-phone:hover {
  background-color: #f8f8f8;
  transform: scale(1.05);
}

.btn-white-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 16px 40px;
}

.btn-white-outline:hover {
  background-color: var(--white);
  color: var(--primary-orange);
}

.btn-submit {
  background-color: var(--primary-orange);
  color: var(--white);
  width: 100%;
  padding: 16px;
  font-size: 14px;
}

.btn-submit:hover {
  background-color: var(--primary-orange-dark);
}

.btn-learn-more {
  background-color: transparent;
  color: var(--primary-orange);
  padding: 0;
  font-size: 15px;
  border: none;
  text-decoration: none;
  font-weight: 600;
}

.btn-learn-more:hover {
  color: var(--primary-orange-dark);
  text-decoration: underline;
}

/* ==========================================
   HERO SECTION
========================================== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 650px;
  background-image: url('../public/images/background.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 30px;
  color: var(--white);
}

.hero-content h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 21px;
  line-height: 1.65;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ==========================================
   SERVICE CARDS
========================================== */
.service-cards-section {
  padding: 90px 40px;
  background-color: var(--white);
}

.service-cards-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.service-card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-body {
  padding: 36px 28px;
}

.service-card-body h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-card-body p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-link:hover {
  color: var(--primary-orange-dark);
}

/* ==========================================
   ABOUT WITH FORM SECTION
========================================== */
.about-with-form {
  padding: 100px 40px;
  background-color: var(--light-gray);
}

.about-form-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.about-text-content {
  flex: 1;
}

.about-text-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 24px;
}

.about-text-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 28px 0 16px;
}

.about-text-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-form-wrapper {
  flex: 1;
}

.contact-form-box {
  background: rgba(100, 100, 100, 0.85);
  padding: 44px 36px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.contact-form-box h4 {
  color: var(--white);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px 18px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  background-color: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

/* ==========================================
   EMERGENCY CTA BANNER
========================================== */
.emergency-cta {
  background-color: var(--primary-orange);
  padding: 70px 40px;
}

.emergency-cta-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.emergency-cta-text {
  flex: 1;
}

.cta-small-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.emergency-cta-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

/* ==========================================
   NEIGHBORHOOD SECTION
========================================== */
.neighborhood-section {
  padding: 100px 40px;
  background-color: var(--white);
}

.neighborhood-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 70px;
  align-items: center;
}

.neighborhood-image {
  flex: 1;
  max-width: 500px;
  width: 100%;
}

.neighborhood-image img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: block;
}

.neighborhood-content {
  flex: 1;
}

.section-label {
  display: inline-block;
  color: var(--primary-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.neighborhood-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 24px;
}

.neighborhood-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ==========================================
   FEATURES SECTION
========================================== */
.features-section {
  padding: 80px 40px;
  background-color: var(--light-gray);
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.feature-box {
  text-align: center;
}

.feature-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.feature-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.feature-box p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ==========================================
   TESTIMONIALS
========================================== */
.testimonials-section {
  padding: 100px 40px;
  background: var(--darker-bg);
  color: var(--white);
  text-align: center;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-container h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
}

.testimonial-quote {
  font-size: 19px;
  line-height: 1.8;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.testimonial-author {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 36px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--white);
}

/* ==========================================
   FINAL CTA
========================================== */
.final-cta {
  background-color: var(--primary-orange);
  padding: 90px 40px;
  text-align: center;
}

.final-cta-content {
  max-width: 1000px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 36px;
}

/* ==========================================
   SERVICE DETAIL PAGES
========================================== */
/* Service Page Header */
.service-page-header {
  position: relative;
  height: 45vh;
  min-height: 350px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.service-page-header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 30px;
  color: var(--white);
}

.service-page-header-content h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--white);
}

.service-page-header-content p {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.9);
}

/* Service Detail Section */
.service-detail-section {
  padding: 80px 40px;
  background-color: var(--light-gray);
}

.service-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
}

.service-detail-main {
  background: var(--white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-intro {
  margin-bottom: 40px;
}

.service-intro h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-intro p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
}

.service-image-block {
  margin: 40px auto;
  border-radius: 8px;
  overflow: hidden;
  max-width: 500px;
}

.service-image-block img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Service Features Grid */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.service-feature-item {
  padding: 30px;
  background: var(--light-gray);
  border-radius: 6px;
  border-left: 4px solid var(--primary-orange);
}

.feature-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 12px;
  line-height: 1;
}

.service-feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-feature-item p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Process Steps */
.service-process {
  margin: 50px 0;
}

.service-process h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 35px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-step {
  text-align: center;
  padding: 25px 15px;
  background: var(--light-gray);
  border-radius: 6px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 18px;
}

.process-step h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Why Choose Section */
.service-why-choose {
  margin: 50px 0;
  padding: 40px;
  background: var(--light-gray);
  border-radius: 8px;
}

.service-why-choose h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.why-choose-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-choose-list li {
  font-size: 16px;
  color: var(--text-dark);
  padding-left: 30px;
  position: relative;
}

.why-choose-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 18px;
}

/* Service CTA Box */
.service-cta-box {
  margin-top: 50px;
  padding: 45px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
  border-radius: 8px;
  text-align: center;
  color: var(--white);
}

.service-cta-box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-cta-box p {
  font-size: 17px;
  margin-bottom: 25px;
  opacity: 0.95;
}

.btn-full {
  width: 100%;
}

/* Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-gray);
}

.sidebar-services {
  list-style: none;
}

.sidebar-services li {
  margin-bottom: 12px;
}

.sidebar-services li a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 15px;
  display: block;
  padding: 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.sidebar-services li a:hover {
  background: var(--light-gray);
  color: var(--primary-orange);
  padding-left: 18px;
}

.sidebar-contact-info p {
  margin-bottom: 18px;
  font-size: 15px;
  color: var(--text-gray);
}

.sidebar-contact-info a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
}

.sidebar-contact-info a:hover {
  text-decoration: underline;
}

.sidebar-cta {
  background: var(--primary-orange);
  color: var(--white);
}

.sidebar-cta h3 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  font-size: 15px;
}

/* ==========================================
   FOOTER
========================================== */
.footer {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 40px 30px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-logo h2 {
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-logo p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   RESPONSIVE - LARGE TABLET (1200px - 1024px)
========================================== */
@media (max-width: 1200px) {
  .nav-container {
    padding: 0 30px;
  }

  .nav-menu {
    gap: 18px;
  }

  .nav-link {
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .about-form-container,
  .neighborhood-container {
    gap: 50px;
  }
}

/* ==========================================
   RESPONSIVE - TABLET (1024px - 768px)
========================================== */
@media (max-width: 1024px) {
  /* Top Bar */
  .top-bar-container {
    padding: 0 25px;
  }

  .top-bar-left, .top-bar-right {
    gap: 12px;
  }

  .emergency-label, .office-label {
    font-size: 10px;
  }

  .top-bar-phone {
    font-size: 13px;
  }

  .schedule-btn {
    padding: 8px 18px;
    font-size: 11px;
  }

  /* Navbar */
  .nav-container {
    padding: 0 25px;
  }

  .nav-menu {
    display: none;
  }

  .brand h1 {
    font-size: 22px;
  }

  .brand p {
    font-size: 10px;
  }

  /* Hero */
  .hero {
    height: 70vh;
    min-height: 550px;
  }

  .hero-content h1 {
    font-size: 44px;
    margin-bottom: 22px;
  }

  .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  /* Service Cards */
  .service-cards-section {
    padding: 60px 25px;
  }

  .service-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .service-card-body {
    padding: 28px 22px;
  }

  .service-card-body h3 {
    font-size: 22px;
  }

  /* About with Form */
  .about-with-form {
    padding: 70px 25px;
  }

  .about-form-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-text-content h2 {
    font-size: 34px;
  }

  .about-text-content h3 {
    font-size: 24px;
  }

  .contact-form-box {
    padding: 36px 28px;
  }

  /* Emergency CTA */
  .emergency-cta {
    padding: 50px 25px;
  }

  .emergency-cta-text h2 {
    font-size: 30px;
  }

  /* Neighborhood */
  .neighborhood-section {
    padding: 70px 25px;
  }

  .neighborhood-container {
    flex-direction: column;
    gap: 40px;
  }

  .neighborhood-image {
    max-width: 100%;
  }

  .neighborhood-content h2 {
    font-size: 32px;
  }

  /* Features */
  .features-section {
    padding: 60px 25px;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 70px 25px;
  }

  .testimonials-container h2 {
    font-size: 34px;
  }

  .testimonial-quote {
    font-size: 17px;
  }

  /* Final CTA */
  .final-cta {
    padding: 60px 25px;
  }

  .final-cta h2 {
    font-size: 30px;
  }

  /* Footer */
  .footer {
    padding: 50px 25px 25px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
  }

  /* Service Detail Pages */
  .service-detail-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-main {
    padding: 40px 30px;
  }

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

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

  .why-choose-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   RESPONSIVE - MOBILE LANDSCAPE / SMALL TABLET (768px - 600px)
========================================== */
@media (max-width: 768px) {
  /* Top Bar */
  .top-bar {
    padding: 10px 0;
  }

  .top-bar-container {
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
  }

  .top-bar-left, .top-bar-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .schedule-btn {
    width: 100%;
    max-width: 250px;
  }

  /* Navbar */
  .nav-container {
    padding: 0 20px;
    min-height: 70px;
  }

  .brand h1 {
    font-size: 20px;
  }

  .brand p {
    font-size: 9px;
  }

  /* Hero */
  .hero {
    height: 65vh;
    min-height: 500px;
  }

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

  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    padding: 15px 28px;
  }

  /* Service Cards */
  .service-cards-section {
    padding: 50px 20px;
  }

  .service-cards-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card-img {
    height: 240px;
  }

  .service-card-body {
    padding: 28px 20px;
  }

  .service-card-body h3 {
    font-size: 22px;
  }

  /* About with Form */
  .about-with-form {
    padding: 50px 0;
  }

  .about-form-container {
    gap: 35px;
  }

  .about-text-content {
    padding: 0 20px;
  }

  .about-text-content h2 {
    font-size: 28px;
    line-height: 1.35;
    margin-bottom: 20px;
  }

  .about-text-content h3 {
    font-size: 22px;
    margin: 24px 0 14px;
  }

  .about-text-content p {
    font-size: 15px;
  }

  .contact-form-wrapper {
    width: 100%;
    padding: 0 20px;
  }

  .contact-form-box {
    padding: 32px 24px;
    width: 100%;
  }

  .contact-form-box h4 {
    font-size: 23px;
    margin-bottom: 24px;
  }

  /* Emergency CTA */
  .emergency-cta {
    padding: 45px 20px;
  }

  .emergency-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .emergency-cta-text h2 {
    font-size: 26px;
    line-height: 1.45;
  }

  .cta-small-text {
    font-size: 12px;
  }

  .btn-phone {
    font-size: 18px;
    padding: 18px 36px;
  }

  /* Neighborhood */
  .neighborhood-section {
    padding: 50px 0;
  }

  .neighborhood-container {
    gap: 30px;
    align-items: flex-start;
  }

  .neighborhood-image {
    padding: 0 20px;
    width: 100%;
  }

  .neighborhood-image img {
    max-height: 350px;
    min-height: 250px;
    width: 100%;
    object-position: center;
  }

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

  .neighborhood-content h2 {
    font-size: 27px;
    line-height: 1.35;
  }

  .neighborhood-content p {
    font-size: 15px;
  }

  .section-label {
    font-size: 11px;
  }

  /* Features */
  .features-section {
    padding: 50px 20px;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .feature-icon {
    width: 85px;
    height: 85px;
  }

  .feature-box h3 {
    font-size: 20px;
  }

  .feature-box p {
    font-size: 14px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 50px 20px;
  }

  .testimonials-container h2 {
    font-size: 30px;
    margin-bottom: 35px;
  }

  .testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
  }

  .testimonial-author {
    font-size: 15px;
  }

  /* Final CTA */
  .final-cta {
    padding: 50px 20px;
  }

  .final-cta h2 {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  .btn-white-outline {
    padding: 15px 32px;
  }

  /* Footer */
  .footer {
    padding: 45px 20px 25px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 35px;
  }

  .footer-col h3 {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .footer-col ul li {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .footer-logo h2 {
    font-size: 23px;
  }

  .footer-logo p {
    font-size: 10px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  /* Service Detail Pages */
  .service-page-header {
    height: 35vh;
    min-height: 280px;
  }

  .service-page-header-content h1 {
    font-size: 34px;
  }

  .service-page-header-content p {
    font-size: 18px;
  }

  .service-detail-section {
    padding: 50px 20px;
  }

  .service-detail-main {
    padding: 35px 24px;
  }

  .service-intro h2 {
    font-size: 28px;
  }

  .service-image-block {
    margin: 30px auto;
    max-width: 100%;
  }

  .service-image-block img {
    max-height: 350px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .service-cta-box {
    padding: 35px 25px;
  }

  .service-cta-box h3 {
    font-size: 26px;
  }
}

/* ==========================================
   RESPONSIVE - MOBILE PORTRAIT (600px - 480px)
========================================== */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .about-text-content h2 {
    font-size: 25px;
  }

  .about-text-content h3 {
    font-size: 20px;
  }

  .emergency-cta-text h2 {
    font-size: 23px;
  }

  .neighborhood-content h2 {
    font-size: 24px;
  }

  .neighborhood-image img {
    max-height: 260px;
  }

  .testimonials-container h2 {
    font-size: 26px;
  }

  .final-cta h2 {
    font-size: 23px;
  }

  .service-card-img {
    height: 220px;
  }
}

/* ==========================================
   RESPONSIVE - SMALL MOBILE (480px and below)
========================================== */
@media (max-width: 480px) {
  /* Top Bar */
  .top-bar-container {
    padding: 0 15px;
  }

  .top-bar-left, .top-bar-right {
    gap: 8px;
  }

  .emergency-label, .office-label {
    font-size: 9px;
  }

  .top-bar-phone {
    font-size: 12px;
  }

  .top-bar-phone svg {
    width: 14px;
    height: 14px;
  }

  .schedule-btn {
    padding: 10px 20px;
    font-size: 10px;
  }

  /* Navbar */
  .nav-container {
    padding: 0 15px;
    min-height: 65px;
  }

  .brand h1 {
    font-size: 18px;
  }

  .brand p {
    font-size: 8px;
  }

  /* Hero */
  .hero {
    height: 60vh;
    min-height: 450px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn {
    padding: 13px 24px;
    font-size: 12px;
  }

  /* Service Cards */
  .service-cards-section {
    padding: 40px 15px;
  }

  .service-cards-container {
    gap: 20px;
  }

  .service-card-img {
    height: 200px;
  }

  .service-card-body {
    padding: 24px 18px;
  }

  .service-card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .service-card-body p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .service-link {
    font-size: 13px;
  }

  /* About with Form */
  .about-with-form {
    padding: 40px 0;
  }

  .about-form-container {
    gap: 30px;
  }

  .about-text-content {
    padding: 0 15px;
  }

  .about-text-content h2 {
    font-size: 23px;
    margin-bottom: 18px;
  }

  .about-text-content h3 {
    font-size: 19px;
    margin: 20px 0 12px;
  }

  .about-text-content p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .btn-orange {
    width: 100%;
    padding: 14px 24px;
    font-size: 12px;
  }

  .contact-form-wrapper {
    width: 100%;
    padding: 0 15px;
  }

  .contact-form-box {
    padding: 28px 20px;
    width: 100%;
  }

  .contact-form-box h4 {
    font-size: 21px;
    margin-bottom: 20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 13px 15px;
    font-size: 14px;
  }

  .contact-form {
    gap: 14px;
  }

  .btn-submit {
    padding: 14px;
    font-size: 13px;
  }

  /* Emergency CTA */
  .emergency-cta {
    padding: 40px 15px;
  }

  .emergency-cta-content {
    gap: 25px;
  }

  .emergency-cta-text h2 {
    font-size: 21px;
  }

  .cta-small-text {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .btn-phone {
    font-size: 16px;
    padding: 16px 32px;
  }

  /* Neighborhood */
  .neighborhood-section {
    padding: 40px 0;
  }

  .neighborhood-container {
    gap: 25px;
  }

  .neighborhood-image {
    padding: 0 15px;
    max-width: 100%;
  }

  .neighborhood-image img {
    max-height: 280px;
    width: 100%;
    border-radius: 8px;
  }

  .neighborhood-content {
    padding: 0 15px;
  }

  .neighborhood-content h2 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .neighborhood-content p {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .section-label {
    font-size: 10px;
    margin-bottom: 12px;
  }

  /* Features */
  .features-section {
    padding: 40px 15px;
  }

  .features-container {
    gap: 30px;
  }

  .feature-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 20px;
  }

  .feature-icon svg {
    width: 40px;
    height: 40px;
  }

  .feature-box h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .feature-box p {
    font-size: 14px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 40px 15px;
  }

  .testimonials-container h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .testimonial-quote {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .testimonial-author {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .dot {
    width: 12px;
    height: 12px;
  }

  /* Final CTA */
  .final-cta {
    padding: 40px 15px;
  }

  .final-cta h2 {
    font-size: 21px;
    margin-bottom: 24px;
  }

  .btn-white-outline {
    padding: 14px 28px;
    font-size: 12px;
  }

  /* Footer */
  .footer {
    padding: 40px 15px 20px;
  }

  .footer-top {
    gap: 25px;
    margin-bottom: 30px;
  }

  .footer-col h3 {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .footer-col ul li {
    margin-bottom: 7px;
    font-size: 12px;
  }

  .footer-logo h2 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .footer-logo p {
    font-size: 9px;
  }

  .footer-bottom {
    padding-top: 25px;
  }

  .footer-bottom p {
    font-size: 11px;
  }

  /* Service Detail Pages */
  .service-page-header-content h1 {
    font-size: 28px;
  }

  .service-page-header-content p {
    font-size: 16px;
  }

  .service-detail-section {
    padding: 40px 15px;
  }

  .service-detail-main {
    padding: 28px 20px;
  }

  .service-intro h2 {
    font-size: 24px;
  }

  .service-intro p {
    font-size: 15px;
  }

  .service-image-block {
    margin: 28px auto;
    border-radius: 6px;
    max-width: 100%;
  }

  .service-image-block img {
    max-height: 280px;
  }

  .service-cta-box {
    padding: 30px 20px;
  }

  .service-cta-box h3 {
    font-size: 22px;
  }

  .service-cta-box p {
    font-size: 15px;
  }

  .sidebar-widget {
    padding: 24px 20px;
  }
}

/* ==========================================
   COOKIE CONSENT BANNER
========================================== */
#cookie-consent-banner {
  font-family: 'Open Sans', sans-serif;
}

#cookie-consent-banner a {
  color: #FF6B35;
  text-decoration: underline;
}

#cookie-consent-banner a:hover {
  color: #E65A2B;
}

#cookie-consent-banner button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

#cookie-consent-banner input[type="checkbox"]:checked + span {
  background-color: #4CAF50 !important;
}

#cookie-consent-banner input[type="checkbox"]:checked + span span {
  transform: translateX(24px) !important;
}

/* Cookie settings toggle switch */
#cookie-consent-banner label span {
  transition: background-color 0.3s, transform 0.3s;
}

/* Responsive cookie banner */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 15px !important;
  }
  
  #cookie-consent-banner > div > div:first-child {
    margin-bottom: 15px;
  }
  
  #cookie-consent-banner button {
    flex: 1;
    min-width: 120px;
  }
}
