/* ==========================================================================
   SPARKHIVES CLEANERS - MODERN RESPONSIVE STYLESHEET
   Clean Spaces, Clear Minds | Port Harcourt, Nigeria
   Fully responsive across 320px mobile, tablets, laptops & desktop displays
   ========================================================================== */

/* ---------- CSS VARIABLES & THEME ---------- */
:root {
  --primary-blue: #3264d6;
  --primary-blue-dark: #254db0;
  --primary-blue-light: #4c7ce6;
  --primary-cyan: #00cfb8;
  --primary-cyan-hover: #00b8a4;
  --primary-cyan-glow: rgba(0, 207, 184, 0.35);
  
  --dark-navy: #101c30;
  --dark-navy-deep: #0c1524;
  --footer-bg: #18191c;
  --sub-footer-bg: #111215;
  
  --text-dark: #19202c;
  --text-body: #697282;
  --text-muted: #8892a2;
  --text-light: #ffffff;
  
  --bg-light: #f7faff;
  --bg-card: #ffffff;
  --border-light: #e4eaf2;
  
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Poppins', sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
  --shadow-floating: 0 20px 45px rgba(0, 0, 0, 0.14);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --radius-card: 24px;
  
  --transition-fast: 0.25s ease;
  --transition-smooth: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- CSS RESET & GLOBAL BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ---------- TYPOGRAPHY & COMMON UTILITIES ---------- */
.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

.section-title.text-white {
  color: #ffffff;
}

.section-title.text-left {
  text-align: left;
}

.section-lead-text {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.7;
}

.highlight-cyan {
  color: var(--primary-cyan);
}

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

/* ---------- BUTTONS & INVERTING HOVER LOGIC ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-cyan);
  color: #ffffff;
  border-color: var(--primary-cyan);
}

.btn-primary.btn-inverting:hover {
  background-color: #ffffff !important;
  color: var(--primary-cyan) !important;
  border-color: var(--primary-cyan) !important;
  box-shadow: 0 8px 24px var(--primary-cyan-glow);
  transform: translateY(-2px);
}

.btn-pill {
  border-radius: var(--radius-pill);
  padding: 12px 34px;
}

.btn-block {
  width: 100%;
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #ffffff;
  border: 1.5px solid var(--primary-cyan);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition-smooth);
}

.btn-outline-pill:hover {
  background-color: #ffffff !important;
  color: var(--primary-cyan) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   INTERACTIVE SOAP BUBBLES & PHYSICS
   ========================================================================== */
.glass-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.25) 30%, rgba(255, 255, 255, 0.05) 60%, rgba(0, 207, 184, 0.2) 85%, rgba(0, 207, 184, 0.4) 100%);
  box-shadow: inset -4px -4px 10px rgba(0, 0, 0, 0.05), inset 3px 3px 8px rgba(255, 255, 255, 0.9), 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.bubble-xl { width: 90px; height: 90px; }
.bubble-lg { width: 65px; height: 65px; }
.bubble-md { width: 45px; height: 45px; }
.bubble-sm { width: 30px; height: 30px; }
.bubble-xs { width: 18px; height: 18px; }

.bubble-bounce-slow {
  animation: bounceSlow 4.5s ease-in-out infinite alternate;
}

.bubble-bounce-fast {
  animation: bounceFast 2.8s ease-in-out infinite alternate;
}

@keyframes bounceSlow {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-16px) scale(1.03); }
  100% { transform: translateY(-30px) scale(0.98); }
}

@keyframes bounceFast {
  0% { transform: translateY(0px) scale(0.97); }
  50% { transform: translateY(-20px) scale(1.05); }
  100% { transform: translateY(-38px) scale(1); }
}

/* Floating Green Leaves */
.floating-leaf {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  animation: leafFloat 6s ease-in-out infinite alternate;
}

@keyframes leafFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
  100% { transform: translateY(-22px) rotate(-6deg); }
}

/* Halftone Pattern Backdrop */
.halftone-pattern {
  position: absolute;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}

.halftone-hero-left {
  width: 240px;
  height: 240px;
  top: 15%;
  left: 2%;
  opacity: 0.6;
}

.halftone-estimate-left {
  width: 200px;
  height: 200px;
  bottom: 5%;
  left: 3%;
  opacity: 0.5;
}

/* ==========================================================================
   SCROLL SLIDE-UP REVEAL
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

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

/* ==========================================================================
   TOP HEADER BAR
   ========================================================================== */
.top-bar {
  background-color: var(--dark-navy);
  color: #a0aec0;
  font-size: 0.78rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.follow-label {
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.8px;
  font-size: 0.74rem;
}

.social-links-top {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.78rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary-cyan);
  color: #ffffff;
  transform: translateY(-2px);
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 500;
}

.top-contact-item i {
  color: var(--primary-cyan);
}

.top-contact-item:hover {
  color: var(--primary-cyan);
}

/* ==========================================================================
   MAIN NAVIGATION BAR
   ========================================================================== */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-fast);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative;
}

.nav-links-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2b3648;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-cyan);
}

/* Center Hanging Logo Badge */
.logo-badge-wrapper {
  position: relative;
  z-index: 95;
}

.logo-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 6px 18px 10px 18px;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 105px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-logo-img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: var(--dark-navy);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav-drawer {
  display: none;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 70px 0 60px 0;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 30px;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 18px;
}

.hero-description {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-phone-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-circle-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.phone-badge-text {
  display: flex;
  flex-direction: column;
}

.badge-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.badge-number {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Hero Right Visual: 3D Mathematically Centered Vortex */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.hero-image-wrapper {
  position: relative;
  z-index: 5;
  width: 320px;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-maid-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.28));
}

.vortex-rings-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 360px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vortex-back {
  z-index: 3;
}

.vortex-front {
  z-index: 7;
}

.glowing-vortex-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.95), inset 0 0 15px rgba(255, 255, 255, 0.65);
  animation: vortexPulse 4s ease-in-out infinite alternate;
}

.ring-front {
  clip-path: polygon(0 48%, 100% 48%, 100% 100%, 0 100%);
  border-color: rgba(255, 255, 255, 0.95);
}

.ring-back {
  opacity: 0.85;
}

.glowing-vortex-ring.ring-1 {
  width: 420px;
  height: 170px;
  transform: translate(-50%, -50%) rotate(-25deg);
  border-color: rgba(255, 255, 255, 0.9);
}

.glowing-vortex-ring.ring-2 {
  width: 450px;
  height: 145px;
  transform: translate(-50%, -50%) rotate(-25deg);
  border-color: rgba(255, 255, 255, 0.6);
  animation-delay: 0.5s;
}

.sparkle-star {
  position: absolute;
  color: #ffffff;
  font-size: 1.4rem;
  text-shadow: 0 0 10px #ffffff, 0 0 20px #00cfb8;
  animation: starSparkle 2.5s ease-in-out infinite alternate;
}

.star-1 { top: 32%; left: 6%; font-size: 1.8rem; }
.star-2 { top: 68%; right: 6%; font-size: 1.5rem; animation-delay: 0.8s; }
.star-3 { bottom: 12%; left: 45%; font-size: 1.2rem; animation-delay: 1.5s; }

@keyframes vortexPulse {
  0% { transform: translate(-50%, -50%) rotate(-25deg) scale(0.98); opacity: 0.85; }
  100% { transform: translate(-50%, -50%) rotate(-22deg) scale(1.03); opacity: 1; }
}

@keyframes starSparkle {
  0% { transform: scale(0.7); opacity: 0.4; }
  100% { transform: scale(1.3); opacity: 1; }
}

/* ==========================================================================
   2. ABOUT US SECTION
   ========================================================================== */
.about-section {
  padding: 90px 0;
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 50px;
}

.about-visuals-col {
  position: relative;
}

.about-image-composition {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.circle-navy {
  width: 130px;
  height: 130px;
  top: 10px;
  left: 20px;
  background-color: var(--dark-navy);
  z-index: 1;
}

.circle-cyan-bubble {
  width: 80px;
  height: 80px;
  top: 40px;
  right: 15px;
  background: radial-gradient(circle at 30% 30%, #5ef2e0 0%, #00cfb8 70%, #009684 100%);
  box-shadow: 0 10px 25px rgba(0, 207, 184, 0.4);
  z-index: 2;
}

.main-about-circle-frame {
  position: absolute;
  top: 25px;
  left: 45px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--primary-cyan);
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.main-about-circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-about-circle-frame {
  position: absolute;
  bottom: 0px;
  left: 20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  z-index: 4;
}

.small-about-circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.feature-icon-check {
  font-size: 1.35rem;
  color: var(--primary-cyan);
  flex-shrink: 0;
}

.feature-desc {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.6;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.dark-phone-badge .phone-circle-icon {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.dark-label {
  color: var(--text-muted);
}

.dark-number {
  color: var(--text-dark);
}

/* ==========================================================================
   3. POPULAR SERVICES SECTION
   ========================================================================== */
.services-section {
  background-color: var(--primary-blue);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.services-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background-color: var(--primary-cyan);
  color: #ffffff;
  border-color: var(--primary-cyan);
}

.slider-prev { left: -22px; }
.slider-next { right: -22px; }

.services-cards-track {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 15px 4px 25px 4px;
}

.services-cards-track::-webkit-scrollbar {
  display: none;
}

.service-pill-card {
  flex: 0 0 calc((100% - (3 * 24px)) / 4);
  min-width: 250px;
  min-height: 440px;
  scroll-snap-align: start;
  background-color: #ffffff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-pill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.card-top-image-arch {
  height: 185px;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
  flex-shrink: 0;
}

.card-top-image-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-pill-card:hover .card-top-image-arch img {
  transform: scale(1.06);
}

.service-pill-card .card-body {
  padding: 22px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.card-circle-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-cyan);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 2px solid transparent;
  transition: all var(--transition-smooth);
  flex-shrink: 0;
}

.services-footer-cta {
  margin-top: 36px;
}

/* ==========================================================================
   4. COMPLETED PROJECTS / CATALOG SECTION
   ========================================================================== */
.projects-section {
  padding: 90px 0;
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.projects-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
}

.project-grid-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background-color: #f0f4f9;
}

.project-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-grid-item:hover img {
  transform: scale(1.08);
}

.project-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(50, 100, 214, 0.93);
  color: #ffffff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.35s ease;
  z-index: 2;
}

.project-grid-item:hover .project-hover-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #ffffff;
}

.feature-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--primary-cyan);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  width: fit-content;
}

.feature-card-desc {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

/* ==========================================================================
   5. HOW TO BOOK / VALUE SECTION
   ========================================================================== */
.booking-steps-section {
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.booking-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.booking-content-col {
  display: flex;
  flex-direction: column;
}

.booking-title {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  margin-bottom: 12px;
  line-height: 1.2;
}

.booking-subtitle-lead {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 26px;
  line-height: 1.6;
}

.booking-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.booking-step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.booking-step-card:hover {
  transform: translateX(6px);
  background-color: rgba(255, 255, 255, 0.14);
}

.step-number-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--primary-cyan);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 207, 184, 0.35);
}

.step-info {
  flex-grow: 1;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.booking-cta-wrap {
  display: flex;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.estimate-maid-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.house-frame-cutout {
  position: relative;
  width: 310px;
  height: 360px;
  clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 5;
}

.estimate-maid-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.estimate-vortex-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 340px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.estimate-vortex-rings .glowing-vortex-ring {
  top: 50%;
  left: 50%;
}

.estimate-vortex-rings .glowing-vortex-ring.ring-1 {
  width: 420px;
  height: 170px;
  transform: translate(-50%, -50%) rotate(-25deg);
  border-color: rgba(255, 255, 255, 0.9);
}

.estimate-vortex-rings .glowing-vortex-ring.ring-2 {
  width: 450px;
  height: 145px;
  transform: translate(-50%, -50%) rotate(-25deg);
  border-color: rgba(255, 255, 255, 0.6);
  animation-delay: 0.5s;
}

.estimate-vortex-rings .star-1 { top: 32%; left: 6%; font-size: 1.8rem; }
.estimate-vortex-rings .star-2 { top: 68%; right: 6%; font-size: 1.5rem; animation-delay: 0.8s; }
.estimate-vortex-rings .star-3 { bottom: 12%; left: 45%; font-size: 1.2rem; animation-delay: 1.5s; }

/* ==========================================================================
   6. MAP SECTION
   ========================================================================== */
.map-section {
  position: relative;
  width: 100%;
  line-height: 0;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
}

.interactive-map-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.map-floating-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
  max-width: 300px;
  line-height: 1.4;
}

.map-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.map-place-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}

.map-place-address {
  font-size: 0.74rem;
  color: var(--text-body);
  margin: 3px 0 6px 0;
}

.map-card-rating {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-val {
  font-weight: 700;
  color: var(--text-dark);
}

.rating-stars {
  color: #f7a600;
  letter-spacing: 1px;
}

.rating-count {
  color: var(--text-muted);
}

.map-directions-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #2b70f6;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.map-directions-btn:hover {
  background-color: #1a56cc;
}

/* ==========================================================================
   7. PRICING PLANS SECTION
   ========================================================================== */
.pricing-section {
  padding: 90px 0;
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-header {
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 22px 14px;
  text-align: center;
  position: relative;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.plan-price-block {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.currency-symbol {
  font-size: 1.35rem;
  vertical-align: top;
  margin-right: 2px;
}

.per-month-badge {
  display: inline-block;
  background-color: var(--primary-cyan);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.pricing-card-body {
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.plan-intro {
  font-size: 0.78rem;
  color: var(--text-body);
  margin-bottom: 14px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  text-align: left;
}

.plan-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dark);
}

.plan-features-list li i {
  color: var(--primary-cyan);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ==========================================================================
   8. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 90px 0;
  position: relative;
  background-color: #fbfdff;
  overflow: hidden;
}

.testimonials-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px 20px 4px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc((100% - (2 * 24px)) / 3);
  min-width: 270px;
  scroll-snap-align: start;
  background-color: #ffffff;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f4f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote-text {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 18px;
}

.rating-and-quote-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.star-rating {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
}

.cyan-quote-mark {
  color: #bdf2eb;
  font-size: 2.2rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.client-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00cfb8, #3264d6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 207, 184, 0.25);
}

.client-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.client-designation {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   9. FLOATING WHATSAPP CALLOUT CARD
   ========================================================================== */
.newsletter-wrapper {
  position: relative;
  z-index: 10;
  margin-bottom: -50px;
}

.newsletter-card {
  background-color: var(--dark-navy);
  border-radius: var(--radius-card);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-floating);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-plane-icon {
  flex-shrink: 0;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.newsletter-desc {
  font-size: 0.84rem;
  color: #a0aec0;
  max-width: 500px;
}

.newsletter-right .btn-newsletter {
  background-color: var(--primary-cyan);
  color: #ffffff;
}

/* ==========================================================================
   10. FOOTER SECTION
   ========================================================================== */
.main-footer {
  background-color: var(--footer-bg);
  color: #ffffff;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.2fr 1fr;
  gap: 36px;
  padding-bottom: 50px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.cyan-bar {
  color: var(--primary-cyan);
  font-weight: 800;
  margin-right: 4px;
}

.footer-about-text {
  font-size: 0.82rem;
  color: #9aa5b6;
  line-height: 1.7;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list li a {
  font-size: 0.82rem;
  color: #9aa5b6;
  transition: color var(--transition-fast);
}

.footer-links-list li a:hover {
  color: var(--primary-cyan);
  padding-left: 4px;
}

.footer-phone-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-cyan);
  margin-bottom: 8px;
}

.footer-phone-number:hover {
  color: #ffffff;
}

.footer-email-link {
  word-break: break-all;
}

.footer-safe-text {
  font-size: 0.78rem;
  color: #9aa5b6;
  margin-bottom: 14px;
}

.work-days-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.work-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #9aa5b6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.closed-status {
  color: var(--primary-cyan);
  font-weight: 600;
}

/* Sub-Footer Bar */
.sub-footer-bar {
  background-color: var(--sub-footer-bg);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sub-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.copyright-text {
  font-size: 0.76rem;
  color: #7b8698;
}

.back-to-top-btn {
  width: 36px;
  height: 36px;
  background-color: var(--primary-cyan);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition-smooth);
}

.back-to-top-btn:hover {
  background-color: #ffffff !important;
  color: var(--primary-cyan) !important;
  border-color: var(--primary-cyan) !important;
  transform: translateY(-3px);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN (All Devices & Screen Sizes)
   ========================================================================== */

/* ---------- Tablet & Medium Screens (769px to 1024px, iPads) ---------- */
@media (max-width: 1024px) {
  .hero-container {
    gap: 20px;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  /* About Section Tablet & iPad Centering */
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .about-visuals-col {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  
  .about-content-col {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
  
  .about-content-col .section-title,
  .about-content-col .section-title.text-left {
    text-align: center !important;
    margin: 0 auto 16px auto;
  }
  
  .about-content-col .section-lead-text {
    text-align: center !important;
    margin: 0 auto;
    max-width: 650px;
  }
  
  .about-features-list {
    max-width: 600px;
    margin: 32px auto 32px auto;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .feature-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 10px;
  }

  .feature-desc {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
  }
  
  .about-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
  }
  
  .service-pill-card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: 260px;
  }
  
  .projects-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 270px;
  }
  
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin: 0 auto;
    gap: 20px;
  }
  
  /* How to Book Tablet Centering */
  .booking-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .booking-content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .booking-title {
    text-align: center !important;
    margin: 0 auto 14px auto;
  }

  .booking-subtitle-lead {
    text-align: center !important;
    margin: 0 auto 26px auto;
    max-width: 620px;
  }

  .booking-steps-list {
    width: 100%;
    max-width: 620px;
    margin: 0 auto 28px auto;
    text-align: left;
  }

  .booking-cta-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .btn-whatsapp-large {
    margin: 0 auto;
    justify-content: center;
    text-align: center;
  }

  .booking-visual-col {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .newsletter-card {
    padding: 24px 30px;
  }
}

/* ---------- Mobile Displays (320px to 768px) ---------- */
@media (max-width: 768px) {
  /* Top Bar */
  .top-bar {
    display: none;
  }
  
  /* Main Nav & Mobile Menu */
  .nav-container {
    height: 68px;
  }
  
  .nav-left, .nav-right {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-badge {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
    min-width: auto;
  }
  
  .brand-logo-img {
    width: 54px;
    height: 54px;
  }
  
  .mobile-nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    padding: 24px 20px;
    gap: 14px;
    overflow-y: auto;
    z-index: 9999;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  
  .mobile-nav-drawer.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .mobile-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
  }
  
  .mobile-link.active, .mobile-link:hover {
    color: var(--primary-cyan);
  }
  
  .mobile-contact-info {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 600;
  }
  
  .mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
  }
  
  /* Hero Section Mobile */
  .hero-section {
    padding: 40px 0 50px 0;
    min-height: auto;
    text-align: center;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-title {
    font-size: clamp(2rem, 7vw, 2.6rem);
    margin-bottom: 14px;
  }
  
  .hero-description {
    font-size: 0.86rem;
    margin: 0 auto 24px auto;
  }
  
  .hero-actions-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }
  
  .hero-actions-row .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-visual-wrapper {
    margin-top: 10px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-image-wrapper {
    width: 100%;
    max-width: 270px;
    height: 300px;
  }
  
  .vortex-rings-container {
    width: 320px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .vortex-rings-container .glowing-vortex-ring.ring-1,
  .estimate-vortex-rings .glowing-vortex-ring.ring-1 {
    width: 310px;
    height: 125px;
  }
  
  .vortex-rings-container .glowing-vortex-ring.ring-2,
  .estimate-vortex-rings .glowing-vortex-ring.ring-2 {
    width: 325px;
    height: 105px;
  }
  
  /* About Section Mobile */
  .about-section {
    padding: 60px 0;
  }

  .about-content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .about-content-col .section-title,
  .about-content-col .section-title.text-left {
    text-align: center !important;
    margin: 0 auto 14px auto;
  }

  .about-content-col .section-lead-text {
    text-align: center !important;
    margin: 0 auto 20px auto;
  }
  
  .about-image-composition {
    width: 100%;
    max-width: 300px;
    height: 300px;
  }
  
  .main-about-circle-frame {
    width: 230px;
    height: 230px;
    top: 15px;
    left: 35px;
    border-width: 6px;
  }
  
  .small-about-circle-frame {
    width: 120px;
    height: 120px;
    bottom: 0px;
    left: 10px;
    border-width: 4px;
    padding: 8px;
  }
  
  .circle-navy {
    width: 90px;
    height: 90px;
    top: 0;
    left: 15px;
  }
  
  .circle-cyan-bubble {
    width: 60px;
    height: 60px;
  }

  .about-features-list {
    max-width: 480px;
    margin: 26px auto 26px auto;
  }
  
  .about-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
  }
  
  .about-actions .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* Services Section Mobile */
  .services-section {
    padding: 60px 0;
  }
  
  .slider-arrow {
    display: none;
  }
  
  .services-cards-track {
    padding: 10px 0 20px 0;
    gap: 16px;
  }
  
  .service-pill-card {
    flex: 0 0 85%;
    max-width: 320px;
    min-width: 260px;
    margin: 0 auto;
  }
  
  /* Projects Mosaic Grid Mobile */
  .projects-section {
    padding: 60px 0;
  }
  
  .projects-mosaic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 290px;
    gap: 16px;
  }
  
  .project-hover-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(16, 28, 48, 0.95) 0%, rgba(16, 28, 48, 0.75) 50%, rgba(16, 28, 48, 0.2) 100%);
    justify-content: flex-end;
    padding: 20px 18px;
  }
  
  .feature-card-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  
  .feature-location-badge {
    margin-bottom: 8px;
    font-size: 0.68rem;
    padding: 3px 8px;
  }
  
  .feature-card-desc {
    font-size: 0.76rem;
    line-height: 1.45;
  }
  
  /* Booking Steps Section Mobile */
  .booking-steps-section {
    padding: 60px 0;
  }
  
  .booking-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .booking-content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .booking-title {
    text-align: center !important;
    margin: 0 auto 12px auto;
  }
  
  .booking-subtitle-lead {
    text-align: center !important;
    font-size: 0.85rem;
    margin: 0 auto 24px auto;
    max-width: 500px;
  }
  
  .booking-steps-list {
    text-align: left;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 24px auto;
  }
  
  .booking-step-card {
    padding: 14px 16px;
    gap: 12px;
  }
  
  .step-number-badge {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  
  .step-title {
    font-size: 0.92rem;
  }
  
  .step-desc {
    font-size: 0.76rem;
  }

  .booking-cta-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
  
  .btn-whatsapp-large {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    font-size: 0.84rem;
    padding: 12px 18px;
    margin: 0 auto;
  }

  .booking-visual-col {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .estimate-maid-wrapper {
    max-width: 290px;
    margin: 0 auto;
  }
  
  .house-frame-cutout {
    width: 250px;
    height: 300px;
    padding: 16px;
  }
  
  .estimate-vortex-rings {
    width: 320px;
    height: 260px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Map Section Mobile */
  .map-wrapper {
    height: 300px;
  }
  
  .map-floating-card {
    top: 10px;
    left: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
    padding: 12px 14px;
  }
  
  /* Pricing Section Mobile */
  .pricing-section {
    padding: 60px 0;
  }
  
  .pricing-grid-4 {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 22px;
  }
  
  /* Testimonials Section Mobile */
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-track {
    padding: 10px 0 20px 0;
    gap: 16px;
  }
  
  .testimonial-card {
    flex: 0 0 90%;
    min-width: 260px;
    padding: 22px 18px;
    margin: 0 auto;
  }
  
  /* Floating Newsletter Mobile */
  .newsletter-wrapper {
    margin-bottom: -35px;
    padding: 0 10px;
  }
  
  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
    gap: 18px;
  }
  
  .newsletter-left {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .newsletter-title {
    font-size: 1.15rem;
  }
  
  .newsletter-desc {
    font-size: 0.78rem;
  }
  
  .newsletter-right .btn-newsletter {
    width: 100%;
    max-width: 260px;
    padding: 12px 20px;
  }
  
  /* Footer Mobile */
  .main-footer {
    padding-top: 75px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  
  .footer-links-list {
    align-items: center;
  }
  
  .work-days-table {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .sub-footer-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .footer-social-links {
    justify-content: center;
  }
  
  /* Hide intrusive background bubbles that cause overflow on narrow screens */
  .services-bubble-left, .services-bubble-right,
  .projects-bubbles-right, .pricing-bubbles-bottom,
  .footer-bubbles-left, .footer-bubbles-right,
  .estimate-bubbles-left {
    opacity: 0.3;
  }
}

/* ---------- Very Small Phones (Under 380px, e.g. iPhone SE, Galaxy Z Fold) ---------- */
@media (max-width: 380px) {
  .container {
    padding: 0 14px;
  }
  
  .hero-title {
    font-size: 1.85rem;
  }
  
  .badge-number {
    font-size: 0.92rem;
  }
  
  .service-pill-card {
    flex: 0 0 100%;
    min-width: 240px;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 240px;
  }
  
  .pricing-grid-4 {
    max-width: 100%;
  }
  
  .pricing-card-header {
    padding: 18px 12px;
  }
  
  .plan-price-block {
    font-size: 1.75rem;
  }
  
  .house-frame-cutout {
    width: 220px;
    height: 270px;
  }
}
