css
:root {
  --primary-color: #1B3A4B;
  --secondary-color: #D2E4DC;
  --accent-color: #4CAF50;
  --text-color: #333333;
  --light-text: #ffffff;
  --background-light: #ffffff;
  --dark-bg: #121212;
  --gray-text: #9e9e9e;
}

body {
  background: #ffffff;
  color: #333333;
  font-family: 'Roboto Condensed', sans-serif;
}

.service-hero {
  min-height: 85vh; /* or try 100vh for full height on large screens */
  padding-top: 120px; /* pushes content below fixed announcement + nav */
  padding-bottom: 5rem; /* adds breathing room */
  box-sizing: border-box;
  background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&amp;fit=crop&amp;q=80') no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 80px;
  color: var(--light-text);
  position: relative;
  overflow: hidden;
}

.hero-content {
  background: rgba(255, 255, 255, 0.95);
  padding: clamp(1rem, 4vw, 3rem);
  width: 65%;
  max-width: 800px;
  margin-left: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 1;
  color: var(--text-color);
  font-weight: 400;
}

.hero-content .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.hero-content .cta-button:hover {
  transform: translateY(-2px);
  background: var(--primary-color);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.intro-section {
  padding: 5rem 2rem;
  background: linear-gradient(to right, #ffffff, #f8f9fa);
}

.intro-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.intro-image {
  flex: 1;
}

.rounded-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.commercial-solutions-overview {
  padding: 4rem 2rem;
  background: #f8f9fa;
  color: #333;
}

.commercial-solutions-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .intro-section {
    display: none;
  }

  .commercial-solutions-features {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    gap: 1rem;
    padding: 1rem;
    margin: 0 -1rem;
  }

  .commercial-solutions-feature {
    flex: 0 0 90%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 300px;
  }
}

.commercial-solutions-feature {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.commercial-solutions-overview .view-more-button,
.expanded-facilities {
  position: relative;
  z-index: 2;
}

.expanded-facilities .commercial-solutions-features {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.commercial-solutions-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.commercial-solutions-header {
  text-align: center;
  margin-bottom: 4rem;
}

.commercial-solutions-header h2 {
  color: #000000;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.commercial-solutions-intro {
  color: #333333;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
}

.commercial-solutions-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  text-align: center;
}

.commercial-solutions-feature:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(32, 168, 147, 0.25), rgba(255, 255, 255, 0.1));
  border-color: rgba(32, 168, 147, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.commercial-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.commercial-feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-content h3 {
  color: #000000;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.feature-content p {
  color: #333333;
  line-height: 1.6;
}

.feature-content .expanded-service-link {
  color: #1B3A4B;
  font-weight: 500;
}

@media (max-width: 768px) {
  .intro-section {
    display: none;
  }

  .service-hero {
    height: 65vh;
    margin-top: 0px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 3rem 0;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    position: relative;
  }

  .hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    width: 85%;
    max-width: 400px;
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 2;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
  }

  .hero-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-align: left;
  }

  .hero-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 1;
    text-align: left;
  }

  .hero-content .cta-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    margin-top: 0;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 8px;
  }

  .local-trust-signals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin: 1rem 0;
    font-size: 0.8rem;
  }

  .local-trust-signals span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-color);
    font-weight: 500;
  }
}

@media (max-width: 768px) {
  
  .commercial-solutions-header h2 {
    text-align: left; 
    line-height: 1.2; 
  }

  .commercial-solutions-header  {
    text-align: left; 
  
  }
  
  .services-visual {
    flex-direction: column;
    gap: 2rem;
  }

  .services-stat {
    min-width: auto;
  }

  .services-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .services-overview {
    padding: 4rem 1rem;
  }

  .services-overview h2 {
    font-size: 2.2rem;
  }

  .solution-card {
    padding: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .intro-content {
    flex-direction: column;
  }

  .intro-text h2 {
    font-size: 2.2rem;
  }

  .intro-image {
    order: -1;
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.service-card p {
  color: #666;
  line-height: 1.6;
}

.view-more-card {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.schedule-section {
  padding: 4rem 2rem;
  background: #ffffff;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  
  schedule-section h2 {
    text-align: left; 
  }
  
  .schedule-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    gap: 1rem;
    padding: 1rem;
    margin: 0 -1rem;
  }

  .schedule-card {
    flex: 0 0 90%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 300px;
  }
}

.schedule-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.schedule-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.schedule-highlight {
  background: rgba(32, 168, 147, 0.1);
  padding: 1rem;
  border-radius: 6px;
  color: var(--primary-color);
  font-size: 0.95rem;
  margin: 1rem 0;
  border-left: 3px solid var(--accent-color);
}

.schedule-list {
  list-style: none;
  padding: 0;
  color: #444444;
}

.schedule-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.schedule-list li:before {
  content: "✓";
  color: var(--accent-color);
  margin-right: 10px;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-features i {
  color: var(--accent-color);
}

.expanded-service-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: rgba(32, 168, 147, 0.1);
}

.expanded-service-link:hover {
  background: rgba(32, 168, 147, 0.2);
  transform: translateY(-2px);
}

.expanded-service-link .arrow {
  display: inline-block;
  margin-left: 8px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.expanded-service-link:hover .arrow {
  transform: translateX(4px);
}



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

  .service-hero p {
    font-size: 1.2rem !important;
  }

  .schedule-card {
    padding: 1.5rem;
  }
}

/* Mobile Commercial Cleaning Page Styles */
@media (max-width: 768px) {
  .ndc-commercial-mobile {
    display: block;
    padding: 2rem 0;
    background: #ffffff;
  }

  .ndc-mobile-container {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
  }

  .ndc-mobile-cta-top {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
  }

  .ndc-mobile-section {
    margin-bottom: 3rem;
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .ndc-mobile-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
  }

  .ndc-mobile-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .ndc-mobile-link {
    display: block;
    text-align: center;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .ndc-mobile-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    text-align: center;
  }

  .ndc-card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }

  .ndc-card-icon i {
    font-size: 1.5rem;
    color: white;
  }

  .ndc-mobile-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .ndc-mobile-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
  }

  .ndc-schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .ndc-schedule-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .ndc-schedule-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .ndc-schedule-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
  }

  .ndc-trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .ndc-badge {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .ndc-badge i {
    font-size: 1.5rem;
    color: var(--accent-color);
  }

  .ndc-badge span {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
  }

  .ndc-stats-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }

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

  .ndc-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
  }

  .ndc-stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
  }

  .ndc-testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
  }

  .ndc-testimonial-content p {
    color: #555;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: left;
  }

  .ndc-testimonial-author {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-align: right;
  }

  .ndc-mobile-cta {
    text-align: center;
    margin-top: 2rem;
  }

  .ndc-mobile-cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    border: none;
    cursor: pointer;
  }

  .ndc-mobile-cta-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  }

  .ndc-mobile-cta-btn:active {
    transform: scale(0.98);
  }

  .ndc-mobile-final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 2rem;
  }

  .ndc-mobile-final-cta h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .ndc-mobile-final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
  }

  .ndc-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .ndc-cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
  }

  .ndc-cta-features i {
    color: var(--accent-color);
  }

  .ndc-cta-primary {
    background: var(--accent-color) !important;
    padding: 1.2rem 2.5rem !important;
    font-size: 1.1rem !important;
  }

  /* Mobile Scheduling Accordion */
  .ndc-scheduling-mobile {
    margin: 2rem 0;
  }

  .ndc-schedule-accordion {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    overflow: hidden;
  }

  .accordion-input {
    display: none;
  }

  .accordion-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
  }

  .accordion-label:hover {
    background: #e9ecef;
  }

  .accordion-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
  }

  .accordion-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
    transition: transform 0.3s ease;
  }

  .accordion-input:checked + .accordion-label .accordion-icon {
    content: "−";
    transform: rotate(45deg);
  }

  .accordion-input:checked + .accordion-label .accordion-icon::before {
    content: "−";
  }

  .accordion-input:checked + .accordion-label .accordion-icon {
    transform: rotate(0deg);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
  }

  .accordion-input:checked ~ .accordion-content {
    max-height: 500px;
    padding: 1.5rem;
  }

  .ndc-scheduling-mobile .schedule-highlight {
    background: rgba(32, 168, 147, 0.1);
    padding: 1rem;
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin: 0 0 1rem 0;
    border-left: 3px solid var(--accent-color);
    font-style: italic;
  }

  .ndc-scheduling-mobile .schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .ndc-scheduling-mobile .schedule-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .ndc-scheduling-mobile .schedule-list li:before {
    content: "✓";
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: bold;
    flex-shrink: 0;
  }

  /* Fix icon toggle */
  .accordion-input:checked + .accordion-label .accordion-icon::after {
    content: "−";
  }

  .accordion-icon::after {
    content: "+";
  }

  .accordion-input:checked + .accordion-label .accordion-icon::after {
    content: "−";
  }

  /* Hide mobile content on desktop */
  .commercial-solutions-overview {
    display: block;
  }
}

/* Mobile Commercial Hero Section */
.ndc-commercial-hero-mobile {
  display: none;
  min-height: 55vh;
  background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&amp;fit=crop&amp;q=80') center/cover no-repeat;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ndc-commercial-hero-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(27, 58, 75, 0.85) 0%, rgba(27, 58, 75, 0.75) 50%, rgba(76, 175, 80, 0.15) 100%), 
                url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&amp;fit=crop&amp;q=80');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 70px;
    color: white;
  }

  .ndc-commercial-hero-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(76, 175, 80, 0.1) 100%);
    z-index: 1;
  }

  .ndc-commercial-hero-mobile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(27, 58, 75, 0.9), transparent);
    z-index: 1;
  }

  .ndc-commercial-hero-mobile .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    text-align: center;
    background: none;
    box-shadow: none;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
  }

  .ndc-commercial-hero-mobile .hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: none;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -1px;
    animation: slideInUp 0.8s ease-out;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(27, 58, 75, 0.8);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .ndc-commercial-hero-mobile .hero-subtitle {
    display: block;
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    animation: slideInUp 0.8s ease-out 0.2s both;
  }

  .ndc-commercial-hero-mobile .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
    animation: slideInUp 1s ease-out 0.4s both;
  }

  .ndc-commercial-hero-mobile .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 0;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    color: white;
    border: none;
    text-decoration: none;
    display: inline-block;
  }

  .ndc-commercial-hero-mobile .cta-button:active {
    transform: scale(0.98);
  }

  .ndc-commercial-hero-mobile .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
    background: #45a049;
  }

  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Hide desktop hero on mobile */
  .service-hero {
    display: none !important;
  }
}

/* Hide mobile hero on desktop */
@media (min-width: 769px) {
  .ndc-commercial-hero-mobile {
    display: none !important;
  }
}

/* Mobile Construction Hero Section */
.ndc-construction-hero-mobile {
  display: none;
  min-height: 55vh;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&amp;fit=crop&amp;q=80') center/cover no-repeat;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ndc-construction-hero-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(27, 58, 75, 0.85) 0%, rgba(27, 58, 75, 0.75) 50%, rgba(76, 175, 80, 0.15) 100%), 
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&amp;fit=crop&amp;q=80');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 70px;
    color: white;
  }

  .ndc-construction-hero-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(76, 175, 80, 0.1) 100%);
    z-index: 1;
  }

  .ndc-construction-hero-mobile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(27, 58, 75, 0.9), transparent);
    z-index: 1;
  }

  .ndc-construction-hero-mobile .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    text-align: center;
    background: none;
    box-shadow: none;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
  }

  .ndc-construction-hero-mobile .hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: none;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -1px;
    animation: slideInUp 0.8s ease-out;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(27, 58, 75, 0.8);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .ndc-construction-hero-mobile .hero-subtitle {
    display: block;
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    animation: slideInUp 0.8s ease-out 0.2s both;
  }

  .ndc-construction-hero-mobile .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
    animation: slideInUp 1s ease-out 0.4s both;
  }

  .ndc-construction-hero-mobile .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 0;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    color: white;
    border: none;
    text-decoration: none;
    display: inline-block;
  }

  .ndc-construction-hero-mobile .cta-button:active {
    transform: scale(0.98);
  }

  .ndc-construction-hero-mobile .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
    background: #45a049;
  }

  /* Hide desktop hero on mobile */
  .hero-section {
    display: none !important;
  }

  /* Hide desktop sections on mobile */
  .overview-section,
  .construction-services,
  .phases-section,
  .systematic-section,
  .equipment-section,
  .compliance-section,
  .cta-section {
    display: none !important;
  }
}

/* Hide mobile construction hero on desktop */
@media (min-width: 769px) {
  .ndc-construction-hero-mobile,
  .ndc-construction-mobile {
    display: none !important;
  }
}

/* Mobile Specialty Hero Section */
.ndc-specialty-hero-mobile {
  display: none;
  min-height: 55vh;
  background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&amp;fit=crop&amp;q=80') center/cover no-repeat;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ndc-specialty-hero-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(27, 58, 75, 0.85) 0%, rgba(27, 58, 75, 0.75) 50%, rgba(76, 175, 80, 0.15) 100%), 
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&amp;fit=crop&amp;q=80');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 70px;
    color: white;
  }

  .ndc-specialty-hero-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(76, 175, 80, 0.1) 100%);
    z-index: 1;
  }

  .ndc-specialty-hero-mobile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(27, 58, 75, 0.9), transparent);
    z-index: 1;
  }

  .ndc-specialty-hero-mobile .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    text-align: center;
    background: none;
    box-shadow: none;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
  }

  .ndc-specialty-hero-mobile .hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: none;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -1px;
    animation: slideInUp 0.8s ease-out;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(27, 58, 75, 0.8);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .ndc-specialty-hero-mobile .hero-subtitle {
    display: block;
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    animation: slideInUp 0.8s ease-out 0.2s both;
  }

  .ndc-specialty-hero-mobile .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
    animation: slideInUp 1s ease-out 0.4s both;
  }

  .ndc-specialty-hero-mobile .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 0;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    color: white;
    border: none;
    text-decoration: none;
    display: inline-block;
  }

  .ndc-specialty-hero-mobile .cta-button:active {
    transform: scale(0.98);
  }

  .ndc-specialty-hero-mobile .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
    background: #45a049;
  }

  /* Hide desktop hero on mobile */
  .service-hero {
    display: none !important;
  }

  /* Mobile Specialty Content Styles */
  .ndc-specialty-mobile {
    display: block;
    padding: 2rem 0;
    background: #ffffff;
  }

  .ndc-mobile-container {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
  }

  .ndc-mobile-section {
    margin-bottom: 3rem;
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .ndc-mobile-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
  }

  /* Specialty Accordion - Matching Services Page Style */
  .ndc-specialty-accordion {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .ndc-specialty-accordion .ndc-accordion-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(32, 168, 147, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
  }

  .ndc-specialty-accordion .ndc-accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(32, 168, 147, 0.2);
  }

  .ndc-specialty-accordion .accordion-input {
    display: none;
  }

  .ndc-specialty-accordion .accordion-label {
    padding: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
    cursor: pointer;
    position: relative;
    padding-right: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
  }

  .ndc-specialty-accordion .accordion-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
  }

  .ndc-specialty-accordion .accordion-label::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-weight: bold;
  }

  .ndc-specialty-accordion .accordion-input:checked + .accordion-label::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
  }

  .ndc-specialty-accordion .accordion-content {
    padding: 0 1.5rem 0;
    color: #475569;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .ndc-specialty-accordion .accordion-input:checked ~ .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
  }

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

  .specialty-list li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Trust Cards */
  .ndc-trust-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .ndc-trust-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }

  .ndc-trust-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }

  .ndc-trust-icon i {
    font-size: 1.5rem;
    color: white;
  }

  .ndc-trust-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .trust-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }

  .trust-features li {
    padding: 0.3rem 0;
    color: #555;
    font-size: 0.9rem;
  }

  /* CTA Buttons */
  .ndc-mobile-cta {
    text-align: center;
    margin-top: 2rem;
  }

  .ndc-mobile-cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    border: none;
    cursor: pointer;
  }

  .ndc-mobile-cta-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  }

  .ndc-mobile-cta-btn:active {
    transform: scale(0.98);
  }

  /* Final CTA Section */
  .ndc-mobile-final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 2rem;
  }

  .ndc-mobile-final-cta h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .ndc-mobile-final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
  }

  .ndc-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .ndc-cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
  }

  .ndc-cta-features i {
    color: var(--accent-color);
  }

  .ndc-cta-primary {
    background: var(--accent-color) !important;
    padding: 1.2rem 2.5rem !important;
    font-size: 1.1rem !important;
  }

  /* Hide desktop sections on mobile */
  .commercial-solutions-overview,
  .schedule-section,
  .techniques-section,
  .staffing-section,
  .why-choose-section,
  .cta-section {
    display: none !important;
  }
}

/* Hide mobile specialty hero on desktop */
@media (min-width: 769px) {
  .ndc-specialty-hero-mobile,
  .ndc-specialty-mobile {
    display: none !important;
  }
}

/* Mobile Construction Content Styles */
@media (max-width: 768px) {
  .ndc-construction-mobile {
    display: block;
    padding: 2rem 0;
    background: #ffffff;
  }

  .ndc-mobile-container {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
  }

  .ndc-mobile-section {
    margin-bottom: 3rem;
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .ndc-mobile-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
  }

  /* Service Cards */
  .ndc-service-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .ndc-service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
  }

  .ndc-service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .ndc-service-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .ndc-service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }

  /* Cleanup Accordion - Matching Services Page Core Services */
  .ndc-cleanup-accordion {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .ndc-accordion-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(32, 168, 147, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
  }

  .ndc-accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(32, 168, 147, 0.2);
  }

  .accordion-input {
    display: none;
  }

  .accordion-label {
    padding: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
    cursor: pointer;
    position: relative;
    padding-right: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
  }

  .accordion-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
  }

  .accordion-label::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-weight: bold;
  }

  .accordion-input:checked + .accordion-label::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
  }

  .accordion-content {
    padding: 0 1.5rem 0;
    color: #475569;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .accordion-input:checked ~ .accordion-content {
    max-height: 400px;
    padding: 0 1.5rem 1.5rem;
  }

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

  .cleanup-list li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Trust Cards */
  .ndc-trust-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .ndc-trust-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }

  .ndc-trust-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }

  .ndc-trust-icon i {
    font-size: 1.5rem;
    color: white;
  }

  .ndc-trust-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .trust-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }

  .trust-features li {
    padding: 0.3rem 0;
    color: #555;
    font-size: 0.9rem;
  }

  /* CTA Buttons */
  .ndc-mobile-cta {
    text-align: center;
    margin-top: 2rem;
  }

  .ndc-mobile-cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    border: none;
    cursor: pointer;
  }

  .ndc-mobile-cta-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  }

  .ndc-mobile-cta-btn:active {
    transform: scale(0.98);
  }

  /* Final CTA Section */
  .ndc-mobile-final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 2rem;
  }

  .ndc-mobile-final-cta h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .ndc-mobile-final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
  }

  .ndc-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .ndc-cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
  }

  .ndc-cta-features i {
    color: var(--accent-color);
  }

  .ndc-cta-primary {
    background: var(--accent-color) !important;
    padding: 1.2rem 2.5rem !important;
    font-size: 1.1rem !important;
  }

  /* Icon toggle fix */
  .accordion-icon::after {
    content: "+";
  }

  .accordion-input:checked + .accordion-label .accordion-icon::after {
    content: "−";
  }
}

/* Hide desktop sections on mobile */
@media (max-width: 768px) {
  .commercial-solutions-overview,
  .schedule-section,
  .techniques-section,
  .staffing-section,
  .why-choose-section,
  .cta-section {
    display: none !important;
  }
}

/* Show mobile content only on mobile */
@media (min-width: 769px) {
  .ndc-commercial-mobile {
    display: none;
  }
  
  .ndc-scheduling-mobile {
    display: none;
  }
}

.techniques-section {
  padding: 6rem 2rem;
  background: linear-gradient(to right, #e9ecef, #f8f9fa);
}

.techniques-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.techniques-content {
  width: 100%;
}

.techniques-content.full-width .techniques-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .techniques-content.full-width .techniques-grid {
    grid-template-columns: 1fr;
  }
}

.techniques-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-intro {
  font-size: 1.2rem;
  color: #555;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
  max-width: 800px;
  text-align: center;
}

.techniques-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .techniques-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    gap: 1rem;
    padding: 1rem;
    margin: 0 -1rem;
  }

  .technique-card {
    flex: 0 0 90%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 300px;
  }
}

.technique-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #eef0f2;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technique-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.technique-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.technique-header i {
  font-size: 1.8rem;
  color: var(--accent-color);
  background: rgba(32, 168, 147, 0.1);
  padding: 1rem;
  border-radius: 8px;
}

.technique-header h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin: 0;
}

.technique-details h4 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.technique-details p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.technique-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.technique-features li {
  color: #666;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.technique-features li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.techniques-image {
  flex: 0 0 45%;
  position: relative;
}

.techniques-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(27, 58, 75, 0.9);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.caption-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .techniques-container {
    flex-direction: column;
  }

  .techniques-image {
    flex: 0 0 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .techniques-image img {
    height: 400px;
  }
}

.staffing-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), #0a1c24);
  color: white;
}

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

.staffing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.staffing-header h2 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.staffing-intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.staffing-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.staffing-visual {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.staffing-stat {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  min-width: 200px;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.staffing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.staffing-feature {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.staffing-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-content h3 {
  color: #000000;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.feature-content p {
  color: #333333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .staffing-visual {
    flex-direction: column;
    gap: 2rem;
  }

  .staffing-stat {
    min-width: auto;
  }

  .staffing-header h2 {
    font-size: 2.2rem;
  }
}

.why-choose-section {
  padding: 5rem 2rem;
  background: white;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.why-choose-content {
  flex: 1;
}

.why-choose-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin: 1.5rem 0;
}

.why-choose-points {
  margin-top: 2rem;
}

.point {
  margin-bottom: 2rem;
}

.point h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.point h3 i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.point p {
  color: #555;
  line-height: 1.7;
  margin-left: 1.7rem;
}

.point ul {
  list-style: none;
  padding-left: 1.7rem;
  margin-top: 0.5rem;
}

.point ul li {
  color: #555;
  margin: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.point ul li:before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.why-choose-image {
  flex: 0 0 45%;
}

.why-choose-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
  .why-choose-container {
    flex-direction: column;
  }

  .why-choose-image {
    flex: 0 0 100%;
    order: -1;
  }

  .why-choose-image img {
    height: 400px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 6rem 2rem;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(32, 168, 147, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(27, 58, 75, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.faq-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.faq-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.faq-intro {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(32, 168, 147, 0.1);
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(32, 168, 147, 0.2);
}

.faq-item h3 {
  padding: 1.5rem;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 0;
  cursor: pointer;
  position: relative;
  padding-right: 2rem;

}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active h3::after {
  content: '-';}


.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #475569;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
}



.facility-types-section {
  padding: 2rem;
  text-align: center;
  background: #f8f9fa;
  margin-top: 3rem;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.facility-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.facility-item:hover {
  transform: translateY(-5px);
}

.facility-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.facility-item h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin: 0;
}

.view-more-container {
  text-align: center;
  margin: 2rem 0;
}

.view-more-button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-more-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.popup-content {
  position: relative;
  background: white;
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
  padding: 2rem;
  border-radius: 12px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.facilities-popup {
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.popup-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.popup-header h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.popup-header p {
  color: #666;
  font-size: 1.1rem;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.facility-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.facility-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-color: var(--accent-color);
}

.facility-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.facility-item:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.facility-item h3 {
  color: var(--primary-color);
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.facility-item p {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.schedule-info {
  margin-top: 2rem;
}

.schedule-option {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-color);
}

.schedule-option h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.schedule-details {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.schedule-details li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.schedule-details li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.schedule-note {
  margin-top: 2rem;
  padding: 1rem;
  background: #fff3cd;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
}

.schedule-note p {
  margin: 0;
  color: #664d03;
}

.close-popup {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 2rem;
  cursor: pointer;
}

.local-trust-signals {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: left;
  margin-top: 2rem;
}