/* ==============================
   AQUABLAZE — Aquablaze
   ============================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- VARIABLES ---------- */
:root {
  --blue: #0EA5E9;
  --blue-dark: #0284C7;
  --blue-deep: #075985;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --navy: #0F1F38;
  --navy-2: #162a4a;
  --navy-3: #1d3660;
  --yellow: #FBBF24;
  --green: #22C55E;
  --white: #ffffff;
  --light: #f8fafc;
  --light-2: #f1f5f9;
  --grey: #64748b;
  --grey-light: #94a3b8;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --shadow-blue: 0 8px 32px rgba(14,165,233,.30);
  --shadow-orange: 0 8px 32px rgba(249,115,22,.35);
}

/* ---------- ANIMATIONS ---------- */
@keyframes pulse-ring {
  0% { transform: scale(.9); opacity: .8; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(.9); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes slide-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
@keyframes shimmer-anim {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ---------- URGENCY BAR ---------- */
.urgency-bar {
  background: linear-gradient(90deg, #0f2744 0%, #1e3a5f 100%);
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--orange);
}
.urgency-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.urgency-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.urgency-tel {
  background: var(--orange);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: .82rem;
  margin-left: 8px;
  transition: background .2s;
}
.urgency-tel:hover { background: var(--orange-dark); }

/* ---------- HEADER ---------- */
.site-header {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 38px;
  z-index: 900;
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
}
.logo-tag {
  font-size: .72rem;
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: #475569;
  font-weight: 500;
  font-size: .9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--blue); background: #f0f9ff; }
.btn-call-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 20px;
  border-radius: 10px;
  margin-left: 8px;
  position: relative;
  overflow: visible;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-orange);
}
.btn-call-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(249,115,22,.45);
}
.call-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  border: 2px solid var(--orange);
  animation: pulse-ring 2s ease-out infinite;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #0f2744 40%, #0d3a6e 100%);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(14,165,233,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(249,115,22,.10) 0%, transparent 70%);
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  width: 100%;
}
.hero-content { max-width: 580px; width: 100%; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,.15);
  border: 1px solid rgba(14,165,233,.3);
  color: #7dd3fc;
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.badge-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.6s ease-in-out infinite;
}
.hero-title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--blue);
}
.hero-title .highlight {
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(249,115,22,.50);
}
.btn-primary:active { transform: translateY(0); }

/* Hero call button */
.btn-hero-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 1.45rem;
  padding: 22px 44px;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(249,115,22,.55);
  transition: background .2s, transform .15s, box-shadow .2s;
  overflow: visible;
  letter-spacing: .01em;
}
.btn-hero-call:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(249,115,22,.65);
}
.btn-hero-call:active { transform: translateY(0); }
.btn-hero-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 22px;
  border: 3px solid var(--orange);
  animation: pulse-ring 1.8s ease-out infinite;
  pointer-events: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  transition: background .2s, border-color .2s, transform .15s;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  border-radius: 12px;
  transition: transform .15s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.btn-xl { padding: 16px 30px; font-size: 1rem; }
.btn-lg { padding: 13px 26px; font-size: .95rem; }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 16px 24px;
  backdrop-filter: blur(8px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.stat strong {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat span {
  font-size: .72rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 3px;
  white-space: nowrap;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
  object-fit: cover;
  display: block;
}
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 320px;
}
.hcard {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  transition: transform .3s;
}
.hcard:hover { transform: translateY(-4px) !important; }
.hcard-icon { font-size: 1.8rem; }
.hcard-title { font-weight: 700; font-size: .95rem; }
.hcard-sub { font-size: .75rem; color: #94a3b8; margin-top: 2px; }
.hcard-1 { top: 20px; left: 0; right: 0; animation: float 4s ease-in-out infinite; }
.hcard-2 { top: 115px; left: 20px; right: -20px; animation: float 4s ease-in-out infinite .8s; }
.hcard-3 { top: 210px; left: 0; right: 20px; animation: float 4s ease-in-out infinite 1.6s; }
.hcard-badge {
  position: absolute;
  bottom: -10px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  box-shadow: var(--shadow-orange);
  animation: float 3s ease-in-out infinite 2s;
}
.badge-stars { color: var(--yellow); font-size: .85rem; }
.badge-text { font-size: .72rem; font-weight: 600; margin-top: 2px; }

/* Hero Wave */
.hero-wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: auto;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
}
.trust-track { overflow: hidden; }
.trust-items {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: slide-marquee 28s linear infinite;
}
.trust-item {
  color: #475569;
  font-size: .85rem;
  font-weight: 500;
  padding: 0 20px;
}
.trust-sep {
  color: #cbd5e1;
  font-size: .85rem;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.left { text-align: left; }
.section-tag {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.section-tag.light { color: #7dd3fc; }
.section-title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title.light { color: #fff; }
.section-sub {
  color: var(--grey);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-sub.light { color: #94a3b8; }

/* ---------- SERVICES ---------- */
.services {
  padding: 96px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.svc-img-wrap { position: relative; overflow: hidden; }
.svc-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s;
}
.svc-card:hover .svc-img { transform: scale(1.05); }
.svc-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
}
.svc-tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.svc-tag.teal { background: var(--teal); }
.svc-tag.orange { background: var(--orange); }
.svc-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.svc-icon-wrap.teal { background: #ccfbf1; }
.svc-icon-wrap.orange { background: #ffedd5; }
.svc-title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}
.svc-desc {
  color: var(--grey);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
  flex: 1;
}
.svc-list li {
  color: #475569;
  font-size: .87rem;
  padding-left: 18px;
  position: relative;
}
.svc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.svc-btn {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-weight: 700;
  font-size: .87rem;
  gap: 4px;
  transition: gap .2s;
}
.svc-btn:hover { gap: 8px; }
.svc-btn.teal { color: var(--teal); }
.svc-btn.orange { color: var(--orange); }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.cta-band-text p { color: #94a3b8; font-size: .95rem; }
.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ---------- WHY US ---------- */
.why-us {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 50%, #0d3a6e 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background .25s, transform .25s;
}
.why-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.why-card h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  color: #94a3b8;
  font-size: .87rem;
  line-height: 1.6;
}

/* ---------- MINI SCROLL ---------- */
.mini-scroll {
  padding: 64px 0;
  background: var(--light);
  overflow: hidden;
}
.mini-track { overflow: hidden; }
.mini-items {
  display: flex;
  gap: 16px;
  padding: 0 24px;
}
.mini-card {
  flex-shrink: 0;
  width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform .25s, box-shadow .25s;
  cursor: default;
}
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.mini-icon { font-size: 1.6rem; margin-bottom: 8px; }
.mini-tag {
  font-size: .7rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.mini-title {
  font-weight: 700;
  font-size: .9rem;
  color: #0f172a;
  margin-bottom: 4px;
}
.mini-desc { font-size: .78rem; color: var(--grey); }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 96px 0;
  background: #fff;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s, box-shadow .25s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-card.featured {
  background: linear-gradient(135deg, #0f2744 0%, #0d3a6e 100%);
  border-color: rgba(14,165,233,.3);
}
.testi-card.featured .testi-quote { color: #cbd5e1; }
.testi-card.featured .testi-author strong { color: #fff; }
.testi-card.featured .testi-author span { color: #64748b; }
.testi-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; }
.testi-quote {
  color: #475569;
  font-size: .9rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.testi-author strong {
  display: block;
  font-size: .9rem;
  color: #0f172a;
}
.testi-author span {
  font-size: .78rem;
  color: var(--grey);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 96px 0;
  background: var(--light);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: .93rem;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--blue); }
.faq-body {
  padding: 0 24px 20px;
  color: var(--grey);
  font-size: .9rem;
  line-height: 1.7;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 96px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  margin-top: 10px;
}
.contact-sub { color: var(--grey); font-size: .95rem; line-height: 1.6; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.contact-item:hover { border-color: var(--blue); }
.contact-tel {
  border-color: var(--orange);
  background: #fff7ed;
}
.contact-tel:hover { box-shadow: 0 0 0 3px rgba(249,115,22,.15); }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong { display: block; font-weight: 700; font-size: .95rem; color: #0f172a; }
.contact-item span { font-size: .8rem; color: var(--grey); margin-top: 2px; display: block; }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .93rem;
  font-family: inherit;
  color: #0f172a;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,.12);
}
.urgency-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 500;
  color: #475569;
}
.urgency-check input { display: none; }
.check-box {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
  position: relative;
}
.urgency-check input:checked + .check-box {
  background: var(--orange);
  border-color: var(--orange);
}
.urgency-check input:checked + .check-box::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
}
.btn-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-orange);
}
.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(249,115,22,.45);
}
.btn-submit:active { transform: translateY(0); }
.form-success {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #15803d;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-align: center;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(1.1);
}
.footer-brand p {
  font-size: .87rem;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 260px;
}
.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 18px;
  border-radius: 10px;
  transition: background .2s;
}
.footer-tel:hover { background: var(--orange-dark); }
.footer-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: #94a3b8;
  font-size: .87rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #64748b; font-size: .8rem; transition: color .2s; }
.footer-links a:hover { color: var(--blue); }

/* ---------- FLOATING CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 800;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .87rem;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  transition: transform .15s, box-shadow .2s;
}
.float-btn:hover { transform: translateY(-2px); }
.float-call {
  background: var(--orange);
  color: #fff;
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-orange);
}
.float-quote { background: #fff; color: var(--navy); }
.float-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  animation: pulse-ring 2s ease-out infinite;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid,
  .why-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-visual { display: none; }
  .hero-inner { grid-template-columns: 1fr; max-width: 680px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { gap: 40px; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; inset: 0; background: rgba(15,31,56,.97); flex-direction: column; justify-content: center; align-items: center; gap: 20px; z-index: 850; padding: 40px; }
  .main-nav.open { display: flex; }
  .main-nav .nav-link { font-size: 1.1rem; color: #fff; padding: 12px 24px; }
  .main-nav .btn-call-nav { margin-top: 10px; font-size: 1rem; padding: 14px 28px; }
  .burger { display: flex; z-index: 860; }
  .services-grid,
  .why-grid,
  .testi-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: center; }
  .stat { padding: 0 12px; }
  .stat strong { font-size: 1.4rem; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-cta { bottom: 16px; right: 16px; }
  .hero-actions { flex-direction: column; }
  .btn-xl { width: 100%; justify-content: center; }
  .hero-inner { padding: 60px 24px 40px; }
  .services, .why-us, .testimonials, .faq, .contact { padding: 64px 0; }
}

@media (max-width: 480px) {
  .urgency-inner { flex-direction: column; gap: 6px; text-align: center; font-size: .78rem; }
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .stat-sep { display: none; }
  .stat { padding: 0 8px; }
  .testi-grid { grid-template-columns: 1fr; }
  .mini-card { width: 170px; }
  .section-title { font-size: 1.5rem; }
  .contact-form-wrap { padding: 20px 16px; }
}
