/* ============================================
   CarpetGlow Cleaning — Hero Section Styles
   Brand palette (from logo):
   - Deep Navy:    #0A2540  (primary dark)
   - Rich Teal:    #31C2AF  (primary accent)
   - Aqua Blue:    #1A9EBF  (secondary tone)
   - Green:        #4BC477  (accent only — sparingly)
   - Dark Text:    #0B1D2C
   - Light BG:     #F0F6FA
   - Muted Text:   #6B7280
   - Border:       #E5E7EB
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F0F6FA;
  color: #0B1D2C;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #F0F6FA;
  overflow: hidden;
}

/* ---------- Navigation Bar ---------- */
.hero__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 60px;
  background-color: #ffffff;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(11, 29, 44, 0.06);
}

.hero__logo {
  height: 90px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.hero__nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.hero__nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6B7280;
  transition: color 0.2s ease;
}

.hero__nav-links a:hover {
  color: #31C2AF;
}

.hero__nav-cta {
  background: linear-gradient(135deg, #0A2540, #31C2AF);
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.25);
}

.hero__nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
}

/* ---------- Hero Body ---------- */
.hero__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 60px 60px 60px;
}

/* ---------- Left Content ---------- */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-right: 48px;
  animation: fadeSlideUp 0.75s ease both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 194, 175, 0.1);
  border: 1px solid rgba(49, 194, 175, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  width: fit-content;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #31C2AF);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.hero__badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #31C2AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: #0B1D2C;
  letter-spacing: -0.03em;
}

.hero__headline span {
  background: linear-gradient(135deg, #0A2540 0%, #31C2AF 60%, #1A9EBF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subheadline {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: #6B7280;
  max-width: 440px;
}

/* ---------- Trust Badges (Animated Loop) ---------- */
.hero__trust {
  position: relative;
  height: 32px; /* Fixed height to prevent layout shift */
  display: flex;
  align-items: center;
}

.hero__trust-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0B1D2C;
  opacity: 0;
  visibility: hidden;
  animation: bulletLoop 9s infinite;
  white-space: nowrap;
}

/* Staggered delays for 3 items */
.hero__trust-item:nth-child(1) { animation-delay: 0s; }
.hero__trust-item:nth-child(2) { animation-delay: 3s; }
.hero__trust-item:nth-child(3) { animation-delay: 6s; }

.hero__trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(49, 194, 175, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: #31C2AF;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes bulletLoop {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
  }
  /* Entrance: 0.6s (6.6%) */
  6.6% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  /* Visible: 2.0s (up to 28.8%) */
  28.8% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  /* Exit: 0.4s (up to 33.3%) */
  33.3% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* ---------- CTA Button ---------- */
.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0A2540 0%, #31C2AF 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 6px 24px rgba(10, 37, 64, 0.3);
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(10, 37, 64, 0.4);
  opacity: 0.95;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.hero__phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0B1D2C;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.hero__phone-link:hover {
  color: #31C2AF;
}

.hero__phone-link svg {
  width: 16px;
  height: 16px;
  stroke: #31C2AF;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Availability & Trust Tags ---------- */
.hero__availability {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #334155;
  margin-top: 16px;
  font-weight: 500;
}

.hero__availability svg {
  width: 14px;
  height: 14px;
  stroke: #31C2AF;
  stroke-width: 3;
  fill: none;
}

.hero__trust-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6B7280;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

.hero__trust-stars {
  color: #31C2AF;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero__availability,
  .hero__trust-tag {
    justify-content: center;
  }
}

/* ---------- Right Image ---------- */
.hero__image-wrap {
  position: relative;
  height: 580px;
  animation: fadeSlideRight 0.75s ease 0.15s both;
}

.hero__image-card {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(11, 29, 44, 0.15),
    0 4px 16px rgba(11, 29, 44, 0.08);
  position: relative;
}

.hero__image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Subtle gradient overlay on the image bottom */
.hero__image-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(11, 29, 44, 0.35), transparent);
  border-radius: 0 0 24px 24px;
  pointer-events: none;
}

/* Floating stat card */
.hero__stat-card {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(11, 29, 44, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
  animation: floatCard 3s ease-in-out infinite;
}

.hero__stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0A2540, #31C2AF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0B1D2C;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: #6B7280;
  font-weight: 500;
  margin-top: 2px;
}

/* Floating badge top-right */
.hero__image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 4px 16px rgba(11, 29, 44, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0B1D2C;
}

.hero__image-badge span {
  color: #31C2AF;
  font-size: 1rem;
}

/* ---------- Form Embed Area ---------- */
.hero__form-section {
  background: #ffffff;
  border-top: 1px solid #E5E7EB;
  padding: 80px 60px;
}

.hero__form-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__form-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #0B1D2C;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero__form-text p {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.7;
  max-width: 360px;
}

/* Form embed container — ready for iframe */
.hero__form-embed {
  background: #F5F7FA;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__form-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  display: block;
}

/* Placeholder shown before form is embedded */
.hero__form-placeholder {
  text-align: center;
  color: #6B7280;
  padding: 40px;
}

.hero__form-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: #E5E7EB;
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 16px;
}

.hero__form-placeholder p {
  font-size: 0.9rem;
  color: #6B7280;
}

.hero__form-placeholder code {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: #31C2AF;
  font-family: monospace;
  background: rgba(49, 194, 175, 0.08);
  border-radius: 6px;
  padding: 6px 12px;
}

/* ---------- Animations ---------- */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__nav {
    padding: 18px 32px;
  }

  .hero__body {
    padding: 48px 32px;
  }

  .hero__content {
    padding-right: 24px;
  }

  .hero__image-wrap {
    height: 460px;
  }

  .hero__form-section {
    padding: 60px 32px;
  }
}

@media (max-width: 768px) {
  .hero__nav-links {
    display: none;
  }

  .hero__logo {
    height: 70px;
  }

  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
  }

  .mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: #0A2540;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero__nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .hero__nav-links.active {
    right: 0;
  }

  .hero__nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .hero__nav {
    padding: 12px 20px;
  }

  .hero__body {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 28px;
  }

  .hero__content {
    padding-right: 0;
    text-align: center;
    align-items: center;
    gap: 16px; /* Compressed spacing */
  }

  .hero__headline {
    font-size: 1.7rem;
    margin-bottom: 4px;
  }

  .hero__subline {
    font-size: 0.82rem !important;
    margin-top: -8px !important;
    margin-bottom: 16px !important;
  }

  .hero__subheadline {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 4px;
  }

  .hero__trust {
    width: 100%;
    margin: 0 auto;
  }

  .hero__trust-item {
    justify-content: center;
    font-size: 0.8rem;
  }

  .hero__cta-group {
    justify-content: center;
    gap: 12px;
  }

  .btn-primary {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .hero__phone-link {
    font-size: 0.85rem;
  }

  .hero__trust-label {
    font-size: 11px !important;
    margin-top: 8px !important;
    margin-bottom: 12px !important;
    gap: 4px !important;
  }



  .hero__image-wrap {
    height: 300px;
    width: 100%;
  }

  .hero__image-badge {
    display: none !important; /* Hide 5-star badge on mobile as preferred */
  }

  .hero__stat-card {
    left: auto;
    right: 12px;
    bottom: 12px;
    transform: none;
    min-width: unset;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.3) !important; /* Light transparent background */
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    gap: 6px;
    animation: none; /* Reduce visual weight */
    border: 1px solid rgba(255,255,255,0.2);
  }

  .hero__stat-icon {
    width: 20px;
    height: 20px;
    background: transparent !important;
    border-radius: 4px;
  }

  .hero__stat-icon svg {
    width: 14px;
    height: 14px;
    stroke: #ff4d4d; /* Heart color */
    fill: #ff4d4d;
  }

  .hero__stat-value {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff; /* Contrast on image background */
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }

  .hero__stat-prefix {
    display: none; /* Remove '100%' on mobile */
  }

  .hero__stat-label {
    display: none !important; /* Hide label on mobile */
  }

  .hero__form-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__form-section {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .hero__nav {
    padding: 12px 20px;
  }

  .hero__body {
    padding: 24px 20px;
    gap: 20px;
  }

  .hero__headline {
    font-size: 1.55rem;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
  }

  .hero__image-wrap {
    height: 240px;
  }
}

/* ---------- Trust Badges ---------- */
.trust-badges {
  background-color: #F8FAFC;
  padding: 48px 20px;
  border-bottom: 1px solid #E5E7EB;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(11, 29, 44, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(11, 29, 44, 0.08);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(49, 194, 175, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #31C2AF;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0B1D2C;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .trust-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .trust-badge {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .trust-badges {
    padding: 32px 20px;
  }
}

/* ============================================
   SERVICES SECTION
   Matches hero palette exactly:
   #0A2540 · #31C2AF · #1A9EBF · #F0F6FA
============================================ */

/* ---------- Section Wrapper ---------- */
.services {
  background-color: #ffffff;
  padding: 72px 60px;
  border-top: 1px solid #E5E7EB;
}

/* ---------- Section Header ---------- */
.services__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 194, 175, 0.1);
  border: 1px solid rgba(49, 194, 175, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #31C2AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.services__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #31C2AF);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.services__title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 900;
  color: #0B1D2C;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.services__intro-text {
  font-size: 1rem;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.75;
  margin-bottom: 8px;
}

.services__subheading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #31C2AF;
  margin-top: 4px;
}

.services__subtitle {
  font-size: 0.92rem;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.6;
}



/* ---------- Cards Grid ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- Single Card ---------- */
.services__card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(11, 29, 44, 0.06),
    0 1px 4px rgba(11, 29, 44, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.services__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(11, 29, 44, 0.12),
    0 4px 12px rgba(49, 194, 175, 0.1);
  border-color: rgba(49, 194, 175, 0.35);
}

/* ---------- Card Image ---------- */
.services__card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

/* Real photo fills the wrapper */
.services__card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px 16px 0 0;
  transition: transform 0.4s ease;
}

.services__card:hover .services__card-photo {
  transform: scale(1.04);
}

/* Each card gets a unique gradient tint to differentiate */
.services__card-img--carpet {
  background: linear-gradient(135deg, #E8F5F3 0%, #C8EDE8 40%, #A8DDD6 100%);
}

.services__card-img--upholstery {
  background: linear-gradient(135deg, #E8EFF6 0%, #C8D9EC 40%, #A8C2DC 100%);
}

.services__card-img--mattress {
  background: linear-gradient(135deg, #EDF4F0 0%, #D3E8DC 40%, #B8D4C4 100%);
}

/* Subtle noise/texture overlay */
.services__card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.55) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(49,194,175,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Teal accent top stripe */
.services__card-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0A2540, #31C2AF, #1A9EBF);
  border-radius: 16px 16px 0 0;
}

/* Icon inside placeholder */
.services__card-img-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(11, 29, 44, 0.1);
  color: #31C2AF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services__card:hover .services__card-img-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(49, 194, 175, 0.2);
}

.services__card-img-icon svg {
  width: 40px;
  height: 40px;
  stroke: #31C2AF;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ---------- Card Body ---------- */
.services__card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.services__card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0B1D2C;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.services__card-text {
  font-size: 0.92rem;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.65;
  flex: 1;
}

/* ---------- Card Button ---------- */
.services__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #31C2AF;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, gap 0.2s ease;
  width: fit-content;
}

.services__card-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.services__card-btn:hover {
  color: #0A2540;
  gap: 12px;
}

.services__card-btn:hover svg {
  transform: translateX(4px);
}

/* ---------- Services Responsive ---------- */
@media (max-width: 1024px) {
  .services {
    padding: 72px 32px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 24px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 24px;
  }

  .services__header {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 48px 20px;
  }

  .services__card-body {
    padding: 22px 22px 26px;
  }
}


/* ============================================
   WHY CHOOSE CARPETGLOW SECTION
============================================ */

/* ---------- Section Wrapper ---------- */
.why {
  background-color: #F0F6FA;
  padding: 72px 60px;
  border-top: 1px solid #E5E7EB;
}

/* ---------- Header ---------- */
.why__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 194, 175, 0.1);
  border: 1px solid rgba(49, 194, 175, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #31C2AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.why__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #31C2AF);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.why__title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 900;
  color: #0B1D2C;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* ---------- Grid ---------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- Card ---------- */
.why__card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow:
    0 2px 10px rgba(11, 29, 44, 0.05),
    0 1px 3px rgba(11, 29, 44, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Teal top accent line, appears on hover */
.why__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0A2540, #31C2AF, #1A9EBF);
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why__card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 16px 40px rgba(11, 29, 44, 0.1),
    0 4px 10px rgba(49, 194, 175, 0.08);
  border-color: rgba(49, 194, 175, 0.3);
}

.why__card:hover::before {
  opacity: 1;
}

/* ---------- Icon ---------- */
.why__icon {
  width: 56px;
  height: 56px;
  background: rgba(49, 194, 175, 0.08);
  border: 1px solid rgba(49, 194, 175, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #31C2AF;
  transition: background 0.3s ease, transform 0.3s ease;
}

.why__card:hover .why__icon {
  background: rgba(49, 194, 175, 0.14);
  transform: scale(1.07);
}

.why__icon svg {
  width: 28px;
  height: 28px;
  stroke: #31C2AF;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Text ---------- */
.why__card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0B1D2C;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.why__card-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.7;
}

/* ---------- Why Responsive ---------- */
@media (max-width: 1024px) {
  .why {
    padding: 60px 32px;
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .why {
    padding: 52px 24px;
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .why {
    padding: 44px 20px;
  }

  .why__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .why__card {
    padding: 24px 20px 22px;
  }
}


/* ============================================
   HOW IT WORKS SECTION
============================================ */

/* ---------- Section Wrapper ---------- */
.how {
  background-color: #ffffff;
  padding: 72px 60px;
  border-top: 1px solid #E5E7EB;
}

/* ---------- Header ---------- */
.how__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.how__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 194, 175, 0.1);
  border: 1px solid rgba(49, 194, 175, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #31C2AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.how__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #31C2AF);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.how__title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 900;
  color: #0B1D2C;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.how__subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.65;
}

/* ---------- Grid — 3 cards + 2 connectors ---------- */
.how__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0 16px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- Connector arrows ---------- */
.how__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px; /* align with icon center */
  width: 48px;
  flex-shrink: 0;
  opacity: 0.7;
}

.how__connector svg {
  width: 48px;
  height: 24px;
}

/* ---------- Step Card ---------- */
.how__card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow:
    0 2px 10px rgba(11, 29, 44, 0.05),
    0 1px 3px rgba(11, 29, 44, 0.04);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Teal top stripe on hover */
.how__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0A2540, #31C2AF, #1A9EBF);
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.how__card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 16px 40px rgba(11, 29, 44, 0.1),
    0 4px 10px rgba(49, 194, 175, 0.08);
  border-color: rgba(49, 194, 175, 0.3);
}

.how__card:hover::before {
  opacity: 1;
}

/* ---------- Step number badge ---------- */
.how__step-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540 0%, #31C2AF 100%);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  box-shadow: 0 3px 10px rgba(10, 37, 64, 0.25);
  flex-shrink: 0;
}

/* ---------- Icon ---------- */
.how__icon {
  width: 56px;
  height: 56px;
  background: rgba(49, 194, 175, 0.08);
  border: 1px solid rgba(49, 194, 175, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #31C2AF;
  transition: background 0.3s ease, transform 0.3s ease;
}

.how__card:hover .how__icon {
  background: rgba(49, 194, 175, 0.14);
  transform: scale(1.07);
}

.how__icon svg {
  width: 28px;
  height: 28px;
  stroke: #31C2AF;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Text ---------- */
.how__card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0B1D2C;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.how__card-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.7;
}

/* ---------- How Responsive ---------- */
@media (max-width: 1024px) {
  .how {
    padding: 60px 32px;
  }

  .how__grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0 10px;
  }
}

@media (max-width: 768px) {
  .how {
    padding: 52px 24px;
  }

  /* Stack cards + hide connectors */
  .how__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
  }

  .how__connector {
    display: none;
  }

  .how__header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .how {
    padding: 44px 20px;
  }

  .how__grid {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .how__card {
    padding: 24px 20px 22px;
  }
}


/* ============================================
   REAL CLEANING RESULTS SECTION
============================================ */

/* ---------- Section Wrapper ---------- */
.results {
  background-color: #F0F6FA;
  padding: 72px 60px;
  border-top: 1px solid #E5E7EB;
}

/* ---------- Header ---------- */
.results__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.results__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 194, 175, 0.1);
  border: 1px solid rgba(49, 194, 175, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #31C2AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.results__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #31C2AF);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.results__title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 900;
  color: #0B1D2C;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.results__subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.65;
}

/* ---------- Image ---------- */
.results__image-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(11, 29, 44, 0.1),
    0 2px 8px rgba(11, 29, 44, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.results__image-wrap:hover {
  box-shadow:
    0 20px 56px rgba(11, 29, 44, 0.14),
    0 4px 12px rgba(49, 194, 175, 0.08);
  transform: translateY(-3px);
}

.results__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ---------- CTA ---------- */
.results__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ---------- SEO Support Text ---------- */
.results__seo-text {
  max-width: 700px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.75;
}

/* ---------- Results Responsive ---------- */
@media (max-width: 1024px) {
  .results {
    padding: 60px 32px;
  }
}

@media (max-width: 768px) {
  .results {
    padding: 52px 24px;
  }

  .results__header {
    margin-bottom: 32px;
  }

  .results__image-wrap {
    border-radius: 14px;
  }

  .results__image {
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .results {
    padding: 44px 20px;
  }

  .results__image-wrap {
    border-radius: 10px;
  }

  .results__image {
    border-radius: 10px;
  }
}


/* ============================================
   SERVICE AREAS SECTION
============================================ */

/* ---------- Section Wrapper ---------- */
.areas {
  background-color: #ffffff;
  padding: 64px 60px;
  border-top: 1px solid #E5E7EB;
}

/* ---------- Header ---------- */
.areas__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.areas__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 194, 175, 0.1);
  border: 1px solid rgba(49, 194, 175, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #31C2AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.areas__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #31C2AF);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.areas__title {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 900;
  color: #0B1D2C;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.areas__subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.65;
}

/* ---------- Location Cards Grid ---------- */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

/* ---------- Single Card ---------- */
.areas__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px 16px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.areas__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(11, 29, 44, 0.09);
  border-color: rgba(49, 194, 175, 0.4);
}

/* ---------- Circular Icon ---------- */
.areas__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f3d4c, #2bb5a8);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.areas__card:hover .areas__icon {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.28);
}

.areas__icon svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* ---------- City Name ---------- */
.areas__city {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0B1D2C;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.3;
}

/* ---------- SEO paragraph ---------- */
.areas__seo-text {
  max-width: 680px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.7;
}

/* ---------- Areas Responsive ---------- */
@media (max-width: 1024px) {
  .areas {
    padding: 56px 32px;
  }
}

@media (max-width: 768px) {
  .areas {
    padding: 48px 24px;
  }

  .areas__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .areas {
    padding: 40px 20px;
  }

  .areas__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .areas__card {
    padding: 12px 14px;
  }

  .areas__city {
    font-size: 0.82rem;
    white-space: normal;
  }
}


.testimonials {
  padding: 80px 20px;
  background: #f7fafc;
  text-align: center;
}

.testimonials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.testimonials__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 194, 175, 0.1);
  border: 1px solid rgba(49, 194, 175, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #31C2AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.testimonials__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #31C2AF);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}


.testimonials__header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.testimonials__header p {
  color: #6b7280;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.testimonial-card {
  background: white;
  padding: 30px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
  border-top: 2px solid #31C2AF;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.stars {
  color: #fbbf24;
  margin-bottom: 15px;
  font-size: 18px;
}

.testimonial-text {
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author strong {
  display: block;
}

.testimonial-author span {
  color: #6b7280;
  font-size: 14px;
}

/* ---------- Testimonials Responsive ---------- */
@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .testimonial-card {
    padding: 24px 20px;
  }
}

/* ============================================
   QUOTE HIGHLIGHT BLOCK
============================================ */
.bottom-cta {
  padding: 64px 32px;
  background: linear-gradient(135deg, #0A2540 0%, #31C2AF 100%);
  border-radius: 24px;
  max-width: 1000px;
  margin: 0 auto 32px;
  text-align: center;
  box-shadow: 0 20px 48px rgba(10, 37, 64, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.bottom-cta__container {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bottom-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bottom-cta__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.bottom-cta__heading {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.bottom-cta__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin-bottom: 0;
  line-height: 1.6;
}

.bottom-cta__note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .bottom-cta {
    margin: 0 32px 32px;
  }
}

@media (max-width: 768px) {
  .bottom-cta {
    padding: 48px 24px;
    margin: 0 20px 24px;
  }
}

/* ============================================
   QUOTE CALCULATOR SECTION
============================================ */
.calculator {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}

.calculator__container {
  max-width: 900px;
  margin: 0 auto;
}

.calculator__header {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.calculator__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 194, 175, 0.1);
  border: 1px solid rgba(49, 194, 175, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #31C2AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.calculator__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #31C2AF);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.calculator__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #0B1D2C;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.calculator__subtitle {
  font-size: 1.05rem;
  color: #6B7280;
  max-width: 520px;
  line-height: 1.6;
}

.calculator__form-wrapper {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 40px 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(11, 29, 44, 0.04);
}

.calculator__form-wrapper iframe {
  height: 800px;
  width: 100%;
}

.calculator__privacy {
  font-size: 0.88rem;
  color: #94A3B8;
  font-weight: 400;
}

/* ============================================
   SERVICE PRICING SECTION
============================================ */
.pricing {
  background-color: #F0F9F8; /* Soft light version of accent color */
  padding: 80px 20px; /* Reduced from 100px */
  text-align: center;
  border-top: 1px solid rgba(49, 194, 175, 0.1);
}

.pricing__header {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pricing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 194, 175, 0.1);
  border: 1px solid rgba(49, 194, 175, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #31C2AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #31C2AF);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.pricing__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); /* Reduced from 1.8rem-2.5rem */
  font-weight: 900;
  color: #0B1D2C;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pricing__subtitle {
  font-size: 0.95rem; /* Reduced from 1.05rem */
  color: #6B7280;
  max-width: 600px;
  line-height: 1.6;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto 48px;
}

.pricing__card {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px 32px; /* Reduced from 64px 44px */
  box-shadow: 0 4px 24px rgba(11, 29, 44, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #E5E7EB;
  position: relative;
}

/* Featured Center Card - Bold & Dominant */
.pricing__card--featured {
  background: linear-gradient(135deg, #0A2540 0%, #31C2AF 100%);
  border: none;
  color: #ffffff;
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.2);
}

.pricing__card--featured .pricing__card-title,
.pricing__card--featured .pricing__row span {
  color: #ffffff;
}

.pricing__card--featured .pricing__row {
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(11, 29, 44, 0.15);
}

.pricing__card--featured:hover {
  transform: scale(1.06) translateY(-8px);
}

.pricing__icon {
  width: 56px; /* Reduced from 64px */
  height: 56px;
  background: #31C2AF; /* brand accent */
  color: #ffffff;
  border-radius: 50%;
  margin-bottom: 24px; /* Reduced from 32px */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden; /* Ensure <img> stays in circle */
  padding: 12px; /* Add some space around the icon artwork */
}

.pricing__card--featured .pricing__icon {
  background: #ffffff;
  color: #31C2AF;
}

.pricing__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Default white color */
}

.pricing__card--featured .pricing__icon img {
  /* Teal color filter for the white circle on dark background */
  filter: brightness(0) saturate(100%) invert(69%) sepia(34%) saturate(760%) hue-rotate(124deg) brightness(91%) contrast(85%);
}

.pricing__card-title {
  font-size: 1.2rem; /* Reduced from 1.5rem */
  font-weight: 800;
  color: #0B1D2C;
  margin-bottom: 32px; /* Reduced from 48px */
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-family: inherit;
}

.pricing__list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0; /* Reduced from 24px */
  border-bottom: 1px solid #F1F5F9;
  gap: 24px; /* Reduced from 32px */
  width: 100%;
}

.pricing__row:last-child {
  border-bottom: none;
}

.pricing__row span {
  font-size: 0.9rem; /* Reduced from 1rem */
  color: #64748B;
  font-weight: 500;
  flex-grow: 1;
  text-align: left;
}

.pricing__row strong {
  font-size: 1.15rem; /* Reduced from 1.35rem */
  color: #0B1D2C;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pricing__card--featured .pricing__row strong {
  color: #ffffff;
}

.pricing__note {
  font-size: 0.88rem;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-style: italic;
}

.pricing__cta {
  display: flex;
  justify-content: center;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 64px 20px;
  }
  
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 32px;
  }
  
  .pricing__card {
    padding: 48px 32px;
    transform: none !important;
  }

  .pricing__card--featured {
    background: linear-gradient(135deg, #0A2540 0%, #31C2AF 100%);
    box-shadow: 0 10px 30px rgba(11, 29, 44, 0.1);
  }
  
  .pricing__title {
    font-size: 1.9rem;
  }

  .pricing__row strong {
    font-size: 1.25rem;
  }
}

/* ============================================
   FAQ SECTION
============================================ */
.faq {
  padding: 40px 20px 100px;
  background-color: #F8FAFC;
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 194, 175, 0.1);
  border: 1px solid rgba(49, 194, 175, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #31C2AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.faq__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #31C2AF);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.faq__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #0B1D2C;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.faq__subtitle {
  font-size: 1.05rem;
  color: #6B7280;
  max-width: 520px;
  line-height: 1.6;
}

.faq__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item[open] {
  border-color: #31C2AF;
  box-shadow: 0 10px 30px rgba(11, 29, 44, 0.06);
}

.faq__question {
  padding: 24px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A2540;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: #31C2AF;
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq__answer {
  padding: 0 32px 24px;
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .calculator {
    padding: 32px 20px;
  }

  .calculator__form-wrapper {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .calculator__form-wrapper iframe {
    height: 1100px !important; /* Increase height for mobile stacking */
  }

  .faq {
    padding: 32px 20px 70px;
  }
  
  .faq__header {
    margin-bottom: 40px;
  }

  .faq__question {
    padding: 20px 24px;
    font-size: 1rem;
    padding-right: 56px;
  }

  .faq__answer {
    padding: 0 24px 20px;
    font-size: 0.95rem;
  }

  .faq__question::after {
    right: 24px;
  }
}

/* ============================================
   MODERN FOOTER SECTION
============================================ */
.footer {
  background-color: #0A1929; /* Deep dark blue for premium look */
  color: #E2E8F0;
  padding: 80px 20px 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer__logo {
  max-width: 180px;
  height: auto;
}

.footer__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer__title {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list li {
  font-size: 0.95rem;
  color: #94A3B8;
}

.footer__link {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer__link:hover {
  color: #31C2AF;
  transform: translateX(3px);
}

.footer__bottom {
  background-color: #07121D; /* Slightly darker than main footer */
  padding: 32px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 0;
  }
  
  .footer__container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .footer__logo {
    margin: 0 auto;
  }

  .footer__info {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__list {
    align-items: center;
  }

  .footer__link:hover {
    transform: none;
  }
}

/* ---------- Sticky Mobile Call Button ---------- */
.mobile-call-button {
  display: none;
}

@media (max-width: 768px) {
  .mobile-call-button {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: linear-gradient(135deg, #0A2540 0%, #31C2AF 100%);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.35);
    z-index: 10000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-call-button:active {
    transform: scale(0.96);
  }

  .mobile-call-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

/* ---------- Scroll to Top Button ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0A2540 0%, #31C2AF 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(49, 194, 175, 0.2);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 
    opacity 0.3s ease, 
    transform 0.3s ease, 
    visibility 0.3s ease, 
    box-shadow 0.3s ease,
    filter 0.3s ease;
  border: none;
  outline: none;
  padding: 0;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  box-shadow: 0 12px 30px rgba(49, 194, 175, 0.4);
}

.scroll-top:hover {
  transform: translateY(0) scale(1.1);
  filter: brightness(1.1);
  box-shadow: 0 15px 35px rgba(49, 194, 175, 0.5);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 100px; /* Positioned above the mobile call button */
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .scroll-top.visible {
    transform: translateY(0);
  }
  
  .scroll-top:hover {
    transform: scale(1.1);
  }
}



