/* ==========================================================================
   Cleaanzo — Home Services Landing Page
   Design tokens, layout, and component styles
   ========================================================================== */

:root {
  --brand: #17a673;
  --brand-dark: #128a5f;
  --brand-light: #e8f7f0;
  --accent: #4f46e5;
  --accent-light: #eef2ff;
  --ink: #16211d;
  --muted: #5f6b68;
  --bg-soft: #f6f8f7;
  --border-soft: #e6ebe9;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px rgba(23, 33, 29, 0.08);
  --shadow-hover: 0 16px 40px rgba(23, 166, 115, 0.18);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
}

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

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

.section-padding {
  padding: 90px 0;
}

.bg-soft {
  background: var(--bg-soft);
}

.section-eyebrow {
  display: inline-block;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.section-text {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  font-family: var(--font-body);
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

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

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom-color: var(--border-soft);
}

#mainNav {
  padding: 16px 0;
  transition: padding 0.3s ease;
}

.site-header.scrolled #mainNav {
  padding: 10px 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  flex-shrink: 0;
  display: block;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--ink);
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand);
}

.navbar-toggler {
  border: none;
  color: var(--brand);
  font-size: 1.4rem;
  box-shadow: none !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  padding: 40px 0 40px;
  background: linear-gradient(180deg, var(--brand-light) 0%, #ffffff 65%);
  position: relative;
}

/* Hero layout: a single CSS Grid whose named areas are reordered per
   breakpoint. Mobile stacks badge > headline > image > pills > cta > text
   (matches a native-app-style hero); desktop restores the classic
   text-left / image-right two-column layout. */
.hero-grid {
  display: grid;
  grid-template-areas:
    "badge"
    "headline"
    "image"
    "pills"
    "cta"
    "text";
  row-gap: 18px;
  text-align: center;
  justify-items: center;
}

.hero-area-badge { grid-area: badge; }
.hero-area-headline { grid-area: headline; }
.hero-area-image { grid-area: image; width: 100%; }
.hero-area-pills { grid-area: pills; }
.hero-area-cta { grid-area: cta; }
.hero-area-text { grid-area: text; }

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "badge   image"
      "headline image"
      "text    image"
      "cta     image"
      "pills   image";
    align-items: center;
    column-gap: 48px;
    row-gap: 16px;
    text-align: left;
    justify-items: start;
  }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-soft);
  color: var(--brand-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.15;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
}

/* Trust pills (mobile-style dark rounded badges) */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-pills {
    justify-content: flex-start;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-pill i {
  color: var(--brand);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-cta {
    justify-content: flex-start;
    width: auto;
  }
}

.hero-image-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .hero-image-wrap {
    max-width: none;
    margin: 0;
  }
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Rating chip overlay (top-right corner of the hero image) */
.rating-chip {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.rating-chip i {
  color: #f5a623;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  animation: floatY 3.5s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.4rem;
  color: var(--brand);
}

.floating-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
}

.floating-card p {
  margin: 0 0 6px;
  color: var(--muted);
}

.progress-track {
  width: 130px;
  height: 4px;
  border-radius: 2px;
  background: var(--border-soft);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 65%;
  height: 100%;
  background: var(--brand);
  border-radius: 2px;
}

/* Mobile: cards sit inside the image bounds, app-style */
.floating-card-1 {
  left: 14px;
  right: 14px;
  bottom: 14px;
}

@media (min-width: 992px) {
  .floating-card-1 {
    top: 12%;
    left: -6%;
    right: auto;
    bottom: auto;
  }

  .floating-card-2 {
    bottom: 8%;
    right: -6%;
    animation-delay: 1.2s;
  }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* App Download Promo (replaces the on-site booking form — booking happens in the app) */
.app-promo-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  margin-top: 50px;
  border: 1px solid var(--border-soft);
}

.app-promo-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.app-promo-content {
  flex: 1;
  min-width: 240px;
}

.app-promo-content h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.app-promo-content p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.play-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-store-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: #fff;
}

.play-store-badge i {
  font-size: 1.8rem;
}

.play-store-badge small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  opacity: 0.85;
}

.play-store-badge strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}

/* City Coverage Cards */
.city-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.city-card:hover {
  transform: translateY(-4px);
}

.city-card i {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.city-card h5 {
  margin: 0 0 2px;
  font-size: 1.05rem;
}

.city-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.form-control,
.form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  padding: 10px 14px;
  font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(23, 166, 115, 0.15);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats-section {
  padding: 50px 0;
  background: var(--ink);
}

.stat-card {
  color: #fff;
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--brand);
  margin-bottom: 12px;
}

.stat-card h3 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 500;
}

.about-list i {
  color: var(--brand);
  margin-top: 4px;
}

/* ==========================================================================
   How It Works
   ========================================================================== */

.how-it-works {
  position: relative;
}

.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  height: 100%;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--brand-light);
}

.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.step-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.service-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: background 0.25s ease, color 0.25s ease;
}

.service-card:hover .service-icon {
  background: var(--brand);
  color: #fff;
}

.service-card h5 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.service-link {
  font-weight: 600;
  color: var(--brand);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 10px;
  color: var(--brand-dark);
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */

.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.why-card h5 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.why-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ==========================================================================
   Founders Section
   ========================================================================== */

.founder-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.founder-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 4px solid var(--brand-light);
}

.founder-card h5 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.founder-role {
  display: block;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.founder-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.founder-social {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.founder-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.founder-social a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-soft);
  text-align: left;
  border: 1px solid var(--border-soft);
}

.quote-icon {
  font-size: 1.6rem;
  color: var(--brand-light);
  display: block;
  margin-bottom: 14px;
}

.testimonial-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.stars {
  color: #f5a623;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-card p {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
}

.testimonial-meta h6 {
  margin-bottom: 2px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-icon {
  color: var(--brand);
  font-size: 0.8rem;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.86rem;
}

.testimonial-indicators {
  position: static;
  margin-top: 24px;
}

.testimonial-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-soft);
  opacity: 1;
}

.testimonial-indicators .active {
  background: var(--brand);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 1;
}

.carousel-nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: 80px 0;
  color: #fff;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-section .btn-outline-light {
  border-width: 2px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-info-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 34px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item i {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.contact-info-item h6 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-info-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.94rem;
}

.contact-info-item a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.contact-info-item a:hover {
  color: var(--brand);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 24px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 0.92rem;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--brand);
  transform: translateY(-3px);
}

.footer-heading {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}

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

.footer-links li {
  margin-bottom: 12px;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.footer-links-inline li {
  margin-bottom: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand);
}

.site-footer hr {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 30px 0 20px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--brand);
}

/* ==========================================================================
   Floating Buttons
   ========================================================================== */

.floating-btn {
  position: fixed;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: var(--shadow-soft);
  z-index: 1040;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: #fff;
}

.whatsapp-btn {
  background: #25d366;
  bottom: 24px;
}

.call-btn {
  background: var(--accent);
  bottom: 90px;
}

.playstore-btn {
  background: #000000;
  bottom: 156px;
}

.back-to-top {
  background: var(--brand-dark);
  bottom: 222px;
  opacity: 0;
  visibility: hidden;
}

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

/* On desktop the call and Play Store buttons are hidden (d-lg-none),
   so back-to-top can sit directly above the WhatsApp button */
@media (min-width: 992px) {
  .back-to-top {
    bottom: 90px;
  }
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }

  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 12px;
    box-shadow: var(--shadow-soft);
  }

  .app-promo-wrap {
    margin-top: 30px;
    text-align: center;
    justify-content: center;
  }
}

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

  .step-card,
  .why-card,
  .service-card,
  .testimonial-card {
    padding: 26px 20px;
  }

  .contact-form,
  .contact-info-card {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-cta .btn-brand {
    box-shadow: 0 14px 30px rgba(23, 166, 115, 0.35);
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }
}
