/* Custom Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* CSS Custom Properties & Design Tokens */
:root {
  --color-primary: #0b1329;       /* Deep Slate Blue */
  --color-secondary: #1c2541;     /* Slate Navy */
  --color-accent: #2563eb;        /* Vibrant Royal Blue */
  --color-accent-hover: #1d4ed8;  /* Royal Blue Dark */
  --color-accent-light: #eff6ff;  /* Light Blue tint */
  --color-cta: #eab308;           /* High visibility Yellow-Gold */
  --color-cta-hover: #ca8a04;     /* Darker Yellow-Gold */
  --color-success: #10b981;       /* Emerald Green */
  --color-text-dark: #0f172a;     /* Very Dark Slate */
  --color-text-body: #334155;     /* Mid Slate Gray */
  --color-text-muted: #64748b;    /* Light Slate Gray */
  --color-bg-light: #f8fafc;      /* Off-White */
  --color-bg-white: #ffffff;
  --color-border: #e2e8f0;        /* Cool Gray Border */

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;

  /* Layout */
  --max-width-content: 1200px;
  --max-width-text: 750px;
  --border-radius: 0.75rem;
  --border-radius-lg: 1.25rem;
  --box-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --box-shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 10px 10px -5px rgba(15, 23, 42, 0.04);

  /* Transitions */
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100vw;
}

/* Responsive Media Resets */
img, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-body);
  background-color: var(--color-bg-white);
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.75rem;
}

h2.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

h2.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width-content);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-md);
  padding-left: var(--space-md);
  box-sizing: border-box;
}

.section {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

/* Prevent any child from overflowing horizontally */
section, header, footer, main, article, nav, aside {
  max-width: 100%;
  overflow-x: clip;
}


.bg-light {
  background-color: var(--color-bg-light);
}

.bg-dark {
  background-color: var(--color-primary);
  color: #f8fafc;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: #ffffff;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* Button & CTA Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  border: none;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-cta {
  background-color: var(--color-cta);
  color: var(--color-text-dark);
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 20%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-30deg);
  transition: none;
}

.btn-cta:hover::after {
  left: 150%;
  transition: all 0.7s ease-in-out;
}

.btn-cta:hover {
  background-color: var(--color-cta-hover);
  color: var(--color-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.5);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Header & Navigation */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(11, 19, 41, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #ffffff;
}

.logo-icon {
  color: var(--color-accent);
  font-size: 1.8rem;
}

.logo-highlight {
  color: var(--color-accent);
}

.nav-menu-list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-link {
  color: #cbd5e1;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

/* Burger Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Header CTA & Toggle Rules */
.header-cta {
  display: flex;
  align-items: center;
}

.header-cta .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.mobile-cta-only {
  display: flex !important;
}

.desktop-cta-only {
  display: none !important;
}

@media (min-width: 1024px) {
  .mobile-cta-only {
    display: none !important;
  }
  .desktop-cta-only {
    display: flex !important;
  }
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 6rem 0;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 19, 41, 0.95) 40%, rgba(37, 99, 235, 0.3) 100%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--space-xl);
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: var(--space-sm);
  color: #ffffff;
  line-height: 1.15;
}

.hero-content p.subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: var(--space-lg);
  font-weight: 300;
  max-width: 600px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-badge svg {
  color: var(--color-cta);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 350px;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    max-width: 500px;
  }
  .hero-actions .btn {
    flex: 1;
  }
}

.hero-phone-subtext {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.hero-visual {
  display: none; /* hidden on small mobile */
}

/* Service Cards / Directory */
.services-intro {
  max-width: var(--max-width-text);
  margin: 0 auto var(--space-xl) auto;
}

.card {
  background: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--box-shadow);
  padding: var(--space-lg);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.card-img-wrap {
  position: relative;
  height: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.card-title {
  margin-bottom: var(--space-xs);
  font-size: 1.4rem;
}

.card-body {
  color: var(--color-text-body);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
}

/* Why Choose Us & Guarantees */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.feature-item {
  display: flex;
  gap: var(--space-sm);
}

.feature-icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius);
  background-color: var(--color-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature-content h3 {
  margin-bottom: var(--space-xs);
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Testimonials / Social Proof */
.testimonial-card {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: var(--space-lg);
  border-top: 4px solid var(--color-accent);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text-body);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.testimonial-name h4 {
  font-size: 0.95rem;
}

.testimonial-rating {
  color: var(--color-cta);
  font-size: 0.85rem;
}

/* FAQ Accordions */
.faq-list {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--space-md);
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  color: var(--color-text-body);
  font-size: 0.95rem;
  border-top: 0 solid transparent;
}

.faq-item.active {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--box-shadow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: var(--space-md);
  border-top: 1px solid var(--color-border);
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

.faq-toggle-icon {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-text-muted);
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--color-accent);
}

/* Call-To-Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow-lg);
  max-width: 100%;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: var(--space-xs);
  color: #ffffff;
}

.cta-content p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.cta-action-box {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}

/* Footer */
footer.site-footer {
  background-color: var(--color-primary);
  color: #94a3b8;
  padding: var(--space-xxl) 0 var(--space-lg) 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-xs);
}

.footer-contact-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}

/* Page / Section Header */
.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--color-accent);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: #ffffff;
  margin-bottom: var(--space-sm);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  list-style: none;
  font-size: 0.9rem;
  color: #94a3b8;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumbs a {
  color: #cbd5e1;
  font-weight: 500;
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: #64748b;
  font-weight: 700;
}

/* ===================================================
   SERVICE PAGE HERO — Full-Width Split Image/CTA Hero
   =================================================== */
.service-page-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 460px;
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.service-hero-img-panel {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  order: 2;
}

.service-hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-page-hero:hover .service-hero-img-panel img {
  transform: scale(1.03);
}

.service-hero-img-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,19,41,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.service-hero-content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  position: relative;
  z-index: 2;
  order: 1;
}

.service-hero-content-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37,99,235,0.22) 0%, transparent 60%);
  pointer-events: none;
}

.service-hero-breadcrumbs {
  display: flex;
  list-style: none;
  font-size: 0.9rem;
  color: #94a3b8;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.service-hero-breadcrumbs a {
  color: #cbd5e1;
  font-weight: 500;
  transition: var(--transition-fast);
}

.service-hero-breadcrumbs a:hover { color: #ffffff; }

.service-hero-breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin-left: 0.4rem;
  color: #64748b;
  font-weight: 700;
}

.service-hero-content-panel h1 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}

.service-hero-tagline {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.service-hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-hero-cta-wrap .btn-cta {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.1rem 2rem;
  align-self: flex-start;
  border-radius: var(--border-radius);
  letter-spacing: 0.01em;
}

.service-hero-subtext {
  font-size: 0.85rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-hero-badge {
  background-color: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #e2e8f0;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

@media (min-width: 768px) {
  .service-page-hero {
    grid-template-columns: 46% 54%;
    min-height: 500px;
  }
  .service-hero-content-panel {
    order: 1;
    padding: 3.5rem 2.5rem;
  }
  .service-hero-img-panel {
    order: 2;
    min-height: unset;
  }
  .service-hero-content-panel h1 {
    font-size: 2.5rem;
  }
  .service-hero-tagline {
    font-size: 1.1rem;
  }
  .service-hero-cta-wrap .btn-cta {
    font-size: 1.15rem;
    padding: 1.1rem 2.1rem;
  }
}

@media (min-width: 1024px) {
  .service-page-hero {
    grid-template-columns: 44% 56%;
    min-height: 540px;
  }
  .service-hero-content-panel {
    padding: 4rem 3.5rem;
  }
  .service-hero-content-panel h1 {
    font-size: 2.9rem;
  }
  .service-hero-tagline {
    font-size: 1.15rem;
  }
  .service-hero-cta-wrap .btn-cta {
    font-size: 1.2rem;
    padding: 1.15rem 2.25rem;
  }
}

@media (min-width: 1280px) {
  .service-page-hero {
    min-height: 580px;
  }
  .service-hero-content-panel h1 {
    font-size: 3.2rem;
  }
}

/* Service Page Layout (Sidebar + Content) */
.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.service-main {
  /* Rich typography settings */
}

.service-main img.service-hero-img {
  display: none; /* Image now shown in hero panel above */
}

.service-main h2 {
  font-size: 1.9rem;
  margin: var(--space-xl) 0 var(--space-md) 0;
  color: var(--color-text-dark);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.service-main h2:first-child {
  margin-top: 0;
}

.service-main h3 {
  font-size: 1.3rem;
  margin: var(--space-lg) 0 var(--space-xs) 0;
  color: var(--color-text-dark);
  font-weight: 700;
}

.service-main p {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-body);
}

.service-main ul, .service-main ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
  font-size: 1.1rem;
  line-height: 1.8;
}

.service-main li {
  margin-bottom: 0.6rem;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.sidebar-box {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
}

.sidebar-box.urgent-cta {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #ffffff;
  border: none;
  box-shadow: var(--box-shadow);
}

.sidebar-box.urgent-cta h3 {
  color: #ffffff;
  margin-bottom: var(--space-xs);
}

.sidebar-box.urgent-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.sidebar-box h3 {
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem;
}
/* =============================================
   FAQ Numbered Accordion
   ============================================= */
.faq-list {
  margin-top: var(--space-md);
  border-top: 2px solid var(--color-accent);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  gap: 1rem;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question[aria-expanded="true"] {
  color: var(--color-accent);
}

.faq-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease, background-color 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
  background-color: var(--color-accent);
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-answer.open {
  max-height: 600px;
}

.faq-answer p {
  padding: 0 0.75rem 1.25rem 0.75rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-body);
  margin-bottom: 0;
}

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

.sidebar-menu li {
  margin-bottom: var(--space-xs);
}

.sidebar-menu a {
  display: block;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-dark);
  font-weight: 500;
  transition: var(--transition-fast);
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent);
  color: var(--color-accent);
  padding-left: 0.75rem;
}

/* Blog Layout & Detail */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.blog-post-card {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-post-img {
  height: 220px;
  overflow: hidden;
}

.blog-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-post-card:hover .blog-post-img img {
  transform: scale(1.05);
}

.blog-post-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-post-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-post-title {
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.blog-post-excerpt {
  font-size: 0.95rem;
  color: var(--color-text-body);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.blog-layout {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

.blog-meta-details {
  display: flex;
  gap: var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

/* Contact Page Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-card {
  background-color: var(--color-bg-light);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-card-content p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.contact-card-content a {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-form-box {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--box-shadow);
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
  h1 {
    font-size: 3.2rem;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .hero-visual {
    display: block;
    position: relative;
  }

  .hero-img-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.1);
  }

  .hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cta-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .cta-action-box {
    align-items: flex-end;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .service-layout {
    grid-template-columns: 1.8fr 0.8fr;
  }

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

  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 1023px) {
  header.site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: var(--color-primary);
    transform: translateX(100%);
    transition: transform var(--transition-smooth), visibility var(--transition-smooth);
    visibility: hidden;
    overflow-y: auto;
    z-index: 100;
  }

  .nav-menu-list {
    display: flex;
    flex-direction: column;
    padding: 2.5rem var(--space-lg);
    gap: var(--space-md);
    align-items: center;
    list-style: none;
    width: 100%;
  }

  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
  }

  .btn {
    white-space: normal !important;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
    z-index: 101;
  }

  /* Burger Open Animation */
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .header-cta {
    margin-right: var(--space-sm);
  }
}

/* --- PREMIUM DESIGN UPGRADES --- */

/* Enhanced Card Hover State */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 35px -10px rgba(37, 99, 235, 0.18);
  border-color: var(--color-accent);
}

/* Floating Pulsing Call Widget */
.floating-cta-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-cta) 0%, #d97706 100%);
  color: var(--color-text-dark);
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px -5px rgba(234, 179, 8, 0.6);
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
  animation: pulseCTA 2s infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-cta-widget:hover {
  background: linear-gradient(135deg, #d97706 0%, var(--color-cta-hover) 100%);
  color: var(--color-text-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 30px -5px rgba(234, 179, 8, 0.8);
}

.floating-cta-widget span.phone-icon {
  font-size: 1.2rem;
}

@keyframes pulseCTA {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px -5px rgba(234, 179, 8, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 30px 8px rgba(234, 179, 8, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px -5px rgba(234, 179, 8, 0.6);
  }
}

/* Trust Signals Bar */
.trust-bar {
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
  text-align: center;
}

.trust-badges-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-items: center;
}

@media (max-width: 480px) {
  .trust-badges-container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .logo a {
    font-size: 1.15rem;
  }
  .header-cta .btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
  .service-page-hero {
    min-height: auto;
  }
  .service-hero-content-panel h1 {
    font-size: 1.85rem;
  }
  .service-hero-content-panel {
    padding: 2rem var(--space-sm);
  }
}

@media (min-width: 768px) {
  .trust-badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .trust-badges-container {
    gap: 2.5rem;
  }
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.trust-badge-item:hover {
  color: var(--color-text-dark);
}

.trust-badge-item span.star-rating {
  color: var(--color-cta);
}

.trust-badge-item span.badge-logo {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 800;
}

/* Interactive Neighborhood Guide Styling */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.neighborhood-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  text-align: center;
  transition: var(--transition-smooth);
}

.neighborhood-card:hover {
  border-color: var(--color-accent);
  background-color: var(--color-accent-light);
  transform: translateY(-3px);
}

.neighborhood-card h4 {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.neighborhood-card p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Services Custom Hero Section */
.services-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  padding: 4rem 0;
  position: relative;
  border-bottom: 3px solid var(--color-accent);
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.2) 0%, transparent 60%);
  z-index: 1;
}

.services-hero .container {
  position: relative;
  z-index: 2;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .services-hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.services-hero-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: var(--space-md);
  line-height: 1.25;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.services-hero-content p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.services-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.services-hero-visual img:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--color-accent);
}

