
/* ====================================
   GLOBAL RESET & BASE STYLES
   ==================================== */

/* Box sizing reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Root variables for easy theming */
:root {
  /* Colors */
  --df-primary: #0978de;
  --df-primary-hover: #0864bb;
  --df-primary-light: #e6f2fc;
  
  --df-slate-50: #f8fafc;
  --df-slate-100: #f1f5f9;
  --df-slate-200: #e2e8f0;
  --df-slate-300: #cbd5e1;
  --df-slate-400: #94a3b8;
  --df-slate-500: #64748b;
  --df-slate-600: #475569;
  --df-slate-700: #334155;
  --df-slate-800: #1e293b;
  --df-slate-900: #0f172a;
  
  --df-white: #ffffff;
  --df-emerald-50: #ecfdf5;
  --df-emerald-600: #0978de;
  --df-emerald-700: #0978de;
  
  /* Typography */
  --df-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  
  --df-font-size-xs: 0.75rem;      /* 12px */
  --df-font-size-sm: 0.875rem;     /* 14px */
  --df-font-size-base: 1rem;       /* 16px */
  --df-font-size-lg: 1.125rem;     /* 18px */
  --df-font-size-xl: 1.25rem;      /* 20px */
  --df-font-size-2xl: 1.5rem;      /* 24px */
  --df-font-size-3xl: 1.875rem;    /* 30px */
  --df-font-size-4xl: 2.25rem;     /* 36px */
  --df-font-size-5xl: 3rem;        /* 48px */
  
  --df-font-weight-normal: 400;
  --df-font-weight-medium: 500;
  --df-font-weight-semibold: 600;
  --df-font-weight-bold: 700;
  --df-font-weight-extrabold: 800;
  --df-font-weight-black: 900;
  
  /* Spacing */
  --df-spacing-xs: 0.5rem;
  --df-spacing-sm: 0.75rem;
  --df-spacing-md: 1rem;
  --df-spacing-lg: 1.5rem;
  --df-spacing-xl: 2rem;
  --df-spacing-2xl: 2.5rem;
  --df-spacing-3xl: 3rem;
  
  /* Border radius */
  --df-radius-sm: 0.5rem;
  --df-radius-md: 0.75rem;
  --df-radius-lg: 1rem;
  --df-radius-xl: 1.5rem;
  
  /* Shadows */
  --df-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --df-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --df-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --df-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --df-transition: all 0.2s ease-in-out;
}

/* Body styles */
body {
  font-family: var(--df-font-family);
  font-size: var(--df-font-size-base);
  font-weight: var(--df-font-weight-normal);
  line-height: 1.5;
  color: var(--df-slate-900);
  background-color: var(--df-slate-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Typography defaults */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--df-font-weight-extrabold);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--df-slate-900);
  margin: 0;
}

h1 {
  font-size: var(--df-font-size-4xl);
  font-weight: var(--df-font-weight-black);
}

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

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

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

h5 {
  font-size: var(--df-font-size-lg);
}

h6 {
  font-size: var(--df-font-size-base);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--df-font-size-5xl);
  }
  
  h2 {
    font-size: var(--df-font-size-4xl);
  }
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

p:last-child {
  margin-bottom: 0;
}

/* Links */
a {
  color: var(--df-primary);
  text-decoration: none;
  transition: var(--df-transition);
}

a:hover {
  color: var(--df-primary-hover);
}

/* Lists */
ul, ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons reset */
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* Form elements */
input, 
select, 
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Selection color */
::selection {
  background-color: var(--df-primary-light);
  color: var(--df-slate-900);
}

::-moz-selection {
  background-color: var(--df-primary-light);
  color: var(--df-slate-900);
}

/* Scrollbar styling (webkit browsers) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--df-slate-100);
}

::-webkit-scrollbar-thumb {
  background: var(--df-slate-300);
  border-radius: var(--df-radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--df-slate-400);
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--df-primary);
  outline-offset: 2px;
}

/* Remove default focus outline (but keep for keyboard navigation) */
:focus:not(:focus-visible) {
  outline: none;
}

/* Utility class for screen readers only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Print styles */
@media print {
  body {
    background: white;
    color: black;
  }
  
  .df-header,
  .df-hero-form,
  .df-mobile-sticky,
  footer {
    display: none;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --df-slate-600: #1e293b;
    --df-slate-500: #334155;
  }
}
/* ====================================
   END OF GLOBAL STYLES
   ==================================== */
/* HEADER STYLES */
.df-header {
  position: sticky;
  top: 0;
  z-index: 999999;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}

.df-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 3rem;
}

.df-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

.df-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.df-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #0f172a;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.df-logo-icon span {
  font-weight: 900;
  font-size: 1.125rem;
}

.df-brand-name {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.df-brand-tagline {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: -2px;
}

.df-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .df-nav {
    display: flex;
  }
}

.df-nav-link {
  font-size: 0.875rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.df-nav-link:hover {
  color: #0f172a;
}

.df-header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.df-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.df-btn-primary {
  background: #0978de;
  color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.df-btn-primary:hover {
  background: #ffffff;
  color: #0978de;
}

.df-btn-secondary {
  background: white;
  color: #1e293b;
  border: 1px solid #e2e8f0;
}

.df-btn-secondary:hover {
  background: #0978de;
  color: white;
}

.df-btn-quote {
  display: none;
}

.df-nav-dropdown {
    position: relative;
}

.df-nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.df-dropdown-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.df-nav-dropdown:hover .df-dropdown-icon {
    transform: rotate(180deg);
}

.df-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    min-width: 220px;
    background: var(--df-white);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-lg);
    box-shadow: var(--df-shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.df-nav-dropdown:hover .df-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.df-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--df-radius-md);
    color: var(--df-slate-700);
    font-size: var(--df-font-size-sm);
    font-weight: var(--df-font-weight-medium);
    text-decoration: none;
    transition: all 0.2s ease;
}

.df-dropdown-item:hover {
    background: var(--df-slate-50);
    color: var(--df-slate-900);
}

.df-dropdown-item-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--df-emerald-600);
    flex-shrink: 0;
}

/* =================================================================
   MOBILE SUBMENU
   ================================================================= */

.df-mobile-nav-group {
    /* Container for mobile submenu */
}

.df-mobile-nav-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-size: var(--df-font-size-base);
    font-weight: var(--df-font-weight-medium);
    color: var(--df-slate-200);
    transition: var(--df-transition);
}

.df-mobile-nav-toggle:hover {
    color: var(--df-white);
    background: rgba(255, 255, 255, 0.05);
}

.df-mobile-nav-toggle.active {
    color: var(--df-white);
}

.df-mobile-submenu-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.df-mobile-nav-toggle.active .df-mobile-submenu-icon {
    transform: rotate(180deg);
}

.df-mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1rem;
}

.df-mobile-submenu.active {
    max-height: 500px;
    padding: 0.5rem 1rem 1rem 1rem;
}

.df-mobile-submenu-link {
    display: block;
    padding: 0.625rem 1rem;
    padding-left: 2rem;
    color: var(--df-slate-500);
    font-size: var(--df-font-size-sm);
    text-decoration: none;
    border-radius: var(--df-radius-md);
    transition: var(--df-transition);
    position: relative;
}

.df-mobile-submenu-link::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--df-emerald-600);
}

.df-mobile-submenu-link:hover {
    color: var(--df-white);
    background: rgba(255, 255, 255, 0.05);
}

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

@media (max-width: 767px) {
    /* Hide desktop dropdown on mobile */
    .df-nav-dropdown {
        display: none;
    }
}

@media (min-width: 768px) {
    /* Hide mobile submenu on desktop */
    .df-mobile-nav-group {
        display: none;
    }
}

/* =================================================================
   ACCESSIBILITY
   ================================================================= */

/* Focus states for keyboard navigation */
.df-dropdown-item:focus,
.df-nav-link-dropdown:focus,
.df-mobile-nav-toggle:focus,
.df-mobile-submenu-link:focus {
    outline: 2px solid var(--df-emerald-600);
    outline-offset: 2px;
}

/* Ensure dropdown stays open when focused within */
.df-nav-dropdown:focus-within .df-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =================================================================
   ANIMATION ENHANCEMENTS (OPTIONAL)
   ================================================================= */

/* Stagger animation for dropdown items */
.df-dropdown-item {
    animation: slideIn 0.2s ease forwards;
    opacity: 0;
}

.df-nav-dropdown:hover .df-dropdown-item:nth-child(1) {
    animation-delay: 0.05s;
}

.df-nav-dropdown:hover .df-dropdown-item:nth-child(2) {
    animation-delay: 0.1s;
}

.df-nav-dropdown:hover .df-dropdown-item:nth-child(3) {
    animation-delay: 0.15s;
}

.df-nav-dropdown:hover .df-dropdown-item:nth-child(4) {
    animation-delay: 0.2s;
}

.df-nav-dropdown:hover .df-dropdown-item:nth-child(5) {
    animation-delay: 0.25s;
}

.df-nav-dropdown:hover .df-dropdown-item:nth-child(6) {
    animation-delay: 0.3s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Disable animation on mobile for better performance */
@media (max-width: 767px) {
    .df-dropdown-item {
        animation: none;
        opacity: 1;
    }
}

@media (min-width: 640px) {
  .df-btn-quote {
    display: inline-flex;
  }
}

.df-icon {
  width: 1rem;
  height: 1rem;
}

/* Mobile Menu Toggle */
.df-mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .df-mobile-menu-toggle {
    display: none;
  }
}

.df-mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: #0f172a;
  transition: all 0.3s;
}

.df-mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.df-mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.df-mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.df-mobile-menu {
  display: none;
  background-color: white;
  border-top: 1px solid #e2e8f0;
  padding: 16px 0;
}

.df-mobile-menu.active {
  display: block;
}

@media (min-width: 768px) {
  .df-mobile-menu {
    display: none !important;
  }
}

.df-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.df-mobile-nav-link {
  padding: 12px 16px;
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.df-mobile-nav-link:hover {
  background-color: #f8fafc;
  color: #0f172a;
}

/* Modal Styles */
.df-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  background-color: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}

.df-modal-overlay.active {
  display: flex;
}

.df-modal {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  max-width: 672px;
  width: 100%;
  margin: auto;
}

.df-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #e2e8f0;
}

.df-modal-title {
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
}

.df-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.df-modal-close:hover {
  color: #334155;
}

.df-modal-body {
  padding: 20px 24px;
}

.df-step-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 12px;
}

.df-step {
  padding: 6px 12px;
  border-radius: 6px;
  background-color: #f1f5f9;
  color: #64748b;
}

.df-step.active {
  background-color: #dbeafe;
  color: #000000;
}

.df-step-content {
  display: block;
}

.df-step-content.df-hidden {
  display: none;
}

.df-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .df-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.df-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.df-form-group-full {
  grid-column: 1 / -1;
}

.df-label {
  font-size: 12px;
  color: #475569;
  font-weight: 500;
}

.df-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.2s;
}

.df-input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.df-textarea {
  resize: vertical;
  font-family: inherit;
}

.df-consent-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.df-checkbox {
  margin-top: 4px;
  flex-shrink: 0;
}

.df-consent-label {
  font-size: 11px;
  color: #475569;
  line-height: 1.5;
}

.df-link {
  text-decoration: underline;
  color: #475569;
}

.df-link:hover {
  color: #0f172a;
}

.df-recaptcha-note {
  font-size: 11px;
  color: #64748b;
  grid-column: 1 / -1;
}

.df-form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
}

.df-btn-full {
  grid-column: 1 / -1;
}

/* Mobile Sticky CTA */
.df-mobile-sticky {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 40;
}

@media (min-width: 768px) {
  .df-mobile-sticky {
    display: none;
  }
}

.df-btn-floating {
  border-radius: 9999px;
  padding: 12px 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ====================================
   FOOTER STYLES
   ==================================== */

.df-footer {
  background-color: var(--df-slate-900);
  color: var(--df-slate-200);
}

.df-footer-grid {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .df-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .df-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Brand Column */
.df-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.df-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.df-footer-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background-color: var(--df-white);
  color: var(--df-slate-900);
  display: grid;
  place-items: center;
}

.df-footer-logo-icon span {
  font-weight: var(--df-font-weight-black);
  font-size: var(--df-font-size-lg);
}

.df-footer-logo-text {
  font-weight: var(--df-font-weight-extrabold);
  font-size: var(--df-font-size-xl);
  color: var(--df-white);
}

.df-footer-tagline {
  font-size: var(--df-font-size-sm);
  color: var(--df-slate-400);
  line-height: 1.5;
}

.df-footer-cta {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.df-btn-footer-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--df-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.df-btn-footer-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Footer Columns */
.df-footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.df-footer-heading {
  font-size: var(--df-font-size-base);
  font-weight: var(--df-font-weight-semibold);
  color: var(--df-white);
  margin-bottom: 0.5rem;
}

.df-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.df-footer-links li {
  font-size: var(--df-font-size-sm);
  color: var(--df-slate-300);
  line-height: 1.5;
}

.df-footer-links a {
  color: var(--df-slate-300);
  text-decoration: none;
  transition: color 0.2s;
}

.df-footer-links a:hover {
  color: var(--df-white);
}

/* Footer Bottom */
.df-footer-bottom {
  border-top: 1px solid var(--df-slate-800);
  padding: 1rem 0;
  text-align: center;
}

.df-copyright {
  font-size: var(--df-font-size-xs);
  color: var(--df-slate-500);
  margin: 0;
}

/* ====================================
   MOBILE STICKY CTA
   ==================================== */

.df-mobile-sticky {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Hide on desktop */
@media (min-width: 768px) {
  .df-mobile-sticky {
    display: none;
  }
}

.df-mobile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-size: var(--df-font-size-sm);
  font-weight: var(--df-font-weight-semibold);
  text-decoration: none;
  box-shadow: var(--df-shadow-lg);
  transition: var(--df-transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.df-mobile-btn-call {
  background-color: var(--df-primary);
  color: var(--df-white);
}

.df-mobile-btn-call:hover {
  background-color: var(--df-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--df-shadow-xl);
}

.df-mobile-btn-quote {
  background-color: var(--df-white);
  color: var(--df-slate-800);
  border: 1px solid var(--df-slate-200);
}

.df-mobile-btn-quote:hover {
  background-color: var(--df-slate-50);
  transform: translateY(-2px);
  box-shadow: var(--df-shadow-xl);
}

/* Animation for mobile sticky buttons */
@keyframes df-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.df-mobile-sticky {
  animation: df-slide-up 0.3s ease-out;
}

/* Ensure mobile sticky doesn't overlap with footer on scroll */
body {
  padding-bottom: 0;
}


/* ====================================
   FOOTER RESPONSIVE ADJUSTMENTS
   ==================================== */

/* Mobile */
@media (max-width: 640px) {
  .df-footer-cta {
    flex-direction: column;
  }
  
  .df-footer-cta .df-btn {
    width: 100%;
    justify-content: center;
  }
  
  .df-footer-grid {
    gap: 2.5rem;
  }
}

/* Tablet */
@media (min-width: 641px) and (max-width: 1023px) {
  .df-footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--df-slate-800);
  }
}

/* ====================================
   ACCESSIBILITY ENHANCEMENTS
   ==================================== */

/* Skip to content link for keyboard navigation */
.df-skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--df-primary);
  color: white;
  padding: 0.75rem 1rem;
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0 var(--df-radius-md) 0;
}

.df-skip-link:focus {
  top: 0;
}

/* Focus indicators for footer links */
.df-footer-links a:focus-visible {
  outline: 2px solid var(--df-white);
  outline-offset: 2px;
  border-radius: var(--df-radius-sm);
}

/* ====================================
   PRINT STYLES FOR FOOTER
   ==================================== */

@media print {
  .df-footer {
    background: white;
    color: black;
    border-top: 2px solid black;
  }
  
  .df-footer-cta,
  .df-mobile-sticky {
    display: none;
  }
  
  .df-footer-links a {
    color: black;
    text-decoration: underline;
  }
}


/* HERO SECTION STYLES */
.df-hero {
  position: relative;
  overflow: hidden;
}

.df-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/wp-content/uploads/2026/02/hero-baner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.df-hero-inner {
  position: relative;
  padding: 2rem 0;
  display: grid;
  gap: 2rem;
}



/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: white;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
}

.status-indicator {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: var(--df-emerald-700);
}



/* Steps Section */
.steps-section {
  margin-top: 1.25rem;
}

.steps-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.steps-list {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.75rem;
}

.step-item {
  display: flex;
  gap: 0.75rem;
}

.step-number {
  height: 1.75rem;
  width: 1.75rem;
  flex-shrink: 0;
  border-radius: 1rem;
  background: #0f172a;
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.step-desc {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.75;
}

.df-hero-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.df-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
     padding-bottom: 32px;
}
.disclaimer-text {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .df-hero-title {
    font-size: 2.2rem;
  }
}

.df-hero-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin: 1rem 0 1rem 0;
}

.df-hero-cta {
  display: grid;
  gap: 0.75rem;
  margin-bottom: .5rem;
}

@media (min-width: 640px) {
  .df-hero-inner {
    grid-template-columns: .9fr 1.1fr;
  }
  .df-hero-cta {
    grid-template-columns: repeat(2, 1fr);
  }
}

.df-btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  justify-content: center;
}

.df-btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  justify-content: center;
}

.df-icon-lg {
  width: 1.25rem;
  height: 1.25rem;
}

.df-hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #475569;
}

/* Pills Container */
.pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.pill:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .df-hero-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

.df-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Features List */
.features-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.feature-bullet {
  display: flex;
  gap: 0.75rem;
}

.feature-icon {
  margin-top: 0.25rem;
  height: 14px;
  width:  14px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--df-emerald-700);
  border: 1px solid var(--df-emerald-700);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-weight: 600;
  font-size: 14px;
}

.feature-desc {
  font-size: 0.875rem;
  color: #475569;
}

.df-badge .df-icon {
  color: #059669;
}

/* Hero Form */
.df-hero-form-wrapper {
  position: relative;
}

.df-hero-form {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.df-form-header {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.75rem;
}

.df-form-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .df-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.df-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.df-input:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.df-input-full {
  grid-column: 1 / -1;
}

.df-form-cta {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .df-form-cta {
    grid-template-columns: repeat(2, 1fr);
  }
}

.df-form-disclaimer {
  font-size: 0.6875rem;
  color: #64748b;
  line-height: 1.4;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ====================================
   HOW IT WORKS SECTION
   ==================================== */

.df-how-it-works {
  padding: 2.5rem 0;
  background-color: #f1f5f9;
}

/* Section Title */
.df-how-title {
  font-size: var(--df-font-size-3xl);
  font-weight: var(--df-font-weight-extrabold);
  color: var(--df-slate-900);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.df-how-subtitle {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .df-how-title {
    font-size: var(--df-font-size-4xl);
    margin-bottom: 1rem;
  }
}


/* Steps Grid */
.df-steps-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .df-steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.df-step-left
 {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

/* Step Card */
.df-step-card {
  background-color: var(--df-white);
  border: 1px solid #bae6fd;
  border-radius: var(--df-radius-xl);
  padding: 1rem 2rem;
  transition: var(--df-transition);
  position: relative;
}

.df-step-card:hover {
  box-shadow: var(--df-shadow-md);
  transform: translateY(-4px);
  border-color: var(--df-emerald-600);
}

/* Step Number Badge */
.df-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--df-emerald-600);
  color: var(--df-white);
  display: grid;
  place-items: center;
  font-size: var(--df-font-size-lg);
  font-weight: var(--df-font-weight-bold);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(5, 150, 105, 0.2);
}

/* Step Title */
.df-step-title {
  font-size: var(--df-font-size-xl);
  font-weight: var(--df-font-weight-bold);
  color: var(--df-slate-900);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

/* Step Description */
.df-step-description {
  font-size: var(--df-font-size-sm);
  color: var(--df-slate-600);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .df-step-card {
    padding: 1.75rem;
  }

  .df-step-number {
    width: 36px;
    height: 36px;
    font-size: var(--df-font-size-base);
    margin-bottom: 1.25rem;
  }

  .df-step-title {
    font-size: var(--df-font-size-lg);
  }
}

/* Animation on Scroll (Optional) */
@keyframes df-slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.df-step-card {
  animation: df-slide-up 0.6s ease-out backwards;
}

.df-step-card:nth-child(1) {
  animation-delay: 0.1s;
}

.df-step-card:nth-child(2) {
  animation-delay: 0.2s;
}

.df-step-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Disable animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .df-step-card {
    animation: none;
  }
}

/* Add connector lines between steps (desktop only) */
@media (min-width: 768px) {
  .df-steps-grid {
    position: relative;
  }


  .df-step-card:last-child::after {
    display: none;
  }
}

/* Alternative style with subtle background gradient */
.df-step-card {
  background: linear-gradient(135deg, var(--df-white) 0%, var(--df-slate-50) 100%);
}

.df-step-card:hover {
  background: var(--df-white);
}

/* Print styles */
@media print {
  .df-how-it-works {
    page-break-inside: avoid;
  }

  .df-step-card {
    break-inside: avoid;
  }

  .df-step-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ====================================
   POPULAR SERVICES SECTION
   ==================================== */

.df-services {
  padding: 3.5rem 0;
  background-color: var(--df-white);
  border-top: 1px solid var(--df-slate-200);
  border-bottom: 1px solid var(--df-slate-200);
}

@media (min-width: 768px) {
  .df-services {
    padding: 4.5rem 0;
  }
}

/* Section Title */
.df-services-title {
  font-size: var(--df-font-size-3xl);
  font-weight: var(--df-font-weight-extrabold);
  color: var(--df-slate-900);
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .df-services-title {
    font-size: var(--df-font-size-4xl);
    margin-bottom: 2.5rem;
  }
}

/* Services Grid */
.df-services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .df-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .df-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Service Card */
.df-service-card {
  background-color: #f1f5f9;
  border: 1px solid var(--df-slate-200);
  border-radius: var(--df-radius-xl);
  padding: 2rem;
  transition: var(--df-transition);
  display: flex;
  flex-direction: column;
}

.df-service-card:hover {
  background-color: var(--df-white);
  box-shadow: var(--df-shadow-md);
  transform: translateY(-2px);
  border-color: var(--df-slate-300);
}

/* Service Header */
.df-service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Service Icon Wrapper */
.df-service-icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--df-radius-lg);
  background: #e0f2fe;
  display: grid;
  place-items: center;
  transition: var(--df-transition);
}

.df-service-card:hover .df-service-icon-wrapper {
  background: rgba(5, 150, 105, 0.15);
  transform: scale(1.05);
}

.df-service-icon {
  width: 24px;
  height: 24px;
  color: var(--df-emerald-700);
}

/* Service Name */
.df-service-name {
  font-size: var(--df-font-size-xl);
  font-weight: var(--df-font-weight-semibold);
  color: var(--df-slate-900);
  margin: 0;
  line-height: 1.2;
}

/* Service Description */
.df-service-description {
  font-size: var(--df-font-size-sm);
  color: var(--df-slate-600);
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
  flex-grow: 1;
}

/* Service Buttons */
.df-service-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.df-btn-service-primary {
  background-color: var(--df-emerald-600);
  color: var(--df-white);
  padding: 0.625rem 1rem;
  border-radius: var(--df-radius-lg);
  font-size: var(--df-font-size-sm);
  font-weight: var(--df-font-weight-semibold);
  text-align: center;
  text-decoration: none;
  transition: var(--df-transition);
  border: none;
  cursor: pointer;
}

.df-btn-service-primary:hover {
  background-color: #ffffff;
  color: var(--df-emerald-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(5, 150, 105, 0.2);
}

.df-btn-service-secondary {
  background-color: var(--df-white);
  color: var(--df-slate-800);
  padding: 0.625rem 1rem;
  border-radius: var(--df-radius-lg);
  font-size: var(--df-font-size-sm);
  font-weight: var(--df-font-weight-semibold);
  text-align: center;
  border: 1px solid var(--df-slate-200);
  transition: var(--df-transition);
  cursor: pointer;
}

.df-btn-service-secondary:hover {
  background-color: var(--df-slate-50);
  border-color: var(--df-slate-300);
}

/* Responsive Adjustments */
@media (max-width: 639px) {
  .df-service-card {
    padding: 1.5rem;
  }

  .df-service-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .df-service-icon {
    width: 20px;
    height: 20px;
  }

  .df-service-name {
    font-size: var(--df-font-size-lg);
  }

  .df-service-buttons {
    gap: 0.75rem;
  }

  .df-btn-service-primary,
  .df-btn-service-secondary {
    padding: 0.75rem 0.875rem;
  }
}

/* Animation on Scroll */
@keyframes df-fade-scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.df-service-card {
  animation: df-fade-scale-in 0.5s ease-out backwards;
}

/* Stagger animation delays */
.df-service-card:nth-child(1) { animation-delay: 0.05s; }
.df-service-card:nth-child(2) { animation-delay: 0.1s; }
.df-service-card:nth-child(3) { animation-delay: 0.15s; }
.df-service-card:nth-child(4) { animation-delay: 0.2s; }
.df-service-card:nth-child(5) { animation-delay: 0.25s; }
.df-service-card:nth-child(6) { animation-delay: 0.3s; }

/* Disable animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .df-service-card {
    animation: none;
  }
  
  .df-service-card:hover {
    transform: none;
  }
  
  .df-service-icon-wrapper {
    transform: none !important;
  }
}

/* Focus states for accessibility */
.df-btn-service-primary:focus-visible,
.df-btn-service-secondary:focus-visible {
  outline: 2px solid var(--df-emerald-600);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .df-services {
    page-break-inside: avoid;
  }

  .df-service-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--df-slate-300);
  }

  .df-service-buttons {
    display: none;
  }
}

/* ====================================
   TRUST & PRICING SECTION
   ==================================== */

.df-trust-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .df-trust-section {
    padding: 3rem 0;
  }
}

/* Trust Grid Layout */
.df-trust-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .df-trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Left Column: Trust Content */
.df-trust-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.df-trust-title {
  font-size: var(--df-font-size-3xl);
  font-weight: var(--df-font-weight-extrabold);
  color: var(--df-slate-900);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
}

@media (min-width: 768px) {
  .df-trust-title {
    font-size: var(--df-font-size-4xl);
  }
}

/* Trust List */
.df-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.df-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: var(--df-font-size-base);
  color: var(--df-slate-700);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .df-trust-item {
    font-size: var(--df-font-size-lg);
  }
}

.df-trust-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--df-emerald-600);
  margin-top: 2px;
}

/* Trust Badges */
.df-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.df-trust-badge {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  background-color: var(--df-slate-100);
  color: var(--df-slate-600);
  font-size: var(--df-font-size-xs);
  border-radius: 9999px;
  white-space: nowrap;
}

/* Right Column: Pricing Card */
.df-pricing-card {
  background-color: var(--df-white);
  border: 1px solid var(--df-slate-200);
  border-radius: var(--df-radius-xl);
  padding: 2rem;
  box-shadow: var(--df-shadow-sm);
}

@media (min-width: 768px) {
  .df-pricing-card {
    padding: 2.5rem;
  }
}

.df-pricing-title {
  font-size: var(--df-font-size-lg);
  font-weight: var(--df-font-weight-semibold);
  color: var(--df-slate-700);
  margin: 0 0 1.5rem 0;
}

/* Pricing Grid */
.df-pricing-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .df-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* Price Box */
.df-price-box {
  padding: 1.25rem;
  background-color: var(--df-slate-50);
  border: 1px solid var(--df-slate-200);
  border-radius: var(--df-radius-lg);
  transition: var(--df-transition);
}

.df-price-box:hover {
  background-color: var(--df-white);
  border-color: var(--df-slate-300);
  box-shadow: var(--df-shadow-sm);
}

.df-price-service {
  font-size: var(--df-font-size-base);
  font-weight: var(--df-font-weight-semibold);
  color: var(--df-slate-900);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.df-price-range {
  font-size: var(--df-font-size-sm);
  color: var(--df-slate-600);
  line-height: 1.4;
}

/* Pricing Disclaimer */
.df-pricing-disclaimer {
  font-size: 0.6875rem;
  color: var(--df-slate-500);
  line-height: 1.5;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--df-slate-200);
}

/* Responsive Adjustments */
@media (max-width: 639px) {
  .df-trust-section {
    padding: 3rem 0;
  }

  .df-trust-grid {
    gap: 2.5rem;
  }

  .df-trust-title {
    font-size: var(--df-font-size-2xl);
  }

  .df-trust-item {
    font-size: var(--df-font-size-sm);
  }

  .df-trust-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .df-pricing-card {
    padding: 1.5rem;
  }

  .df-price-box {
    padding: 1rem;
  }
}

/* Animation on Scroll */
@keyframes df-fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes df-fade-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.df-trust-content {
  animation: df-fade-in-left 0.6s ease-out;
}

.df-pricing-card {
  animation: df-fade-in-right 0.6s ease-out;
}

.df-trust-item {
  animation: df-fade-in-left 0.5s ease-out backwards;
}

.df-trust-item:nth-child(1) { animation-delay: 0.1s; }
.df-trust-item:nth-child(2) { animation-delay: 0.2s; }
.df-trust-item:nth-child(3) { animation-delay: 0.3s; }

.df-price-box {
  animation: df-fade-in-right 0.5s ease-out backwards;
}

.df-price-box:nth-child(1) { animation-delay: 0.15s; }
.df-price-box:nth-child(2) { animation-delay: 0.2s; }
.df-price-box:nth-child(3) { animation-delay: 0.25s; }
.df-price-box:nth-child(4) { animation-delay: 0.3s; }

/* Disable animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .df-trust-content,
  .df-pricing-card,
  .df-trust-item,
  .df-price-box {
    animation: none;
  }
  
  .df-price-box:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .df-trust-section {
    page-break-inside: avoid;
  }

  .df-trust-grid {
    display: block;
  }

  .df-pricing-card {
    margin-top: 2rem;
    box-shadow: none;
  }

  .df-price-box {
    break-inside: avoid;
  }
}

/* Focus States for Accessibility */
.df-trust-badge:focus-visible {
  outline: 2px solid var(--df-emerald-600);
  outline-offset: 2px;
}

section.df-trust-section {
    background: #e0f2fe;
}


.cities-section {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.cities-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 4rem 4rem;
}

.cities-heading {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0f172a;
}

.cities-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .cities-heading {
    font-size: 36px;
  }
  
  .cities-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.city-card {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background-color: #e0f2fe;
  padding: 16px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.city-card:hover {
  background-color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.city-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.city-subtext {
  font-size: 11px;
  color: #64748b;
  font-weight: 400;
  margin-top: 4px;
  transition: color 0.2s ease;
}

.city-card:hover .city-subtext {
  color: #475569;
}

.testimonials-section {
  background: #f1f5f9;
}

.testimonials-container{
  max-width: 1250px;
  margin: 0 auto;
  padding: 3rem;
}
.testimonials-heading {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0f172a;
}

@media (min-width: 768px) {
  .testimonials-heading {
    font-size: 36px;
  }
}

.testimonials-grid {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 24px;
}

.testimonial-quote {
  color: #334155;
  line-height: 1.625;
}

.testimonial-author {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.testimonial-city {
  color: #64748b;
  font-weight: 400;
}


@media (max-width: 767px) {
  body {
    padding-bottom: 7rem; /* Space for mobile sticky buttons */
  }
  .df-container {
    padding: 0 2rem;
  }
  .cities-container{
    padding: 4rem 1rem;
  }
  .testimonials-section{
    padding: 4rem 1rem;
  }
  .faq-container{
    padding: 4rem 1rem;
  }
  a.btn.btn--primary.btn--sm {
      width: 50%;
      margin-left: 1rem;
  }
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

/* Modal Container */
.modal-container {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Modal Header */
.modal-header {
    text-align: center;
    padding: 40px 40px 30px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.modal-header p {
    font-size: 16px;
    color: #666;
}

/* Modal Body */
.modal-body {
    padding: 30px 40px;
}

/* Call Now Section */
.call-section {
    margin-bottom: 30px;
}

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

.phone-number {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
}

.call-btn {
    width: 100%;
    background: #1a2332;
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.call-btn:hover {
    background: #0f1720;
}

.call-btn::before {
    content: "📞";
}

.business-hours {
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Request Callback Section */
.callback-section {
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.callback-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Styles */
.service-finder-section {
    padding-bottom: 3rem;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}
.service-finder-form .form-row {
    align-items: end;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group select {
    background: white;
    cursor: pointer;
}

.request-btn {
    width: 100%;
    background: #1a2332;
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 16px;
}

.request-btn:hover {
    background: #0f1720;
}

/* Footer Text */
.modal-footer-text {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.modal-footer-text a {
    color: #666;
    text-decoration: underline;
}

/* Close Button */
.close-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    display: block;
    margin: 0 auto 20px;
    font-weight: 500;
}

.close-btn:hover {
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 640px) {
    .modal-container {
        width: 95%;
        margin: 20px;
    }

    .modal-header {
        padding: 30px 20px 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-number {
        font-size: 24px;
    }
}



/* =================================================================
   PLUMBING CATEGORY PAGE STYLES
   ================================================================= */
/* =================================================================
   PLUMBING HERO
   ================================================================= */
.df-plumbing-hero {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.df-plumbing-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #bae6fd 0%, #ffffff 50%, #f0f9ff 100%);
    z-index: -1;
}

.df-plumbing-hero-inner {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}



.df-badges-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.df-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--df-slate-200);
    background: var(--df-white);
    font-size: var(--df-font-size-xs);
    font-weight: var(--df-font-weight-semibold);
    color: var(--df-slate-700);
    box-shadow: var(--df-shadow-sm);
}


.df-badge .df-icon {
    width: 0.875rem;
    height: 0.875rem;
    margin-right: 0.25rem;
    color: var(--df-emerald-700);
}

.df-plumbing-hero-title {
    margin-top: 1rem;
    font-size: 2.25rem;
    line-height: 1.2;
}

.df-text-primary {
    color: var(--df-emerald-600);
}

.df-plumbing-hero-description {
    margin-top: 1rem;
    font-size: var(--df-font-size-lg);
    color: var(--df-slate-600);
}

.df-hero-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.df-trust-indicators {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    font-size: var(--df-font-size-xs);
    color: var(--df-slate-600);
}

.df-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.df-trust-item .df-icon {
    width: 1rem;
    height: 1rem;
    color: var(--df-emerald-600);
}

.df-plumbing-hero-sidebar {
    display: grid;
    gap: 1rem;
}

.df-quick-connect-card,
.df-vetted-card {
    background: var(--df-white);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--df-shadow-sm);
}

.df-card-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.75rem;
}

.df-card-title {
    font-size: var(--df-font-size-sm);
    font-weight: var(--df-font-weight-semibold);
    color: var(--df-slate-700);
}

.df-card-subtitle {
    font-size: var(--df-font-size-xs);
    color: var(--df-slate-500);
    margin-top: 0.25rem;
}

.df-powered-by {
    display: none;
}

.df-powered-by span {
    font-size: 0.6875rem;
    font-weight: var(--df-font-weight-semibold);
    color: var(--df-slate-500);
}

.df-card-actions {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
}

.df-common-emergencies {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--df-slate-50);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-lg);
}

.df-emergencies-title {
    font-size: var(--df-font-size-sm);
    font-weight: var(--df-font-weight-semibold);
    color: var(--df-slate-800);
}

.df-emergencies-list {
    margin-top: 0.5rem;
    display: grid;
    gap: 0.5rem;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-600);
}

.df-emergency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.df-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    background: var(--df-emerald-600);
    flex-shrink: 0;
}

.df-disclaimer {
    margin-top: 1rem;
    font-size: 0.6875rem;
    color: var(--df-slate-500);
}

.df-vetted-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--df-slate-200);
}

.df-vetted-title {
    font-size: var(--df-font-size-sm);
    font-weight: var(--df-font-weight-semibold);
}

.df-vetted-badge {
    font-size: 0.6875rem;
    font-weight: var(--df-font-weight-semibold);
    color: var(--df-slate-500);
}

.df-vetted-items {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
}

.df-vetted-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--df-slate-50);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-lg);
}

.df-vetted-item .df-icon {
    width: 1rem;
    height: 1rem;
    color: var(--df-emerald-600);
}

.df-vetted-item span {
    font-size: var(--df-font-size-sm);
    font-weight: var(--df-font-weight-semibold);
    color: var(--df-slate-700);
}

@media (min-width: 768px) {
    .df-plumbing-hero-title {
        font-size: 3rem;
    }

    .df-hero-cta {
        flex-direction: row;
    }

    .df-trust-indicators {
        grid-template-columns: repeat(3, 1fr);
    }

    .df-powered-by {
        display: flex;
    }

    .df-emergencies-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .df-vetted-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .df-plumbing-hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* =================================================================
   SERVICES SECTION
   ================================================================= */
.df-services-section {
    background: var(--df-white);
    border-top: 1px solid var(--df-slate-200);
    border-bottom: 1px solid var(--df-slate-200);
    padding: 3.5rem 0;
}

.df-services-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.df-section-header {
    max-width: 48rem;
}

.df-kicker {
    font-size: var(--df-font-size-xs);
    font-weight: var(--df-font-weight-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--df-emerald-700);
}

.df-section-header h2 {
    margin-top: 0.5rem;
}

.df-section-subtitle {
    margin-top: 0.75rem;
    color: var(--df-slate-600);
}

.df-services-search {
    width: 100%;
}

.df-search-label {
    font-size: var(--df-font-size-sm);
    font-weight: var(--df-font-weight-semibold);
    color: var(--df-slate-700);
}

.df-search-input-wrapper {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--df-slate-50);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-lg);
}

.df-search-icon {
    width: 1rem;
    height: 1rem;
    color: var(--df-slate-500);
}

.df-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-900);
}

.df-search-input::placeholder {
    color: var(--df-slate-500);
}

.df-search-actions {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.df-services-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.df-service-card {
    background: var(--df-slate-50);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-xl);
    padding: 1rem;
    transition: var(--df-transition);
}

.df-service-card:hover {
    background: var(--df-white);
    box-shadow: var(--df-shadow-sm);
}

.df-service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 20px;
}

.df-service-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--df-radius-lg);
    background: rgba(5, 150, 105, 0.1);
    color: var(--df-emerald-700);
    display: grid;
    place-items: center;
}

.df-service-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.df-service-title {
    font-size: var(--df-font-size-lg);
    font-weight: var(--df-font-weight-semibold);
}

.df-service-list {
    margin-top: 0.75rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.df-service-list li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-600);
}

.df-service-list li .df-icon {
    width: 1rem;
    height: 1rem;
    color: var(--df-emerald-600);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.df-service-actions {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.df-service-note {
    margin-top: 0.75rem;
    font-size: 0.6875rem;
    color: var(--df-slate-500);
}

@media (min-width: 640px) {
    .df-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .df-services-header {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
    }

    .df-services-search {
        width: 22.5rem;
    }
}

@media (min-width: 1024px) {
    .df-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =================================================================
   VALUE PROPS
   ================================================================= */
.df-value-props {
    padding: 3.5rem 0;
}

.df-value-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.df-value-card {
    background: var(--df-white);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-xl);
    padding: 1.5rem;
}

.df-value-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--df-radius-lg);
    background: rgba(5, 150, 105, 0.1);
    color: var(--df-emerald-700);
    display: grid;
    place-items: center;
}

.df-value-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.df-value-title {
    margin-top: 1rem;
    font-size: var(--df-font-size-lg);
    font-weight: var(--df-font-weight-bold);
}

.df-value-text {
    margin-top: 0.5rem;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-600);
}

.df-cta-banner {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--df-white);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-xl);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.df-cta-content {
    /* Styles applied by default */
}

.df-cta-title {
    font-size: var(--df-font-size-xl);
    font-weight: var(--df-font-weight-extrabold);
    letter-spacing: -0.025em;
}

.df-cta-text {
    margin-top: 0.25rem;
    color: var(--df-slate-600);
}

.df-cta-actions {
    display: flex;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .df-cta-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .df-value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =================================================================
   PRICING
   ================================================================= */
.df-pricing-section {
    background: var(--df-white);
    border-top: 1px solid var(--df-slate-200);
    border-bottom: 1px solid var(--df-slate-200);
    padding: 3.5rem 0;
}

.df-pricing-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
}


.df-pricing-grid {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.df-pricing-item {
    padding: 1rem;
    background: var(--df-slate-50);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-lg);
}

.df-pricing-service {
    font-size: var(--df-font-size-sm);
    font-weight: var(--df-font-weight-semibold);
}

.df-pricing-range {
    margin-top: 0.25rem;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-600);
}

.df-pricing-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.6875rem;
    color: var(--df-slate-500);
}

.df-pricing-sidebar {
    /* Styles applied by default */
}

.df-estimate-card {
    background: var(--df-white);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--df-shadow-sm);
}

.df-estimate-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--df-font-size-sm);
    font-weight: var(--df-font-weight-semibold);
    color: var(--df-slate-800);
}

.df-estimate-header .df-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--df-emerald-600);
}

.df-estimate-intro {
    margin-top: 0.5rem;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-600);
}

.df-estimate-list {
    margin-top: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.df-estimate-list li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-700);
}

.df-estimate-list li .df-icon {
    width: 1rem;
    height: 1rem;
    color: var(--df-emerald-600);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.df-estimate-actions {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.df-pro-tip {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--df-slate-50);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-lg);
}

.df-pro-tip-title {
    font-size: var(--df-font-size-sm);
    font-weight: var(--df-font-weight-semibold);
}

.df-pro-tip-text {
    margin-top: 0.25rem;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-600);
}

@media (min-width: 640px) {
    .df-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .df-estimate-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .df-pricing-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* =================================================================
   TRUST / PROOF
   ================================================================= */
.df-trust-section {
    padding: 3.5rem 0;
}

.df-trust-layout {
    margin-top: 2rem;
    display: grid;
    gap: 2rem;
    align-items: center;
}

.df-trust-standards {
    background: var(--df-white);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-xl);
    padding: 1.5rem;
}

.df-standards-title {
    font-size: var(--df-font-size-sm);
    font-weight: var(--df-font-weight-semibold);
    color: var(--df-slate-700);
}

.df-standards-list {
    margin-top: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.df-standards-list li {
    display: flex;
    gap: 0.75rem;
}

.df-standards-list li .df-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--df-emerald-600);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.df-standard-title {
    font-size: var(--df-font-size-sm);
    font-weight: var(--df-font-weight-semibold);
    color: var(--df-slate-700);
}

.df-standard-text {
    margin-top: 0.25rem;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-600);
}

.df-single-pro-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--df-slate-50);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-lg);
}

.df-note-title {
    font-size: var(--df-font-size-sm);
    font-weight: var(--df-font-weight-semibold);
}

.df-note-text {
    margin-top: 0.25rem;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-600);
}

.df-trust-sidebar {
    display: grid;
    gap: 1.5rem;
}

.df-testimonials-card {
    background: var(--df-white);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-xl);
    padding: 1.5rem;
}

.df-testimonials-title {
    font-size: var(--df-font-size-lg);
    font-weight: var(--df-font-weight-semibold);
}

.df-testimonials {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
}

.df-testimonial {
    padding: 1rem;
    background: var(--df-slate-50);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-lg);
}

.df-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--df-emerald-600);
}

.df-stars svg {
    width: 1rem;
    height: 1rem;
}

.df-testimonial-text {
    margin-top: 0.5rem;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-700);
}

.df-testimonial-author {
    margin-top: 0.5rem;
    font-size: var(--df-font-size-sm);
}

.df-testimonial-author strong {
    font-weight: var(--df-font-weight-semibold);
}

.df-testimonial-author span {
    color: var(--df-slate-500);
    font-weight: var(--df-font-weight-normal);
}

.df-coverage-card {
    background: var(--df-white);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-xl);
    padding: 1.5rem;
}

.df-coverage-title {
    font-size: var(--df-font-size-lg);
    font-weight: var(--df-font-weight-semibold);
}

.df-coverage-text {
    margin-top: 0.5rem;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-600);
}

.df-cities-list {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.df-city-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--df-slate-50);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-lg);
    font-size: var(--df-font-size-sm);
}

.df-city-badge .df-icon {
    width: 1rem;
    height: 1rem;
    color: var(--df-emerald-600);
}

.df-city-name {
    font-weight: var(--df-font-weight-semibold);
}

.df-city-tag {
    font-size: 0.6875rem;
    font-weight: var(--df-font-weight-semibold);
    color: var(--df-emerald-700);
    background: var(--df-emerald-50);
    border: 1px solid #a7f3d0;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

@media (min-width: 1024px) {
    .df-trust-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}



/* Service card hide when filtered */
.df-service-card.hidden {
    display: none;
}




#callDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
}

#callDialog .dialog-content {
    width: 100%;
    max-width: 28rem;
    margin: 0 0.75rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

#callDialog .dialog-header {
    margin-bottom: 1rem;
    padding-top: 10px;
}

#callDialog .dialog-title {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

#callDialog .dialog-subtitle {
    font-size: 0.875rem;
    color: #475569;
    margin-top: 0.25rem;
    text-align: center;
}

#callDialog .grid {
    display: grid;
    gap: 0.75rem;
}

#callDialog  .call-container {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
}

#callDialog  .section-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

#callDialog  .phone-number {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

#callDialog  .phone-link {
    color: #0E1A2C;
    text-decoration: none;
    font-variant-numeric: tabular-nums;
}

#callDialog  .phone-link:hover {
    text-decoration: underline;
}

#callDialog  .call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background-color: #0E1A2C;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

#callDialog .call-button:hover {
    opacity: 0.9;
}

#callDialog .call-button svg {
    margin-right: 0.5rem;
    height: 1rem;
    width: 1rem;
}

#callDialog  .hours-text {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #475569;
    text-align: center;
}

#callDialog  .callback-container {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
}

#callDialog  .form-container {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

#callDialog  .disclaimer {
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
}

#callDialog  .disclaimer-link {
    text-decoration: underline;
    cursor: pointer;
}

#callDialog  .dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

#callDialog  .close-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    cursor: pointer;
}

#callDialog  .close-button:hover {
    background-color: #f8fafc;
}
#callDialog.hidden {
    display: none !important;
}

/* Two-column form layout */
#callDialog .form-container .bee-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}



/* Make specific rows span full width */

/* Add scrollbar to dialog content */
/* Add scrollbar to dialog content */
#callDialog .dialog-content {
    width: 100% !important;
    max-width: 650px !important;
    max-height: 99vh !important;
    margin: 0 0.75rem !important;
    padding: 1.5rem !important;
    background-color: white !important;
    border-radius: 1rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    overflow-y: auto !important;
}

/* Grid layout for form */
#callDialog .call-now-section .form-container .bee-form form {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 5px !important;
}

/* Row 1: Name, Phone, Email */
#callDialog .call-now-section .bee-form-row:nth-child(1) { 
    grid-column: 1 !important; 
    grid-row: 1 !important; 
}

#callDialog .call-now-section .bee-form-row:nth-child(3) { 
    grid-column: 2 !important; 
    grid-row: 1 !important; 
}

#callDialog .call-now-section .bee-form-row:nth-child(2) { 
    grid-column: 3 !important; 
    grid-row: 1 !important; 
}

/* Row 2: Reason, Services */
#callDialog .call-now-section .bee-form-row:nth-child(4) { 
    grid-column: 1 !important; 
    grid-row: 2 !important; 
}

#callDialog .call-now-section .bee-form-row:nth-child(5) { 
    grid-column: 2 !important; 
    grid-row: 2 !important; 
}

/* Row 3: Submit button (full width) */
#callDialog .call-now-section .bee-form-row:nth-child(7) { 
    grid-column: 1 / -1 !important; 
    grid-row: 3 !important; 
}

/* Hidden field */
#callDialog .call-now-section .bee-form-row:nth-child(6) {
    display: none !important;
}

/* Hide spam protection fields */
#callDialog .bee-form-row[style*="position: absolute"] {
    display: none !important;
}

/* Form field styling */
#callDialog .bee-field {
    display: flex !important;
    flex-direction: column !important;
}

#callDialog .bee-field label {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
    color: #0f172a !important;
}

#callDialog .bee-field input[type="text"],
#callDialog .bee-field input[type="email"],
#callDialog .bee-field select {
    width: 100% !important;
    padding: 0.75rem !important;
    border: 1px solid #000 !important;
    border-radius: 0.5rem !important;
    font-size: 0.875rem !important;
    outline: none !important;
    background-color: white !important;
}

#callDialog .bee-field input:focus,
#callDialog .bee-field select:focus {
    border-color: #000 !important;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1) !important;
}

/* Submit button styling */
#callDialog .bee-button-container {
    width: 100% !important;
}

#callDialog .bee-button-container button {
    width: 100% !important;
    padding: 1rem !important;
    background-color: #000 !important;
    color: white !important;
    border: none !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}

#callDialog .bee-button-container button:hover {
    background-color: #1f1f1f !important;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    #callDialog .dialog-content {
        max-width: 38rem !important;
    }
    
    #callDialog .call-now-section .form-container .bee-form form {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    #callDialog .call-now-section .bee-form-row:nth-child(1) { grid-column: 1 !important; grid-row: 1 !important; }
    #callDialog .call-now-section .bee-form-row:nth-child(3) { grid-column: 2 !important; grid-row: 1 !important; }
    #callDialog .call-now-section .bee-form-row:nth-child(2) { grid-column: 1 !important; grid-row: 2 !important; }
    #callDialog .call-now-section .bee-form-row:nth-child(4) { grid-column: 2 !important; grid-row: 2 !important; }
    #callDialog .call-now-section .bee-form-row:nth-child(5) { grid-column: 1 !important; grid-row: 3 !important; }
    #callDialog .call-now-section .bee-form-row:nth-child(7) { grid-column: 1 / -1 !important; grid-row: 4 !important; }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
    #callDialog .dialog-content {
        max-width: 28rem !important;
    }
    
    #callDialog .call-now-section .form-container .bee-form form {
        grid-template-columns: 1fr !important;
    }
    
    #callDialog .call-now-section .bee-form-row:nth-child(1),
    #callDialog .call-now-section .bee-form-row:nth-child(2),
    #callDialog .call-now-section .bee-form-row:nth-child(3),
    #callDialog .call-now-section .bee-form-row:nth-child(4),
    #callDialog .call-now-section .bee-form-row:nth-child(5),
    #callDialog .call-now-section .bee-form-row:nth-child(7) {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}

#form-acm_60946 .bee-row-content{
  max-width: 100% !important;
}
#form-acm_60946 .bee-form-row-1 .bee-col-1 .bee-block-1{
  padding: 0!important;
}
#form-acm_60946 .bee-form-row-1 .bee-col-1 .bee-block-1 button{
  line-height: 120% !important;
}

.df-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1250px;
    margin: 0 auto;
    padding: 3rem 3rem;
}

.inside-service-card-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 700px;
  width: 100%;
}

.inside-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.inside-service-card .card-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.inside-service-card .card-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .inside-service-card-container {
    grid-template-columns: 1fr;
  }
}

/* Disclosure Section */
.disclosure{
    max-width: 1250px;
    padding: 3rem;
    margin: 0 auto;
}
.disclosure-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.disclosure-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.disclosure-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disclosure-icon svg {
  width: 24px;
  height: 24px;
  color: #3b82f6;
}

.disclosure-text {
  flex: 1;
}

.disclosure-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.disclosure-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.disclosure-button {
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.disclosure-button:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.disclosure-button svg {
  width: 18px;
  height: 18px;
}

/* Modal Overlay */
.disclosure.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.disclosure.modal-overlay.modal-overlay.active {
  display: flex;
  opacity: 1;
}

/* Modal Content */
.disclosure .modal-content {
  background: #ffffff;
  border-radius: 24px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 0.3s;
}

.disclosure.modal-overlay.active .modal-content {
  transform: scale(1);
}

.disclosure .modal-header {
  padding: 32px 32px 24px 32px;
  border-bottom: 1px solid #e2e8f0;
}

.disclosure .modal-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.disclosure .modal-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.disclosure .modal-icon {
  width: 40px;
  height: 40px;
  background: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclosure .modal-icon svg {
  width: 20px;
  height: 20px;
  color: #3b82f6;
}

.disclosure .modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}

.disclosure .disclosure .modal-close {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.disclosure .modal-close:hover {
  background: #f1f5f9;
}

.disclosure .modal-close svg {
  width: 20px;
  height: 20px;
  color: #64748b;
}

.disclosure .modal-subtitle {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  text-align: left;
}

.disclosure .modal-body {
  padding: 32px;
}

.disclosure .modal-section {
  margin-bottom: 24px;
}

.disclosure .modal-section:last-child {
  margin-bottom: 0;
}

.disclosure .modal-section-title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.disclosure .modal-section-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

.modal-list {
  list-style: none;
  margin-top: 12px;
}

.disclosure .modal-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.disclosure .modal-list li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.disclosure .info-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.disclosure .info-box-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.disclosure .info-box-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .disclosure-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .disclosure-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .disclosure-button {
    width: 100%;
    justify-content: center;
  }

  .disclosure .modal-header,
  .disclosure .modal-body {
    padding: 24px;
  }
}


/* Coverage Section */

.coverage-section {
  max-width: 1250px;
  margin: 0 auto;
  padding: 3rem;
}

/* Section Header */
.section-header {
  margin-bottom: 32px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #64748b;
  margin-bottom: 12px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  max-width: 800px;
}

/* Grid Layout */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

/* Left Column - States */
.states-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.states-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.states-card-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.search-box {
  position: relative;
  margin-bottom: 16px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #94a3b8;
}

.search-input {
  width: 100%;
  padding: 12px 12px 12px 42px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  color: #0f172a;
  background: #f8fafc;
  transition: all 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: #ffffff;
}

.search-input::placeholder {
  color: #94a3b8;
}

.states-list {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 8px;
  max-height: 300px;
  overflow-y: auto;
}

.state-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 4px;
}

.state-item:hover {
  background: rgba(255, 255, 255, 0.7);
}

.state-item.active {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.state-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  font-weight: 500;
}

.state-icon {
  width: 18px;
  height: 18px;
  color: #94a3b8;
}

.chevron-icon {
  width: 18px;
  height: 18px;
  color: #94a3b8;
}

/* Right Column - Metros */
.metros-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.metros-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.metros-card-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.metro-content {
  display: none;
}

.metro-content.active {
  display: block;
}

.metro-state-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.metro-state-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.metro-badge {
  background: #f1f5f9;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 9999px;
}

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

.metro-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
}

.metro-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.metro-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.metro-path {
  font-size: 12px;
  color: #64748b;
}

.ppc-badge {
  background: #3b82f6;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.service-button:hover {
  border-color: #3b82f6;
  background: #f8fafc;
}

.service-button svg {
  width: 16px;
  height: 16px;
  color: #94a3b8;
}

.placeholder-text {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
.df-home-cta-section{
  max-width: 1250px;
  padding: 2rem 3rem;
   margin: 0 auto;
}

.df-home-cta-banner {
    background: var(--df-white);
    border: 1px solid var(--df-slate-200);
    border-radius: var(--df-radius-xl);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  
}
.df-home-cta-banner .df-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.df-home-cta-banner .df-btn.df-btn-primary, .df-home-cta-banner .df-btn.df-btn-secondary {
    padding: 0.5rem 2rem;
}
@media (min-width: 767px) {
  .df-home-cta-banner .df-cta-content {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 410px;
}
}

.resources-section {
  max-width: 1250px;
  margin: 0 auto;
  padding: 3rem;
}

/* Section Header */
.resources-section .section-header {
  margin-bottom: 40px;
}


/* Resources Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* Resource Card */
.resource-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.resource-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.resources-section .card-header-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.resources-section .card-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resources-section .card-icon svg {
  width: 24px;
  height: 24px;
  color: #3b82f6;
}

.resources-section .card-icon.shield {
  background: #dbeafe;
}

.resources-section .card-icon.shield svg {
  color: #3b82f6;
}

.resources-section .card-icon.zap {
  background: #dbeafe;
}

.resources-section .card-icon.zap svg {
  color: #3b82f6;
}

.resources-section .card-title-wrapper {
  flex: 1;
}

.resources-section .resources-section .card-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.resources-section .card-subtitle {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.resources-section .card-badge {
  background: #f1f5f9;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 9999px;
  white-space: nowrap;
}

/* Card Content */
.resources-section .card-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Explore Button */
.resources-section .explore-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.resources-section .explore-button:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.resources-section .explore-button svg {
  width: 16px;
  height: 16px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
  .resources-section .section-title {
    font-size: 28px;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .resources-section .card-header {
    flex-direction: column;
    gap: 12px;
  }

  .resources-section .card-badge {
    align-self: flex-start;
  }
}



/* Path Selection Section */
.path-selection-section {
  max-width: 1250px;
  margin: 0 auto;
  padding: 3rem;
}

.path-section-header {
  margin-bottom: 20px;
}

.path-main-heading {
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.path-intro-text {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  max-width: 900px;
}

/* Two Column Grid */
.path-options-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 20px;
}

/* Option Card */
.path-option-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.path-option-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.path-option-heading {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.path-option-tagline {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Bullet List */
.path-features-list {
  list-style: none;
  margin-bottom: 20px;
}

.path-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #334155;
  margin-bottom: 16px;
}

.path-features-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Disclaimer Text */
.path-disclaimer-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
  margin-top: auto;
}

.path-disclaimer-text .disclaimer-muted {
  color: #94a3b8;
}

/* Buttons */
.path-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.path-primary-button:hover {
  background: #2563eb;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}

.path-primary-button svg {
  width: 20px;
  height: 20px;
}

.path-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.path-secondary-button:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.path-secondary-button svg {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 968px) {
  .path-options-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .path-main-heading {
    font-size: 26px;
  }

  .path-option-card {
    padding: 32px;
  }
}

/* FAQ Home Section */
.faq-home-section {
  padding: 2rem 0;
  background-color: #ffffff;
}

.faq-home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.faq-home-header {
  margin-bottom: 2.5rem;
}

.faq-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.faq-home-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0.5rem 0 1rem 0;
  line-height: 1.2;
}

.faq-home-subtitle {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Items List */
.faq-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Individual FAQ Item */
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background-color: #ffffff;
  overflow: hidden;
  transition: background-color 0.2s ease;
}

.faq-item:hover {
  background-color: #f8fafc;
}

/* FAQ Button */
.faq-item-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.5;
  flex: 1;
}

.faq-toggle {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  flex-shrink: 0;
}

/* FAQ Answer */
.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Bottom Actions */
.faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #0f172a;
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background-color: #1e293b;
}

.btn-secondary {
  background-color: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
  background-color: #f8fafc;
}

/* Disclaimer */
.faq-disclaimer {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
  .faq-home-title {
    font-size: 36px;
  }
  
  .faq-home-subtitle {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .faq-home-section {
    padding: 3rem 0;
  }
  
  .faq-home-title {
    font-size: 36px;
  }
}


/* FAQ Page */

.faq-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

/* Page Header */
.faq-page-header {
    margin-bottom: 1.5rem;
}

.faq-kicker {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.faq-page-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

/* Services Grid */
.faq-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .faq-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .faq-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.faq-service-card {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    padding: 1.25rem;
    transition: background-color 0.2s;
}

.faq-service-card:hover {
    background-color: #f8fafc;
}

.faq-service-card-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-service-info {
    flex: 1;
}

.faq-service-name {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
}

.faq-service-note {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #64748b;
}

.faq-service-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.faq-service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Buttons */
.faq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.faq-btn-primary {
    background-color: #0f172a;
    color: #ffffff;
}

.faq-btn-primary:hover {
    background-color: #1e293b;
}

.faq-btn-ghost {
    background-color: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.faq-btn-ghost:hover {
    background-color: #f8fafc;
}

/* Subtitle */
.faq-subtitle {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

/* Disclosure Box */
.faq-disclosure-box {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    padding: 1rem;
    font-size: 0.75rem;
    color: #475569;
    margin-bottom: 2rem;
}

.faq-disclosure-box strong {
    color: #0f172a;
}

/* FAQ Section */
.faq-section {
    margin-top: 3.5rem;
}

.faq-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-header-content {
    max-width: 48rem;
}

.faq-section-title {
    margin-top: 0.5rem;
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.faq-section-description {
    margin-top: 0.75rem;
    color: #475569;
}

/* Search Box */
.faq-search-box {
    width: 100%;
    max-width: 28rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    padding: 1.25rem;
}

.faq-search-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.faq-search-input {
    margin-top: 0.5rem;
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s;
}

.faq-search-input:focus {
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.1);
}

.faq-search-count {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
}

/* FAQ Items */
.faq-items-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.faq-container .faq-item {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    padding: 1.25rem;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s;
}

.faq-container .faq-item:hover {
    background-color: #f8fafc;
}

.faq-container .faq-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.faq-container .faq-item-question {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
    flex: 1;
}

.faq-item-toggle {
    margin-top: 0.125rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

.faq-item-answer {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #475569;
    display: none;
}

.faq-item.faq-item-open .faq-item-answer {
    display: block;
}

/* Actions */
.faq-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.faq-reminder {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #64748b;
}

/* Trust Band */
.faq-trust-band {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .faq-trust-band {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .faq-trust-band {
        grid-template-columns: repeat(4, 1fr);
    }
}

.faq-trust-card {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    padding: 1.25rem;
}

.faq-trust-title {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
}

.faq-trust-text {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #64748b;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .faq-page-title {
        font-size: 1.875rem;
    }
    
    .faq-section-title {
        font-size: 1.5rem;
    }
    
    .faq-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .faq-search-box {
        max-width: 100%;
    }
}
.faq-search-box {
    display: none;
}


/* Browse by State Section */
.df-states-section {
    padding: 3rem;
    background: #f8f9fa;
}

.df-states-section .container {
    max-width: 1250px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1d2327;
}

.section-subtitle {
    font-size: 18px;
    color: #646970;
    margin: 0 0 50px 0;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin: 0 auto;
}

.state-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.state-card:hover {
    border-color: #2271b1;
    box-shadow: 0 8px 16px rgba(34, 113, 177, 0.15);
    transform: translateY(-4px);
}

.state-card-inner {
    text-align: center;
}

.state-abbr {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(135deg, #2271b1 0%, #1e5a8e 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.state-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #1d2327;
}

.state-meta {
    font-size: 14px;
    color: #646970;
    margin: 0 0 16px 0;
}

.view-services {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #2271b1;
    transition: all 0.2s ease;
}

.state-card:hover .view-services {
    transform: translateX(4px);
}

/* Coming Soon States */
.state-card-coming {
    opacity: 0.6;
    cursor: not-allowed;
    border-style: dashed;
}

.state-card-coming:hover {
    transform: none;
    box-shadow: none;
    border-color: #e5e7eb;
}

.state-card-coming .state-abbr {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}

.state-card-coming .view-services {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .df-states-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .states-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .state-card {
        padding: 24px 16px;
    }
    
    .state-abbr {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 20px;
    }
}




/* ========== SCOPED VARIABLES ========== */
.page-city-service {
    /* Using website's existing color scheme from global CSS */
    --cs-primary: #0978de;           /* Main brand blue */
    --cs-primary-hover: #0864bb;     /* Darker blue for hover */
    --cs-primary-light: #e6f2fc;     /* Soft blue background */

    --cs-accent: #f59e0b;            /* Warm CTA accent (recommended) */

    --cs-success: #0864bb;           /* Clean success green */
    --cs-danger: #dc2626;            /* Strong emergency red */
    --cs-warning: #f97316;           /* Warning orange */
}

/* ========== GLOBAL STYLES FOR CITY-SERVICE PAGES ========== */
.page-city-service {
    font-family: var(--df-font-family);
    line-height: 1.6;
    color: var(--df-slate-900);
}

.page-city-service h1,
.page-city-service h2,
.page-city-service h3 {
    font-weight: var(--df-font-weight-extrabold);
    line-height: 1.2;
    color: var(--df-slate-900);
}

/* ========== BREADCRUMB ========== */
.page-city-service .df-breadcrumb {
    font-size: var(--df-font-size-sm);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.page-city-service .df-breadcrumb a {
    color: var(--cs-primary);
    text-decoration: none;
    transition: var(--df-transition);
}

.page-city-service .df-breadcrumb a:hover {
    color: var(--cs-primary-hover);
}

.page-city-service .df-breadcrumb span {
    color: var(--df-slate-600);
}

/* ========== HERO SECTION ========== */
.page-city-service .df-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2fc 100%);
    padding: 2rem 0 5rem;
}

.page-city-service .df-trust-badges {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.page-city-service .df-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--df-font-size-xs);
    font-weight: var(--df-font-weight-medium);
    color: var(--df-slate-700);
    padding: 0.375rem 0.75rem;
    background: var(--df-white);
    border-radius: 1.25rem;
    box-shadow: var(--df-shadow-sm);
}

.page-city-service .df-hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3.75rem;
    align-items: start;
}

.page-city-service .df-hero-title {
    font-size: var(--df-font-size-4xl);
    margin: 0 0 1.5rem 0;
    color: var(--df-slate-900);
}

@media (min-width: 768px) {
    .page-city-service .df-hero-title {
        font-size: var(--df-font-size-5xl);
    }
}

.page-city-service .df-hero-intro {
    font-size: var(--df-font-size-lg);
    line-height: 1.7;
    color: var(--df-slate-700);
    margin-bottom: 2rem;
}

.page-city-service .df-hero-intro p {
    margin: 0 0 1rem 0;
}

.page-city-service .df-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 0 0;
    border-top: 2px solid var(--df-slate-200);
}

.page-city-service .df-stat {
    text-align: center;
}

.page-city-service .df-stat-value {
    font-size: 2rem;
    font-weight: var(--df-font-weight-bold);
    color: var(--cs-primary);
    line-height: 1;
}

.page-city-service .df-stat-label {
    font-size: var(--df-font-size-xs);
    color: var(--df-slate-600);
    font-weight: var(--df-font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
    margin-top: 0.5rem;
}
.df-cta-body {
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

/* ========== CTA CARD (STICKY) ========== */
.page-city-service .df-cta-card {
    background: var(--df-white);
    border-radius: var(--df-radius-xl);
    padding: 2rem;
    box-shadow: var(--df-shadow-xl);
    position: sticky;
    top: 6.25rem;
}

.page-city-service .df-cta-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.page-city-service .df-cta-header h3 {
    font-size: var(--df-font-size-2xl);
    margin: 0 0 0.375rem 0;
}

.page-city-service .df-cta-header p {
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-600);
    margin: 0;
}

.page-city-service .df-btn-primary {
    background: var(--cs-primary);
    color: var(--df-white);
}

.page-city-service .df-btn-primary:hover {
    background: var(--cs-primary-hover);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(5, 150, 105, 0.3);
}

.page-city-service .df-btn-secondary {
    background: var(--df-white);
    color: var(--cs-primary);
    border: 2px solid var(--cs-primary);
}

.page-city-service .df-btn-secondary:hover {
    background: var(--df-slate-50);
}

.page-city-service .df-btn-danger {
    background: var(--cs-danger);
    color: var(--df-white);
}

.page-city-service .df-btn-danger:hover {
    background: #B91C1C;
}

.page-city-service .df-btn-lg {
    padding: 1rem 1.75rem;
    font-size: var(--df-font-size-base);
}

.page-city-service .df-btn-block {
    width: 100%;
    margin-top: 1.25rem;
}

.page-city-service .df-cta-divider {
    text-align: center;
    margin: 1rem 0;
    position: relative;
}

.page-city-service .df-cta-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--df-slate-200);
}

.page-city-service .df-cta-divider span {
    background: var(--df-white);
    padding: 0 0.75rem;
    font-size: var(--df-font-size-xs);
    color: var(--df-slate-600);
    position: relative;
}

.page-city-service .df-cta-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
}

.page-city-service .df-cta-features li {
    padding: 0.375rem 0;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-700);
}

.page-city-service .df-cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--df-font-size-xs);
    font-weight: var(--df-font-weight-semibold);
    color: var(--cs-success);
    padding: 0.75rem;
    background: var(--cs-primary-light);
    border-radius: var(--df-radius-md);
    margin-top: 1rem;
}

/* ========== CONTENT SECTIONS ========== */
.page-city-service .df-why-local,
.page-city-service .df-challenges,
.page-city-service .df-history,
.page-city-service .df-services,
.page-city-service .df-neighborhoods {
    padding: 3rem 0;
}

.page-city-service .df-why-local {
    background: var(--df-white);
}

.page-city-service .df-why-local h2,
.page-city-service .df-challenges h2,
.page-city-service .df-history h2,
.page-city-service .df-services h2,
.page-city-service .df-neighborhoods h2 {
    font-size: var(--df-font-size-3xl);
    margin: 0 0 1rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .page-city-service .df-why-local h2,
    .page-city-service .df-challenges h2,
    .page-city-service .df-history h2,
    .page-city-service .df-services h2,
    .page-city-service .df-neighborhoods h2 {
        font-size: var(--df-font-size-4xl);
    }
}

.page-city-service .df-section-subtitle {
    text-align: center;
    font-size: var(--df-font-size-lg);
    color: var(--df-slate-600);
    margin: 0 0 3rem 0;
}

.page-city-service .df-content-card {
    max-width: 56.25rem;
    margin: 2.5rem auto 0;
    background: linear-gradient(135deg, var(--df-white) 0%, #f0f7ff 100%);
    padding: 2.5rem;
    border-radius: var(--df-radius-lg);
    border-left: 4px solid var(--cs-primary);
    box-shadow: var(--df-shadow-md);
}

.page-city-service .df-card-icon {
    text-align: center;
    margin-bottom: 1.25rem;
}

.page-city-service .df-content-card h3 {
    font-size: var(--df-font-size-2xl);
    text-align: center;
    margin: 0 0 1.25rem 0;
}

.page-city-service .df-card-content {
    font-size: var(--df-font-size-base);
    line-height: 1.8;
    color: var(--df-slate-700);
}

.page-city-service .df-card-content p {
    margin: 0 0 1rem 0;
}

/* ========== CHALLENGES GRID ========== */
.page-city-service .df-challenges {
    background: linear-gradient(135deg, var(--df-slate-50) 0%, var(--df-white) 100%);
}

.page-city-service .df-challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.page-city-service .df-challenge-card {
    background: var(--df-white);
    padding: 2rem;
    border-radius: var(--df-radius-lg);
    text-align: center;
    border: 2px solid var(--df-slate-200);
    transition: var(--df-transition);
}

.page-city-service .df-challenge-card:hover {
    border-color: var(--cs-primary);
    box-shadow: 0 0.5rem 1.5rem rgba(5, 150, 105, 0.12);
    transform: translateY(-0.25rem);
}

.page-city-service .df-challenge-icon {
    font-size: 2.5rem;
    padding-bottom: 1rem;
    margin: 0 auto;
    width: 40px;
}

.page-city-service .df-challenge-card h3 {
    font-size: var(--df-font-size-lg);
    margin: 0 0 0.75rem 0;
}

.page-city-service .df-challenge-card p {
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-600);
    margin: 0;
    line-height: 1.6;
}

/* ========== HISTORY SECTION ========== */
.page-city-service .df-history {
    background: var(--df-white);
}

.page-city-service .df-history-content {
    max-width: 56.25rem;
    margin: 0 auto;
}

.page-city-service .df-history-text {
    font-size: var(--df-font-size-base);
    line-height: 1.8;
    color: var(--df-slate-700);
}

.page-city-service .df-history-text p {
    margin: 0 0 1.25rem 0;
}

/* ========== SERVICES GRID ========== */
.page-city-service .df-services {
    background: linear-gradient(135deg, #dbeafe 0%, #ecfdf5 100%);
}

.page-city-service .df-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.page-city-service .df-service-category {
    background: var(--df-white);
    border-radius: var(--df-radius-lg);
    padding: 2rem;
    border: 2px solid var(--df-slate-200);
}

.page-city-service .df-service-category.df-emergency {
    border-left: 4px solid var(--cs-danger);
}

.page-city-service .df-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--df-slate-100);
}

.page-city-service .df-category-icon {
    font-size: 1.75rem;
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cs-primary-light);
    border-radius: var(--df-radius-lg);
}

.page-city-service .df-icon-emergency {
    background: #FEE2E2;
}

.page-city-service .df-category-header h3 {
    font-size: var(--df-font-size-xl);
    margin: 0;
}

.page-city-service .df-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-city-service .df-service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.625rem 0;
    font-size: var(--df-font-size-sm);
    color: var(--df-slate-700);
}

.page-city-service .df-service-list svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* ========== NEIGHBORHOODS / ZIP GRID ========== */
.page-city-service .df-neighborhoods {
    background: var(--df-white);
}

.page-city-service .df-zip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13.75rem, 1fr));
    gap: 1rem;
}

.page-city-service .df-zip-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--df-white);
    border: 2px solid var(--df-slate-200);
    border-radius: var(--df-radius-md);
    padding: 1.125rem 1.25rem;
    text-decoration: none;
    color: var(--df-slate-900);
    transition: var(--df-transition);
}

.page-city-service .df-zip-card:hover {
    border-color: var(--cs-primary);
    box-shadow: 0 0.25rem 1rem rgba(5, 150, 105, 0.12);
    transform: translateX(0.25rem);
}

.page-city-service .df-zip-number {
    font-size: var(--df-font-size-xl);
    font-weight: var(--df-font-weight-bold);
    color: var(--cs-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.page-city-service .df-zip-name {
    font-size: var(--df-font-size-xs);
    color: var(--df-slate-600);
}

.page-city-service .df-zip-arrow {
    color: var(--cs-primary);
    transition: transform 0.3s;
}

.page-city-service .df-zip-card:hover .df-zip-arrow {
    transform: translateX(0.25rem);
}

/* ========== FINAL CTA ========== */
.page-city-service .df-final-cta {
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-primary-hover) 100%);
    padding: 5rem 0;
}

.page-city-service .df-final-cta-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto;
}

.page-city-service .df-final-cta h2 {
    font-size: var(--df-font-size-3xl);
    color: var(--df-white);
    margin: 0 0 0.75rem 0;
}

@media (min-width: 768px) {
    .page-city-service .df-final-cta h2 {
        font-size: var(--df-font-size-4xl);
    }
}

.page-city-service .df-final-cta > .df-container > .df-final-cta-content > p {
    font-size: var(--df-font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
}

.page-city-service .df-final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.page-city-service .df-btn-white {
    background: var(--df-white);
    color: var(--cs-primary);
}

.page-city-service .df-btn-white:hover {
    background: var(--df-slate-100);
}

.page-city-service .df-btn-secondary-white {
    background: transparent;
    color: var(--df-white);
    border: 2px solid var(--df-white);
}

.page-city-service .df-btn-secondary-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-city-service .df-final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--df-font-size-sm);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}
.page-city-service .df-category-icon img.emoji {
    width: 25px;
}
/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
    .page-city-service .df-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .page-city-service .df-cta-card {
        position: static;
    }
    
    .page-city-service .df-challenges-grid,
    .page-city-service .df-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-city-service .df-hero-title {
        font-size: var(--df-font-size-3xl);
    }
    
    .page-city-service .df-quick-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .page-city-service .df-zip-grid {
        grid-template-columns: 1fr;
    }
    
    .page-city-service .df-final-cta-buttons {
        flex-direction: column;
    }
    
    .page-city-service .df-final-cta-buttons .df-btn {
        width: 100%;
    }
    
    .page-city-service .df-why-local,
    .page-city-service .df-challenges,
    .page-city-service .df-history,
    .page-city-service .df-services,
    .page-city-service .df-neighborhoods {
        padding: 3rem 0;
    }
}

@media (max-width: 640px) {
    .page-city-service .df-hero {
        padding: 2rem 0 3rem;
    }
    
    .page-city-service .df-content-card {
        padding: 1.5rem;
    }
    
    .page-city-service .df-challenge-card {
        padding: 1.5rem;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .page-city-service .df-cta-card,
    .page-city-service .df-final-cta {
        display: none;
    }
    
    .page-city-service .df-hero {
        background: white;
        padding: 1rem 0;
    }
    
    .page-city-service .df-services,
    .page-city-service .df-challenges {
        background: white;
    }
}


/* ── Section wrapper ── */
.service-finder {
  background: linear-gradient(135deg, var(--df-slate-900) 0%, #0f1f3d 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.service-finder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(9,120,222,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Header ── */
.sf-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.sf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--df-primary);
  background: rgba(9,120,222,0.15);
  border: 1px solid rgba(9,120,222,0.35);
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.sf-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--df-white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.sf-title span { color: var(--df-primary); }
.sf-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Card ── */
.sf-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .sf-card { padding: 1.5rem 1.25rem; }
}

/* ── Form layout ── */
.sf-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}
@media (max-width: 700px) {
  .sf-form { grid-template-columns: 1fr; }
  .sf-field--btn .sf-btn { width: 100%; }
}

/* ── Fields ── */
.sf-field { display: flex; flex-direction: column; gap: 0.5rem; }
.sf-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}
.sf-input,
.sf-select {
  height: 50px;
  padding: 0 1rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--df-radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--df-slate-900);
  background: var(--df-white);
  transition: var(--df-transition);
  width: 100%;
}
.sf-input:focus,
.sf-select:focus {
  outline: none;
  border-color: var(--df-primary);
  box-shadow: 0 0 0 3px rgba(9,120,222,0.2);
}
.sf-input::placeholder { color: var(--df-slate-400); }

/* Select custom arrow */
.sf-select-wrap { position: relative; }
.sf-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}
.sf-select-arrow {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--df-slate-400);
  display: flex;
  align-items: center;
}

/* Button alignment */
.sf-field--btn { justify-content: flex-end; }
.sf-btn { height: 50px; white-space: nowrap; padding-left: 1.75rem; padding-right: 1.75rem; }

/* Feedback */
.sf-feedback { margin-top: 0.75rem; min-height: 1.25rem; }
.sf-feedback .zip-error,
.sf-feedback .zip-loading { font-size: 0.875rem; }

/* ── Trust strip ── */
.sf-trust {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.sf-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.sf-trust-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(9,120,222,0.25);
  color: var(--df-primary);
  font-size: 0.625rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Hero ─────────────────────────────────────────────────── */
.df-legal-hero {
  background: linear-gradient(135deg, var(--df-slate-900) 0%, var(--df-slate-800) 100%);
  padding: 3.5rem 0 3rem;
  border-bottom: 3px solid var(--df-primary);
}
.df-legal-hero .container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.df-legal-badge {
  display: inline-block;
  background: var(--df-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.df-legal-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 .75rem;
  line-height: 1.15;
}
.df-legal-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  font-size: .8rem;
  color: var(--df-slate-400);
}
.df-legal-hero-meta span {
  display: flex;
  align-items: center;
  gap: .35rem;
}
 
/* ── Page wrapper ─────────────────────────────────────────── */
.df-legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
 
/* ── Callout boxes ────────────────────────────────────────── */
.df-legal-callout {
  background: var(--df-slate-50);
  border: 1px solid var(--df-slate-200);
  border-left: 4px solid var(--df-primary);
  border-radius: var(--df-radius-sm);
  padding: 1rem 1.25rem;
  font-size: .875rem;
  color: var(--df-slate-700);
  line-height: 1.65;
  margin: 0 0 2rem;
}
.df-legal-callout strong {
  color: var(--df-slate-900);
  display: block;
  margin-bottom: .2rem;
}
.df-legal-callout--warn {
  background: #fffbeb;
  border-color: #fcd34d;
  border-left-color: #d97706;
}
.df-legal-callout--warn strong {
  color: #92400e;
}
 
/* ── Table of contents ────────────────────────────────────── */
.df-legal-toc {
  background: var(--df-slate-50);
  border: 1px solid var(--df-slate-200);
  border-left: 4px solid var(--df-primary);
  border-radius: var(--df-radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.df-legal-toc__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--df-slate-500);
  margin: 0 0 .75rem;
}
.df-legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem .5rem;
}
.df-legal-toc ol li {
  font-size: .85rem;
}
.df-legal-toc ol li a {
  color: var(--df-primary);
  text-decoration: none;
  font-weight: 500;
}
.df-legal-toc ol li a:hover {
  text-decoration: underline;
}
 
/* ── Section body typography ──────────────────────────────── */
.df-legal-body section {
  margin-bottom: 2.75rem;
  scroll-margin-top: 5rem; /* offset for sticky headers */
}
.df-legal-body h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--df-slate-900);
  margin: 0 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--df-slate-200);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.df-legal-body h2 .sec-num {
  background: var(--df-primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  border-radius: 50%;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.df-legal-body p {
  color: var(--df-slate-700);
  font-size: .95rem;
  line-height: 1.75;
  margin: 0 0 .9rem;
}
.df-legal-body ul,
.df-legal-body ol.content-list {
  color: var(--df-slate-700);
  font-size: .95rem;
  line-height: 1.75;
  margin: 0 0 .9rem;
  padding-left: 1.4rem;
}
.df-legal-body li {
  margin-bottom: .35rem;
}
.df-legal-body strong {
  color: var(--df-slate-800);
}
.df-legal-body a {
  color: var(--df-primary);
}
.df-legal-body a:hover {
  text-decoration: underline;
}
 
/* ── Inline section callout (used inside body) ────────────── */
.df-legal-body .df-legal-callout {
  margin: .75rem 0 1.25rem;
}
 
/* ── Contact card ─────────────────────────────────────────── */
.df-legal-contact-card {
  background: var(--df-slate-900);
  color: var(--df-slate-200);
  border-radius: var(--df-radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 3rem;
}
.df-legal-contact-card h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 .5rem;
}
.df-legal-contact-card p {
  font-size: .875rem;
  margin: .25rem 0;
  color: var(--df-slate-300);
}
.df-legal-contact-card p.df-legal-contact-card__note {
  margin-top: .75rem;
  font-size: .8rem;
  color: var(--df-slate-400);
}
.df-legal-contact-card a {
  color: var(--df-primary);
}
 
/* ── Cross-links (Terms → Privacy → Disclaimer) ───────────── */
.df-related-legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.df-related-legal a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--df-slate-50);
  border: 1px solid var(--df-slate-200);
  border-radius: var(--df-radius-md);
  text-decoration: none;
  color: var(--df-slate-700);
  font-size: .9rem;
  font-weight: 600;
  transition: var(--df-transition);
}
.df-related-legal a:hover {
  border-color: var(--df-primary);
  color: var(--df-primary);
  background: var(--df-primary-light);
}
.df-related-legal a span {
  font-size: 1.25rem;
}
.df-legal-contact-card strong {
    color: #fff;
}
 
/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .df-legal-toc ol {
    grid-template-columns: 1fr;
  }
  .df-related-legal {
    grid-template-columns: 1fr;
  }
  .df-legal-contact-card {
    padding: 1.25rem 1.25rem;
  }
}