/* ============================================
   CSS Variables & Root Styles
   ============================================ */
:root {
  --color-primary: #d10000;
  --color-primary-dark: #a00000;
  --color-whatsapp: #25D366;
  --color-text: #1a1a1a;
  --color-text-light: #4a4a4a;
  --color-text-muted: #666;
  --color-bg-light: #f8f8f8;
  --color-bg-white: #ffffff;
  --color-bg-dark: #2a2a2a;
  --color-border: #e0e0e0;
  --color-accent: #FFC107;
  
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --max-width: 1200px;
  --header-height: 70px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-white);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  padding-bottom: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-light);
}

strong {
  font-weight: 600;
  color: var(--color-text);
}

ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-light);
}

/* ============================================
   SVG Icons
   ============================================ */
svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-inline {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

/* ============================================
   Layout Containers
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Sticky Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: all 0.3s ease;
  height: var(--header-height);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-text);
  font-weight: 400;
  letter-spacing: -0.3px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
  display: none;
}

.header-phone:hover {
  color: var(--color-primary);
}

/* ============================================
   Main Content
   ============================================ */
main {
  padding-top: var(--header-height);
}

section {
  padding: 70px 0;
}

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

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

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-bg-white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--color-bg-white);
}

/* ============================================
   Emergency Section
   ============================================ */
.section-emergency {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  padding: 80px 0;
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}

.emergency-badge {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-emergency h2 {
  font-size: 42px;
  color: var(--color-text);
  margin-bottom: 32px;
}

.emergency-lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
}

.btn-emergency {
  background: var(--color-primary);
  font-weight: 700;
}

.btn-emergency:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px) scale(1.02);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 48px 0 32px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 12px;
  animation: fadeInUp 0.6s ease-out;
}

.subheading {
  font-size: 20px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-intro {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: var(--color-text);
  font-weight: 500;
}

.hero-image {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  padding: 8px 16px;
  background: rgba(0, 200, 0, 0.08);
  border-radius: 50px;
  border: 1px solid rgba(0, 200, 0, 0.2);
}

.hero-badge::before {
  content: '✓';
  color: #00c800;
  font-weight: 700;
  font-size: 16px;
  margin-right: 6px;
}

/* ============================================
   Story Section
   ============================================ */
.story-section {
  background: var(--color-bg-white);
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border);
}

.story-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.story-content {
  animation: fadeInUp 0.6s ease-out;
}

.story-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--color-text-light);
  text-align: left;
}

.story-highlight {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 32px;
}

.story-image {
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
  background: var(--color-bg-white);
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  animation: fadeInUp 0.6s ease-out backwards;
}

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

.trust-badge img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.trust-badge span {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
  background: var(--color-bg-light);
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 48px 0;
}

.step-card {
  background: var(--color-bg-white);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}

.step-icon {
  font-size: 48px;
  margin: 16px 0;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.step-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: var(--color-text-light);
}

.availability-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  padding: 20px 32px;
  background: var(--color-bg-dark);
  color: white;
  border-radius: 50px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-md);
}

.availability-badge .badge-icon {
  font-size: 28px;
}

.availability-badge .badge-text {
  font-size: 18px;
  color: white;
}

.availability-badge strong {
  color: white;
  font-size: 22px;
}

/* ============================================
   Content Layouts
   ============================================ */
.section-intro {
  text-align: center;
  font-size: 19px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--color-text-light);
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.content-wrapper .content-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.content-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.content-text {
  animation: fadeInUp 0.6s ease-out;
}

.content-image {
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
  position: relative;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: block;
}

.service-list {
  margin: 24px 0;
}

.service-list h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.service-list ul {
  margin-left: 0;
  list-style: none;
}

.service-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 18px;
}

/* ============================================
   Tip Boxes
   ============================================ */
.tip-box {
  background: linear-gradient(135deg, #fff8e1 0%, #fff9e7 100%);
  border-left: 4px solid var(--color-accent);
  padding: 20px;
  border-radius: 8px;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}

.tip-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.tip-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  fill: currentColor;
  stroke: none;
}

.tip-box strong {
  color: var(--color-primary);
  font-size: 17px;
}

.tip-box p {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-light);
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 48px 0;
}

.why-item {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.why-item:hover {
  transform: translateY(-4px);
}

.why-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.why-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-bg-white);
}

.why-item p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.cta-center {
  text-align: center;
  margin-top: 48px;
}

.lead-text {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
  background: var(--color-bg-white);
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 48px 0;
}

.testimonial-card {
  background: var(--color-bg-light);
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.15s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:nth-child(4) { animation-delay: 0.25s; }
.testimonial-card:nth-child(5) { animation-delay: 0.3s; }
.testimonial-card:nth-child(6) { animation-delay: 0.35s; }

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: #FFD700;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-light);
}

.testimonial-author {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0;
  font-weight: 600;
}

.yelp-cta {
  text-align: center;
  margin-top: 48px;
}

.yelp-link {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.yelp-link:hover {
  color: var(--color-primary-dark);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
  background: var(--color-bg-light);
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 48px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--color-bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

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

.faq-item summary {
  padding: 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 28px;
  color: var(--color-primary);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--color-bg-light);
}

.faq-answer {
  padding: 0 24px 24px;
  animation: fadeIn 0.3s ease-out;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-light);
}

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

/* ============================================
   Service Areas
   ============================================ */
.areas-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 40px;
}

.areas-map img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.area-group h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.area-group p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   Final CTA Section
   ============================================ */
.section-cta {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 80px 0;
}

.cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.cta-subtitle {
  font-size: 20px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.phone-large {
  margin: 32px 0;
}

.phone-large a {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-display);
  transition: color 0.3s ease;
  display: inline-block;
}

.phone-large a:hover {
  color: var(--color-primary-dark);
}

.tagline {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-top: 24px;
  font-weight: 500;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  min-height: 44px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--color-primary-dark);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus {
  outline: 3px solid rgba(209, 0, 0, 0.3);
  outline-offset: 2px;
}

.btn-whatsapp {
  background: var(--color-whatsapp);
}

.btn-whatsapp:hover {
  background: #1fb855;
}

.btn-whatsapp:focus {
  outline-color: rgba(37, 211, 102, 0.3);
}

.btn-small {
  padding: 8px 18px;
  font-size: 15px;
  min-height: 38px;
}

.btn-large {
  padding: 14px 32px;
  font-size: 18px;
  min-height: 50px;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}

.btn-group-horizontal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

/* ============================================
   Mobile Sticky Bar
   ============================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
  padding: 12px 20px;
  display: flex;
  gap: 12px;
  z-index: 999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.sticky-bar .btn {
  flex: 1;
  margin: 0;
  padding: 12px;
  min-height: 44px;
  gap: 8px;
  font-size: 16px;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.back-to-top:focus {
  outline: 3px solid rgba(209, 0, 0, 0.3);
  outline-offset: 2px;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: white;
  stroke: none;
}

/* ============================================
   Utility Classes
   ============================================ */
.trust-line {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-top: 16px;
}

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1100;
}

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

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   TABLET STYLES (768px and up)
   ============================================ */
@media (min-width: 768px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 40px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .subheading {
    font-size: 22px;
  }
  
  .hero-intro {
    font-size: 21px;
  }
  
  .story-content p {
    font-size: 19px;
  }
  
  .story-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  
  .story-image img {
    height: 450px;
  }
  
  .trust-badges {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
  }
  
  .trust-badge img {
    width: 100px;
    height: 100px;
  }
  
  /* How It Works */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-about {
    grid-column: 1;
  }
  
  .content-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  
  .content-wrapper .content-image img {
    height: 380px;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .areas-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .btn-group-horizontal {
    flex-direction: row;
    justify-content: center;
  }
  
  .btn-group-horizontal .btn {
    flex: 0 1 auto;
    min-width: 200px;
  }
  
  /* Hide mobile sticky bar on tablet */
  .sticky-bar {
    display: none;
  }
  
  body {
    padding-bottom: 0;
  }
}

/* ============================================
   DESKTOP STYLES (1024px and up)
   ============================================ */
@media (min-width: 1024px) {
  section {
    padding: 100px 0;
  }
  
  h2 {
    font-size: 48px;
  }
  
  /* Header */
  .header-phone {
    display: block;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero-content {
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 56px;
    margin-bottom: 16px;
  }
  
  .hero-intro {
    font-size: 22px;
  }
  
  .hero-badges {
    justify-content: flex-start;
  }
  
  /* Story Section */
  .story-section {
    padding: 80px 0;
  }
  
  .story-wrapper {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }
  
  .story-image img {
    height: 500px;
  }
  
  .story-content p {
    font-size: 19px;
  }
  
  .story-highlight {
    font-size: 22px;
  }
  
  .btn-group {
    flex-direction: row;
    gap: 16px;
  }
  
  .btn-group .btn {
    flex: 1;
    max-width: 220px;
  }
  
  /* Content Layouts */
  .content-split {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  /* Default: text left, image right */
  .content-split .content-text {
    order: 1;
  }
  
  .content-split .content-image {
    order: 2;
  }
  
  /* Image left modifier */
  .content-image-left .content-image {
    order: 1;
  }
  
  .content-image-left .content-text {
    order: 2;
  }
  
  /* Consistent image sizing on desktop */
  .content-image img {
    height: 450px;
  }
  
  /* Why Choose Us */
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .why-item {
    padding: 40px 32px;
  }
  
  /* How It Works */
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .section-emergency h2 {
    font-size: 48px;
  }
  
  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
    width: 100%;
  }
  
  .footer-about {
    grid-column: 1;
  }
  
  /* Service Areas */
  .areas-wrapper {
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
  }
  
  /* CTA Section */
  .cta-box h2 {
    font-size: 52px;
  }
  
  .phone-large a {
    font-size: 56px;
  }
  
  /* Back to top positioning */
  .back-to-top {
    bottom: 40px;
  }
}

/* ============================================
   LARGE DESKTOP STYLES (1280px and up)
   ============================================ */
@media (min-width: 1280px) {
  .container {
    padding: 0 40px;
  }
  
  .hero h1 {
    font-size: 64px;
  }
  
  h2 {
    font-size: 52px;
  }
  
  .hero-intro {
    font-size: 23px;
  }
  
  .story-content p {
    font-size: 20px;
  }
  
  .story-highlight {
    font-size: 23px;
  }
  
  .why-item {
    padding: 48px 36px;
  }
  
  .content-image img {
    height: 500px;
  }
  
  .content-wrapper .content-image img {
    height: 420px;
  }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 24px;
  margin-top: 0;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.footer-col {
  min-width: 0;
  width: 100%;
}

.footer-col h3,
.footer-col h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}

.footer-tagline-top {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-top: 16px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-phone {
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-phone:hover {
  color: var(--color-primary);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--color-whatsapp);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-whatsapp:hover {
  color: #1fb855;
}

.footer-whatsapp svg {
  width: 20px;
  height: 20px;
}

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

.footer-links li {
  margin-bottom: 8px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

.footer-hours {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-hours strong {
  color: white;
  font-size: 18px;
}

.footer-yelp {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  margin-top: 16px;
}

.footer-yelp:hover {
  color: #FFD700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header,
  .sticky-bar,
  .back-to-top,
  .btn-group {
    display: none;
  }
  
  body {
    padding-bottom: 0;
  }
  
  main {
    padding-top: 0;
  }
}

/* ============================================
   WCAG: Visually Hidden (Screen Reader Only)
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   License Display
   ============================================ */
.license-display {
  text-align: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.license-display p {
  margin: 8px 0;
  font-size: 16px;
  color: var(--color-text);
}

.license-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: monospace;
  letter-spacing: 1px;
}

.license-note {
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ============================================
   Callback Form Section
   ============================================ */
.callback-section {
  background: var(--color-bg-light);
  padding: 80px 0;
}

.callback-form {
  max-width: 700px;
  margin: 48px auto 0;
  background: var(--color-bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 16px;
}

.required {
  color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(209, 0, 0, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--color-text-light);
}

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

.form-actions {
  text-align: center;
  margin-top: 32px;
}

.btn-submit {
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 700;
  min-width: 250px;
}

.form-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.phone-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

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

.form-success {
  max-width: 500px;
  margin: 48px auto;
  background: #d4edda;
  border: 2px solid #28a745;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  fill: #28a745;
  margin: 0 auto 16px;
}

.form-success h3 {
  color: #155724;
  margin-bottom: 12px;
}

.form-success p {
  color: #155724;
  margin: 0;
}

/* ============================================
   Footer Legal Links
   ============================================ */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 14px;
}

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

.footer-legal a:hover {
  color: white;
  text-decoration: underline;
}

.footer-legal span {
  color: rgba(255,255,255,0.4);
}

/* ============================================
   WCAG: Enhanced Focus Indicators
   ============================================ */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
.btn:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  background: var(--color-primary);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Responsive: Callback Form
   ============================================ */
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .callback-form {
    padding: 24px;
  }
  
    font-size: 14px;
    gap: 8px;
  }
  
    font-size: 16px;
  }
}

/* ============================================
   Print Styles Enhancement
   ============================================ */
@media print {
  .sticky-bar,
  .back-to-top,
  .btn-group,
  .callback-form,
  .site-header {
    display: none !important;
  }
  
  body {
    padding-bottom: 0;
    padding-top: 0;
  }
  
  main {
    padding-top: 0;
  }
  
  .hero {
    margin-top: 0;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
  
  .footer-legal {
    display: none;
  }
}
