/*
Theme Name: Neve Child
Theme URI: https://themeisle.com/themes/neve/
Description: Child theme for Neve
Author: Mighton Well Services
Author URI: https://mightonwell.com
Template: neve
Version: 1.0.1
*/
/* ==========================================================================
   MIGHTON WELL SERVICE - GLOBAL CSS DESIGN SYSTEM
   Colors: Professional Blue & Yellow with Trust-Building Accents
   ========================================================================== */

:root {
  /* Primary Brand Colors */
  --primary-blue: #1e3a8a;        /* Deep Professional Blue */
  --primary-blue-light: #3b82f6;  /* Bright Blue for CTAs */
  --primary-blue-dark: #1e40af;   /* Hover states */
  
  --accent-yellow: #fbbf24;       /* Warm Yellow accent */
  --accent-yellow-light: #fde047; /* Bright Yellow highlights */
  --accent-yellow-dark: #f59e0b;  /* Yellow borders/icons */
  
  /* Supporting Colors */
  --slate-900: #0f172a;           /* Dark text */
  --slate-700: #334155;           /* Body text */
  --slate-500: #64748b;           /* Secondary text */
  --slate-300: #cbd5e1;           /* Borders */
  --slate-100: #f1f5f9;           /* Light backgrounds */
  --slate-50: #f8fafc;            /* Off-white */
  
  --white: #ffffff;
  --black: #000000;
  
  /* Trust Colors */
  --trust-green: #10b981;         /* Success/Trust indicators */
  --trust-green-light: #d1fae5;   /* Light green backgrounds */
  
  /* Alert Colors */
  --alert-red: #ef4444;           /* Urgent service needs */
  --alert-orange: #f97316;        /* Caution/warning */
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */
  --font-size-5xl: 3rem;      /* 48px */
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Spacing System */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  
  /* Border Radius */
  --radius-sm: 0.25rem;   /* 4px */
  --radius-md: 0.375rem;  /* 6px */
  --radius-lg: 0.5rem;    /* 8px */
  --radius-xl: 0.75rem;   /* 12px */
  --radius-2xl: 1rem;     /* 16px */
  --radius-full: 9999px;  /* Fully rounded */
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-full: 1536px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--slate-700);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--slate-900);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--font-size-5xl);
  letter-spacing: -0.025em;
}

h2 {
  font-size: var(--font-size-4xl);
  letter-spacing: -0.025em;
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: var(--space-4);
  color: var(--slate-700);
}

strong, b {
  font-weight: var(--font-weight-semibold);
}

a {
  color: var(--primary-blue-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* ==========================================================================
   LAYOUT COMPONENTS
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.container-full {
  max-width: var(--container-full);
}

.section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.section-lg {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--accent-yellow);
  color: var(--slate-900);
  border-color: var(--accent-yellow);
}

.btn-secondary:hover {
  background-color: var(--accent-yellow-dark);
  border-color: var(--accent-yellow-dark);
  color: var(--slate-900);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-300);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-body {
  padding: var(--space-6);
}

.card-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--slate-300);
  background-color: var(--slate-50);
}

.card-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--slate-300);
  background-color: var(--slate-50);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}
.hero-image {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: block;
  margin: 0 auto 2rem;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.05)"></path></svg>');
  background-size: cover;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-8);
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.service-card {
  text-align: center;
  padding: var(--space-8);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.service-card h3 {
  color: var(--slate-900);
  margin-bottom: var(--space-3);
}

/* ==========================================================================
   TRUST INDICATORS
   ========================================================================== */

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background-color: var(--trust-green-light);
  color: var(--trust-green);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

.trust-badge::before {
  content: '\2713';
  font-family: 'Segoe UI', Arial, sans-serif/* This is the code for the checkmark */
  font-weight: var(--font-weight-bold);
  margin-right: 4px;
}

/* ==========================================================================
   LOCATION EMPHASIS
   ========================================================================== */

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background-color: var(--accent-yellow-light);
  color: var(--slate-900);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
  color: var(--slate-900);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--slate-700);
  background-color: var(--white);
  border: 2px solid var(--slate-300);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-blue-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-blue); }
.text-secondary { color: var(--accent-yellow-dark); }
.text-white { color: var(--white); }

.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--slate-50); }
.bg-primary { background-color: var(--primary-blue); }
.bg-secondary { background-color: var(--accent-yellow-light); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: var(--space-4); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.25rem;  /* 36px */
    --font-size-4xl: 1.875rem; /* 30px */
    --font-size-3xl: 1.5rem;   /* 24px */
  }
  
  .section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
  
  .hero {
    padding: var(--space-12) 0;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact Form 7 Styling */
.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-wrapper label {
  display: block;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
  color: var(--slate-900);
  font-size: var(--font-size-base);
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  width: 100%;
  margin-bottom: var(--space-6);
}

.contact-form-wrapper .wpcf7-submit {
  width: 100%;
  margin-top: var(--space-4);
}

.contact-form-wrapper .wpcf7-not-valid-tip {
  color: var(--alert-red);
  font-size: var(--font-size-sm);
  margin-top: var(--space-1);
  display: block;
}

.wpcf7-response-output {
  margin: var(--space-6) 0 !important;
  padding: var(--space-4) !important;
  border-radius: var(--radius-lg) !important;
  border: 2px solid !important;
  text-align: center;
  font-weight: var(--font-weight-medium);
}

.wpcf7-mail-sent-ok {
  background-color: var(--trust-green-light) !important;
  color: var(--trust-green) !important;
  border-color: var(--trust-green) !important;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background-color: #fee2e2 !important;
  color: var(--alert-red) !important;
  border-color: var(--alert-red) !important;
}

.wpcf7-spinner {
  margin-left: var(--space-2);
}

/* Disable Contact Form 7 default styles */
.wpcf7 form .wpcf7-response-output {
  margin: var(--space-6) 0 !important;
}

/* --- HEADER CTA GROUP --- */
.site-header .header-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.site-header .header-quote-btn {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.site-header .header-quote-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
}

.site-header .header-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background-color: var(--primary-blue);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.site-header .header-phone-btn:hover {
    background-color: var(--primary-blue-dark);
    text-decoration: none;
}

.site-header .phone-icon {
    font-size: 1rem;
}

/* --- MOBILE MENU BUTTON --- */
.site-header .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    z-index: 101;
}

.site-header .hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.site-header .hamburger-lines span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* --- MOBILE NAVIGATION DRAWER --- */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 1001;
    transition: right var(--transition-base);
    overflow-y: auto;
}

.mobile-nav.is-open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--slate-200);
    background-color: var(--slate-50);
}

.mobile-nav-title {
    font-weight: var(--font-weight-semibold);
    color: var(--slate-900);
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--slate-500);
    padding: var(--space-1);
    line-height: 1;
}

.mobile-close-btn:hover {
    color: var(--slate-900);
}

.mobile-nav .mobile-menu-list {
    list-style: none;
    padding: var(--space-4) var(--space-6);
    margin: 0;
}

.mobile-nav .mobile-menu-list > li {
    border-bottom: 1px solid var(--slate-100);
}

.mobile-nav .mobile-menu-list > li > a {
    display: block;
    padding: var(--space-4) 0;
    color: var(--slate-700);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-lg);
}

.mobile-nav .mobile-menu-list > li > a:hover {
    color: var(--primary-blue);
}

/* Mobile Submenu */
.mobile-nav .mobile-menu-list .sub-menu {
    list-style: none;
    padding: 0 0 var(--space-3) var(--space-4);
    margin: 0;
    border-left: 2px solid var(--slate-200);
    margin-left: var(--space-2);
}

.mobile-nav .mobile-menu-list .sub-menu li {
    border: none;
}

.mobile-nav .mobile-menu-list .sub-menu li a {
    display: block;
    padding: var(--space-2) var(--space-3);
    color: var(--slate-600);
    font-size: var(--font-size-base);
    text-decoration: none;
}

.mobile-nav .mobile-menu-list .sub-menu li a:hover {
    color: var(--primary-blue);
}

.mobile-nav .mobile-cta {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    border-top: 1px solid var(--slate-200);
}

.mobile-nav .mobile-trust {
    padding: 0 var(--space-6) var(--space-6);
    text-align: center;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-overlay.is-active {
    display: block;
    opacity: 1;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .site-header .header-quote-btn {
        display: none;
    }
    
    .top-bar-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-3);
    }
    
    .top-bar-left {
        gap: var(--space-4);
    }
}

@media (max-width: 900px) {
    .top-bar-hours {
        display: none;
    }
    
    .site-header .desktop-nav {
        display: none !important;
    }
    
    .site-header .header-cta-group {
        display: none !important;
    }
    
    .site-header .mobile-menu-btn {
        display: block !important;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .site-header .header-container {
        gap: var(--space-4);
    }
}

@media (max-width: 600px) {
    .top-bar {
        padding: var(--space-2);
    }
    
    .top-bar-inner {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: var(--space-1);
    }
    
    .top-bar-item {
        font-size: var(--font-size-xs);
    }
    
    .trust-pill {
        font-size: 0.65rem;
    }
}

/* --- ANIMATIONS --- */
@keyframes dropdownFade {
    from { 
        opacity: 0; 
        transform: translateY(-8px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* --- BUTTON UTILITIES --- */
.btn-full {
    width: 100%;
    text-align: center;
}
/* ==========================================================================
   MIGHTON WELL SERVICES - SERVICE PAGE STYLES
   Additional styles for page-services.php template
   Add this to the bottom of your style.css or enqueue as separate file
   ========================================================================== */

/* Service Hero Section */
.service-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  padding: var(--space-12) 0 var(--space-16);
  position: relative;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.05)"></path></svg>');
  background-size: cover;
  opacity: 0.1;
}

/* Breadcrumbs */
.breadcrumbs {
  position: relative;
  z-index: 1;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-6);
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--white);
  text-decoration: underline;
}

.breadcrumbs .separator {
  margin: 0 var(--space-2);
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs .current {
  color: var(--white);
  font-weight: var(--font-weight-medium);
}

/* Service Hero Content */
.service-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.service-hero h1 {
  color: var(--white);
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-4);
  line-height: var(--line-height-tight);
}

.service-tagline {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
  line-height: var(--line-height-relaxed);
}

.service-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.service-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.service-hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Service Overview Layout */
.service-overview {
  background-color: var(--white);
}

.service-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.service-description {
  max-width: 100%;
}

.service-description h2 {
  color: var(--primary-blue);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.service-description h3 {
  color: var(--slate-900);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.service-description ul,
.service-description ol {
  margin-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.service-description li {
  margin-bottom: var(--space-2);
  color: var(--slate-700);
}

/* Service Sidebar */
.service-sidebar {
  position: relative;
}

.service-info-card h3 {
  font-size: var(--font-size-lg);
  color: var(--primary-blue);
  margin-bottom: var(--space-3);
}

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

.service-locations li {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--slate-300);
  color: var(--slate-700);
}

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

.service-locations li::before {
  content: '✓';
  color: var(--trust-green);
  font-weight: var(--font-weight-bold);
  margin-right: var(--space-2);
}

.contact-quick p {
  margin-bottom: var(--space-4);
  line-height: var(--line-height-relaxed);
}

.contact-quick strong {
  color: var(--slate-900);
  display: block;
  margin-bottom: var(--space-1);
}

/* Service Benefits Grid */
.service-benefits .service-grid {
  margin-top: var(--space-8);
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
  background-color: var(--white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--slate-300);
  transition: all var(--transition-base);
}

.process-step:hover {
  border-color: var(--primary-blue-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
}

.step-content h3 {
  color: var(--primary-blue);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-xl);
}

.step-content p {
  color: var(--slate-700);
  margin-bottom: 0;
}

/* FAQ Section */
.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  cursor: pointer;
  transition: all var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  color: var(--primary-blue);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.faq-question::before {
  content: 'Q:';
  font-weight: var(--font-weight-bold);
  color: var(--accent-yellow-dark);
  flex-shrink: 0;
}

.faq-answer {
  color: var(--slate-700);
}

/* Related Services */
.related-services .service-grid {
  margin-top: var(--space-8);
}

.related-services .service-card h3 {
  font-size: var(--font-size-xl);
  color: var(--primary-blue);
  margin-bottom: var(--space-3);
}

.related-services .btn {
  margin-top: var(--space-4);
}

/* Service CTA Section */
.service-cta {
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.05)"></path></svg>');
  background-size: cover;
  opacity: 0.1;
  transform: rotate(180deg);
}

.service-cta .container {
  position: relative;
  z-index: 1;
}

.cta-buttons {
  margin-top: var(--space-6);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

/* Tablet and Up */
@media (min-width: 768px) {
  .service-hero-content {
    grid-template-columns: 1.5fr 1fr;
  }
  
  .service-content {
    grid-template-columns: 2fr 1fr;
  }
  
  .service-sidebar .card {
    position: sticky;
    top: var(--space-8);
  }
  
  .process-steps {
    gap: var(--space-8);
  }
  
  .faq-container {
    gap: var(--space-6);
  }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
  .service-hero {
    padding: var(--space-8) 0 var(--space-12);
  }
  
  .service-hero h1 {
    font-size: var(--font-size-3xl);
  }
  
  .service-tagline {
    font-size: var(--font-size-lg);
  }
  
  .service-hero-cta {
    flex-direction: column;
  }
  
  .service-hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .breadcrumbs {
    font-size: var(--font-size-xs);
  }
  
  .service-trust-badges {
    flex-direction: column;
  }
  
  .trust-badge {
    display: inline-flex;
    width: fit-content;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto var(--space-3);
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .service-hero h1 {
    font-size: 3.5rem;
  }
  
  .service-content {
    grid-template-columns: 2.5fr 1fr;
  }
}

/* Print Styles */
@media print {
  .service-hero,
  .service-cta,
  .breadcrumbs,
  .btn {
    display: none;
  }
  
  .service-content {
    grid-template-columns: 1fr;
  }
}