/* ============================================
   THE LINEN SPA — Premium Design System
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --orange: #F29D67;
  --orange-hover: #e88a4f;
  --orange-light: rgba(242, 157, 103, 0.12);
  --orange-glow: rgba(242, 157, 103, 0.35);
  --cream: #FDF9EB;
  --sage: #CFD4C4;
  --sage-dark: #b8bfab;
  --warm-white: #FEFEF3;
  --mist: #E5E9DB;
  --dark: #2D2D2D;
  --dark-light: #4a4a4a;
  --white: #FFFFFF;
  --logo-green: #677150;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-accent: 'Space Grotesk', monospace;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
  --shadow-md: 0 8px 30px rgba(45, 45, 45, 0.08);
  --shadow-lg: 0 20px 60px rgba(45, 45, 45, 0.1);
  --shadow-orange: 0 8px 30px rgba(242, 157, 103, 0.3);
  --shadow-card-hover: 0 20px 50px rgba(45, 45, 45, 0.12);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-fast: 0.3s var(--ease-smooth);
  --transition-medium: 0.5s var(--ease-smooth);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

/* Override img reset for brand logo — must respect explicit height */
img.brand-logo {
  max-width: none;
  height: 60px;
}

/* ── Utility Classes ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--dark-light);
  max-width: 560px;
  line-height: 1.8;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

.text-center .section-label::before {
  display: none;
}

.text-center .section-label::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 15px 32px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(242, 157, 103, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--sage);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Extra micro-animation keyframes ── */
@keyframes floatUp {
  0%   { transform: translateY(0px) scale(1); }
  50%  { transform: translateY(-14px) scale(1.04); }
  100% { transform: translateY(0px) scale(1); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242,157,103,0); }
  50%       { box-shadow: 0 0 28px 8px rgba(242,157,103,0.22); }
}
@keyframes shimmerSlide {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes bounceMini {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-6px); }
  60%       { transform: translateY(-3px); }
}

/* Apply float to service-icon and why-card-icon */
.service-icon svg,
.why-card-icon svg {
  animation: floatUp 3.5s ease-in-out infinite;
  transform-origin: center;
}
.service-card:nth-child(even) .service-icon svg,
.why-card:nth-child(even) .why-card-icon svg {
  animation-delay: 0.8s;
}

/* Pulse glow on pricing featured badge */
.pricing-card.featured {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Step icon breathe — add a spin on hover */
.step-icon-breathe {
  transition: transform 0.5s var(--ease-bounce);
}
.step-card:hover .step-icon-breathe {
  transform: rotate(15deg) scale(1.15);
}

/* Service card hover shimmer */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover::after {
  opacity: 1;
  animation: shimmerSlide 0.7s ease forwards;
}

/* Why-card bounce on hover */
.why-card:hover .why-card-icon {
  animation: bounceMini 0.5s ease;
}

/* Testimonial card subtle lift */
.testimonial-card {
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.015);
}

/* ── Global Bubble Overlay (page-load SpongeBob burst) ── */
#global-bubble-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;           /* below loader, above everything else */
  opacity: 1;
  transition: opacity 1.2s ease;
}
#global-bubble-canvas.fade-out {
  opacity: 0;
}

/* ════════════════════════════════
   NAVIGATION
   ════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: all var(--transition-fast);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 6px 0;
  box-shadow: 0 4px 30px rgba(45, 45, 45, 0.08);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar.scrolled .nav-container {
  min-height: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;   /* allow img to render at full size */
}

.brand-logo {
  height: 60px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 10px rgba(45,45,45,0.06));
}

.navbar.scrolled .brand-logo {
  height: 46px !important;
}

.nav-logo:hover .brand-logo {
  filter: drop-shadow(0 4px 16px rgba(242,157,103,0.25));
  transform: scale(1.03);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  padding: 12px 26px !important;
  font-size: 0.85rem !important;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark) !important;
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ════════════════════════════════
   HERO SECTION
   ════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(207, 212, 196, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--orange-light);
  border: 1px solid rgba(242, 157, 103, 0.2);
  border-radius: var(--radius-xl);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange-hover);
  margin-bottom: 28px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242, 157, 103, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(242, 157, 103, 0); }
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 10px;
}

.hero-title .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(242, 157, 103, 0.2);
  border-radius: 4px;
  z-index: -1;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark-light);
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  opacity: 0.85;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--dark-light);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--sage);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--dark-light);
  margin-top: 6px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: heroVisualIn 1.2s ease-out 0.3s both;
}

@keyframes heroVisualIn {
  from { opacity: 0; transform: translateX(40px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-image-main {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sage) 0%, var(--mist) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Cards on Hero */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatSmooth 4s ease-in-out infinite;
  z-index: 5;
}

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

.hero-float-card.card-top-left {
  top: 10px;
  left: -40px;
  animation-delay: 0s;
}

.hero-float-card.card-top-right {
  top: 15px;
  right: -30px;
  animation-delay: 1s;
}

.hero-float-card.card-bottom-left {
  bottom: 60px;
  left: -40px;
  animation-delay: 2s;
}

.hero-float-card.card-bottom-right {
  bottom: 50px;
  right: -30px;
  animation-delay: 3s;
}

.float-card-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.float-card-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.float-card-text span {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--dark-light);
  margin-top: 2px;
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: var(--radius-full);
  z-index: 1;
}

.hero-shape-1 {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  top: 10%;
  right: 5%;
  animation: floatSmooth 5s ease-in-out infinite;
}

.hero-shape-2 {
  width: 30px;
  height: 30px;
  background: var(--sage);
  bottom: 20%;
  left: 5%;
  animation: floatSmooth 6s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 18px;
  height: 18px;
  background: var(--orange);
  opacity: 0.4;
  top: 40%;
  left: 2%;
  animation: floatSmooth 4s ease-in-out infinite 1s;
}

/* ════════════════════════════════
   MARQUEE TICKER
   ════════════════════════════════ */
.marquee-section {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 25s linear infinite;
  gap: 0;
  width: max-content;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════ */
.services {
  padding: var(--section-padding);
  background: var(--warm-white);
}

.services-header {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
  border: 1px solid rgba(207, 212, 196, 0.3);
  cursor: pointer;

}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
  transition: color var(--transition-fast);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--dark-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-price {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(207, 212, 196, 0.35);
  line-height: 1;
  pointer-events: none;
}

/* ════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════ */
.how-it-works {
  padding: var(--section-padding);
  background: var(--cream);
  position: relative;
}

.how-it-works-header {
  margin-bottom: 70px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 55px;
  left: 15%;
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--sage), var(--orange));
  border-radius: 3px;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 110px;
  height: 110px;
  margin: 0 auto 28px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition-medium);
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px dashed var(--sage);
  transition: border-color var(--transition-fast);
}

.step-card:hover .step-number::before {
  border-color: var(--orange);
}

.step-card:hover .step-number {
  transform: scale(1.08);
  box-shadow: var(--shadow-orange);
}

.step-number svg {
  width: 40px;
  height: 40px;
  color: var(--orange);
}

.step-num-label {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(242, 157, 103, 0.3);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--dark-light);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════ */
.why-us {
  padding: var(--section-padding);
  background: var(--sage);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242, 157, 103, 0.08), transparent 70%);
  border-radius: 50%;
}

.why-us-header {
  margin-bottom: 60px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-medium);
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.why-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.why-card:hover .why-card-icon {
  background: var(--orange);
  border-radius: var(--radius-lg);
  transform: rotate(-5deg) scale(1.05);
}

.why-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
  transition: color var(--transition-fast);
}

.why-card:hover .why-card-icon svg {
  color: var(--white);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--dark-light);
  line-height: 1.7;
}

/* ════════════════════════════════
   PRICING SECTION
   ════════════════════════════════ */
.pricing {
  padding: var(--section-padding);
  background: var(--warm-white);
}

.pricing-header {
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid rgba(207, 212, 196, 0.3);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--orange);
  transform: scale(1.04);
  box-shadow: var(--shadow-orange);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 40px;
  transform: rotate(45deg);
}

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

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-card-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  background: var(--orange-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card.featured .pricing-card-icon {
  background: var(--orange);
}

.pricing-card-icon svg {
  width: 30px;
  height: 30px;
  color: var(--orange);
}

.pricing-card.featured .pricing-card-icon svg {
  color: var(--white);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card .price-unit {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--dark-light);
  margin-bottom: 22px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--dark-light);
  border-bottom: 1px solid rgba(207, 212, 196, 0.2);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ════════════════════════════════
   OFFER BANNER
   ════════════════════════════════ */
.offer-banner {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  border-radius: 50%;
  animation: offerGlow 5s ease-in-out infinite alternate;
}

.offer-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(207, 212, 196, 0.1), transparent 70%);
  border-radius: 50%;
}

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

.offer-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
  text-align: center;
  position: relative;
  z-index: 2;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 157, 103, 0.15);
  border: 1px solid rgba(242, 157, 103, 0.3);
  border-radius: var(--radius-xl);
  padding: 8px 22px;
  margin-bottom: 24px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}

.offer-title span {
  color: var(--orange);
}

.offer-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.offer-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.offer-cta-group .btn-primary {
  background: var(--orange);
  font-size: 1rem;
  padding: 18px 40px;
}

.offer-cta-group .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.offer-cta-group .btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* ════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════ */
.testimonials {
  padding: var(--section-padding);
  background: var(--cream);
}

.testimonials-header {
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid rgba(207, 212, 196, 0.3);
  transition: all var(--transition-medium);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--orange-light);
  pointer-events: none;
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  fill: var(--orange);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--dark-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--dark-light);
}

/* ════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════ */
.contact {
  padding: var(--section-padding);
  background: var(--warm-white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(207, 212, 196, 0.3);
  transition: all var(--transition-fast);
}

.contact-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
}

.contact-card a {
  color: var(--orange);
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 440px;
  border: 3px solid var(--white);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: none;
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.footer {
  background: var(--mist);
  padding: 70px 0 0;
}

.footer-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(207, 212, 196, 0.6);
}

.footer-brand .nav-logo {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--dark-light);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 22px;
}

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

.footer-social-link {
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  color: var(--dark);
  transition: color var(--transition-fast);
}

.footer-social-link:hover svg {
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--dark-light);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--dark-light);
}

.footer-bottom p span {
  color: var(--orange);
  font-weight: 600;
}

.footer-crafted {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 14px 24px 22px;
  text-align: center;
  border-top: 1px solid rgba(103, 113, 80, 0.12);
}

.footer-crafted p {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--dark-light);
  opacity: 0.7;
  text-transform: uppercase;
}

.footer-crafted p a {
  color: var(--logo-green);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  opacity: 0.9;
}

.footer-crafted p a:hover {
  color: var(--orange);
  opacity: 1;
}

/* ════════════════════════════════
   BACK TO TOP BUTTON
   ════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange-hover);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-xl);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
}

.whatsapp-float a:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

/* ════════════════════════════════
   LOADER
   ════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.loader-logo {
  margin-bottom: 20px;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--sage);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 60%;
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(280%); }
}

/* ════════════════════════════════
   RESPONSIVE DESIGN
   ════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .pricing-card.featured {
    transform: scale(1);
  }

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

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

  .hero-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  /* Mobile navbar — remove min-height, let logo control */
  .nav-container {
    min-height: auto;
  }

  .navbar.scrolled .nav-container {
    min-height: auto;
  }

  /* Mobile logo — properly sized for cropped logo */
  img.brand-logo,
  .brand-logo {
    height: 50px !important;
    max-width: 260px !important;
  }

  .navbar.scrolled .brand-logo {
    height: 40px !important;
  }

  /* Hero top padding on mobile */
  .hero {
    padding-top: 90px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right var(--transition-fast);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-description {
    margin: 0 auto 36px;
  }

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

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

  .hero-float-card {
    padding: 8px 12px;
    gap: 8px;
    border-radius: var(--radius-sm);
  }

  .float-card-icon {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
  }

  .float-card-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .float-card-text {
    font-size: 0.75rem;
  }

  .float-card-text span {
    font-size: 0.65rem;
    margin-top: 1px;
  }

  .hero-float-card.card-top-left {
    top: -5px;
    left: -10px;
  }

  .hero-float-card.card-top-right {
    top: 25px;
    right: -10px;
  }

  .hero-float-card.card-bottom-left {
    bottom: 45px;
    left: -15px;
  }

  .hero-float-card.card-bottom-right {
    bottom: 25px;
    right: -10px;
  }

  .hero-image-wrapper {
    max-width: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .steps-container {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
    gap: 50px;
  }

  .steps-container::before {
    display: none;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .whatsapp-float a span {
    display: none;
  }

  .whatsapp-float a {
    padding: 14px;
    border-radius: var(--radius-full);
  }
}

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }



  .offer-title {
    font-size: 2rem;
  }

  .offer-cta-group {
    flex-direction: column;
  }

  .offer-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--sage);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

/* ── Selection Color ── */
::selection {
  background: var(--orange);
  color: var(--white);
}

/* ════════════════════════════════
   GARMENT HIGHLIGHT (Hero Title)
   ════════════════════════════════ */
.garment-highlight {
  color: var(--dark);
  position: relative;
  display: inline-block;
  padding: 0 4px;
}

.garment-highlight::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 32px;
  background: var(--logo-green);
  border-radius: 4px;
  opacity: 0.8;
}

.garment-highlight::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(103, 113, 80, 0.15); /* logo-green alpha */
  border-radius: 4px;
  z-index: -1;
  transform: skewX(-15deg);
}

/* Shirt-collar decorative accent removed */

/* ════════════════════════════════
   WASHING MACHINE (Hero Visual)
   ════════════════════════════════ */
.hero-washing-machine-container {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 40px 40px 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.washing-machine {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 20px 40px rgba(45,45,45,0.18));
  animation: machineFloat 4s ease-in-out infinite;
}

@keyframes machineFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(-0.3deg); }
  75% { transform: translateY(-3px) rotate(0.3deg); }
}

/* Machine Top Panel */
.machine-top {
  width: 220px;
  background: linear-gradient(180deg, #f0f2f5 0%, #e0e4ea 100%);
  border-radius: 16px 16px 0 0;
  padding: 10px 12px 8px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.6), 0 -2px 0 rgba(200,205,215,0.5);
}

.machine-panel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
}

.panel-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.light-1 {
  background: #F29D67;
  color: rgba(242,157,103,0.8);
  animation: lightBlink1 1.8s ease-in-out infinite;
}
.light-2 {
  background: #7dc4a4;
  color: rgba(125,196,164,0.8);
  animation: lightBlink2 2.4s ease-in-out infinite 0.3s;
}
.light-3 {
  background: #7ab5e0;
  color: rgba(122,181,224,0.8);
  animation: lightBlink2 1.6s ease-in-out infinite 0.8s;
}

@keyframes lightBlink1 {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(242,157,103,0.8), 0 0 16px rgba(242,157,103,0.4); }
  50% { opacity: 0.5; box-shadow: 0 0 4px rgba(242,157,103,0.4); }
}
@keyframes lightBlink2 {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.panel-knob {
  margin-left: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8cdd8, #e8ecf2);
  border: 2px solid #b0b6c4;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.08);
  animation: knobRotate 3s linear infinite;
  position: relative;
}

.panel-knob::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: #888;
  border-radius: 2px;
}

@keyframes knobRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Machine Body */
.machine-body {
  width: 240px;
  height: 200px;
  background: linear-gradient(160deg, #e8ecf2 0%, #d4d8e2 40%, #c8cdd8 100%);
  border-radius: 0 0 0 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 2px 0 4px rgba(255,255,255,0.4), inset -2px 0 4px rgba(0,0,0,0.06);
}

/* Machine Door */
.machine-door {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c0c6d4, #a8b0c0);
  border: 4px solid #b0b8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 12px rgba(0,0,0,0.15),
    inset 0 2px 6px rgba(255,255,255,0.3),
    0 0 0 3px rgba(255,255,255,0.2);
  position: relative;
}

.machine-door-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid rgba(180,190,210,0.5);
}

/* Machine Glass Porthole */
.machine-glass {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(120,170,230,0.5), rgba(20,50,120,0.85) 70%);
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 4px 12px rgba(0,0,0,0.3),
    inset 0 -2px 8px rgba(100,150,220,0.2);
}

/* Water ripple inside glass */
.machine-water {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 120%;
  height: 60%;
  background: linear-gradient(180deg, rgba(100,160,230,0.6) 0%, rgba(40,80,180,0.8) 100%);
  border-radius: 50% 50% 0 0;
  animation: waterRipple 1.5s ease-in-out infinite;
}

@keyframes waterRipple {
  0%, 100% { transform: translateX(-5%) scaleX(1); border-radius: 60% 40% 0 0; }
  50% { transform: translateX(5%) scaleX(1.05); border-radius: 40% 60% 0 0; }
}

/* Tumbling Clothes */
.machine-clothes {
  position: absolute;
  inset: 0;
  animation: clothesTumble 2.5s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes clothesTumble {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cloth {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.cloth-1 {
  width: 52px;
  height: 36px;
  background: linear-gradient(135deg, #F29D67, #e88a4f);
  top: 20%;
  left: 15%;
  animation: clothWave 0.8s ease-in-out infinite alternate;
  opacity: 0.9;
}

.cloth-2 {
  width: 44px;
  height: 30px;
  background: linear-gradient(135deg, #CFD4C4, #b0b8a8);
  bottom: 25%;
  right: 15%;
  animation: clothWave 0.9s ease-in-out infinite alternate-reverse;
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  opacity: 0.85;
}

.cloth-3 {
  width: 38px;
  height: 28px;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
  top: 50%;
  left: 40%;
  animation: clothWave 0.7s ease-in-out infinite alternate;
  border-radius: 50% 50% 70% 30% / 50% 70% 30% 50%;
  opacity: 0.7;
}

@keyframes clothWave {
  from { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  to { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

/* IN-PORTHOLE Bubbles */
.machine-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.machine-bubbles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(200,230,255,0.4));
  border: 1px solid rgba(255,255,255,0.6);
  animation: machineBubbleRise linear infinite;
}

.machine-bubbles span:nth-child(1) { width: 10px; height: 10px; left: 20%; animation-duration: 2.1s; animation-delay: 0s; }
.machine-bubbles span:nth-child(2) { width: 7px; height: 7px; left: 45%; animation-duration: 1.8s; animation-delay: 0.4s; }
.machine-bubbles span:nth-child(3) { width: 12px; height: 12px; left: 70%; animation-duration: 2.3s; animation-delay: 0.8s; }
.machine-bubbles span:nth-child(4) { width: 6px; height: 6px; left: 30%; animation-duration: 1.6s; animation-delay: 1.2s; }
.machine-bubbles span:nth-child(5) { width: 9px; height: 9px; left: 60%; animation-duration: 2s; animation-delay: 0.2s; }
.machine-bubbles span:nth-child(6) { width: 8px; height: 8px; left: 15%; animation-duration: 1.9s; animation-delay: 1s; }
.machine-bubbles span:nth-child(7) { width: 11px; height: 11px; left: 80%; animation-duration: 2.2s; animation-delay: 0.6s; }
.machine-bubbles span:nth-child(8) { width: 5px; height: 5px; left: 50%; animation-duration: 1.5s; animation-delay: 1.5s; }

@keyframes machineBubbleRise {
  0% { transform: translateY(120%) scale(0.6); opacity: 0.8; }
  60% { opacity: 0.9; }
  100% { transform: translateY(-20%) scale(1); opacity: 0; }
}

/* Glass Shine Overlay */
.machine-glass::after {
  content: '';
  position: absolute;
  top: 8%;
  left: 12%;
  width: 35%;
  height: 30%;
  background: linear-gradient(135deg, rgba(255,255,255,0.35), transparent);
  border-radius: 50%;
  pointer-events: none;
}

/* Machine Base */
.machine-base {
  width: 240px;
  height: 20px;
  background: linear-gradient(180deg, #c8cdd8 0%, #b8bec8 100%);
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 30px;
  box-shadow: 0 4px 15px rgba(45,45,45,0.12);
}

.machine-leg {
  width: 24px;
  height: 10px;
  background: #9099a8;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* ════════════════════════════════
   SOAP BUBBLES CANVAS (Hero)
   ════════════════════════════════ */
.bubbles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* Hero Image Wrapper update for washing machine */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(135deg, rgba(242,157,103,0.06) 0%, rgba(207,212,196,0.12) 100%);
  border-radius: var(--radius-xl);
  overflow: visible;
  /* (Removed display: flex; align-items: center; justify-content: center; to allow the cards to float as absolute naturally, without flex dictating their exact position relative to the main machine) */
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Radial glow behind machine */
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(242,157,103,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: machineGlow 4s ease-in-out infinite alternate;
}

@keyframes machineGlow {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  to { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Float cards z-index over wrapper */
.hero-float-card.card-top-left,
.hero-float-card.card-top-right,
.hero-float-card.card-bottom-left,
.hero-float-card.card-bottom-right {
  z-index: 10;
}

/* ── Footer Logo ── */
.footer-brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.02) contrast(1.05);
}


/* ════════════════════════════════
   PROMO POPUP AND FLOATING ELEMENTS
   ════════════════════════════════ */
.floating-ctas {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-xl);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.float-btn.action-whatsapp {
  background: #25D366;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.float-btn.action-whatsapp:hover {
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.float-btn.action-wash {
  background: var(--orange);
  box-shadow: var(--shadow-orange);
}

.float-btn.action-wash:hover {
  background: var(--orange-hover);
}

.float-btn svg {
  width: 20px;
  height: 20px;
}

/* Back to top adjustment */
.back-to-top {
  right: 30px;
  bottom: 30px;
}

/* PROMO POPUP */
.promo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.promo-popup-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* (Promo popup base styles merged into premium promo section below) */

/* Persistent Promo Tag */
.promo-tag-side {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-100%);
  background: var(--orange);
  color: var(--white);
  padding: 10px 15px 10px 20px;
  border-radius: 0 10px 10px 0;
  box-shadow: 4px 0 15px rgba(242, 157, 103, 0.4);
  z-index: 998;
  transition: transform 0.4s var(--ease-bounce);
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.promo-tag-side:hover {
  background: var(--orange-hover);
}

.promo-tag-side:not(.hidden) {
  transform: translateY(-50%) translateX(0);
}

.promo-tag-content {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 1px;
}

.promo-timer {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
  }
}

/* ════════════════════════════════
   SERVICE CTA BUTTON
   ════════════════════════════════ */
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid var(--orange);
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast);
  margin-top: 12px;
}

.service-cta:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

/* ════════════════════════════════
   PREMIUM PROMO POPUP (Upgraded)
   ════════════════════════════════ */
.promo-popup-box {
  background: linear-gradient(165deg, #FFFEF8 0%, #FDF9EB 40%, #FFF 100%);
  padding: 0;
  border-radius: 20px;
  max-width: 420px;
  width: 92%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 80px rgba(0,0,0,0.25);
  transform: scale(1);
  transition: transform 0.4s var(--ease-bounce);
  overflow: hidden;
  animation: popupEnter 0.5s var(--ease-bounce);
}

@keyframes popupEnter {
  0% { transform: scale(0.7) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.promo-popup-overlay.hidden .promo-popup-box {
  transform: scale(0.85);
}

.promo-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.promo-badge-ribbon {
  background: linear-gradient(135deg, var(--orange), #e88a4f);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 28px;
  display: inline-block;
  margin-top: 20px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.promo-header {
  padding: 20px 30px 10px;
  position: relative;
  z-index: 1;
}

.promo-offer-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #e07940);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px auto 15px;
  box-shadow: 0 8px 30px rgba(242,157,103,0.4);
  animation: offerPulse 2s ease-in-out infinite;
}

@keyframes offerPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(242,157,103,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(242,157,103,0.6); }
}

.promo-offer-percent {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.promo-offer-off {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.promo-header h3 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.promo-subtitle {
  font-size: 0.88rem;
  color: var(--dark-light);
  line-height: 1.5;
}

.promo-body {
  padding: 15px 30px;
  position: relative;
  z-index: 1;
}

.promo-timer-box {
  margin-bottom: 15px;
}

.promo-timer-label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark-light);
  margin-bottom: 4px;
}

.promo-timer-box span {
  font-family: var(--font-accent);
  font-size: 2.4rem;
  font-weight: 700;
  color: #e03e2d;
  letter-spacing: 3px;
  text-shadow: 0 2px 8px rgba(224,62,45,0.15);
}

.promo-code-box {
  background: var(--white);
  padding: 12px 20px;
  border: 2px dashed var(--orange);
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.promo-code-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark-light);
  font-family: var(--font-accent);
}

.promo-code-box strong {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: var(--orange);
  letter-spacing: 4px;
}

.promo-actions {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.promo-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.promo-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
}

.promo-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.promo-btn-call:hover {
  background: var(--orange);
  color: var(--white);
}

.promo-terms {
  font-size: 0.65rem;
  color: #999;
  padding: 12px 30px 18px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.promo-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 1rem;
  color: #aaa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
  line-height: 1;
}

.promo-close-btn:hover {
  background: rgba(0, 0, 0, 0.12);
  color: var(--dark);
}


/* ════════════════════════════════
   STEP ICON BREATHING ANIMATION
   ════════════════════════════════ */
.step-icon-breathe {
  display: inline-flex;
  animation: iconBreathe 3s ease-in-out infinite;
}

.step-icon-breathe svg {
  width: 40px;
  height: 40px;
}

@keyframes iconBreathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.12); opacity: 1; }
}

/* ════════════════════════════════
   MOBILE RESPONSIVE FIXES
   ════════════════════════════════ */

/* Logo is a transparent PNG — no override needed */

/* Popup landscape on mobile */
@media (max-width: 480px) {
  .promo-popup-box {
    max-width: 95%;
    border-radius: 16px;
  }
  
  .promo-offer-circle {
    width: 70px;
    height: 70px;
  }
  
  .promo-offer-percent {
    font-size: 1.4rem;
  }
  
  .promo-header h3 {
    font-size: 1.1rem;
  }
  
  .promo-subtitle {
    font-size: 0.8rem;
  }
  
  .promo-timer-box span {
    font-size: 1.8rem;
  }
  
  .promo-body {
    padding: 10px 20px;
  }
  
  .promo-actions {
    padding: 12px 20px;
  }
  
  .promo-terms {
    padding: 8px 20px 14px;
    font-size: 0.6rem;
  }
  
  .promo-badge-ribbon {
    font-size: 0.65rem;
    padding: 6px 20px;
  }
}

@media (max-width: 768px) {
  /* Footer logo mobile */
  .footer-brand-logo {
    height: 55px !important;
  }

  /* Popup landscape sizing */
  .promo-popup-box {
    max-width: 92%;
  }
  
  /* Float CTA mobile */
  .floating-ctas {
    bottom: 20px;
    right: 16px;
  }
  
  .float-btn span {
    display: none;
  }
  
  .float-btn {
    padding: 14px;
    border-radius: 50%;
  }
}

