/* ========================================
   WasteQuoter - Construction Porta Potty Landing Page
   Mobile-First Responsive Design
   ======================================== */

/* CSS Variables */
:root {
  --primary-color: #FF6B35;
  --primary-dark: #E85A2A;
  --secondary-color: #004E89;
  --secondary-dark: #003A65;
  --accent-color: #00C9A7;
  --logo-blue: #003D6D; /* WasteQuoter logo blue */
  --text-dark: #1A1A1A;
  --text-light: #666666;
  --text-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border-color: #E0E0E0;
  --border-radius: 8px;
  --box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  --box-shadow-lg: 0 4px 24px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   HEADER NAVIGATION
   ======================================== */

.site-header {
  background: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.header-logo {
  display: block;
}

.header-logo .logo-image {
  max-width: 180px;
  height: auto;
  display: block;
}

.header-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

/* ========================================
   HERO SECTION - MOBILE
   ======================================== */

.hero-mobile {
  display: block;
  padding: 32px 16px;
  background: linear-gradient(rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80)), url('https://www.genspark.ai/api/files/s/dI3jKzGp') center/cover no-repeat;
  color: var(--text-white);
  text-align: center;
}

.hero-mobile .hero-headline,
.hero-mobile .hero-subhead,
.hero-mobile .trust-text {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Logo Styling */
.hero-logo {
  margin-bottom: 24px;
  text-align: center;
}

.logo-image {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.hero-desktop {
  display: none;
}

.hero-headline {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.location-dynamic {
  color: var(--primary-color);
  font-weight: 800;
  display: block;
}

.hero-subhead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 0.95;
  text-align: center;
}

.highlight {
  font-weight: 600;
  color: var(--accent-color);
}

/* Primary CTA - Click-to-Call */
.cta-phone-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--primary-color);
  color: var(--text-white);
  border-radius: var(--border-radius);
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--box-shadow);
  margin: 24px 0;
  transition: var(--transition);
}

.cta-phone-primary:active {
  transform: scale(0.98);
}

.cta-phone-primary:hover {
  background: var(--primary-dark);
}

.phone-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  stroke: var(--text-white);
}

.cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-main {
  font-size: 20px;
  font-weight: 700;
}

.cta-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-white);
  opacity: 0.9;
}
  margin-top: 2px;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
  font-size: 13px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 100px;
}

.trust-icon {
  font-size: 20px;
}

.trust-text {
  font-weight: 500;
  text-align: center;
}

/* Secondary CTA */
.cta-divider {
  margin: 20px 0;
  font-size: 14px;
  opacity: 0.85;
}

.cta-form-trigger {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
  border-radius: var(--border-radius);
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
}

.cta-form-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   SOCIAL PROOF SECTION
   ======================================== */

.social-proof {
  padding: 48px 16px;
  background: var(--bg-light);
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.testimonial-header {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.testimonial-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header strong {
  font-size: 16px;
  display: block;
}

.role {
  font-size: 13px;
  color: var(--text-light);
}

.stars {
  color: #FFB800;
  font-size: 16px;
  white-space: nowrap;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

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

.services-section {
  padding: 48px 16px;
  background: var(--bg-white);
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.unit-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.unit-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--box-shadow-lg);
  transform: translateY(-4px);
}

.unit-card.featured {
  border-color: var(--primary-color);
  border-width: 3px;
}

.badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-color);
  color: var(--text-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.unit-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 16px;
}

.unit-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.unit-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.unit-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
  font-size: 14px;
}

.unit-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.unit-features li:last-child {
  border-bottom: none;
}

.btn-quote {
  width: 100%;
  padding: 14px 24px;
  background: var(--secondary-color);
  color: var(--text-white);
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-quote:hover {
  background: var(--secondary-dark);
}

/* Service Plans */
.service-plans {
  margin-top: 48px;
}

.service-plans h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.plan-card {
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
}

.plan-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.plan-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* ========================================
   FORM SECTION
   ======================================== */

.form-section {
  padding: 48px 16px;
  background: var(--bg-light);
}

.form-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-subhead {
  font-size: 15px;
  color: var(--text-light);
}

.form-wrapper {
  background: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: slideIn 0.3s ease-in-out;
}

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

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--secondary-color);
}

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

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

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group input.error,
.form-group select.error {
  border-color: #DC3545;
}

.field-hint {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
}

/* Radio Button Group */
.radio-button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.radio-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
  background: var(--bg-white);
  font-size: 14px;
  font-weight: 600;
}

.radio-card input[type="radio"]:checked + .radio-label {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
}

.radio-label .icon {
  font-size: 28px;
}

/* Checkbox Group */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Form Buttons */
.btn-next,
.btn-submit,
.btn-back {
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  font-size: 17px;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-next {
  background: var(--secondary-color);
  color: var(--text-white);
}

.btn-next:hover {
  background: var(--secondary-dark);
}

.btn-submit {
  background: var(--primary-color);
  color: var(--text-white);
}

.btn-submit:hover {
  background: var(--primary-dark);
}

.btn-submit:disabled {
  background: var(--text-light);
  cursor: not-allowed;
}

.btn-back {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-back:hover {
  background: var(--bg-light);
}

.form-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

.form-disclaimer a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Form Sidebar */
.form-sidebar {
  display: none;
}

/* ========================================
   COVERAGE SECTION
   ======================================== */

.coverage-section {
  padding: 48px 16px;
  background: var(--bg-white);
}

.coverage-intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.coverage-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.city-list {
  list-style: none;
}

.city-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-dark);
}

.coverage-map {
  margin-top: 40px;
  text-align: center;
}

.coverage-map img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto 16px;
  border-radius: var(--border-radius);
}

.map-caption {
  font-size: 14px;
  color: var(--text-light);
}

.map-caption a {
  color: var(--primary-color);
  font-weight: 600;
}

/* ========================================
   WHY SECTION
   ======================================== */

.why-section {
  padding: 48px 16px;
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why-card {
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
}

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

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
  padding: 48px 16px;
  background: var(--bg-white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--bg-light);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer > * {
  padding: 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.faq-answer ul {
  margin-left: 20px;
  margin-bottom: 12px;
}

.faq-answer li {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.faq-answer a {
  color: var(--primary-color);
  font-weight: 600;
}

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

.final-cta-section {
  padding: 64px 16px;
  background: linear-gradient(135deg, rgba(0, 78, 137, 0.9) 0%, rgba(255, 107, 53, 0.9) 100%), url('https://www.genspark.ai/api/files/s/meKm3U5T') center/cover no-repeat;
  color: var(--text-white);
}

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

.cta-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-subtext {
  font-size: 16px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-buttons-final {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-cta-phone,
.btn-cta-form {
  padding: 18px 32px;
  border-radius: var(--border-radius);
  font-size: 18px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-cta-phone {
  background: var(--bg-white);
  color: var(--primary-color);
}

.btn-cta-phone:hover {
  transform: scale(1.02);
}

.btn-cta-form {
  background: var(--accent-color);
  color: var(--text-white);
}

.btn-cta-form:hover {
  background: #00B396;
}

.cta-trust {
  font-size: 14px;
  opacity: 0.9;
}

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

.site-footer {
  padding: 48px 16px 24px;
  background: var(--text-dark);
  color: var(--text-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 12px;
}

.footer-contact {
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--accent-color);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-white);
  opacity: 0.85;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  opacity: 0.75;
}

.footer-bottom a {
  color: var(--accent-color);
}

/* ========================================
   STICKY CALL BUTTON (MOBILE)
   ======================================== */

.sticky-call-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
}

.sticky-call-btn a {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--primary-color);
  color: var(--text-white);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  transition: var(--transition);
  text-align: center;
  border: none;
  border-radius: 0;
}

.sticky-call-btn a svg {
  stroke: var(--text-white);
}

.sticky-call-btn a:active {
  background: var(--primary-dark);
}

/* Show only on mobile */
@media (max-width: 767px) {
  .sticky-call-btn {
    display: block;
  }
}

/* ========================================
   RESPONSIVE - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  /* Hero */
  .hero-mobile {
    display: none;
  }

  .hero-desktop {
    display: block;
    padding: 64px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80)), url('https://www.genspark.ai/api/files/s/dI3jKzGp') center/cover no-repeat;
    color: var(--text-white);
  }

  .hero-desktop .hero-headline,
  .hero-desktop .hero-subhead,
  .hero-desktop .value-props,
  .hero-desktop .trust-stat {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .hero-split {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-left {
    max-width: 800px;
    text-align: center;
  }

  .hero-left .hero-headline {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
  }

  .hero-left .hero-subhead {
    font-size: 18px;
    text-align: center;
    margin-bottom: 28px;
  }

  .value-props {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
    display: inline-block;
  }

  .value-props li {
    font-size: 16px;
    padding: 10px 0;
    font-weight: 500;
  }

  .cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 17px;
    font-weight: 700;
    transition: var(--transition);
  }

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

  .btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
  }

  .btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
  }

  .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
  }

  .trust-bar-desktop {
    display: flex;
    gap: 24px;
    font-size: 14px;
    justify-content: center;
  }

  .trust-stat {
    opacity: 0.95;
  }

  /* Header - Larger logo on desktop */
  .header-logo .logo-image {
    max-width: 220px;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Services */
  .unit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Form */
  .form-container {
    grid-template-columns: 2fr 1fr;
  }

  .form-sidebar {
    display: block;
  }

  .sidebar-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 24px;
  }

  .sidebar-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .benefit-list {
    list-style: none;
  }

  .benefit-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
  }

  .benefit-list .icon {
    color: var(--accent-color);
    font-size: 20px;
    flex-shrink: 0;
  }

  .sidebar-cta {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
  }

  .sidebar-cta h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .btn-phone-secondary {
    display: block;
    padding: 14px 24px;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition);
  }

  .btn-phone-secondary:hover {
    transform: scale(1.02);
  }

  .sidebar-cta p {
    font-size: 13px;
    opacity: 0.9;
  }

  /* Coverage */
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why Section */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Final CTA */
  .cta-buttons-final {
    flex-direction: row;
    justify-content: center;
  }

  .btn-cta-phone,
  .btn-cta-form {
    flex: 0 0 auto;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   RESPONSIVE - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
  /* Hero */
  .hero-desktop {
    padding: 80px 0;
  }

  .hero-left .hero-headline {
    font-size: 48px;
  }

  .hero-left .hero-subhead {
    font-size: 20px;
  }

  /* Services */
  .unit-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Coverage */
  .coverage-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Why Section */
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Hide sticky button on desktop */
  .sticky-call-btn {
    display: none;
  }
}

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

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

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}
