/* ============================================================
   XcelWash – PREMIUM LAUNDRY & DRY CLEANING SERVICE
   style.css – Complete Design System
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --primary:       #E91E63;
  --primary-dark:  #C2185B;
  --primary-light: #F48FB1;
  --secondary:     #9C27B0;
  --accent:        #F5E6FF;
  --pink-soft:     #FCE4EC;
  --white:         #FFFFFF;
  --off-white:     #F8F9FA;
  --text-dark:     #222222;
  --text-mid:      #555555;
  --text-light:    #888888;
  --border:        #EEEEEE;
  --shadow-sm:     0 2px 12px rgba(233, 30, 99, 0.08);
  --shadow-md:     0 8px 32px rgba(233, 30, 99, 0.12);
  --shadow-lg:     0 20px 60px rgba(233, 30, 99, 0.18);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.07);
  --shadow-card-hover: 0 12px 48px rgba(233, 30, 99, 0.15);
  --radius-sm:     12px;
  --radius-md:     18px;
  --radius-lg:     24px;
  --radius-xl:     30px;
  --radius-full:   9999px;
  --grad-primary:  linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
  --grad-soft:     linear-gradient(135deg, #FCE4EC 0%, #F5E6FF 100%);
  --grad-hero:     linear-gradient(145deg, #FFF0F5 0%, #F5E6FF 50%, #FFF0F5 100%);
  --font:          'Plus Jakarta Sans', sans-serif;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:         80px;
}

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

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

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

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 100px 0; position: relative; overflow: hidden; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  background: var(--grad-soft);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid var(--primary-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  animation: shine 3s infinite 1s;
}

@keyframes shine {
  0%   { left: -100%; }
  30%  { left: 130%; }
  100% { left: 130%; }
}

.btn-hero-primary {
  background: var(--grad-primary);
  color: var(--white);
  padding: 16px 36px;
  font-size: 1rem;
  box-shadow: 0 8px 30px rgba(233,30,99,0.4);
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(233,30,99,0.5);
}

.btn-hero-secondary {
  background: var(--white);
  color: var(--primary);
  padding: 16px 36px;
  font-size: 1rem;
  border: 2px solid var(--primary-light);
  box-shadow: var(--shadow-sm);
}
.btn-hero-secondary:hover {
  background: var(--pink-soft);
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-outline-nav {
  color: var(--text-dark);
  padding: 9px 22px;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  background: transparent;
}
.btn-outline-nav:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--pink-soft);
}

.btn-primary-nav {
  background: var(--grad-primary);
  color: var(--white);
  padding: 9px 22px;
  font-size: 0.9rem;
  box-shadow: 0 4px 18px rgba(233,30,99,0.35);
}
.btn-primary-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,30,99,0.45);
}

.btn-pricing-primary {
  width: 100%;
  justify-content: center;
  background: var(--grad-primary);
  color: var(--white);
  padding: 16px 24px;
  font-size: 1rem;
  box-shadow: 0 8px 30px rgba(233,30,99,0.35);
  margin-top: 28px;
}
.btn-pricing-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(233,30,99,0.45);
}

.btn-pricing-outline {
  width: 100%;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  padding: 16px 24px;
  font-size: 1rem;
  border: 2px solid var(--primary-light);
  margin-top: 28px;
}
.btn-pricing-outline:hover {
  background: var(--pink-soft);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--grad-primary);
  color: var(--white);
  padding: 18px 24px;
  font-size: 1rem;
  box-shadow: 0 8px 30px rgba(233,30,99,0.35);
  margin-top: 8px;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(233,30,99,0.5);
}

.btn-white-cta {
  background: var(--white);
  color: var(--primary);
  padding: 12px 28px;
  font-size: 0.95rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 999;
  transition: var(--transition);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233,30,99,0.07);
}

.nav-container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--primary);
  font-size: 1.3rem;
  animation: pulse-logo 2.5s ease-in-out infinite;
}
.logo-text { color: var(--text-dark); }
.logo-accent { color: var(--primary); }

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.nav-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background Floating Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233,30,99,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: float-shape 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(156,39,176,0.07) 0%, transparent 70%);
  bottom: 100px; left: -80px;
  animation: float-shape 10s ease-in-out infinite 2s;
}
.hero-shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(233,30,99,0.06) 0%, transparent 70%);
  top: 30%; left: 30%;
  animation: float-shape 12s ease-in-out infinite 4s;
}
.hero-shape-4 {
  width: 120px; height: 120px;
  background: rgba(245,230,255,0.8);
  top: 20%; right: 20%;
  animation: float-shape 7s ease-in-out infinite 1s;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.hero-shape-5 {
  width: 80px; height: 80px;
  background: rgba(233,30,99,0.1);
  bottom: 30%; right: 35%;
  animation: float-shape 9s ease-in-out infinite 3s;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@keyframes float-shape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1240px;
  margin-inline: auto;
  padding: 80px 24px 120px;
  flex: 1;
}

/* Hero Badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1.5px solid rgba(233, 30, 99, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);

    animation:
        fadeUp 0.7s ease both,
        radarPulse 2.5s ease-in-out infinite;
}

@keyframes radarPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(233, 30, 99, 0.35),
            var(--shadow-sm);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(233, 30, 99, 0),
            var(--shadow-sm);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(233, 30, 99, 0),
            var(--shadow-sm);
    }
}

.stars { color: #FFB300; font-size: 0.9rem; }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeUp 0.7s ease 0.4s both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat strong {
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeLeft 0.9s ease 0.2s both;
}

.hero-card-main {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}
.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover .hero-main-img { transform: scale(1.04); }
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(233,30,99,0.15) 100%);
}

/* Floating Badges */
.float-badge {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  animation: float-badge 4s ease-in-out infinite;
}
.float-badge div { display: flex; flex-direction: column; }
.float-badge strong { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.float-badge span { font-size: 0.72rem; color: var(--text-light); }
.float-badge-icon { font-size: 1.5rem; }

.float-badge-1 { top: 40px; left: -40px; animation-delay: 0s; }
.float-badge-2 { bottom: 80px; left: -50px; animation-delay: 1.5s; }
.float-badge-3 {
  top: 40px; right: -30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.rating-stars { color: #FFB300; font-size: 0.9rem; }

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Decorative circles */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.deco-c1 {
  width: 120px; height: 120px;
  background: var(--grad-primary);
  opacity: 0.12;
  bottom: -20px; right: -30px;
  animation: float-shape 6s ease-in-out infinite;
}
.deco-c2 {
  width: 60px; height: 60px;
  background: var(--grad-primary);
  opacity: 0.2;
  top: 60px; right: -50px;
  animation: float-shape 8s ease-in-out infinite 2s;
}
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(233,30,99,0.25);
  animation: spin-slow 20s linear infinite;
}
.deco-r1 {
  width: 160px; height: 160px;
  bottom: -40px; right: -60px;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* Hero Wave */
.hero-wave {
  width: 100%;
  line-height: 0;
  margin-top: auto;
}
.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulseAnim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,30,99,0.35); }
  50% { box-shadow: 0 0 0 16px rgba(233,30,99,0); }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes shimmer {
  0%   { background-position: -800px 0; }
  100% { background-position: 800px 0; }
}
@keyframes water-wave {
  0%   { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  33%  { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  66%  { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(233,30,99,0.2); }
  50% { box-shadow: 0 0 40px rgba(233,30,99,0.5); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  animation: fadeUp 0.6s ease var(--delay, 0s) both;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-card-hover);
}

.service-icon-wrap {
  width: 62px; height: 62px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--icon-color) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}
.service-icon { font-size: 1.8rem; }

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { gap: 10px; }

.service-card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover .service-card-glow { opacity: 0.03; }
.service-card > * { position: relative; z-index: 1; }

/* CTA Card */
.service-card-cta {
  background: var(--grad-primary);
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-cta-inner {
  text-align: center;
  color: var(--white);
}
.service-cta-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  animation: sparkle 2s ease-in-out infinite;
}
.service-cta-inner h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.service-cta-inner p {
  font-size: 0.88rem;
  opacity: 0.85;
  margin-bottom: 20px;
}
.service-card-cta:hover { transform: translateY(-8px) scale(1.02); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }

.why-bg-shape {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233,30,99,0.04) 0%, transparent 70%);
  top: -100px; right: -200px;
  pointer-events: none;
}

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

.why-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: var(--transition);
  animation: fadeUp 0.6s ease var(--delay, 0s) both;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid transparent;
  background: var(--grad-primary) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.why-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.why-card:hover::before { opacity: 1; }

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  animation: floatAnim 3s ease-in-out infinite;
}
.why-card:nth-child(2) .why-icon { animation-delay: 0.5s; }
.why-card:nth-child(3) .why-icon { animation-delay: 1s; }
.why-card:nth-child(4) .why-icon { animation-delay: 1.5s; }
.why-card:nth-child(5) .why-icon { animation-delay: 0.25s; }
.why-card:nth-child(6) .why-icon { animation-delay: 0.75s; }
.why-card:nth-child(7) .why-icon { animation-delay: 1.25s; }
.why-card:nth-child(8) .why-icon { animation-delay: 1.75s; }

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--off-white); }

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-line {
  position: absolute;
  top: 72px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 0;
}
.process-line::before {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  width: 40%;
  height: 6px;
  background: var(--grad-primary);
  border-radius: 4px;
  animation: progressLine 3s ease-in-out infinite;
}
@keyframes progressLine {
  0%   { left: 0; width: 20%; }
  50%  { left: 40%; width: 20%; }
  100% { left: 80%; width: 20%; }
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeUp 0.6s ease var(--delay, 0s) both;
}

.step-number {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  opacity: 0.6;
}

.step-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(233,30,99,0.12);
  transition: var(--transition);
  animation: pulseAnim 3s ease-in-out infinite;
}
.process-step:nth-child(2) .step-icon-wrap { animation-delay: 0.75s; }
.process-step:nth-child(3) .step-icon-wrap { animation-delay: 1.5s; }
.process-step:nth-child(4) .step-icon-wrap { animation-delay: 2.25s; }
.process-step:hover .step-icon-wrap {
  background: var(--grad-primary);
  border-color: transparent;
  transform: scale(1.1);
}
.step-icon { font-size: 2rem; }

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--grad-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-bg-anim {
  position: absolute;
  inset: 0;
  background-size: 400% 400%;
  background-image: linear-gradient(135deg, #E91E63 0%, #9C27B0 30%, #C2185B 60%, #7B1FA2 100%);
  animation: gradientShift 8s ease infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  color: var(--white);
  padding: 20px;
}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-plus {
  font-size: 60%;
  vertical-align: super;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 16px;
}
.stat-bar {
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  overflow: hidden;
  max-width: 120px;
  margin-inline: auto;
}
.stat-bar-fill {
  height: 100%;
  width: var(--w, 80%);
  background: rgba(255,255,255,0.8);
  border-radius: 4px;
  animation: statFill 2s ease 0.5s both;
}
@keyframes statFill {
  from { width: 0; }
  to   { width: var(--w, 80%); }
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--border);
  cursor: pointer;
}
.gallery-item-large {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(233,30,99,0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section { background: var(--off-white); }

.pricing-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.pricing-bg-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233,30,99,0.06) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.pricing-bg-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(156,39,176,0.06) 0%, transparent 70%);
  bottom: -100px; right: -100px;
}

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

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card-featured {
  background: linear-gradient(160deg, #1A0010 0%, #3D0030 100%);
  border-color: transparent;
  color: var(--white);
  padding-top: 56px;
  box-shadow: 0 20px 60px rgba(233,30,99,0.35);
  transform: scale(1.04);
  animation: glow-pulse 3s ease-in-out infinite;
}
.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 30px 80px rgba(233,30,99,0.45);
}

.pricing-ribbon {
  position: absolute;
  top: 20px; right: -8px;
  background: var(--grad-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px 6px 14px;
  border-radius: 4px 0 0 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(233,30,99,0.4);
}
.pricing-ribbon::after {
  content: '';
  position: absolute;
  right: -1px; top: 100%;
  border: 8px solid transparent;
  border-top-color: var(--primary-dark);
  border-right-color: var(--primary-dark);
}

.pricing-header { margin-bottom: 24px; }
.pricing-icon { font-size: 2rem; margin-bottom: 12px; }
.pricing-plan {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.pricing-card-featured .pricing-plan { color: var(--white); }
.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}
.pricing-card-featured .pricing-desc { color: rgba(255,255,255,0.6); }

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-card-featured .pricing-price { border-bottom-color: rgba(255,255,255,0.15); }
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.pricing-card-featured .price-currency { color: var(--primary-light); }
.price-amount { font-size: 3.5rem; font-weight: 800; line-height: 1; color: var(--text-dark); }
.pricing-card-featured .price-amount { color: var(--white); }
.price-period { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.pricing-card-featured .price-period { color: rgba(255,255,255,0.5); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-features li.disabled { opacity: 0.4; }

.check { color: #4CAF50; font-weight: 700; font-size: 1rem; }
.cross { color: var(--text-light); font-weight: 700; }
.pricing-card-featured .check { color: #80FF80; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section { background: var(--white); }

/* ---- Facebook Reels–style video reviews (auto-scrolling marquee) ---- */
/* full-bleed strip that scrolls by itself, edge to edge */
.reels-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  /* soft fade at both edges so cards ease in/out */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.reels-track {
  --reel-w: 300px;
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 8px 0 12px;
  animation: reelMarquee 42s linear infinite;
  will-change: transform;
}
/* pause on hover, or while a video is playing */
.reels-marquee:hover .reels-track,
.reels-track.is-paused {
  animation-play-state: paused;
}

@keyframes reelMarquee {
  from { transform: translateX(0); }
  /* the track holds two identical copies; shift by exactly one copy
     (half the track width + half a 22px gap) for a seamless loop */
  to   { transform: translateX(calc(-50% - 11px)); }
}

.reel-card {
  flex: 0 0 auto;
  width: var(--reel-w);
}

@media (prefers-reduced-motion: reduce) {
  .reels-marquee { overflow-x: auto; }
  .reels-track { animation: none; }
}

.reel-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #1A0010 0%, #3D0030 100%);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition);
}
.reel-card:hover .reel-video {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(233,30,99,0.28);
}

.reel-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dark gradient at bottom so it reads like a reel */
.reel-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 45%);
  pointer-events: none;
}

.reel-live {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--white);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px; height: 60px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.reel-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.reel-video.is-playing .reel-play { opacity: 0; pointer-events: none; }

.reel-mute {
  position: absolute;
  bottom: 12px; right: 12px;
  z-index: 2;
  width: 34px; height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.reel-video.is-playing .reel-mute { display: flex; }
.reel-mute.is-muted { opacity: 0.7; }

.reel-meta { padding: 16px 6px 0; }

.reel-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-info { flex: 1; min-width: 0; }
.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.author-info strong::after {
  content: ' ✓';
  color: var(--primary);
  font-size: 0.8rem;
}
.author-info span {
  font-size: 0.76rem;
  color: var(--text-light);
}

.reel-text {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-mid);
}

@media (max-width: 560px) {
  .reels-track { --reel-w: 66vw; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--off-white); }

.faq-bg-shape {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(156,39,176,0.05) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
  width: 28px; height: 28px;
  background: var(--pink-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item[open] .faq-icon {
  background: var(--grad-primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  animation: fadeDown 0.3s ease;
}

/* FAQ CTA Card */
.faq-cta-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 100px;
}
.faq-cta-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  animation: floatAnim 3s ease-in-out infinite;
}
.faq-cta-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.faq-cta-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-contact-options {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.faq-contact-icon { font-size: 1.3rem; }
.faq-contact-item div { text-align: left; }
.faq-contact-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}
.faq-contact-item span { font-size: 0.8rem; color: var(--text-light); }

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

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

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(233,30,99,0.08);
}

.form-group textarea { resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

/* Contact Info */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}
.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  font-size: 1.3rem;
  width: 44px; height: 44px;
  background: var(--pink-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item div strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.contact-info-item div span {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Map Placeholder */
.map-placeholder {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  overflow: hidden;
  height: 200px;
  position: relative;
  margin-bottom: 20px;
}
.map-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233,30,99,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233,30,99,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-pin {
  position: relative;
  z-index: 2;
  margin-bottom: 4px;
}
.map-pin-dot {
  width: 16px; height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 12px rgba(233,30,99,0.4);
  animation: pulseAnim 2s ease-in-out infinite;
}
.map-pin-ring {
  position: absolute;
  top: -8px; left: -8px;
  width: 32px; height: 32px;
  border: 2px solid rgba(233,30,99,0.3);
  border-radius: 50%;
  animation: pulseAnim 2s ease-in-out infinite;
}
.map-label {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.map-address {
  position: relative;
  z-index: 2;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Trust Badges */
.contact-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-badge {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0D0008;
  color: rgba(255,255,255,0.75);
}

.footer-top { padding: 80px 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom strong { color: rgba(255,255,255,0.6); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233,30,99,0.4);
  z-index: 888;
  transition: var(--transition);
  animation: pulseAnim 3s ease-in-out infinite;
}
.scroll-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 32px rgba(233,30,99,0.55);
}

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-subtitle { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
  }
  .contact-badges { grid-column: 1 / -1; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-cta-card { position: static; }

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

/* ============================================================
   RESPONSIVE – TABLET SMALL (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 70px; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  /* Nav */
  .nav-links,
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-toggle:checked ~ .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
    animation: fadeDown 0.3s ease;
    z-index: 998;
  }
  .mobile-menu a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-mid);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
  }
  .mobile-menu a:hover { color: var(--primary); background: var(--pink-soft); }
  .mobile-btn {
    background: var(--grad-primary) !important;
    color: var(--white) !important;
    text-align: center;
    margin-top: 8px;
    border-radius: var(--radius-full) !important;
  }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-line { display: none; }
  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
  }
  .process-step:last-child { border-bottom: none; }
  .step-icon-wrap { flex-shrink: 0; }
  .step-number { display: none; }
  .step-content { padding-top: 8px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-6px); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item-large { grid-row: auto; aspect-ratio: 4/3; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-panel { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Scroll top */
  .scroll-top { bottom: 20px; right: 20px; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .section { padding: 56px 0; }

  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .btn-hero-primary,
  .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .hero-stat { padding: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   SHIMMER LOADING EFFECT (bonus)
   ============================================================ */
.shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: shimmer 1.8s infinite;
}

/* ============================================================
   SPARKLE PSEUDO ELEMENTS
   ============================================================ */
.service-card::after {
  content: '✦';
  position: absolute;
  top: 14px; right: 18px;
  font-size: 0.8rem;
  color: rgba(233,30,99,0.2);
  animation: sparkle 3s ease-in-out infinite;
}
.service-card-cta::after { display: none; }

/* ============================================================
   DOWNLOAD APP SECTION
   ============================================================ */
.download-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0d1f 0%, #34123c 55%, #4a1533 100%);
  color: var(--white);
}
.book-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}
.book-bg-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(233,30,99,0.35) 0%, transparent 70%);
  top: -140px; right: -120px;
  animation: float-shape 9s ease-in-out infinite;
}
.book-bg-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(156,39,176,0.3) 0%, transparent 70%);
  bottom: -120px; left: -100px;
  animation: float-shape 11s ease-in-out infinite 2s;
}

.download-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.section-tag-light {
  background: rgba(255,255,255,0.1);
  color: #FBCFE8;
  border: 1px solid rgba(255,255,255,0.18);
}
.gradient-text-light {
  background: linear-gradient(120deg, #FF8FB1 0%, #E0A9FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.book-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 18px 0 16px;
}
.book-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 28px;
}

.book-perks {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}
.book-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.book-perk-ic {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 1.1rem;
}

/* Store badges (reusable) */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.store-badge div { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge small {
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}
.store-badge strong { font-size: 1.02rem; font-weight: 700; }
.store-badge-ic { flex-shrink: 0; }

/* Dark badges — used on the light hero */
.store-badge-dark {
  background: #111;
  color: #fff;
  border: 1px solid #111;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.store-badge-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
}

/* Glass badges — used on the dark download section */
.store-badge-glass {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.store-badge-glass:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.download-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.download-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.download-rating { color: #FFD54F; }
.download-rating b { color: #fff; }
.download-free {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,0.2);
}

/* Phone mockup */
.download-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.phone-mock {
  position: relative;
  width: 260px;
  height: 530px;
  border-radius: 42px;
  background: #0d0d0d;
  padding: 12px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55), inset 0 0 0 2px rgba(255,255,255,0.08);
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 26px;
  background: #0d0d0d;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}
.phone-overlay-card {
  position: absolute;
  left: -28px; bottom: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  animation: float-shape 5s ease-in-out infinite;
  z-index: 4;
}
.phone-overlay-ic {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad-soft);
  font-size: 1.2rem;
}
.phone-overlay-card strong { display: block; font-size: 0.9rem; }
.phone-overlay-card span { font-size: 0.78rem; color: var(--text-light); }

.download-scan { text-align: center; }
.qr-box {
  display: inline-block;
  padding: 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.download-scan p {
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* Hero store buttons */
.hero-app-line {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.hero-store-buttons { flex-wrap: wrap; }

/* Mobile menu CTA button */
.mobile-menu-cta {
  background: var(--grad-primary) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 10px;
  font-weight: 700 !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 6px 20px rgba(233,30,99,0.35);
}
.mobile-menu-cta:hover { color: var(--white) !important; }

/* ============================================================
   MOBILE STICKY CTA BAR (app-download style)
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 997;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(233,30,99,0.12);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.08);
}
.msc-icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--primary);
  font-size: 1.4rem;
}
.msc-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.2; min-width: 0; }
.msc-text strong { font-size: 0.9rem; }
.msc-text span { font-size: 0.75rem; color: var(--text-light); }
.msc-book {
  margin-left: auto;
  flex-shrink: 0;
  justify-content: center;
  background: var(--grad-primary);
  color: var(--white);
  padding: 13px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(233,30,99,0.4);
}

@media (max-width: 900px) {
  .download-grid { grid-template-columns: 1fr; gap: 44px; }
  .download-visual { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; align-items: center; }
  .scroll-top { bottom: 88px; }
}
@media (max-width: 480px) {
  .download-store-row .store-badge { flex: 1; justify-content: center; }
  .download-visual { flex-direction: column; align-items: center; }
  .phone-overlay-card { left: 0; }
  .msc-text { display: none; }
  .msc-icon { display: none; }
  .msc-book { margin-left: 0; flex: 1; }
}

/* ============================================================
   ICON COLORS (Font Awesome replacements for emoji)
   ============================================================ */
.service-icon    { color: var(--icon-color); }
.why-icon        { color: var(--primary); }
.pricing-icon    { color: var(--primary); }
.faq-cta-icon    { color: var(--primary); }
.faq-contact-icon{ color: var(--primary); }
.float-badge-icon{ color: var(--primary); }
.phone-overlay-ic{ color: var(--primary); }
.service-cta-icon{ color: var(--white); }

.step-icon { color: var(--primary); transition: color 0.35s ease; }
.process-step:hover .step-icon { color: var(--white); }

.book-perk-ic i  { color: #FBCFE8; }
.app-icon        { color: var(--white); }

/* ============================================================
   SUB-PAGES (About, Sustainability, FAQ, Legal, etc.)
   ============================================================ */
.page-hero {
  position: relative;
  margin-top: var(--nav-h);
  padding: 84px 0 96px;
  background: var(--grad-hero);
  text-align: center;
  overflow: hidden;
}
.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--grad-primary);
  opacity: 0.10;
  filter: blur(8px);
  z-index: 0;
}
.page-hero::before { width: 340px; height: 340px; top: -120px; left: -80px; }
.page-hero::after  { width: 300px; height: 300px; bottom: -140px; right: -60px; }

.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero .section-tag { margin-bottom: 18px; }
.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
}
.page-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 22px;
}
.page-breadcrumb a { color: var(--primary); font-weight: 600; }
.page-breadcrumb span { opacity: 0.6; }

/* ---- Page body / legal content ---- */
.page-section { padding: 72px 0 100px; }
.page-content {
  max-width: 860px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 1rem;
}
.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 14px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 0 10px;
}
.page-content p { margin-bottom: 16px; }
.page-content ul.page-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.page-content ul.page-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.page-content ul.page-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--primary);
  font-weight: 800;
}
.page-content .page-updated {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--off-white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
}
.page-content a.inline-link { color: var(--primary); font-weight: 600; }

/* ---- Value cards (About / Sustainability) ---- */
.page-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.page-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}
.page-card-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: var(--grad-soft);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.page-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.page-card p  { font-size: 0.95rem; color: var(--text-mid); margin: 0; }

/* ---- Page CTA band ---- */
.page-cta {
  margin-top: 72px;
  text-align: center;
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 56px 32px;
  color: var(--white);
}
.page-cta h2 { color: var(--white); font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.page-cta p  { color: rgba(255,255,255,0.9); max-width: 520px; margin: 0 auto 28px; }

@media (max-width: 900px) {
  .page-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page-hero { padding: 60px 0 68px; }
  .page-section { padding: 52px 0 72px; }
}
