/* ==========================================================================
   Q.N SERVICE RUMAH - CLEAN PIPEPRO THEME DESIGN SYSTEM
   Faithful, Streamlined, High-Fidelity to Reference Screenshots
   ========================================================================== */

:root {
  /* Colors */
  --bg-main: #FBF9F5;
  --bg-card: #FFFFFF;
  
  --text-dark: #18181B;
  --text-muted: #52525B;
  --text-light: #71717A;
  
  /* Primary Violet/Purple */
  --primary-purple: #7047EB;
  --primary-purple-hover: #5B21B6;
  --primary-purple-light: #EDE9FE;
  
  /* Pastel Accent Colors */
  --pastel-yellow: #FEF08A;
  --pastel-mint: #D1FAE5;
  --pastel-mint-dark: #059669;
  --pastel-pink: #FCE7F3;
  --pastel-pink-border: #F472B6;
  --pastel-sage: #ECFDF5;
  --pastel-cream: #FEF9EE;
  
  --wa-green: #25D366;
  --wa-green-hover: #1EBE5D;
  
  --border-color: rgba(24, 24, 27, 0.08);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Lenis Smooth Slow-Mo Scroller Rules */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Custom Smooth Luxury Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #FAF8F5;
}
::-webkit-scrollbar-thumb {
  background: #DDD6FE;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #7047EB;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

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

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

/* Sparkles (Pipepro Decor) */
.decorative-sparkle {
  position: absolute;
  color: #DDD6FE;
  font-size: 2.4rem;
  user-select: none;
  pointer-events: none;
  animation: floatSparkle 4s ease-in-out infinite alternate;
}

.sparkle-1 { top: 12%; left: 3%; animation-delay: 0s; color: #DDD6FE; }
.sparkle-2 { top: 70%; left: 2%; animation-delay: 1.5s; color: #FDE047; font-size: 1.8rem; }
.sparkle-3 { top: 15%; right: 3%; animation-delay: 0.8s; color: #A7F3D0; font-size: 2.2rem; }

@keyframes floatSparkle {
  0% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.7; }
  100% { transform: translateY(-10px) scale(1.15) rotate(12deg); opacity: 1; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-purple);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(112, 71, 235, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-purple-hover);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  background-color: transparent;
}

.btn-outline-dark:hover {
  background-color: var(--text-dark);
  color: #FFFFFF;
}

.btn-hero-dark {
  background-color: #18181B;
  color: #FFFFFF;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(24, 24, 27, 0.2);
}

.btn-hero-dark:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

/* ==========================================================================
   FLOATING NAVBAR (PIPEPRO STYLE — FULL WIDTH)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  margin-top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(24, 24, 27, 0.07);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  gap: 2rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #7047EB 0%, #4F46E5 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(112, 71, 235, 0.35);
  flex-shrink: 0;
}

.brand-symbol svg {
  width: 20px;
  height: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-item {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}

.nav-item:hover {
  color: var(--text-dark);
  background-color: rgba(112, 71, 235, 0.06);
}

.nav-item.active {
  color: var(--primary-purple);
  background-color: var(--primary-purple-light);
}

.nav-item.active::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  background-color: var(--bg-main);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   1. HERO SECTION (SCREENSHOT 1)
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.popular-label {
  font-weight: 700;
  color: var(--text-muted);
}

.hero-popular .tag {
  background-color: #FFFFFF;
  border: 1px solid rgba(24, 24, 27, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.82rem;
}

/* Geometric visual from Screenshot 1 */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-art-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 500px;
}

.art-shape-purple {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 78%;
  height: 82%;
  background-color: #DDD6FE;
  border-radius: var(--radius-lg);
  z-index: 1;
}

.art-shape-yellow {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 65%;
  height: 65%;
  background-color: #FEF08A;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  border-radius: var(--radius-md);
  z-index: 1;
}

.art-dash-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 86%;
  border: 2px dashed #C4B5FD;
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
}

.dot-accent {
  position: absolute;
  border-radius: 50%;
  z-index: 4;
}

.dot-purple {
  width: 44px;
  height: 44px;
  background-color: #7C3AED;
  top: 75px;
  left: 12%;
}

.dot-mint {
  width: 50px;
  height: 50px;
  background-color: #34D399;
  bottom: 40px;
  right: 5%;
}

.dot-yellow {
  width: 28px;
  height: 28px;
  background-color: #FBBF24;
  top: 20px;
  right: 25%;
}

.hero-img-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 94%;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-technician-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.floating-badge {
  position: absolute;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(24, 24, 27, 0.06);
  z-index: 5;
  animation: floatCard 4s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.badge-bottom-left {
  bottom: 25px;
  left: -20px;
}

.badge-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon-wrap.purple {
  background-color: var(--primary-purple-light);
  color: var(--primary-purple);
}

.rating-stars {
  color: #F59E0B;
  font-size: 0.95rem;
}

.badge-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SPECIAL PROMOTIONAL OFFERS (PIPEPRO PROFESSIONAL THEME)
   ========================================================================== */
.promo-offers-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 5rem 0;
}

.promo-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.promo-offer-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.promo-offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.promo-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.promo-type-badge {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

.promo-tag-icon {
  color: #A1A1AA;
}

.promo-tag-icon svg {
  width: 20px;
  height: 20px;
}

.promo-value-box {
  border-radius: 16px;
  padding: 1.6rem 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.promo-big-val {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.promo-val-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
}

.promo-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.promo-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-promo-claim {
  background-color: #FFFFFF;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.promo-call-link {
  background-color: #F4F4F5;
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: var(--transition);
}

.promo-call-link:hover {
  background-color: #E4E4E7;
  color: var(--text-dark);
}

.promo-call-link svg {
  width: 15px;
  height: 15px;
}

/* Color Accents (Pipepro Palette) */
/* Card 1: Purple */
.promo-card-purple .promo-type-badge {
  background-color: #EDE9FE;
  color: #7047EB;
}
.promo-card-purple .promo-value-box {
  background-color: #FAF5FF;
  border: 1px solid #DDD6FE;
}
.promo-card-purple .promo-big-val {
  color: #7047EB;
}
.promo-card-purple .btn-promo-claim:hover {
  background-color: #7047EB;
  border-color: #7047EB;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(112, 71, 235, 0.3);
}

/* Card 2: Mint Green */
.promo-card-mint .promo-type-badge {
  background-color: #D1FAE5;
  color: #059669;
}
.promo-card-mint .promo-value-box {
  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;
}
.promo-card-mint .promo-big-val {
  color: #059669;
}
.promo-card-mint .btn-promo-claim:hover {
  background-color: #059669;
  border-color: #059669;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.3);
}

/* Card 3: Amber/Orange (from Screenshot) */
.promo-card-yellow .promo-type-badge {
  background-color: #FEF3C7;
  color: #D97706;
}
.promo-card-yellow .promo-value-box {
  background-color: #FFFBEB;
  border: 1px solid #FDE68A;
}
.promo-card-yellow .promo-big-val {
  color: #D97706;
}
.promo-card-yellow .btn-promo-claim:hover {
  background-color: #D97706;
  border-color: #D97706;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.3);
}

/* ==========================================================================
   2. CORE SERVICES (SCREENSHOT 2 TOP)
   ========================================================================== */
.services-section {
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pipepro-tri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pipepro-service-card {
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 24, 27, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.pipepro-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Exact pastel themes matching Screenshot 2 */
.card-theme-mint {
  background-color: #A7F3D0;
  border-color: #6EE7B7;
}

.card-theme-sage {
  background-color: #ECFDF5;
  border-color: #D1FAE5;
}

.card-theme-cream {
  background-color: #FEF9EE;
  border-color: #FDE68A;
}

.service-card-media {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pipepro-service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-img-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(24, 24, 27, 0.82);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.service-card-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.service-card-rate {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.service-card-link:hover {
  gap: 0.65rem;
  color: var(--primary-purple);
}

.service-card-watermark {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(24, 24, 27, 0.45);
}

.service-card-watermark svg {
  width: 32px;
  height: 32px;
}

.gallery-section {
  background-color: var(--bg-main);
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* RECENT PLUMBING & ELECTRICAL WORK GALLERY */
.plumbing-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.gallery-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-photo {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(24, 24, 27, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  color: #FFFFFF;
}

.gallery-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #86EFAC;
  margin-bottom: 0.35rem;
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}


/* ==========================================================================
   2B. SERVICE PLANS SECTION (6 DETAILED PRICING PACKAGES)
   ========================================================================== */
.service-plans-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 5.5rem 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.plan-card {
  background: #FFFFFF;
  border: 1.5px solid #EAE6DE;
  border-radius: 22px;
  padding: 2.2rem 1.85rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(18, 20, 29, 0.04);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(18, 20, 29, 0.09);
  border-color: #CBD5E1;
}

.plan-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.plan-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.plan-icon-badge svg {
  width: 26px;
  height: 26px;
}

.plan-price-block {
  text-align: right;
}

.plan-price-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94A3B8;
  display: block;
}

.plan-price-val {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-top: 2px;
}

.plan-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.plan-card-desc {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 1.4rem;
  min-height: 2.7rem;
}

.plan-divider {
  height: 1px;
  background-color: #F1EFEA;
  margin-bottom: 1.25rem;
}

.plan-handle-heading {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 0.85rem;
}

.plan-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  flex-grow: 1;
}

.plan-checklist li {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.45;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.plan-check-icon {
  width: 17px;
  height: 17px;
  color: #10B981;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

.btn-plan-primary {
  background-color: #1E293B;
  color: #FFFFFF;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-plan-primary:hover {
  background-color: var(--primary-purple);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(112, 71, 235, 0.25);
}

.btn-plan-primary svg {
  width: 17px;
  height: 17px;
}

.btn-plan-wa {
  background-color: #F0FDF4;
  border: 1.5px solid #86EFAC;
  color: #166534;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-plan-wa:hover {
  background-color: #DCFCE7;
  border-color: #22C55E;
  color: #14532D;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.2);
}

.btn-plan-wa svg {
  width: 16px;
  height: 16px;
  color: #22C55E;
}

/* Category Accent Variants matching Screenshot */
.plan-cat-aircon .plan-icon-badge {
  background-color: #E6FBF5;
  color: #00B894;
}
.plan-cat-aircon:hover {
  border-color: #00B894;
}

.plan-cat-plumbing .plan-icon-badge {
  background-color: #EBF3FF;
  color: #2563EB;
}
.plan-cat-plumbing:hover {
  border-color: #2563EB;
}

.plan-cat-electrical .plan-icon-badge {
  background-color: #FEF9E7;
  color: #D97706;
}
.plan-cat-electrical:hover {
  border-color: #F59E0B;
}

.plan-cat-cleaning .plan-icon-badge {
  background-color: #E9FBF0;
  color: #10B981;
}
.plan-cat-cleaning:hover {
  border-color: #10B981;
}

.plan-cat-renovation .plan-icon-badge {
  background-color: #FFEAEA;
  color: #EF4444;
}
.plan-cat-renovation:hover {
  border-color: #EF4444;
}

.plan-cat-handyman .plan-icon-badge {
  background-color: #F0EDFF;
  color: #6C5CE7;
}
.plan-cat-handyman:hover {
  border-color: #6C5CE7;
}

/* ==========================================================================
   3. STATS SECTION (SCREENSHOT 2 BOTTOM)
   ========================================================================== */
.stats-section {
  background-color: var(--bg-main);
  padding: 5rem 0;
}

.stats-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}

.stats-intro {
  max-width: 600px;
}

.stats-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

.stats-badge-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.75rem 2.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(24, 24, 27, 0.08);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.accent-purple-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--primary-purple);
}

.stats-big-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.stats-badge-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  max-width: 180px;
}

/* 4-Stat Underline Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.stat-underline {
  height: 4px;
  width: 60px;
  margin: 0.75rem 0 1rem;
  border-radius: 2px;
}

.underline-purple { background-color: var(--primary-purple); }
.underline-yellow { background-color: #F59E0B; }
.underline-mint { background-color: #10B981; }
.underline-pink { background-color: #EC4899; }

.stat-label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.stat-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}


/* ==========================================================================
   5. PROCESS TIMELINE (SCREENSHOT 4)
   ========================================================================== */
.process-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.process-timeline {
  position: relative;
  margin-top: 2rem;
}

.timeline-curve-svg {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}

.process-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-circle {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step:hover .step-circle {
  transform: translateY(-6px);
}

.step-yellow { background-color: #FEF08A; }
.step-pink { background-color: #FCE7F3; }
.step-purple { background-color: #DDD6FE; }

.step-num-badge {
  position: absolute;
  top: -8px;
  background-color: #FFFFFF;
  border: 1px solid rgba(24, 24, 27, 0.1);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
}

.step-icon svg {
  width: 36px;
  height: 36px;
  color: var(--text-dark);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 300px;
}

/* ==========================================================================
   CUSTOMER REVIEWS (PIPEPRO STYLE)
   ========================================================================== */
.reviews-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.reviews-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.review-card-modern {
  background-color: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(24, 24, 27, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-purple-light);
}

.review-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-stars-modern {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-badge-service {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-purple);
  background-color: #FFFFFF;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(24, 24, 27, 0.08);
}

.review-text-modern {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.75rem;
}

.review-author-modern {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(24, 24, 27, 0.06);
}

.author-avatar-modern {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.avatar-mint { background-color: #059669; }
.avatar-purple { background-color: #7C3AED; }
.avatar-yellow { background-color: #D97706; }
.avatar-pink { background-color: #DB2777; }

.author-meta {
  flex: 1;
}

.author-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.author-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.verified-check {
  color: #10B981;
}

.verified-check svg {
  width: 20px;
  height: 20px;
}

/* Trust Score Footer Bar */
.reviews-trust-bar {
  background-color: var(--bg-main);
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.trust-stars-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-rating-score {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.trust-stars-icons {
  color: #F59E0B;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.trust-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

/* ==========================================================================
   6. ASK QUESTION / FAQ (SCREENSHOT 5)
   ========================================================================== */
.faq-section {
  background-color: var(--bg-main);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.faq-photo-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.faq-technician-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.accordion-item {
  background-color: #FFFFFF;
  border: 1px solid rgba(24, 24, 27, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

/* Active item matching Screenshot 5 pink card */
.accordion-item.active {
  background-color: #FCE7F3;
  border-color: #F472B6;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 1.5rem;
  text-align: left;
}

.accordion-num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  background-color: #FFFFFF;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(24, 24, 27, 0.08);
}

.accordion-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  flex: 1;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  flex-shrink: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
}

.accordion-body-inner {
  padding: 0 1.5rem 1.4rem 4rem;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

/* ==========================================================================
   7. CTA BANNER BOX
   ========================================================================== */
.cta-banner-section {
  padding: 2.5rem 0 4rem;
}

.cta-banner-box {
  background: linear-gradient(135deg, #18181B 0%, #27272A 100%);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}

.cta-banner-left h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.cta-banner-left p {
  color: #D4D4D8;
  font-size: 0.95rem;
}

.cta-banner-right {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cta-call {
  background-color: #FFFFFF;
  color: var(--text-dark);
  font-weight: 700;
}

.btn-cta-call:hover {
  background-color: #F4F4F5;
}

.btn-cta-wa {
  background-color: var(--wa-green);
  color: #FFFFFF;
  font-weight: 700;
}

.btn-cta-wa:hover {
  background-color: var(--wa-green-hover);
}

/* ==========================================================================
   8. SIMPLE CLEAN FOOTER
   ========================================================================== */
.site-footer {
  background-color: #111827;
  color: #9CA3AF;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand-simple .brand-name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-coverage-note {
  font-size: 0.85rem;
  color: #A78BFA;
  margin-left: 0.5rem;
}

.footer-links-simple {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-links-simple a:hover {
  color: #FFFFFF;
}

.footer-copy-simple {
  font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background-color: var(--wa-green);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp-btn svg {
  width: 30px;
  height: 30px;
}

/* ==========================================================================
   RESPONSIVE — COMPREHENSIVE MOBILE FIRST
   ========================================================================== */

/* ── Tablet landscape & below (1024px) ── */
@media (max-width: 1024px) {

  .hero-section {
    padding: 3.5rem 0 4rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    order: 2;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }

  /* Hide geometric decorations on tablet/mobile, show clean image card */
  .hero-art-wrapper {
    width: 100%;
    max-width: 100%;
    height: 380px;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(24, 24, 27, 0.08);
    background: #FFFFFF;
  }

  .art-shape-purple,
  .art-shape-yellow,
  .art-dash-frame {
    display: none;
  }

  .hero-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    left: auto;
    bottom: auto;
    transform: none;
  }

  .hero-technician-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-xl);
  }

  .dot-purple,
  .dot-mint,
  .dot-yellow {
    display: none;
  }

  .decorative-sparkle {
    display: none;
  }

  .hero-desc {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-popular {
    justify-content: center;
  }

  /* Promo / Service cards grids to 2 col */
  .promo-offers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .process-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .reviews-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stats top row stacked */
  .stats-top-row {
    flex-direction: column;
    gap: 2rem;
  }

  .stats-badge-card {
    width: 100%;
  }

  /* FAQ layout stacked */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* CTA banner stacked */
  .cta-banner-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .cta-banner-right {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  /* Remove decorative SVG timeline */
  .timeline-curve-svg {
    display: none;
  }

  /* Plan actions stack nicely */
  .plan-actions {
    flex-direction: column;
  }

  /* Rates notes grid to 2 col */
  .rates-notes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Tablet portrait & phones large (768px) ── */
@media (max-width: 768px) {

  html {
    font-size: 15px;
  }

  /* Container padding tighter */
  .container {
    padding: 0 1rem;
  }

  /* Section spacing */
  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  /* ── Navbar ── */
  .site-header {
    top: 0;
    margin-top: 0;
  }

  .navbar {
    padding: 0.65rem 0;
    border-radius: 0;
    position: relative;
    gap: 0.5rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.25rem;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-top: 1px solid var(--border-color);
    display: none;
    gap: 0.25rem;
    z-index: 200;
    flex: none;
    justify-content: flex-start;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-item {
    font-size: 0.95rem;
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-bottom: none;
    border-radius: var(--radius-sm);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hide-mobile {
    display: none !important;
  }

  .nav-actions .btn-primary {
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
  }

  /* ── Hero mobile redesign ── */
  .hero-section {
    padding: 2rem 0 3rem;
    position: relative;
    overflow: hidden;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
    align-items: stretch;
  }

  .hero-content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0 0.5rem;
  }

  .hero-title {
    font-size: 2.35rem;
    letter-spacing: -0.025em;
    line-height: 1.18;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .hero-popular {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
    height: auto;
  }

  .hero-art-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(24, 24, 27, 0.08);
    background: #FFFFFF;
  }

  .hero-img-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    left: auto;
    bottom: auto;
    transform: none;
  }

  .hero-technician-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 24px;
  }

  /* Remove any overlay gradient on image */
  .hero-art-wrapper::after {
    display: none !important;
  }

  /* Floating badge inside hero card on mobile */
  .floating-badge {
    display: flex !important;
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    width: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.9);
    align-items: center;
    gap: 0.85rem;
    z-index: 10;
    animation: none;
  }

  .floating-badge .badge-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .floating-badge .badge-icon-wrap svg {
    width: 20px;
    height: 20px;
  }

  .floating-badge .badge-sub {
    font-size: 0.75rem;
  }

  /* Keep sparkles and dots hidden on mobile */
  .decorative-sparkle,
  .dot-purple,
  .dot-mint,
  .dot-yellow,
  .art-shape-purple,
  .art-shape-yellow,
  .art-dash-frame {
    display: none !important;
  }

  /* ── Section headings ── */
  .section-title {
    font-size: 1.85rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* ── Promo Offers — 1 col ── */
  .promo-offers-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .promo-offer-card {
    padding: 1.75rem 1.5rem;
  }

  /* ── Service Plans — 1 col ── */
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .plan-card {
    padding: 1.75rem 1.5rem;
  }

  /* ── Stats ── */
  .stats-section {
    padding: 3.5rem 0;
  }

  .stats-heading {
    font-size: 1.9rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  /* ── Process ── */
  .process-grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* ── Reviews ── */
  .reviews-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .review-card-modern {
    padding: 1.5rem;
  }

  /* ── FAQ ── */
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .accordion-trigger {
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
  }

  /* ── CTA Banner ── */
  .cta-banner-box {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    align-items: stretch;
  }

  .cta-banner-right {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-banner-right .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Footer ── */
  .footer-bottom-simple {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 0;
  }

  .footer-links-simple {
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
  }

  /* ── Floating WhatsApp ── */
  .floating-whatsapp-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  /* ── Rates page ── */
  .rates-hero-section {
    padding: 6rem 0 2rem;
  }

  .rates-trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .rates-category-tabs {
    gap: 0.45rem;
  }

  .rate-tab-btn {
    font-size: 0.82rem;
    padding: 0.55rem 1rem;
  }

  .rates-table thead {
    display: none;
  }

  .rates-table,
  .rates-table tbody,
  .rates-table tr,
  .rates-table td {
    display: block;
    width: 100%;
  }

  .rates-table tr {
    padding: 1.25rem;
    border-bottom: 1.5px solid #E2E8F0;
    background: #FFFFFF;
  }

  .rates-table td {
    padding: 0.35rem 0;
    border: none;
  }

  .rates-table td:last-child {
    margin-top: 0.75rem;
  }

  .rates-notes-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .estimate-floating-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    bottom: 16px;
    width: calc(100% - 32px);
    gap: 1rem;
  }

  .estimate-bar-left {
    justify-content: space-between;
  }

  .estimate-bar-actions {
    flex-direction: column;
    gap: 0.6rem;
  }

  .btn-estimate-wa {
    justify-content: center;
  }
}

/* ── Small phones (480px) ── */
@media (max-width: 480px) {

  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.875rem;
  }

  /* Hero smaller */
  .hero-title {
    font-size: 2rem;
  }

  .hero-art-wrapper {
    height: 340px;
    max-width: 100%;
    border-radius: 20px;
  }

  .hero-technician-img {
    border-radius: 20px;
  }

  .dot-purple,
  .dot-mint,
  .dot-yellow {
    display: none;
  }

  /* Section title smaller */
  .section-title {
    font-size: 1.6rem;
  }

  /* Stats to 1 col */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Promo cards padding */
  .promo-offer-card {
    padding: 1.5rem 1.25rem;
  }

  .promo-big-val {
    font-size: 2.2rem;
  }

  /* Plan cards */
  .plan-card {
    padding: 1.5rem 1.25rem;
  }

  .plan-price-val {
    font-size: 1.25rem;
  }

  /* Badge pill wraps */
  .badge-pill {
    font-size: 0.68rem;
    padding: 0.3rem 0.75rem;
  }

  /* CTA Banner */
  .cta-banner-box h3 {
    font-size: 1.4rem;
  }

  /* Navbar brand text */
  .brand-name {
    font-size: 1.05rem;
  }

  .brand-sub {
    display: none;
  }

  /* FAQ accordion */
  .accordion-trigger {
    font-size: 0.9rem;
    padding: 1rem;
  }

  /* Process steps */
  .process-step-number {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }

  /* Reviews */
  .review-card-modern {
    padding: 1.25rem;
  }

  /* Footer */
  .footer-links-simple a {
    font-size: 0.85rem;
  }

  /* Floating WhatsApp even smaller */
  .floating-whatsapp-btn {
    width: 48px;
    height: 48px;
    bottom: 1rem;
    right: 1rem;
  }

  /* Rates page */
  .rates-trust-pill {
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
  }

  .rate-price-tag {
    font-size: 1rem;
  }
}

/* ==========================================================================
   DEDICATED SERVICE RATES PAGE STYLES
   ========================================================================== */
.rates-hero-section {
  padding: 7.5rem 0 2.5rem 0;
  background-color: var(--bg-main);
  text-align: center;
  position: relative;
}

.rates-hero-section .section-header {
  margin-bottom: 1.5rem;
}

.rates-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.rates-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E293B;
  background: #FFFFFF;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.rates-trust-pill svg {
  color: #10B981;
  width: 15px;
  height: 15px;
}

.rates-filter-container {
  max-width: 1140px;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rates-search-wrapper {
  position: relative;
  width: 100%;
}

.rates-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.rates-search-icon svg {
  width: 18px;
  height: 18px;
}

.rates-search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3.25rem;
  border-radius: 16px;
  border: 1.5px solid #E2E8F0;
  font-size: 0.98rem;
  font-family: var(--font-body);
  background: #FFFFFF;
  color: var(--text-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.rates-search-input:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 4px rgba(112, 71, 235, 0.12);
}

.rates-category-tabs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.rates-category-tabs::-webkit-scrollbar {
  display: none;
}

.rate-tab-btn {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  font-family: var(--font-body);
}

.rate-tab-btn:hover {
  background: #F8FAFC;
  color: var(--text-dark);
  border-color: #CBD5E1;
}

.rate-tab-btn.active {
  background: var(--text-dark);
  color: #FFFFFF;
  border-color: var(--text-dark);
  box-shadow: 0 4px 14px rgba(24, 24, 27, 0.15);
}

/* Rates Table Layout */
.rates-table-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  overflow: hidden;
  max-width: 1140px;
  margin: 0 auto 5rem auto;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.rates-table th {
  background: #F8FAFC;
  padding: 1.15rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748B;
  border-bottom: 1.5px solid #E2E8F0;
}

.rates-table td {
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid #F1F5F9;
  vertical-align: middle;
}

.rates-table tr:hover td {
  background-color: #FAFAF9;
}

.rates-table tr:last-child td {
  border-bottom: none;
}

.rate-service-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.rate-service-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rate-service-icon svg {
  width: 20px;
  height: 20px;
}

.rate-service-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rate-service-name {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-dark);
}

.rate-badge-popular {
  display: inline-block;
  background: #FEF3C7;
  color: #B45309;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

.rate-category-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.cat-aircon { background: #CCFBF1; color: #0F766E; }
.cat-plumbing { background: #DBEAFE; color: #1D4ED8; }
.cat-electrical { background: #FEF3C7; color: #B45309; }
.cat-cleaning { background: #D1FAE5; color: #047857; }
.cat-contractor { background: #FEE2E2; color: #B91C1C; }
.cat-handyman { background: #EDE9FE; color: #6D28D9; }

.rate-scope-text {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.45;
}

.rate-price-tag {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.rate-add-btn {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: var(--text-dark);
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}

.rate-add-btn:hover {
  background: var(--text-dark);
  color: #FFFFFF;
  border-color: var(--text-dark);
  transform: translateY(-1px);
}

.rate-qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #F1F5F9;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.5rem;
  gap: 0.5rem;
}

.rate-stepper-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #FFFFFF;
  color: var(--text-dark);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.rate-stepper-btn:hover {
  background: var(--primary-purple);
  color: #FFFFFF;
}

.rate-stepper-count {
  font-weight: 800;
  font-size: 0.92rem;
  min-width: 18px;
  text-align: center;
}

.rates-empty-state {
  text-align: center;
  padding: 3.5rem 1.5rem;
  color: #94A3B8;
  font-size: 1.05rem;
  display: none;
}

/* Floating Sticky Estimate Drawer */
.estimate-floating-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  width: calc(100% - 48px);
  max-width: 980px;
  background: #12141D;
  color: #FFFFFF;
  padding: 1.1rem 1.75rem;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.estimate-floating-bar.active {
  transform: translateX(-50%) translateY(0);
}

.estimate-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.estimate-badge-count {
  background: var(--primary-purple);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

.estimate-total-label {
  font-size: 0.75rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.estimate-total-amount {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #2ED573;
  line-height: 1.1;
}

.estimate-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-estimate-wa {
  background: #25D366;
  color: #FFFFFF;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-estimate-wa:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-estimate-wa svg {
  width: 17px;
  height: 17px;
}

.btn-estimate-reset {
  background: transparent;
  color: #94A3B8;
  border: 1px solid #334155;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-estimate-reset:hover {
  color: #FFFFFF;
  border-color: #64748B;
}

/* Rate Page FAQ & Notes */
.rates-notes-card {
  max-width: 1140px;
  margin: 0 auto 5rem auto;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 2.2rem;
}

.rates-notes-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.rates-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.rates-note-item h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rates-note-item p {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.5;
}

/* Mobile Rates Responsive */
@media (max-width: 768px) {
  .rates-table thead {
    display: none;
  }
  .rates-table, .rates-table tbody, .rates-table tr, .rates-table td {
    display: block;
    width: 100%;
  }
  .rates-table tr {
    padding: 1.25rem;
    border-bottom: 1.5px solid #E2E8F0;
  }
  .rates-table td {
    padding: 0.35rem 0;
    border: none;
  }
  .rates-table td:last-child {
    margin-top: 0.75rem;
  }
  .estimate-floating-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    bottom: 16px;
    width: calc(100% - 32px);
  }
  .estimate-bar-left {
    justify-content: space-between;
  }
  .estimate-bar-actions {
    flex-direction: column;
  }
  .btn-estimate-wa {
    justify-content: center;
  }
  .rates-notes-grid {
    grid-template-columns: 1fr;
  }
}

