:root {
  --brand-ink: #0f172a; /* Primary text */
  --brand-bg: #ffffff; /* Page background */
  --brand-teal: #20A39E; /* Teal from logo */
  --brand-accent: #20A39E; /* Teal for consistency */
  --brand-accent-2: #3BB4AF; /* Lighter teal for hovers */
  --brand-yellow: #F4C430; /* Yellow from header */
  --emergency-red: #ff6b9d; /* CTA color - softer for kids */
  --trust-green: #059669; /* Trust indicators */
  --muted: #fef9f3; /* Section alt bg - soft beige tint */
  --border: #f4e6d4; /* Borders/dividers - light beige */
  --ink-2: #334155;
  --success: #059669;
  --danger: #dc2626;
  --gold: #ffd700;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(32, 163, 158, 0.12);
  --shadow-gold: 0 0 40px rgba(255, 215, 0, 0.3);
}

* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 100px; /* Account for sticky header */
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--ink-2);
  background: var(--brand-bg);
  line-height: 1.6;
  padding-bottom: 0; /* Will be set dynamically by JS */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--brand-ink);
  text-decoration: none;
}
a:hover {
  opacity: 0.9;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}
.center {
  text-align: center;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #f4c430, #e8b830);
  border-bottom: 2px solid #d4a520;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}
.brand-logo {
  height: 45px;
  width: auto;
  display: block;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-cta .phone {
  font-weight: 600;
  color: #0f172a;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-weight: 600;
  border: 1px solid var(--brand-ink) / 10;
  transition: 0.2s;
}
.btn-lg {
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
}
.btn-primary {
  background: linear-gradient(135deg, #20A39E, #3BB4AF);
  color: #fff;
  border-color: #20A39E;
  box-shadow: 0 4px 15px rgba(32, 163, 158, 0.3);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(32, 163, 158, 0.4);
  transform: translateY(-2px);
}
.btn-outline {
  border: 3px solid white;
  color: white;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  font-weight: 700;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.4);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.btn-full {
  width: 100%;
}

.hero {
  padding: clamp(48px, 6vw, 80px) 0;
  background: linear-gradient(rgba(32, 163, 158, 0.85), rgba(32, 163, 158, 0.75)), 
              url('assets/hero.jpg') center/cover;
  position: relative;
  color: white;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  max-width: 800px;
}
.hero-media {
  display: none;
}
.hero-copy h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  color: white;
  margin: 0.1em 0 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 28px);
  color: white;
  margin: 0 0 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.cta-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  align-items: center;
}
.subhead {
  font-size: 1.05rem;
  color: white;
  max-width: 58ch;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1rem 0 1.25rem;
  padding: 0;
}
.trust-inline li {
  list-style: none;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--brand-ink);
}
.note {
  font-size: 0.9rem;
  color: white;
  margin-top: 0.75rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.section {
  padding: clamp(60px, 6vw, 80px) 0;
}
.section.muted {
  background: var(--muted);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.muted-text {
  color: #6b7280;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin: 0 0 0.25rem;
}
.checklist {
  padding-left: 1.25rem;
}
.checklist li {
  margin: 0.4rem 0;
}
.split h2 {
  margin-top: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #20A39E, #3BB4AF);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0 30px 0;
}
.gallery img {
  border-radius: 10px;
  border: 1px solid var(--border);
  aspect-ratio: 1/1;
  object-fit: cover;
}

.testimonials {
  position: relative;
  isolation: isolate;
}
.testimonial {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.testimonial.is-active {
  display: block;
}
.testimonial blockquote {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--brand-ink);
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-section {
  background: linear-gradient(180deg, #fef9f3, #fff);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.form-copy h2 {
  margin-top: 0;
}
.contact-quick {
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.3rem;
}
.contact-quick li {
  list-style: none;
}
.lead-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.field {
  margin-bottom: 14px;
}
label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  font-size: 1rem;
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--brand-accent-2);
  border-color: var(--brand-accent);
}
.form-disclaimer,
.fineprint {
  color: #6b7280;
  font-size: 0.85rem;
  margin: 0.6rem 0 0;
}

/* Button Loading State */
.btn-spinner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
#submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Thank You Section */
.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: successPop 0.6s ease-out;
}
@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}
.success-message {
  font-size: 1.2rem;
  color: var(--trust-green);
  margin: 1rem 0;
}
.next-steps {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  text-align: left;
}
.next-steps h3 {
  margin-top: 0;
  color: var(--brand-accent);
}
.next-steps ol {
  margin: 1rem 0 0;
  padding-left: 1.5rem;
}
.next-steps li {
  margin: 0.75rem 0;
  font-size: 1.05rem;
}
.urgent-contact {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fef9f3, #fff);
  border-radius: var(--radius);
}
.social-connect {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--brand-accent);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s;
}
.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Confetti Animation */
.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--brand-accent);
  position: absolute;
  animation: confetti-fall 3s linear forwards;
  z-index: 9999;
}
@keyframes confetti-fall {
  to {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.map-placeholder {
  width: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.map-placeholder iframe {
  border: 0;
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 14px;
}

.site-footer {
  background: #0b0f1a;
  color: #e5e7eb;
  padding: 28px 0;
}
.site-footer.minimal {
  padding: 20px 0;
  text-align: center;
}
.footer-minimal p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.9rem;
}
.footer-minimal a {
  color: #d1d5db;
  text-decoration: underline;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 24px;
}
.footer-copy {
  color: #cbd5e1;
}
.site-footer a {
  color: #e8dcc7;
}
.social {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0.5rem 0 0;
}
.social li {
  list-style: none;
}
.phone {
  font-weight: 700;
  color: #0f172a;
}

/* Catchy Animations and Effects */
.badge-urgent {
  display: inline-block;
  background: linear-gradient(135deg, #20A39E, #3BB4AF);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: emergencyFlash 1.5s infinite;
  box-shadow: 0 4px 20px rgba(32, 163, 158, 0.3);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

@keyframes emergencyFlash {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

@keyframes emergencyPulse {
  0% {
    box-shadow: 0 4px 15px rgba(32, 163, 158, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(32, 163, 158, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px rgba(32, 163, 158, 0.3);
  }
}

/* Urgency Popup Styles */
.urgency-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  border: 2px solid var(--emergency-red);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 1000;
  max-width: 320px;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.popup-content h3 {
  margin-top: 0;
  color: var(--emergency-red);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.popup-close:hover {
  color: var(--emergency-red);
}

/* Exit Intent Popup */
.exit-intent-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
}

.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}

.exit-popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: exitSlideDown 0.5s ease-out;
}

@keyframes exitSlideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.exit-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.exit-popup-close:hover {
  color: var(--emergency-red);
}

.exit-popup-content h2 {
  color: var(--emergency-red);
  margin-bottom: 1rem;
}

.exit-offer {
  font-size: 1.3rem;
  color: var(--brand-ink);
  margin: 0.5rem 0;
}

.exit-cta-group {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exit-no-thanks {
  font-size: 0.9rem;
  opacity: 1;
  border: 2px solid var(--brand-ink) !important;
  color: var(--brand-ink) !important;
  background: white !important;
}
.exit-no-thanks:hover {
  background: var(--brand-ink) !important;
  color: white !important;
}

.pulse {
  animation: emergencyPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  font-weight: 700;
}

.countdown {
  color: var(--emergency-red);
  font-weight: 700;
  font-size: 1.1em;
  font-family: 'Courier New', monospace;
  background: linear-gradient(90deg, var(--emergency-red), #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes pulse-shadow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(26, 26, 46, 0.6);
  }
}

.countdown {
  color: #dc2626;
  font-weight: 700;
  font-size: 1.1em;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Floating CTA Bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e, #0f172a);
  padding: 0.75rem;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
  z-index: 998;
  transform: translateY(100%);
  animation: slideUp 1s ease-out 3s forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

/* Prevent CTA from covering content on scroll */
@media (prefers-reduced-motion: reduce) {
  .sticky-cta {
    animation: none;
    transform: translateY(0);
  }
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sticky-cta-text {
  color: white;
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 1rem);
  flex: 1 1 auto;
  min-width: 200px;
}

.sticky-cta .btn {
  background: var(--gold);
  color: #0f172a;
  border: none;
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1rem);
  padding: 0.6rem 1rem;
  white-space: nowrap;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid var(--trust-green);
  border-radius: 999px;
  font-weight: 600;
  color: var(--trust-green);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
  transition: transform 0.2s ease;
}
.trust-badge:hover {
  transform: translateY(-2px);
}

.rating-stars {
  color: var(--gold);
  font-size: 1.2rem;
}

/* Enhanced testimonials with ratings */
.testimonial-card {
  background: white;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--gold);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #20A39E, #F4C430);
}

/* Price transparency */
.price-banner {
  background: linear-gradient(135deg, #fff8dc, #f4e6d4);
  color: #0f172a;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin: 2rem 0;
  box-shadow: 0 10px 40px rgba(32, 163, 158, 0.2);
  border: 2px solid #f4e6d4;
}

.price-banner h3 {
  font-size: 2rem;
  margin: 0;
}

.price-strike {
  text-decoration: line-through;
  color: #6b7280;
  font-size: 1.2rem;
}

.price-now {
  font-size: 2rem;
  font-weight: 700;
  color: #20A39E;
}

/* Success stories carousel */
.success-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.success-slide {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fff, #faf8f5);
}

/* Hover effects */
.btn:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* Mobile-specific responsive styles */
@media (max-width: 768px) {
  .sticky-cta {
    padding: 0.5rem;
  }

  .sticky-cta-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .sticky-cta-text {
    width: 100%;
    font-size: 0.85rem;
  }

  .sticky-cta .btn {
    width: 100%;
    max-width: 280px;
    font-size: 0.9rem;
  }

  .cta-row {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .hero-subtitle {
    font-size: clamp(16px, 4vw, 22px);
  }

  .badge-urgent {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .trust-inline {
    flex-direction: column;
    gap: 0.5rem;
  }

  .trust-inline li {
    width: 100%;
    text-align: center;
  }

  .btn-lg {
    padding: 0.9rem 1.1rem;
    font-size: 1rem;
  }

  .section {
    padding: 32px 0;
  }

  /* Fix form on mobile */
  .lead-form {
    padding: 15px;
  }

  /* Popup adjustments */
  .urgency-popup {
    left: 10px !important;
    right: 10px !important;
    bottom: 80px !important;
    max-width: none !important;
  }
}

/* Small mobile screens (iPhone SE, etc.) */
@media (max-width: 480px) {
  .container {
    width: 95vw;
  }

  .hero-copy h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }

  .subhead {
    font-size: 0.95rem;
  }

  .sticky-cta {
    animation-delay: 5s; /* Give more time to read on mobile */
  }

  .price-banner {
    padding: 1.5rem 1rem;
  }

  .price-now {
    font-size: 2rem;
  }

  /* Stack testimonials vertically */
  .testimonial-card {
    margin-bottom: 1rem;
  }

  /* Ensure map is visible on mobile */
  .map-placeholder {
    min-height: 300px !important;
  }

  .map-placeholder iframe {
    height: 300px !important;
    width: 100% !important;
  }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .sticky-cta-inner {
    flex-direction: row;
  }

  .sticky-cta .btn {
    width: auto;
  }

  .hero {
    padding: 24px 0;
  }
}

/* Tablet and larger mobile responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .split-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-cards {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .location {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
