/* ===========================
   MyNeedUrban — style.css
   Brand theme: Navy · Electric Blue · Orange
   =========================== */

:root {
  /* ── Brand palette (from logo) ── */
  --navy-950:  #0a1120;   /* deepest bg */
  --navy-900:  #0d1b2a;   /* header / footer bg */
  --navy-800:  #112236;   /* card bg dark */
  --navy-700:  #1a3048;   /* borders dark */
  --blue-600:  #1565c0;   /* deep blue */
  --blue-500:  #1e90ff;   /* primary blue */
  --blue-400:  #38b6ff;   /* lighter blue */
  --blue-100:  #dbeeff;   /* blue tint bg */
  --orange-600:#e05a00;   /* deep orange */
  --orange-500:#f97316;   /* primary orange */
  --orange-400:#fb923c;   /* lighter orange */
  --orange-100:#fff0e0;   /* orange tint bg */

  /* ── Neutrals ── */
  --ink-900:   #0d1b2a;
  --ink-700:   #1e3a5f;
  --muted:     #64748b;
  --line:      #e2e8f0;
  --surface:   #f4f8ff;   /* light page bg with blue tint */
  --white:     #ffffff;

  /* ── Gradients ── */
  --grad-primary:  linear-gradient(135deg, #1e90ff 0%, #38b6ff 50%, #f97316 100%);
  --grad-blue:     linear-gradient(135deg, #1565c0 0%, #1e90ff 100%);
  --grad-orange:   linear-gradient(135deg, #e05a00 0%, #f97316 100%);
  --grad-hero:     linear-gradient(160deg, #0a1120 0%, #0d1b2a 60%, #112236 100%);
  --grad-soft:     linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);

  /* ── Shadows ── */
  --shadow-sm: 0 6px 16px rgba(13, 27, 42, 0.08);
  --shadow-md: 0 16px 40px rgba(13, 27, 42, 0.12);
  --shadow-lg: 0 30px 70px rgba(30, 144, 255, 0.18);
  --shadow-orange: 0 12px 30px rgba(249, 115, 22, 0.35);

  /* ── Radii ── */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink-900);
  margin: 0 0 .6rem;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 .6rem; color: var(--ink-700); }

.accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-100); color: var(--blue-600);
  font-weight: 700; font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: .95rem;
  padding: 12px 22px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-primary {
  background: var(--grad-blue); color: #fff;
  box-shadow: 0 12px 30px rgba(30, 144, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(30, 144, 255, 0.55); }
.btn-outline {
  background: #fff; color: var(--ink-900); border-color: var(--line);
}
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-600); }
.btn-ghost { background: transparent; color: var(--ink-900); }
.btn-ghost:hover { color: var(--blue-500); }
.w-100 { width: 100%; }

/* Section base */
.section { padding: 96px 0; }
.section-alt { background: var(--grad-soft); }
.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-head p { color: var(--muted); }

/* Hero section overrides btn-primary to orange for main CTA */
.hero .btn-primary {
  background: var(--grad-orange);
  box-shadow: var(--shadow-orange);
}
.hero .btn-primary:hover {
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.55);
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(30, 144, 255, 0.15);
  transition: box-shadow .2s, background .2s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(13, 27, 42, 0.5); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 44px; height: 44px; border-radius: 12px;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.02rem; font-weight: 800; color: #fff; }
.brand-text small { font-size: .72rem; color: var(--blue-400); letter-spacing: .04em; text-transform: uppercase; }

.nav { display: flex; gap: 22px; }
.nav a {
  font-weight: 600; font-size: .95rem; color: #cbd5e1;
  position: relative; padding: 4px 0;
}
.nav a:hover, .nav a.active { color: var(--blue-400); }
.nav a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--grad-primary);
  transition: width .25s;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 8px; }
.header-cta .btn-ghost { color: #cbd5e1; }
.header-cta .btn-ghost:hover { color: var(--blue-400); }
.nav-toggle {
  display: none;
  border: 1px solid rgba(30, 144, 255, 0.3); background: rgba(30, 144, 255, 0.1);
  width: 42px; height: 42px; border-radius: 12px;
  font-size: 1.1rem; color: #fff; cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative; padding: 100px 0 90px;
  background: var(--grad-hero); overflow: hidden;
}
.hero h1, .hero h2, .hero h3, .hero h4 { color: #fff; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(600px circle at 5% 30%, rgba(30, 144, 255, 0.22), transparent 60%),
    radial-gradient(400px circle at 95% 70%, rgba(249, 115, 22, 0.18), transparent 60%),
    radial-gradient(300px circle at 50% 100%, rgba(30, 144, 255, 0.12), transparent 60%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center;
}
.hero-copy .eyebrow {
  background: rgba(30, 144, 255, 0.18); color: var(--blue-400);
  border: 1px solid rgba(30, 144, 255, 0.3);
}
.hero-copy .lead { color: #94a3b8; font-size: 1.1rem; max-width: 560px; margin: .8rem 0 1.4rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-ctas .btn-outline {
  background: rgba(255,255,255,0.06); color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.hero-ctas .btn-outline:hover {
  background: rgba(30, 144, 255, 0.15); border-color: var(--blue-400); color: var(--blue-400);
}

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 18px 22px;
  color: #94a3b8; font-weight: 600; font-size: .9rem;
}
.trust-strip i { color: var(--orange-400); margin-right: 6px; }

/* Hero art */
.hero-art { position: relative; min-height: 460px; }
.hero-card {
  position: absolute; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 4px solid rgba(30, 144, 255, 0.3);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hc-1 { top: 0; left: 10%; width: 72%; aspect-ratio: 4/3; transform: rotate(-3deg); }
.hc-2 { bottom: 0; right: 0; width: 52%; aspect-ratio: 1/1; transform: rotate(4deg); }
.float-badge {
  position: absolute; bottom: 30px; left: -10px;
  display: flex; align-items: center; gap: 12px;
  background: var(--navy-800); padding: 12px 16px; border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(30, 144, 255, 0.25); z-index: 2;
}
.float-badge .fb-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad-orange); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.float-badge strong { display: block; font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: #fff; }
.float-badge small { color: var(--blue-400); font-size: .8rem; }

/* ===== About ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center;
}
.about-img { position: relative; }
.about-img img {
  border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-img .stat-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy-900); padding: 18px 22px; border-radius: 16px;
  box-shadow: var(--shadow-md); text-align: center;
  border: 1px solid rgba(30, 144, 255, 0.25);
}
.stat-card strong { display: block; font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--blue-400); }
.stat-card small { color: #94a3b8; }
.check-list { margin: 1rem 0 1.5rem; }
.check-list li { padding: 6px 0; color: var(--ink-700); }
.check-list i { color: var(--blue-500); margin-right: 8px; }

/* ===== Services ===== */
.services-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.service-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-blue); opacity: 0;
  transition: opacity .3s; z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-400);
}
.service-card:hover::before { opacity: 0.05; }
.svc-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--blue-100); color: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 14px;
  transition: transform .3s;
}
.service-card:hover .svc-icon {
  background: var(--grad-blue); color: #fff; transform: scale(1.06);
}
.service-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.15rem; }
.service-card p { color: var(--muted); font-size: .94rem; }
.price-tag {
  display: inline-block; margin-top: 8px;
  background: var(--orange-100); color: var(--orange-600);
  font-weight: 700; font-size: .85rem; padding: 4px 12px; border-radius: 999px;
}

/* ===== Pricing ===== */
.price-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1050px; margin: 0 auto;
}
.price-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 28px;
  position: relative; transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--blue-600); }
.price { display: flex; align-items: baseline; gap: 4px; margin: 8px 0 18px; }
.price .cur { font-size: 1.2rem; font-weight: 600; color: var(--ink-700); }
.price .num { font-family: 'DM Serif Display', serif; font-size: 2.8rem; color: var(--ink-900); }
.price .per { color: var(--muted); font-size: .9rem; margin-left: 4px; }
.price-card ul { margin: 0 0 22px; }
.price-card li { padding: 6px 0; color: var(--ink-700); font-size: .95rem; }
.price-card li i { color: var(--blue-500); margin-right: 8px; }
.price-card.featured {
  border-color: var(--blue-500);
  box-shadow: 0 20px 50px rgba(30, 144, 255, 0.2);
  transform: translateY(-10px);
}
.price-card.featured .price .num { color: var(--blue-600); }
.ribbon {
  position: absolute; top: 16px; right: 16px;
  background: var(--grad-orange); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  padding: 5px 11px; border-radius: 999px;
  text-transform: uppercase;
}

/* ===== Why Choose Us ===== */
.why-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.why-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 24px;
  text-align: center; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-400); }
.why-card i {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-100); color: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 10px;
}
.why-card:hover i { background: var(--grad-blue); color: #fff; }
.why-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; margin: 4px 0 6px; }
.why-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ===== Before / After Gallery ===== */
.ba-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.ba {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-md); user-select: none;
  cursor: ew-resize; background: #111;
}
.ba img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-after { position: absolute; inset: 0; }
.ba-before-wrap {
  position: absolute; inset: 0; width: 50%;
  overflow: hidden; border-right: 3px solid #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  transition: width 0s;
}
.ba-before { width: 100%; height: 100%; }
.ba-before-wrap img {
  width: calc(100% * (100vw / 100)); /* will be overridden by JS */
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-900); color: var(--blue-400);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  pointer-events: none; font-size: 1rem;
  border: 2px solid rgba(30, 144, 255, 0.4);
}
.ba-tag {
  position: absolute; top: 14px;
  padding: 5px 12px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: #fff;
  backdrop-filter: blur(4px);
}
.ba-tag.left { left: 14px; background: rgba(239, 68, 68, 0.9); }
.ba-tag.right { right: 14px; background: rgba(34, 197, 94, 0.9); }

/* ===== Team ===== */
.team-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.team-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden;
  text-align: center; padding-bottom: 22px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-400); }
.team-avatar-placeholder {
  width: 100%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem; color: var(--blue-400);
  letter-spacing: .04em;
  border-bottom: 3px solid var(--blue-500);
}
.team-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  margin: 16px 0 4px; color: var(--ink-900);
}
.team-card small { color: var(--muted); font-size: .82rem; }

/* ===== Reviews Marquee ===== */
.reviews-section { overflow: hidden; padding-bottom: 96px; }

.marquee-wrap {
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* Row 1: right → left */
.marquee--left  { animation: scroll-left  55s linear infinite; }
/* Row 2: left → right */
.marquee--right { animation: scroll-right 55s linear infinite; }

/* Pause on hover */
.marquee-wrap:hover .marquee { animation-play-state: paused; }

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Review card */
.rcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  width: 320px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.rcard:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-400);
  transform: translateY(-3px);
}
.rcard-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.ravatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
}
.rcard-top > div:nth-child(2) { flex: 1; }
.rcard-top strong { display: block; font-size: .95rem; color: var(--ink-900); }
.rcard-top small  { color: var(--muted); font-size: .78rem; }
.g-logo { width: 18px; height: 18px; margin-left: auto; flex-shrink: 0; }

.rcard .stars { display: flex; align-items: center; gap: 2px; margin-bottom: 10px; }
.rcard .stars i { color: var(--orange-500); font-size: .85rem; }
.rdate { margin-left: 8px; font-size: .78rem; color: var(--muted); font-weight: 500; }

.rcard p {
  color: var(--ink-700); font-size: .9rem; line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== FAQ ===== */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 22px;
  margin-bottom: 12px; transition: box-shadow .2s, border-color .2s;
}
.faq details[open] { box-shadow: var(--shadow-sm); border-color: var(--blue-500); }
.faq summary {
  font-weight: 700; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--ink-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; color: var(--blue-500);
  transition: transform .25s;
}
.faq details[open] summary::after { content: "−"; color: var(--orange-500); }
.faq p { margin-top: 10px; color: var(--muted); }

/* ===== Contact ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 50px; align-items: start;
}
.contact-copy .lead { color: var(--muted); }
.contact-list { margin-top: 20px; }
.contact-list li {
  padding: 8px 0; color: var(--ink-700); font-weight: 500;
}
.contact-list i {
  color: var(--blue-500); margin-right: 10px;
  width: 18px; text-align: center;
}
.contact-list a:hover { color: var(--blue-600); }

.contact-form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 14px; }
.field label {
  display: block; font-weight: 600; font-size: .88rem;
  margin-bottom: 6px; color: var(--ink-700);
}
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .95rem;
  padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); color: var(--ink-900);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.12);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { margin-top: 10px; font-size: .9rem; color: var(--blue-600); min-height: 1.2em; }

.map-wrap {
  margin-top: 50px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.map-wrap iframe {
  width: 100%; height: 380px; border: 0; display: block;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-950); color: #94a3b8;
  padding: 70px 0 24px; margin-top: 40px;
  border-top: 1px solid rgba(30, 144, 255, 0.15);
}
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff; font-weight: 700; font-size: 1rem;
  margin-bottom: 14px;
}
.footer ul li {
  padding: 6px 0; font-size: .94rem;
}
.footer a { color: #94a3b8; }
.footer a:hover { color: var(--blue-400); }
.footer i { color: var(--blue-400); margin-right: 8px; }
.brand-dark .brand-text strong { color: #fff; }
.brand-dark .brand-text small { color: var(--blue-400); }
.footer-about { color: #64748b; margin: 14px 0; font-size: .94rem; max-width: 320px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(30, 144, 255, 0.08); color: #94a3b8;
  border: 1px solid rgba(30, 144, 255, 0.15);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s, color .2s;
}
.socials a:hover {
  background: var(--grad-blue); color: #fff;
  border-color: transparent; transform: translateY(-2px);
}
.foot-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 22px; color: #475569; font-size: .88rem;
}
.foot-bottom a { color: #475569; }
.foot-bottom a:hover { color: var(--blue-400); }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.2s infinite;
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 14px 40px rgba(37, 211, 102, 0.85); }
}

/* Reveal animation → moved to animations.css */

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .hero-art { min-height: 420px; margin-top: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--navy-900); padding: 14px 24px;
    border-top: 1px solid rgba(30, 144, 255, 0.15);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .2s, opacity .2s;
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 12px 0; border-bottom: 1px solid rgba(30, 144, 255, 0.1); color: #cbd5e1; }
  .nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-cta .btn-ghost { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .about-img .stat-card { right: 16px; bottom: -16px; }
  .hc-1 { left: 4%; width: 80%; }
  .hc-2 { width: 58%; }
  .float-badge { left: 10px; bottom: 10px; }
  .row-2 { grid-template-columns: 1fr; }
}
