.services-list-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.services-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.service-item-content {
    padding: 40px;
}

.service-icon {
    color: #C49B3D;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-item-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-item-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #666;
}

.service-item-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C49B3D;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 12px 0;
}

.service-item-link:hover {
    color: #1a1a1a;
    gap: 12px;
}

.service-arrow {
    transition: transform 0.3s ease;
}

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

/* Enhanced contact section for services page */
.emergency-card {
    background: linear-gradient(135deg, #C49B3D 0%, #d4a651 100%);
    color: white;
}

.emergency-card .card-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emergency-card .card-value {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 8px 0;
}

.emergency-card .card-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.service-areas-info {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}

.service-areas-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-areas-info p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Form enhancements */
.contact-form select {
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    padding: 14px 48px 14px 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-form select:focus {
    border-color: #C49B3D;
    outline: none;
    box-shadow: 0 0 0 3px rgba(196, 155, 61, 0.1);
}

/* Individual Service Page Styles */
.service-page {
    padding-top: 74px;
}

.service-hero {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.9)), 
                url('https://res.cloudinary.com/dfpg7wqyu/image/upload/v1757621102/Untitled_design_3_ovi1lo.jpg') center/cover;
    color: white;
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    margin: 0 auto;
    padding: 0 20px;
}

.hero-call-button {
    font-size: 16px;
    font-weight: 700;
    color: white;
    letter-spacing: 1.8px;
    opacity: 1;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-call-button:hover {
    color: #E3B55C;
}
 
.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #C49B3D;
}

.breadcrumb span {
    color: white;
}

.service-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.emergency-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}



.emergency-phone {
    background: #C49B3D;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(196, 155, 61, 0.3);
}

.emergency-phone:hover {
    background: #b8883a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 155, 61, 0.4);
}

.service-content {
    padding: 80px 0;
    background: white;
}

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

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.main-content {
    background: white;
}

.service-overview h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.overview-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px;
}

.service-process h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.process-steps li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #C49B3D;
}

.step-number {
    background: #C49B3D;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.step-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.sidebar {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.info-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 8px;
}

.card-value {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 12px;
    color: #666;
}

/* Mobile responsive */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 80px;
    }
    
    .service-title {
        font-size: 32px;
    }
    
    .service-subtitle {
        font-size: 16px;
    }
    
    .emergency-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .emergency-phone {
        padding: 12px 24px;
        font-size: 18px;
        white-space: nowrap;
    }
    
    .service-content {
        padding: 60px 0;
    }
    
    .service-overview h2 {
        font-size: 24px;
    }
    
    .sidebar {
        padding: 24px;
    }
}

/* Services Page Specific Styles */


.services-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 140px 0;
    position: relative;
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

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

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #C49B3D;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Grid Section */
.services-grid-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #f9f9f9 0%, #f5f7fa 100%);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #C49B3D;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-icon {
    color: #C49B3D;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 60px;
    height: 60px;
    background: rgba(227, 181, 92, 0.1);
    border-radius: 12px;
    padding: 12px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
    line-height: 1.3;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.service-features li {
    font-size: 14px;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    color: #C49B3D;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C49B3D;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 8px;
}

.service-link:hover {
    color: #1a1a1a;
    gap: 12px;
}

/* Call to Action Section */
.services-cta {
    background: #1A1A1A;
    color: white;
    padding: 80px 0;
}

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

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.cta-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-button.primary {
    background: white;
    color: #000000;
}

.cta-button.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #C49B3D;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.feature-text p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 24px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .services-grid-section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-button {
        justify-content: center;
        white-space: nowrap;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Responsive improvements */
@media (max-width: 768px) {
    .services-list-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .service-item-content {
        padding: 24px;
    }
    
    .service-item-title {
        font-size: 20px;
    }
    
    .service-item-description {
        font-size: 14px;
    }
    
    .emergency-card .card-value {
        font-size: 24px;
    }
}

/* ===== Services Hero Fix (scoped) ===== */
.services-hero {
    position: relative;
    color: #fff;
    padding: 140px 0 112px;
    background: url('https://res.cloudinary.com/dfpg7wqyu/image/upload/v1757621102/Untitled_design_3_ovi1lo.jpg') center/cover no-repeat;
    overflow: hidden;
  }
  
  /* overlay for readability */
  .services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #1A1A1A
  }
  
  /* content container */
  .services-hero .hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* breadcrumb */
  .services-breadcrumb {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.95;
  }
  .services-breadcrumb a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color .2s ease;
  }
  .services-breadcrumb a:hover { color: #E3B55C; }
  .services-breadcrumb .sep { color: rgba(255,255,255,0.5); }
  
  /* type scale */
  .services-title {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    margin: 6px 0 18px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  .services-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    max-width: 680px;
    opacity: 0.95;
    margin: 0 0 32px;
    font-weight: 400;
  }
  
  /* CTA */
  .hero-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .hero-cta-text {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
  }
  .hero-cta-phone {
    background: #E3B55C;
    color: #111;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 24px rgba(227,181,92,0.28);
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  }
  .hero-cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227,181,92,0.35);
    opacity: 0.98;
  }
  
  /* stats row */
  .hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 18px;
  }
  .hero-stats .stat-item { text-align: left; min-width: 120px; }
  .hero-stats .stat-number {
    display: block;
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 800;
    color: #E3B55C;
    margin-bottom: 6px;
  }
  .hero-stats .stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(255,255,255,0.8);
  }
  
  /* spacing alignment with the rest of page */
  .services-grid-section { margin-top: 0; }
  
  /* mobile polish */
  @media (max-width: 768px) {
    .services-hero { padding: 120px 0 84px; }
    .hero-cta { align-items: flex-start; gap: 10px; }
    .hero-cta-phone { 
      width: auto;
      white-space: nowrap;
      padding: 12px 20px;
      font-size: 16px;
    }
    .hero-stats { gap: 20px; }
  }

  