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

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
  padding: 60px 0 80px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.availability-badge {
  display: inline-block;
  background-color: rgba(220, 38, 38, 0.15);
  color: #dc2626;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(220, 38, 38, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.headline {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.subheadline {
  font-size: clamp(16px, 3vw, 19px);
  color: #b3b3b3;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
}

.call-button {
  display: inline-block;
  background-color: #dc2626;
  color: #ffffff;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: background-color 0.2s;
  min-height: 64px;
  line-height: 1.2;
}

.call-button:hover {
  background-color: #b91c1c;
}

.call-button:active {
  background-color: #991b1b;
}

.call-button-large {
  font-size: clamp(22px, 4.5vw, 28px);
  padding: 24px 48px;
  min-height: 72px;
}

.cta-note {
  font-size: 14px;
  color: #808080;
  font-weight: 500;
}

.service-areas {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.areas-label {
  font-size: 12px;
  color: #808080;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.areas-list {
  font-size: clamp(16px, 2.5vw, 18px);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.8;
}

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

.services {
  padding: 80px 0;
  background-color: #141414;
}

.section-title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
}

.service-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.service-list li {
  font-size: clamp(16px, 2.5vw, 18px);
  color: #b3b3b3;
  padding: 16px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.6;
}

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

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
  font-size: 20px;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */

.benefits {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px 24px;
  text-align: center;
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.benefit-text {
  font-size: 15px;
  color: #b3b3b3;
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
  padding: 80px 0;
  background-color: #141414;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px 24px;
}

.testimonial-text {
  font-size: 16px;
  color: #b3b3b3;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 14px;
  color: #808080;
  font-weight: 600;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-headline {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.cta-subheadline {
  font-size: clamp(16px, 3vw, 19px);
  color: #b3b3b3;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.footer {
  padding: 60px 0 30px;
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 12px;
}

.footer-text {
  font-size: 14px;
  color: #808080;
  line-height: 1.6;
}

.footer-contact {
  text-align: right;
}

.footer-phone-label {
  font-size: 12px;
  color: #808080;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-phone {
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-phone a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.footer-phone a:hover {
  color: #b91c1c;
}

.footer-areas {
  font-size: 14px;
  color: #808080;
  line-height: 1.6;
}

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

.footer-bottom p {
  font-size: 13px;
  color: #666666;
}

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

@media (max-width: 768px) {
  .hero {
    padding: 50px 0 70px;
  }

  .services,
  .benefits,
  .testimonials,
  .final-cta {
    padding: 60px 0;
  }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

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

  .call-button {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0 60px;
  }

  .services,
  .benefits,
  .testimonials,
  .final-cta {
    padding: 50px 0;
  }

  .benefit-item,
  .testimonial-item {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   TOUCH TARGET OPTIMIZATION
   ========================================================================== */

@media (pointer: coarse) {
  .call-button {
    min-height: 64px;
  }
}


/* Footer email styling */
.footer-email {
  margin-bottom: 10px;
}

.footer-email a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 14px;
}

.footer-email a:hover {
  color: #ffffff;
}
