:root {
  --bg-dark: #0a1628;
  --bg-darker: #06101e;
  --bg-card: #0f1e36;
  --primary: #00b4d8;
  --primary-glow: #00d4f5;
  --accent: #0ea5e9;
  --text-light: #e8f0fa;
  --text-muted: #8da9c4;
  --white: #fff;
  --border: rgba(0, 180, 216, 0.2);
  --success: #22c55e;
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  background: var(--bg-dark);
  line-height: 1.6;
}
h1, h2, h3, .btn, .stat-number, .hero-badge, .spotlight-label { font-family: 'Space Grotesk', sans-serif; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 780px; }

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(1, 0, 5, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.logo img { width: 85px; height: auto; }
.menu-toggle {
  display: none;
  background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer;
}
.nav-menu {
  display: flex;
  list-style: none; gap: 1.5rem; margin: 0; padding: 0;
}
.nav-menu a { color: var(--text-light); font-weight: 500; font-size: 0.95rem; }
.nav-menu a:hover { color: var(--primary); }
.phone-pill {
  background: var(--primary); color: #fff; padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.875rem; white-space: nowrap;
  display: inline-flex; align-items: center;
}
.phone-pill:hover { background: var(--primary-glow); }

@media (max-width: 900px) {
  .phone-pill { font-size: 0.8rem; padding: 0.45rem 1rem; }
  .nav-menu { gap: 1rem; }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; order: 3; }
  .nav-menu {
    position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(6, 16, 30, 0.98); flex-direction: column;
    padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
    transform: translateY(-150%); opacity: 0; pointer-events: none; transition: 0.25s ease;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .logo { order: 1; }
  .phone-pill { order: 2; margin-left: auto; margin-right: 0.75rem; }
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  background: var(--bg-dark);
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
.hero-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.82) 0%, rgba(6, 16, 30, 0.55) 50%, rgba(10, 22, 40, 0.88) 100%);
  z-index: 1;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.45;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 50% 80%, rgba(0, 180, 216, 0.12) 0%, transparent 55%);
  animation: meshShift 20s ease-in-out infinite;
}
@keyframes meshShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.12) rotate(2deg); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}
.hero-badge {
  display: inline-block; border: 1px solid var(--primary); color: var(--primary);
  padding: 0.35rem 0.9rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.25rem;
}
.hero h1 { margin: 0 0 1rem; font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.1; color: var(--white); }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin: 0 0 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-muted); }
.hero-trust span { border-left: 2px solid var(--primary); padding-left: 0.75rem; }
.hero-trust span:first-child { border-left: none; padding-left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; border-radius: var(--radius-sm); font-weight: 600;
  border: 2px solid transparent; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: 'Space Grotesk', sans-serif;
}
.btn-primary { background: var(--primary); color: #062029; border-color: var(--primary); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(0, 180, 216, 0.6); }
.hero-cta { animation: ctaPulse 3s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 180, 216, 0.4); }
  50% { box-shadow: 0 0 30px rgba(0, 180, 216, 0.7); }
}
.btn-outline { background: transparent; color: var(--white); border-color: var(--primary); }
.btn-outline:hover { background: rgba(0, 180, 216, 0.1); }
.btn-full { width: 100%; }

/* Sections */
.section { padding: 4rem 0; }
.section-darker { background: var(--bg-darker); }
.section-title { text-align: center; font-size: clamp(1.8rem, 4vw, 2.5rem); margin: 0 0 0.5rem; color: var(--white); }
.section-subtitle { text-align: center; color: var(--text-muted); margin: 0 0 2.5rem; }

/* Stats */
.stats-bar { background: var(--bg-darker); padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 0.15rem; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.stat-label { flex-basis: 100%; font-size: 0.875rem; color: var(--text-muted); margin-top: 0.4rem; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-3 { grid-template-columns: 1fr; } }

/* Service cards */
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.15);
  border-color: var(--primary);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 30, 0.8) 0%, rgba(6, 16, 30, 0.4) 60%, rgba(6, 16, 30, 0.2) 100%);
  z-index: 1;
}
.service-inner {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
}
.service-card .icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}
.service-card h3 {
  color: #ffffff;
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
.service-card p {
  color: rgba(232, 240, 250, 0.95);
  margin: 0;
  font-size: 0.95rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

/* Feature cards */
.feature-card {
  background: rgba(15, 30, 54, 0.6); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0, 180, 216, 0.12); border-color: var(--primary); }
.feature-card .icon { width: 36px; height: 36px; color: var(--primary); margin-bottom: 0.75rem; }
.feature-card h3 { color: var(--white); margin: 0 0 0.5rem; }
.feature-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* Spotlight */
.spotlight { background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(14, 165, 233, 0.04)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.spotlight-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.spotlight-label { display: inline-block; background: rgba(0, 180, 216, 0.15); color: var(--primary); padding: 0.35rem 0.75rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.75rem; }
.spotlight-text h2 { margin: 0 0 1rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.spotlight-text p { color: var(--text-muted); margin: 0 0 1rem; }
.checklist { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.checklist li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; color: var(--text-light); }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.spotlight-image { overflow: hidden; border-radius: var(--radius);
  min-height: 300px; border-radius: var(--radius); border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-darker));
  display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.9rem;
}
@media (max-width: 900px) { .spotlight-grid { grid-template-columns: 1fr; } }

/* Team */
.team-card {
  max-width: 680px; margin: 0 auto; text-align: center;
  background: rgba(15, 30, 54, 0.6); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem;
}
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif;
}
.team-card h3 { margin: 0 0 0.25rem; font-size: 1.6rem; color: var(--white); }
.team-title { color: var(--primary); font-weight: 600; margin: 0 0 1rem; }
.team-bio { color: var(--text-muted); margin: 0 0 1.25rem; }
.team-quals { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.team-quals span { background: rgba(0, 180, 216, 0.12); color: var(--primary); padding: 0.3rem 0.7rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }

/* Badges */
.badge-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.badge-strip img { max-height: 70px; width: auto; object-fit: contain; filter: brightness(1.1); }
.badge-note { text-align: center; color: var(--text-muted); font-size: 0.9rem; }

/* Reviews */
.review-card {
  background: rgba(15, 30, 54, 0.6); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 0.75rem; letter-spacing: 0.1rem; }
.review-card p { color: var(--text-light); margin: 0 0 1rem; font-style: italic; }
.review-card footer { color: var(--text-muted); font-size: 0.8rem; font-weight: 600; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.gallery-card {
  aspect-ratio: 4/3; border-radius: var(--radius); border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--bg-card), rgba(0, 180, 216, 0.15));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--text-light); cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: 0 8px 25px rgba(0, 180, 216, 0.12); border-color: var(--primary); }
.gallery-card .camera { width: 48px; height: 48px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 1.5; }
.gallery-card span { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 16, 30, 0.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox-close { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 2.5rem; cursor: pointer; }
.lightbox-content { max-width: 900px; width: 100%; text-align: center; color: var(--text-muted); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: rgba(15, 30, 54, 0.5); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0 1.25rem; transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  cursor: pointer; padding: 1.1rem 0; font-weight: 600; color: var(--white); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--primary); font-size: 1.4rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--text-muted); margin: 0 0 1.25rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info p { color: var(--text-muted); }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.contact-list li { margin-bottom: 0.75rem; }
.contact-list a { color: var(--white); font-weight: 600; }
.form-card {
  background: rgba(15, 30, 54, 0.6); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text-light); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: rgba(6, 16, 30, 0.7); color: var(--text-light); font-family: inherit; font-size: 1rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}
.form-group select option { background: #06101e; color: #fff; }
.form-group input[aria-invalid="true"], .form-group select[aria-invalid="true"], .form-group textarea[aria-invalid="true"] {
  border-color: #e5533d; background: rgba(90, 20, 15, 0.45);
}
.honeypot { position: absolute; left: -9999px; }
.form-error { color: #ff9c8c; font-size: 0.9rem; margin: -0.5rem 0 1rem; }
.success-banner {
  position: fixed; top: 90px; left: 50%; transform: translateX(-50%);
  z-index: 200; padding: 1rem 1.75rem; border-radius: var(--radius-sm);
  color: #fff; font-weight: 500; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.success-banner--success { background: #1f8b4c; }
.success-banner--error { background: #a3241c; }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--primary); color: var(--bg-dark); transition: background 0.2s, color 0.2s; }
.social-links a:hover { background: var(--primary-glow); color: var(--bg-dark); }
.footer-social-col .social-links a { background: var(--primary); color: var(--bg-dark); }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { background: #010005; padding: 3rem 0 1.5rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.footer-col h3 { color: var(--white); margin: 0 0 1rem; font-size: 1.1rem; }
.footer-col p, .footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a:hover { color: var(--primary); }
.footer-logo-card { display: inline-block; margin-top: 1rem; }
.footer-logo-card img { width: 85px; height: auto; }
.footer-social-col { text-align: center; }
.footer-bottom { text-align: center; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; margin: 0.35rem 0; }
.footer-bottom a:hover { color: var(--primary); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } .footer-social-col { text-align: center; } }

/* Mobile call bar */
.mobile-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: var(--primary); }
.mobile-call-bar a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem; color: #062029; font-weight: 700; }
.mobile-call-bar svg { width: 22px; height: 22px; fill: currentColor; }
@media (max-width: 768px) { .mobile-call-bar { display: block; } body { padding-bottom: 55px; } }

/* Scroll reveal */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.animate { opacity: 0; transform: translateY(20px); }
.reveal.animate.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* Focus visible */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--primary); outline-offset: 2px;
}

/* Legal page */
.legal-page h2 { color: var(--white); font-size: 1.3rem; margin-top: 2rem; }
.legal-page p, .legal-page li { color: var(--text-muted); }
.legal-page a:not(.btn) { color: var(--primary); }

.spotlight-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }