/* =========================================================
   CLEANCARE SERVICES - MODERN PREMIUM STYLESHEET
   Brand Colors: Deep Professional Blue & Fresh Green
   ========================================================= */

:root {
  --cc-blue-dark: #0b2545;
  --cc-blue: #034988;
  --cc-blue-primary: #0284c7;
  --cc-blue-hover: #0369a1;
  --cc-blue-50: #f0f9ff;
  --cc-blue-100: #e0f2fe;

  --cc-green-dark: #065f46;
  --cc-green: #059669;
  --cc-green-primary: #10b981;
  --cc-green-light: #34d399;
  --cc-green-50: #ecfdf5;
  --cc-green-100: #d1fae5;

  --cc-dark: #0f172a;
  --cc-slate-800: #1e293b;
  --cc-slate-700: #334155;
  --cc-slate-600: #475569;
  --cc-muted: #64748b;
  --cc-light-bg: #f8fafc;
  --cc-white: #ffffff;
  --cc-border: #e2e8f0;
  --cc-border-light: #f1f5f9;

  --cc-shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
  --cc-shadow-md: 0 10px 25px -3px rgba(3, 73, 136, 0.08), 0 4px 6px -2px rgba(3, 73, 136, 0.04);
  --cc-shadow-lg: 0 20px 35px -5px rgba(3, 73, 136, 0.12), 0 10px 10px -5px rgba(3, 73, 136, 0.04);
  --cc-shadow-xl: 0 25px 50px -12px rgba(11, 37, 69, 0.18);
  
  --cc-radius-sm: 12px;
  --cc-radius-md: 18px;
  --cc-radius-lg: 24px;
  --cc-radius-xl: 32px;
  --cc-radius-full: 9999px;
  --cc-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--cc-slate-800);
  background-color: #ffffff;
  overflow-x: hidden;
  padding-bottom: 72px; /* For mobile sticky bar spacing on small screens */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

/* ---------------------------------------------------------
   HEADER & NAVBAR
   --------------------------------------------------------- */
.cc-topbar {
  background: var(--cc-blue-dark);
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cc-topbar a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--cc-transition);
}
.cc-topbar a:hover {
  color: var(--cc-green-light);
}

.cc-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--cc-transition);
  z-index: 1030;
}

.cc-navbar.scrolled {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.07);
}

.cc-brand-logo {
  height: 48px;
  width: auto;
  transition: var(--cc-transition);
}

@media (max-width: 576px) {
  .cc-brand-logo {
    height: 40px;
  }
}

.cc-nav-link {
  color: var(--cc-slate-700);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  border-radius: var(--cc-radius-sm);
  transition: var(--cc-transition);
}

.cc-nav-link:hover, .cc-nav-link.active {
  color: var(--cc-blue);
  background: var(--cc-blue-50);
}

/* Quick Action Icons in Mobile Header */
.cc-header-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  transition: var(--cc-transition);
}
.cc-btn-call {
  background: var(--cc-blue-50);
  color: var(--cc-blue);
}
.cc-btn-call:hover {
  background: var(--cc-blue);
  color: #fff;
}
.cc-btn-wa {
  background: var(--cc-green-50);
  color: var(--cc-green);
}
.cc-btn-wa:hover {
  background: var(--cc-green);
  color: #fff;
}

/* ---------------------------------------------------------
   HERO SECTION: ULTRA-MODERN, ANIMATED & STYLISH
   --------------------------------------------------------- */
.cc-hero {
  position: relative;
  background: #f8fafc;
  overflow: hidden;
  padding: 50px 0 75px;
}

@media (min-width: 992px) {
  .cc-hero {
    padding: 75px 0 100px;
  }
}

/* Ambient Glowing Aurora Blobs */
.cc-hero-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
  animation: auroraFloat 12s ease-in-out infinite alternate;
}
.cc-hero-aurora-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(3, 73, 136, 0.45) 0%, rgba(2, 132, 199, 0.2) 70%, transparent 100%);
  top: -100px;
  right: -80px;
  animation-duration: 14s;
}
.cc-hero-aurora-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, rgba(56, 189, 248, 0.15) 70%, transparent 100%);
  bottom: -60px;
  left: -80px;
  animation-duration: 11s;
  animation-delay: -3s;
}
.cc-hero-aurora-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(251, 191, 36, 0.1) 70%, transparent 100%);
  top: 40%;
  left: 30%;
  animation-duration: 16s;
  animation-delay: -6s;
}

@keyframes auroraFloat {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(30px, -25px) scale(1.08) rotate(15deg); }
  100% { transform: translate(-20px, 20px) scale(0.95) rotate(-10deg); }
}

/* Grid Pattern Overlay */
.cc-hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(3, 73, 136, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

/* Floating Clean Elements / Sparkles / Bubbles */
.cc-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(56, 189, 248, 0.3) 60%, rgba(16, 185, 129, 0.35) 100%);
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.9), 0 10px 20px rgba(2, 132, 199, 0.12);
  backdrop-filter: blur(4px);
  animation: floatBubble 8s ease-in-out infinite;
  z-index: 2;
}
.cc-bubble-1 { width: 55px; height: 55px; top: 10%; left: 4%; animation-duration: 9s; }
.cc-bubble-2 { width: 32px; height: 32px; top: 68%; left: 8%; animation-duration: 7s; animation-delay: 1.5s; }
.cc-bubble-3 { width: 70px; height: 70px; top: 18%; right: 3%; animation-duration: 11s; animation-delay: 0.5s; }
.cc-bubble-4 { width: 26px; height: 26px; bottom: 12%; right: 46%; animation-duration: 6.5s; animation-delay: 2.2s; }

.cc-sparkle-icon {
  position: absolute;
  color: #0284c7;
  font-size: 1.25rem;
  animation: sparkleTwinkle 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.cc-sp-1 { top: 14%; left: 42%; color: #10b981; font-size: 1.5rem; animation-delay: 0.3s; }
.cc-sp-2 { top: 82%; left: 2%; color: #0284c7; font-size: 1.2rem; animation-delay: 1.2s; }
.cc-sp-3 { top: 22%; right: 48%; color: #f59e0b; font-size: 1.4rem; animation-delay: 2s; }

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-24px) scale(1.06) rotate(10deg); }
}

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(20deg); }
}

/* Hero Badge */
.cc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: var(--cc-radius-full);
  border: 1px solid rgba(3, 73, 136, 0.12);
  box-shadow: 0 4px 15px rgba(3, 73, 136, 0.06);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cc-blue);
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}
.cc-hero-badge:hover {
  transform: translateY(-2px);
}

/* Radar Pulse Dot */
.cc-radar-dot {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
}
.cc-radar-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: radarWave 2s ease-out infinite;
}
@keyframes radarWave {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.cc-hero-title {
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--cc-dark);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .cc-hero-title {
    font-size: 3.6rem;
    letter-spacing: -2px;
  }
}

/* Dynamic Rotating Headline Words */
.cc-rotating-text-wrap {
  display: inline-block;
  position: relative;
  min-height: 1.25em;
  vertical-align: bottom;
}
.cc-rotating-word {
  display: inline-block;
  background: linear-gradient(135deg, #034988 0%, #0284c7 40%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 6s linear infinite;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cc-rotating-word.hidden {
  opacity: 0;
  transform: translateY(20px) rotateX(45deg);
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.cc-rotating-word.active {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
  position: relative;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cc-hero-subtitle {
  font-size: 1.12rem;
  color: var(--cc-muted);
  line-height: 1.65;
  margin-bottom: 25px;
  max-width: 540px;
}

/* Hero Feature Micro Pills */
.cc-hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.cc-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(241, 245, 249, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--cc-radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cc-slate-700);
}

/* Shimmer Wave on Buttons */
.cc-btn-primary {
  position: relative;
  background: linear-gradient(135deg, #034988 0%, #0284c7 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--cc-radius-md);
  border: none;
  box-shadow: 0 10px 25px -4px rgba(3, 73, 136, 0.35);
  transition: var(--cc-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  overflow: hidden;
}
.cc-btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  animation: btnShimmer 4.5s infinite;
}
@keyframes btnShimmer {
  0%, 70% { left: -60%; }
  100% { left: 140%; }
}
.cc-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -4px rgba(3, 73, 136, 0.45);
}

.cc-btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--cc-slate-700);
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--cc-radius-md);
  border: 1.5px solid var(--cc-border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: var(--cc-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.cc-btn-secondary:hover {
  background: #ffffff;
  color: var(--cc-blue);
  border-color: var(--cc-blue-100);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(3, 73, 136, 0.1);
}

/* User Avatar Stack */
.cc-avatar-stack {
  display: flex;
  align-items: center;
}
.cc-avatar-stack img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}
.cc-avatar-stack img:first-child {
  margin-left: 0;
}

/* ---------------------------------------------------------
   HERO SECTION: REFERENCE DESIGN WITH ORGANIC CURVE & TEAL PALETTE
   --------------------------------------------------------- */
.cc-hero-ref {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding: 40px 0 0;
}

@media (min-width: 992px) {
  .cc-hero-ref {
    padding: 60px 0 0;
  }
}

/* Organic Teal/Cyan Wave Shape on Right Side */
.cc-hero-wave-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  background: linear-gradient(135deg, #06b6d4 0%, #0d9488 60%, #14b8a6 100%);
  border-bottom-left-radius: 180px;
  border-top-left-radius: 40px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
}

@media (max-width: 991px) {
  .cc-hero-wave-backdrop {
    width: 100%;
    height: 380px;
    top: auto;
    bottom: 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 0;
  }
  .cc-hero-cleaner-img {
    max-height: 380px;
  }
}

/* Floating Clean Sparkles & Bubbles */
.cc-sparkle-dot {
  position: absolute;
  color: #38bdf8;
  font-size: 1.3rem;
  animation: sparkleTwinkle 3s ease-in-out infinite;
  z-index: 3;
}

/* Hero Pill Badge */
.cc-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  color: #0d9488;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 6px 18px;
  border-radius: 9999px;
  margin-bottom: 20px;
  border: 1px solid #ccfbf1;
}

/* Hero Headline */
.cc-hero-ref-title {
  font-weight: 800;
  font-size: 2.7rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #0f172a;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cc-hero-ref-title {
    font-size: 3.8rem;
  }
}
.cc-text-teal {
  color: #0d9488;
}

/* Hero Reference CTA Buttons */
.cc-btn-teal {
  background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 9999px;
  border: none;
  box-shadow: 0 10px 25px -4px rgba(13, 148, 136, 0.4);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.cc-btn-teal:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(13, 148, 136, 0.5);
}

.cc-btn-outline-pill {
  background: transparent;
  color: #334155;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 9999px;
  border: 1.5px solid #cbd5e1;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.cc-btn-outline-pill:hover {
  background: #f8fafc;
  color: #0d9488;
  border-color: #0d9488;
  transform: translateY(-2px);
}

/* 3-Item Micro Trust Strip in Hero */
.cc-hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}
.cc-trust-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cc-trust-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Hero Right Image Frame */
.cc-hero-cleaner-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 0;
  margin-bottom: 0;
}
.cc-hero-cleaner-img {
  max-width: 100%;
  max-height: 560px;
  height: auto;
  width: auto;
  object-fit: contain;
  vertical-align: bottom;
  margin-bottom: 0;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.2));
  animation: glideLeftRight 6s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes glideLeftRight {
  0% {
    transform: translateX(-14px);
  }
  50% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(14px);
  }
}

/* ---------------------------------------------------------
   ABOUT US & 4-METRIC STATS STRIP
   --------------------------------------------------------- */
.cc-about-section {
  padding: 60px 0 40px;
  background: #ffffff;
  text-align: center;
}
.cc-about-desc {
  max-width: 680px;
  margin: 0 auto 40px;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cc-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .cc-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cc-stat-card-clean {
  padding: 24px 16px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}
.cc-stat-card-clean:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 12px 25px rgba(13, 148, 136, 0.08);
  border-color: #ccfbf1;
}
.cc-stat-num-clean {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  margin-bottom: 8px;
}
.cc-stat-label-clean {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
}

/* ---------------------------------------------------------
   3 PASTEL CATEGORY CARDS (AMBER, BLUE, PURPLE)
   --------------------------------------------------------- */
.cc-pastel-section {
  padding: 60px 0 80px;
  background: #ffffff;
}
.cc-pastel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .cc-pastel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cc-pastel-card {
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
}
.cc-pastel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.08);
}

/* Pastel Card Variations */
.cc-pastel-amber {
  background: #fffbeb;
  border-color: #fef3c7;
}
.cc-pastel-amber .cc-pastel-icon-wrap {
  background: #fde68a;
  color: #d97706;
}
.cc-pastel-amber .cc-learn-link {
  color: #b45309;
}

.cc-pastel-blue {
  background: #f0f9ff;
  border-color: #e0f2fe;
}
.cc-pastel-blue .cc-pastel-icon-wrap {
  background: #bae6fd;
  color: #0284c7;
}
.cc-pastel-blue .cc-learn-link {
  color: #0369a1;
}

.cc-pastel-purple {
  background: #faf5ff;
  border-color: #f3e8ff;
}
.cc-pastel-purple .cc-pastel-icon-wrap {
  background: #e9d5ff;
  color: #9333ea;
}
.cc-pastel-purple .cc-learn-link {
  color: #7e22ce;
}

.cc-pastel-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}
.cc-pastel-card:hover .cc-pastel-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.cc-pastel-title {
  font-weight: 800;
  font-size: 1.35rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.cc-pastel-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cc-learn-link {
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}
.cc-learn-link:hover {
  gap: 10px;
}

/* ---------------------------------------------------------
   WHAT OUR CLIENTS SAY (MINIMALIST QUOTE CARD)
   --------------------------------------------------------- */
.cc-reviews-ref-section {
  padding: 60px 0 80px;
  background: #ffffff;
}
.cc-quote-box-modern {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.07);
  border: 1px solid #f1f5f9;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.cc-quote-icon {
  font-size: 2.4rem;
  color: #0d9488;
  opacity: 0.7;
  margin-bottom: 16px;
}
.cc-quote-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  color: #1e293b;
  margin-bottom: 24px;
}
.cc-reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---------------------------------------------------------
   READY FOR A CLEANER HOME? CTA BANNER
   --------------------------------------------------------- */
.cc-cleaner-cta-banner {
  background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
  border-radius: 32px;
  padding: 50px 45px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(13, 148, 136, 0.35);
  margin: 40px 0 60px;
}
.cc-cleaner-cta-banner h2 {
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #ffffff;
}
.cc-cleaner-cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 24px;
}
.cc-btn-white-pill {
  background: #ffffff;
  color: #0d9488;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 9999px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}
.cc-btn-white-pill:hover {
  background: #f8fafc;
  color: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}
.cc-cta-bucket-img {
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
}

/* ---------------------------------------------------------
   SERVICES PAGE: HORIZONTAL FEATURE ROWS
   --------------------------------------------------------- */
.cc-service-feature-row {
  border-radius: 28px;
  padding: 32px;
  margin-bottom: 30px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .cc-service-feature-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cc-service-feature-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.cc-service-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  height: 200px;
  flex-shrink: 0;
}
.cc-service-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cc-service-feature-row:hover .cc-service-photo-img {
  transform: scale(1.06);
}
.cc-service-arrow-btn {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cc-checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #475569;
  font-weight: 500;
  margin-bottom: 6px;
}

/* ---------------------------------------------------------
   "HAVE QUESTIONS? WE'RE HERE TO HELP!" SUPPORT BANNER
   --------------------------------------------------------- */
.cc-support-help-banner {
  background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
  border-radius: 28px;
  padding: 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 50px 0 70px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .cc-support-help-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cc-support-rep-img {
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

/* ---------------------------------------------------------
   TRUST STRIP & ANIMATED COUNTERS
   --------------------------------------------------------- */
.cc-trust-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--cc-border);
  padding: 36px 0;
  position: relative;
}

.cc-stat-box {
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--cc-radius-md);
  transition: var(--cc-transition);
}
.cc-stat-box:hover {
  background: var(--cc-light-bg);
  transform: translateY(-3px);
}

.cc-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--cc-blue);
  line-height: 1;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: baseline;
}
.cc-stat-label {
  font-size: 0.9rem;
  color: var(--cc-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------------------------------------------------------
   SERVICES SECTION & CAROUSEL
   --------------------------------------------------------- */
.cc-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.cc-section-tag {
  display: inline-block;
  color: var(--cc-green);
  background: var(--cc-green-50);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--cc-radius-full);
  margin-bottom: 14px;
}
.cc-section-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--cc-dark);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .cc-section-title {
    font-size: 2.6rem;
  }
}
.cc-section-desc {
  font-size: 1.05rem;
  color: var(--cc-muted);
}

/* Service Cards */
.cc-service-card {
  background: #ffffff;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--cc-transition);
  box-shadow: var(--cc-shadow-sm);
  position: relative;
}

.cc-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 132, 199, 0.3);
  box-shadow: var(--cc-shadow-lg);
}

.cc-service-thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #e2e8f0;
}
.cc-service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cc-service-card:hover .cc-service-thumb img {
  transform: scale(1.08);
}

.cc-service-icon-pill {
  position: absolute;
  bottom: 14px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--cc-blue);
  box-shadow: var(--cc-shadow-md);
}

.cc-service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--cc-radius-full);
}

.cc-service-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cc-service-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--cc-dark);
  margin-bottom: 8px;
}

.cc-service-desc {
  font-size: 0.9rem;
  color: var(--cc-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.cc-service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--cc-border-light);
}

.cc-service-price {
  font-size: 0.82rem;
  color: var(--cc-muted);
}
.cc-service-price strong {
  font-size: 1.25rem;
  color: var(--cc-blue);
  font-weight: 800;
}

/* Horizontal scroll on mobile */
@media (max-width: 767px) {
  .cc-services-scroll-wrap {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
  }
  .cc-services-scroll-wrap > .col-12 {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: start;
  }
}

/* ---------------------------------------------------------
   FEATURED CLEANING EXPERIENCE (Interactive Hotspots)
   --------------------------------------------------------- */
.cc-experience-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--cc-light-bg) 100%);
  padding: 90px 0;
}

.cc-room-visual-container {
  position: relative;
  border-radius: var(--cc-radius-xl);
  overflow: hidden;
  box-shadow: var(--cc-shadow-xl);
  aspect-ratio: 16/10;
  background: #1e293b;
}

.cc-room-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transition: filter 0.4s ease;
}

/* Hotspot Markers */
.cc-hotspot {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.9);
  color: #fff;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.6);
  z-index: 10;
  transition: var(--cc-transition);
}

.cc-hotspot::after {
  content: '';
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border-radius: 50%;
  border: 2px solid #0284c7;
  animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.cc-hotspot.active {
  background: var(--cc-green);
  transform: scale(1.15);
}

@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.9; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Hotspot Coordinates on Home & Property Plan */
.cc-hs-living { top: 38%; left: 16%; }
.cc-hs-kitchen { top: 62%; left: 38%; }
.cc-hs-bathroom { top: 25%; left: 42%; }
.cc-hs-bedroom { top: 70%; left: 48%; }
.cc-hs-car { top: 75%; left: 12%; }
.cc-hs-septic { top: 78%; left: 84%; }

/* Hotspot Quick Selector Tabs */
.cc-hs-tab {
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50rem;
  padding: 6px 14px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
}

.cc-hs-tab:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #0f172a;
}

.cc-hs-tab.active {
  background: var(--cc-primary);
  border-color: var(--cc-primary);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(3, 73, 136, 0.25);
}

/* Hotspot Info Card */
.cc-hotspot-display-card {
  background: #ffffff;
  border-radius: var(--cc-radius-lg);
  padding: 32px;
  border: 1px solid var(--cc-border);
  box-shadow: var(--cc-shadow-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.25s ease;
}

/* ---------------------------------------------------------
   BEFORE & AFTER DRAGGABLE COMPARISON SLIDER
   --------------------------------------------------------- */
.cc-ba-section {
  padding: 90px 0;
  background: #ffffff;
}

.cc-ba-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16/10;
  border-radius: var(--cc-radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(3, 73, 136, 0.2);
  user-select: none;
  touch-action: pan-y;
  background: #0f172a;
}

@media (max-width: 576px) {
  .cc-ba-container {
    aspect-ratio: 4/3;
  }
}

.cc-ba-before-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.cc-ba-img-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.cc-ba-after-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
  z-index: 5;
  transition: none;
}

.cc-ba-after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Range input overlay for smooth scrub on Touch and Mouse */
.cc-ba-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 20;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

/* Drag Handle Bar & Grip Button */
.cc-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #ffffff;
  pointer-events: none;
  z-index: 15;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
}

.cc-ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-primary, #034988);
  font-size: 1.15rem;
  border: 3px solid var(--cc-primary, #034988);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cc-ba-container:hover .cc-ba-handle-btn,
.cc-ba-container:active .cc-ba-handle-btn {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(3, 73, 136, 0.45);
  background-color: #f8fafc;
}

.cc-ba-badge {
  position: absolute;
  padding: 8px 16px;
  border-radius: var(--cc-radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  z-index: 3;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cc-ba-badge-before {
  top: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cc-ba-badge-after {
  top: 20px;
  left: 20px;
  background: rgba(16, 185, 129, 0.92);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Category Filter Tabs */
.cc-ba-tab-btn {
  padding: 10px 22px;
  border-radius: var(--cc-radius-full);
  border: 1.5px solid var(--cc-border, #e2e8f0);
  background: #ffffff;
  color: var(--cc-slate-700, #334155);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.cc-ba-tab-btn:hover {
  background: #f1f5f9;
  color: var(--cc-primary, #034988);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}
.cc-ba-tab-btn.active {
  background: var(--cc-primary, #034988);
  color: #ffffff !important;
  border-color: var(--cc-primary, #034988);
  box-shadow: 0 4px 12px rgba(3, 73, 136, 0.3);
  transform: translateY(-1px);
}

/* ---------------------------------------------------------
   CLEANING PROCESS TIMELINE
   --------------------------------------------------------- */
.cc-process-section {
  padding: 90px 0;
  background: var(--cc-light-bg);
}

.cc-timeline-card {
  background: #ffffff;
  border-radius: var(--cc-radius-lg);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--cc-border);
  height: 100%;
  position: relative;
  transition: var(--cc-transition);
}
.cc-timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--cc-shadow-md);
  border-color: var(--cc-green-light);
}

.cc-timeline-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #cbd5e1;
  line-height: 1;
  margin-bottom: 12px;
  transition: var(--cc-transition);
}
.cc-timeline-card:hover .cc-timeline-num {
  color: var(--cc-green);
}

.cc-timeline-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--cc-blue-50);
  color: var(--cc-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--cc-transition);
}
.cc-timeline-card:hover .cc-timeline-icon {
  background: var(--cc-green-50);
  color: var(--cc-green);
  transform: rotate(10deg);
}

/* ---------------------------------------------------------
   WHY CHOOSE CLEANCARE
   --------------------------------------------------------- */
.cc-why-section {
  padding: 90px 0;
  background: #ffffff;
}

.cc-feature-card {
  background: #ffffff;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-lg);
  padding: 28px;
  transition: var(--cc-transition);
  height: 100%;
}
.cc-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--cc-shadow-md);
  border-color: var(--cc-blue-100);
}

.cc-feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--cc-blue-50);
  color: var(--cc-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--cc-transition);
}
.cc-feature-card:hover .cc-feature-icon-box {
  background: var(--cc-blue);
  color: #fff;
}

/* ---------------------------------------------------------
   CLEANING TEAM SECTION
   --------------------------------------------------------- */
.cc-team-section {
  padding: 90px 0;
  background: radial-gradient(circle at top right, #e0f2fe 0%, #ffffff 60%);
}

.cc-team-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cc-slate-800);
  box-shadow: var(--cc-shadow-sm);
  transition: var(--cc-transition);
}
.cc-team-check-item:hover {
  border-color: var(--cc-green);
  transform: translateX(4px);
}

/* ---------------------------------------------------------
   PACKAGES SECTION
   --------------------------------------------------------- */
.cc-package-card {
  background: #ffffff;
  border: 1.5px solid var(--cc-border);
  border-radius: var(--cc-radius-xl);
  padding: 34px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--cc-transition);
  position: relative;
}
.cc-package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--cc-shadow-lg);
}

.cc-package-featured {
  border-color: var(--cc-green);
  box-shadow: var(--cc-shadow-md);
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 30%);
}

.cc-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cc-green);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--cc-radius-full);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
}

.cc-pkg-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cc-dark);
  line-height: 1;
}

/* ---------------------------------------------------------
   SMART BOOKING SECTION & CALCULATOR
   --------------------------------------------------------- */
.cc-smart-booking-box {
  background: #ffffff;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-xl);
  box-shadow: var(--cc-shadow-xl);
  overflow: hidden;
}

.cc-step-indicator {
  display: flex;
  background: var(--cc-light-bg);
  border-bottom: 1px solid var(--cc-border);
  padding: 16px 20px;
  overflow-x: auto;
}
.cc-step-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--cc-radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cc-muted);
  white-space: nowrap;
}
.cc-step-pill.active {
  background: #ffffff;
  color: var(--cc-blue);
  box-shadow: var(--cc-shadow-sm);
}

.cc-select-btn {
  padding: 14px 16px;
  border: 1.5px solid var(--cc-border);
  border-radius: var(--cc-radius-md);
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: var(--cc-transition);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--cc-slate-700);
}
.cc-select-btn:hover {
  border-color: var(--cc-blue-primary);
  background: var(--cc-blue-50);
}
.cc-select-btn.selected {
  border-color: var(--cc-blue);
  background: var(--cc-blue-50);
  color: var(--cc-blue);
  box-shadow: 0 0 0 1px var(--cc-blue);
}

/* Summary Live Receipt */
.cc-live-quote-card {
  background: linear-gradient(135deg, var(--cc-blue-dark) 0%, var(--cc-slate-800) 100%);
  color: #ffffff;
  border-radius: var(--cc-radius-lg);
  padding: 28px;
}

/* ---------------------------------------------------------
   REVIEWS & GOOGLE TRUST
   --------------------------------------------------------- */
.cc-review-card {
  background: #ffffff;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-lg);
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--cc-shadow-sm);
  transition: var(--cc-transition);
}
.cc-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cc-shadow-md);
}

.cc-star-rating {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.cc-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cc-blue) 0%, var(--cc-green) 100%);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ---------------------------------------------------------
   SERVICE AREA LOCATOR
   --------------------------------------------------------- */
.cc-map-container {
  border-radius: var(--cc-radius-xl);
  overflow: hidden;
  border: 1px solid var(--cc-border);
  background: var(--cc-light-bg);
  box-shadow: var(--cc-shadow-md);
}

/* ---------------------------------------------------------
   CTA FULL-WIDTH BANNER
   --------------------------------------------------------- */
.cc-cta-banner {
  background: linear-gradient(135deg, var(--cc-blue-dark) 0%, #034988 50%, #059669 100%);
  color: #ffffff;
  border-radius: var(--cc-radius-xl);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.cc-footer {
  background: #091a2e;
  color: #94a3b8;
  font-size: 0.92rem;
  padding-top: 70px;
  padding-bottom: 30px;
}
.cc-footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--cc-transition);
}
.cc-footer a:hover {
  color: var(--cc-green-light);
}
.cc-footer-title {
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

/* ---------------------------------------------------------
   MOBILE STICKY BOOKING BAR & FLOATING ACTIONS
   --------------------------------------------------------- */
.cc-mobile-bar {
  display: none;
}

@media (max-width: 991px) {
  .cc-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 16px;
    border-top: 1px solid var(--cc-border);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    z-index: 1050;
    align-items: center;
    gap: 12px;
  }
}

.cc-float-wa {
  position: fixed;
  bottom: 82px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 1040;
  transition: var(--cc-transition);
  text-decoration: none;
}
.cc-float-wa:hover {
  transform: scale(1.1);
  color: #ffffff;
}

@media (min-width: 992px) {
  .cc-float-wa {
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    font-size: 2.1rem;
  }
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
