/* ═══════════════════════════════════════════════
   CLEANPRO — Cleaning Services Landing Page CSS
   Theme: Fresh Aqua + Deep Navy, editorial layout
═══════════════════════════════════════════════ */

:root {
  --navy:    #1a1a2e;
  --navy2:   #16213e;
  --aqua:    #ff6b00;
  --aqua2:   #ff8c38;
  --sky:     #fff4ec;
  --white:   #ffffff;
  --off:     #fff8f3;
  --grey:    #64748b;
  --light-grey: #e2e8f0;
  --text:    #1e293b;
  --radius:  16px;
  --radius-lg: 28px;
  --shadow:  0 8px 40px rgba(255,107,0,.18);
  --shadow-dark: 0 24px 60px rgba(26,26,46,.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── UTILITY ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--aqua);
  background: rgba(255,107,0,.1);
  border: 1px solid rgba(255,107,0,.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 48px;
}
.section-title em { font-style: normal; color: var(--aqua); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aqua);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-primary:hover {
  background: var(--aqua2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,107,0,.4);
}
.btn-primary.large { padding: 18px 48px; font-size: 17px; }
.btn-primary.full-btn { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,.35);
  text-decoration: none;
  transition: background .25s, border-color .25s;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.center-btn { display: block; width: fit-content; margin: 48px auto 0; }

/* ── NAVBAR ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}
.navbar.scrolled {
  background: rgba(11,22,40,.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,.2);
  padding: 14px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo .logo-img {
  height: 36px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--aqua); }

.nav-cta {
  background: var(--aqua);
  color: var(--white) !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700 !important;
  padding: 10px 24px;
  border-radius: 100px;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--aqua2) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ── MOBILE MENU ─────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin-bottom: 24px; }
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--aqua); }
.close-menu {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #b4b4d2 0%, #597392 60%, #99c1d4 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 80px 80px;
  gap: 60px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  animation: pulse 6s ease-in-out infinite;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--aqua), transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--aqua2), transparent 70%);
  bottom: -100px; left: 100px;
  animation-delay: 2s;
}
.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #fff, transparent 70%);
  top: 40%; left: 45%;
  opacity: .04;
  animation-delay: 4s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .08; }
  50% { transform: scale(1.1); opacity: .12; }
}

.bubble-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,107,0,.12) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .5;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.35);
  color: var(--aqua2);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp .8s .2s both;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--aqua);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .line { display: block; animation: fadeUp .8s both; }
.hero-title .line:nth-child(1) { animation-delay: .3s; }
.hero-title .line:nth-child(2) { animation-delay: .45s; }
.accent-line { color: var(--aqua); position: relative; }

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeUp .8s .6s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp .8s .75s both;
}
.arrow { transition: transform .2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp .8s .9s both;
}
.stat { text-align: left; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.stat > span:nth-child(2) {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--aqua);
}
.stat-label { display: block; font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  animation: fadeIn 1s .4s both;
}

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

.card-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}
.card-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}
.card-img-wrap:hover img { transform: scale(1.04); }

.card-tag {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--white);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tag-icon { font-size: 16px; }

.floating-badge {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}
.fb1 { top: 40px; left: -40px; animation-delay: 0s; }
.fb2 { top: 120px; right: -40px; animation-delay: 1.5s; }

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

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.4);
  font-size: 12px;
  z-index: 1;
}
.scroll-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── WHY SECTION ─────────────────────────────── */
.why {
  padding: 100px 0;
  background: var(--off);
  text-align: center;
}

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

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  border: 1px solid var(--light-grey);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  opacity: 0;
  transform: translateY(30px);
}
.why-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s, transform .6s, box-shadow .3s, border-color .3s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(255,107,0,.18);
  border-color: var(--aqua);
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--grey);
}

/* ── SERVICES ────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s, transform .5s;
}
.service-card.large {
  grid-column: span 2;
  grid-row: span 1;
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.service-card.large img { height: 340px; }

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,22,40,.95) 0%, rgba(11,22,40,.3) 60%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: .85;
  transition: opacity .35s;
}
.service-card:hover .service-overlay { opacity: 1; }
.service-card:hover img { transform: scale(1.07); }

.service-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--aqua);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}

.service-overlay h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card.large .service-overlay h3 { font-size: 24px; }

.service-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  line-height: 1.5;
}

.service-btn {
  display: inline-block;
  color: var(--aqua);
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: letter-spacing .2s;
}
.service-btn:hover { letter-spacing: 1px; }

/* ── TRUST STRIP ─────────────────────────────── */
.trust-strip {
  background: var(--navy);
  padding: 80px 24px;
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.trust-text p {
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 32px;
  font-size: 15px;
}

.trust-image {
  position: relative;
}
.trust-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.trust-badge {
  position: absolute;
  bottom: -20px;
  right: 24px;
  background: var(--aqua);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(255,107,0,.35);
}
.trust-icon { font-size: 1.6rem; }
.trust-badge strong { display: block; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; }
.trust-badge small { font-size: 12px; }

/* ── SERVICE DETAILS ─────────────────────────── */
.service-details {
  padding: 100px 0;
  background: var(--off);
}

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

.detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--light-grey);
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  opacity: 0;
  transform: translateY(30px);
}
.detail-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s, transform .6s, box-shadow .3s, border-color .3s;
}
.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--aqua);
}

.detail-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0,196,180,.15);
  line-height: 1;
  margin-bottom: 20px;
}
.detail-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.detail-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey);
  margin-bottom: 24px;
}
.detail-link {
  color: var(--aqua);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: letter-spacing .2s;
}
.detail-link:hover { letter-spacing: 1px; }

/* ── PROCESS ─────────────────────────────────── */
.process {
  padding: 100px 0;
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--navy));
  z-index: 0;
}

.process-step {
  padding: 0 24px 40px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
}
.process-step.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s, transform .6s;
}

.step-num {
  width: 64px; height: 64px;
  background: var(--navy);
  color: var(--aqua);
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--aqua);
  transition: background .3s, color .3s;
}
.process-step:hover .step-num {
  background: var(--aqua);
  color: var(--navy);
}

.step-content h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.65;
}

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--off);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  margin-bottom: 32px;
}

.testi-card {
  min-width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--light-grey);
  flex-shrink: 0;
  transition: box-shadow .3s;
}
.testi-card:hover { box-shadow: var(--shadow); }

.testi-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testi-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--aqua);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-family: 'Syne', sans-serif; font-size: 15px; color: var(--navy); }
.testi-author small { font-size: 12px; color: var(--grey); }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--light-grey);
  cursor: pointer;
  transition: background .2s, width .2s;
  border: none;
}
.testi-dot.active {
  background: var(--aqua);
  width: 28px;
  border-radius: 4px;
}

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #ff6b00 0%, #e85d00 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cs1 { width: 300px; height: 300px; top: -100px; left: -100px; }
.cs2 { width: 500px; height: 500px; bottom: -200px; right: -150px; }

.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  margin-bottom: 36px;
}
.cta-banner .btn-primary {
  background: var(--navy);
  color: var(--white);
}
.cta-banner .btn-primary:hover {
  background: #0f1f38;
  box-shadow: 0 12px 32px rgba(26,26,46,.3);
}

/* ── CONTACT ─────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--white);
}

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

.contact-info .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.contact-info > p {
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ci-icon {
  width: 48px; height: 48px;
  background: var(--off);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; }
.contact-item a, .contact-item span {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
}
.contact-item a:hover { color: var(--aqua); }

.contact-form-wrap { position: relative; }

.contact-form {
  background: var(--off);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group:last-child { margin-bottom: 0; }

label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid var(--light-grey);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(255,107,0,.12);
}
textarea { resize: vertical; min-height: 100px; }
select { cursor: pointer; }

.form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--off);
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.form-success.show { display: flex; }

.success-icon {
  width: 72px; height: 72px;
  background: var(--aqua);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  animation: popIn .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
.form-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  color: var(--navy);
}
.form-success p { color: var(--grey); }

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.social-links a:hover { background: var(--aqua); color: var(--white); }

.footer-links h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--aqua); }

.footer-bottom {
  padding: 24px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,.3);
  font-size: 13px;
}

/* ── SCROLL ANIMATIONS ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 130px 40px 80px; text-align: center; }
  .hero-visual { justify-content: center; }
  .hero-badge { display: inline-flex; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .scroll-hint { left: 40px; }
  .fb1 { left: 0; }
  .fb2 { right: 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.large { grid-column: span 2; }
  .trust-inner { grid-template-columns: 1fr; }
  .detail-cards { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 120px 24px 60px; gap: 40px; }
  .hero-title { font-size: 2.6rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.large { grid-column: span 1; }
  .process-timeline { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .testi-card { min-width: 300px; }
  .fb1, .fb2 { display: none; }
  .scroll-hint { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

/* ── MOBILE MENU HEADER ─────────────────────── */
.mob-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mob-logo { height: 32px; filter: brightness(0) invert(1); }
.close-menu {
  position: static;
  background: rgba(255,255,255,.08);
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.close-menu:hover { background: var(--aqua); }
.mob-cta {
  margin-top: 16px;
  display: inline-flex !important;
}

/* ── PRICING ──────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,.08), transparent 70%);
  pointer-events: none;
}
.pricing .section-label { /* override for dark bg */
  background: rgba(255,107,0,.15);
  border-color: rgba(255,107,0,.3);
}
.pricing .section-title { color: var(--white); }
.pricing .section-title em { color: var(--aqua); }

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

.pricing-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  opacity: 0;
  transform: translateY(30px);
}
.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s, transform .6s, border-color .3s, box-shadow .3s;
}
.pricing-card:hover {
  border-color: rgba(255,107,0,.4);
  box-shadow: 0 12px 40px rgba(255,107,0,.15);
}
.pricing-card.featured {
  background: rgba(255,107,0,.08);
  border-color: var(--aqua);
  transform: scale(1.04) translateY(0);
  box-shadow: 0 24px 60px rgba(255,107,0,.2);
}
.pricing-card.featured.visible {
  transform: scale(1.04) translateY(0);
}
.pricing-card.featured:hover {
  box-shadow: 0 28px 70px rgba(255,107,0,.3);
}

.pricing-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aqua);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.pricing-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.pricing-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--aqua);
  margin-bottom: 28px;
  line-height: 1;
}
.pricing-price span:first-child {
  font-size: 1.4rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.pricing-price .per {
  font-size: 1rem;
  color: rgba(255,255,255,.4);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pricing-features li.muted {
  color: rgba(255,255,255,.3);
  text-decoration: line-through;
}

.btn-outline-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid rgba(255,107,0,.4);
  color: var(--aqua);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .25s, border-color .25s, color .25s;
}
.btn-outline-price:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
}

/* ── FLOATING CALL BUTTON ───────────────────── */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  background: var(--aqua);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(255,107,0,.45);
  transition: transform .25s, box-shadow .25s;
  animation: floatPulse 3s ease-in-out infinite;
}
.float-cta:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 48px rgba(255,107,0,.55);
  animation: none;
}
.float-icon { font-size: 18px; }
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 8px 32px rgba(255,107,0,.45); }
  50% { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(255,107,0,.55); }
}
@media (max-width: 768px) {
  .float-cta { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 14px; }
  .float-text { display: none; }
  .float-cta { padding: 14px; border-radius: 50%; }
  .float-icon { font-size: 22px; margin: 0; }
}
