@keyframes spin { to { transform: rotate(360deg); } }

:root {
  --brand: #0FA3B1;
  --brand-dark: #0a7a85;
  --brand-light: #1FCAD9;
  --accent: #F5A623;
  --dark: #080E14;
  --dark-2: #0D1822;
  --dark-3: #122030;
  --surface: #162636;
  --surface-2: #1E3348;
  --text-primary: #F0F6FF;
  --text-secondary: #8BA8BF;
  --text-muted: #4D7090;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
}
h1,h2,h3,h4,.font-display {
  font-family: 'Rubik', sans-serif;
}
.brand-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
}
.text-brand { color: var(--brand); }
.text-accent { color: var(--accent); }

/* Grain texture overlay */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Layered shadow system */
.shadow-brand {
  box-shadow:
    0 2px 4px rgba(0,0,0,0.4),
    0 8px 24px rgba(0,0,0,0.3),
    0 0 0 1px rgba(15,163,177,0.15),
    0 16px 48px rgba(15,163,177,0.12);
}
.shadow-card {
  box-shadow:
    0 1px 2px rgba(0,0,0,0.5),
    0 4px 16px rgba(0,0,0,0.4),
    0 12px 40px rgba(0,0,0,0.25);
}
.shadow-btn {
  box-shadow:
    0 2px 8px rgba(15,163,177,0.4),
    0 8px 24px rgba(15,163,177,0.2),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), opacity 0.15s ease;
  box-shadow: 0 2px 8px rgba(15,163,177,0.4), 0 8px 24px rgba(15,163,177,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:focus-visible { outline: 3px solid var(--brand-light); outline-offset: 3px; }
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 27px;
  border-radius: 8px;
  border: 1px solid rgba(15,163,177,0.35);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), border-color 0.15s ease, background 0.15s ease;
  text-decoration: none;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand); background: rgba(15,163,177,0.08); }
.btn-ghost:focus-visible { outline: 3px solid var(--brand-light); outline-offset: 3px; }
.btn-ghost:active { transform: translateY(0); }

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #f7bd52 100%);
  color: #080E14;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), opacity 0.15s ease;
  box-shadow: 0 2px 8px rgba(245,166,35,0.4), 0 8px 24px rgba(245,166,35,0.2);
  text-decoration: none;
}
.btn-accent:hover { transform: translateY(-2px) scale(1.02); }
.btn-accent:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn-accent:active { transform: translateY(0) scale(0.98); }

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(8,14,20,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15,163,177,0.1);
  transition: background 0.3s ease;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(15,163,177,0.7);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-phone {
  color: var(--brand);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}
.nav-phone:hover { color: var(--brand-light); }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(8,14,20,0.97);
  backdrop-filter: blur(24px);
  padding: 24px;
  border-bottom: 1px solid rgba(15,163,177,0.1);
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.15s ease;
}
.mobile-menu a:hover { color: var(--brand); }

@media (max-width: 900px) {
  .nav-links, .nav-phone-link { display: none; }
  .hamburger { display: flex; }
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(15,163,177,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(15,163,177,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 85%, rgba(245,166,35,0.05) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,163,177,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,163,177,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 100px 20px 60px; }
  .hero-visual { display: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15,163,177,0.1);
  border: 1px solid rgba(15,163,177,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px rgba(15,163,177,0.8);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-heading {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0 0 20px;
}
.hero-heading .highlight {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat-val {
  font-family: 'Rubik', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-val span { color: var(--brand); }
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Hero visual — camera monitor mock */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.monitor-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.monitor-frame {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(15,163,177,0.2);
  padding: 16px;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.6),
    0 24px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(15,163,177,0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.monitor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.monitor-title {
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rec-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #ff4444;
  letter-spacing: 0.08em;
}
.rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4444;
  animation: pulse 1.5s ease-in-out infinite;
}
.camera-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cam-feed {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--dark-3);
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.06);
}
.cam-feed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  mix-blend-mode: luminosity;
}
.cam-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,14,20,0.8) 100%);
}
.cam-label {
  position: absolute;
  bottom: 6px;
  left: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  font-family: 'Rubik', sans-serif;
}
.cam-time {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.monitor-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 12px;
}
.status-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #2ecc71;
  letter-spacing: 0.06em;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 6px rgba(46,204,113,0.6);
}
.status-count {
  font-size: 0.65rem;
  color: var(--text-muted);
}
.floating-alert {
  position: absolute;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--accent) 0%, #f7bd52 100%);
  color: #080E14;
  font-family: 'Rubik', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.floating-check {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--surface);
  border: 1px solid rgba(15,163,177,0.3);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: float 3.5s ease-in-out infinite;
  animation-delay: 0.5s;
}
.floating-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(46,204,113,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.floating-check-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Rubik', sans-serif;
  line-height: 1.3;
}
.floating-check-sub {
  font-size: 0.62rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

/* Section base */
section { position: relative; }
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0 0 16px;
}
.section-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
}

/* Services */
#services {
  padding: 120px 0;
  background: var(--dark-2);
}
.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.35);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15,163,177,0.25);
  box-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(15,163,177,0.12), 0 16px 48px rgba(15,163,177,0.08);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(15,163,177,0.1);
  border: 1px solid rgba(15,163,177,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: background 0.2s ease;
}
.service-card:hover .service-icon {
  background: rgba(15,163,177,0.18);
}
.service-name {
  font-family: 'Rubik', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Why Choose Us */
#why {
  padding: 120px 0;
  background: var(--dark);
  overflow: hidden;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(15,163,177,0.1);
  border: 1px solid rgba(15,163,177,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.why-feature-title {
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.why-feature-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.why-visual {
  position: relative;
}
.trust-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5), 0 24px 64px rgba(0,0,0,0.3);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.trust-item {
  text-align: center;
  padding: 20px 16px;
  background: var(--dark-3);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}
.trust-num {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1;
}
.trust-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(15,163,177,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Brands */
#brands {
  padding: 80px 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.brands-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.brands-track {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.brand-pill {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 24px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.brand-pill:hover {
  color: var(--brand);
  border-color: rgba(15,163,177,0.3);
  transform: translateY(-2px);
}

/* Service Area */
#area {
  padding: 120px 0;
  background: var(--dark);
}
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .area-inner { grid-template-columns: 1fr; gap: 40px; }
}
.area-map-mock {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(15,163,177,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 0 80px rgba(15,163,177,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(15,163,177,0.1) 0%, transparent 70%),
    linear-gradient(135deg, var(--dark-3) 0%, var(--surface) 100%);
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,163,177,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,163,177,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-center {
  position: relative;
  z-index: 2;
  text-align: center;
}
.map-pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 12px;
  box-shadow: 0 0 0 12px rgba(15,163,177,0.1), 0 0 0 24px rgba(15,163,177,0.05);
  animation: ping 2.5s ease-in-out infinite;
}
@keyframes ping {
  0%,100% { box-shadow: 0 0 0 12px rgba(15,163,177,0.1), 0 0 0 24px rgba(15,163,177,0.05); }
  50% { box-shadow: 0 0 0 20px rgba(15,163,177,0.06), 0 0 0 40px rgba(15,163,177,0.02); }
}
.map-city {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
}
.map-radius {
  font-size: 0.75rem;
  color: var(--brand);
  margin-top: 4px;
}
.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.city-tag {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

/* Testimonials */
#testimonials {
  padding: 120px 0;
  background: var(--dark-2);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-header .section-sub { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.25);
  position: relative;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.9rem;
}
.testimonial-quote {
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--surface-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--brand-light);
  flex-shrink: 0;
}
.author-name {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}
.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.testimonial-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(15,163,177,0.1);
  border: 1px solid rgba(15,163,177,0.2);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* About */
#about {
  padding: 120px 0;
  background: var(--dark);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}
.about-img-wrap {
  position: relative;
}
.about-img-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5), 0 24px 64px rgba(0,0,0,0.3);
}
.about-img-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  opacity: 0.75;
  mix-blend-mode: luminosity;
  display: block;
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,14,20,0.8) 0%, rgba(8,14,20,0.3) 50%, transparent 100%);
  border-radius: 20px;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(13,24,34,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15,163,177,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge-icon {
  font-size: 1.8rem;
}
.about-badge-title {
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 2px;
}
.about-badge-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.about-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.about-list-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(15,163,177,0.12);
  border: 1px solid rgba(15,163,177,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--brand);
  flex-shrink: 0;
}

/* CTA */
#cta {
  padding: 120px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(15,163,177,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,166,35,0.05) 0%, transparent 50%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 20px;
}
.cta-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 40px;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.cta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cta-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

/* Contact / Booking */
#contact {
  padding: 120px 0;
  background: var(--dark);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(15,163,177,0.1);
  border: 1px solid rgba(15,163,177,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-row-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact-row-val {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}
.contact-row-val:hover { color: var(--brand); }
.hours-block {
  margin-top: 32px;
  padding: 24px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.hours-title {
  font-family: 'Rubik', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hours-row:last-child { border-bottom: none; }
.hours-highlight { color: var(--accent); font-weight: 600; }

/* Form */
.booking-form-wrap {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5), 0 24px 64px rgba(0,0,0,0.25);
}
.form-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 28px;
  line-height: 1.5;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 24px; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15,163,177,0.12);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234D7090' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit-row {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}
.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
/*
  ============================================================
  BOOKING FORM INTEGRATION GUIDE
  ============================================================

  Option 1 — Formspree (simplest, no backend needed):
  1. Sign up at formspree.io
  2. Create a new form, get your endpoint URL
  3. Set <form action="https://formspree.io/f/YOUR_FORM_ID" method="POST">
  4. Add <input type="hidden" name="_next" value="https://yourdomain.com/thank-you.html">
  5. Done — submissions go to your email automatically.

  Option 2 — Netlify Forms (if deployed on Netlify):
  1. Add netlify attribute to form tag: <form netlify name="booking">
  2. Add <input type="hidden" name="form-name" value="booking">
  3. Deploy to Netlify — it auto-detects and handles submissions.
  4. Set up notifications in Netlify Dashboard → Forms → Notifications.

  Option 3 — Calendly embed (scheduling):
  1. Sign up at calendly.com
  2. Go to Event Types → Share → Add to website → Inline widget
  3. Replace the form below with:
     <div class="calendly-inline-widget" data-url="https://calendly.com/YOUR_LINK" style="min-width:320px;height:700px;"></div>
     <script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js"></script>

  Option 4 — TidyCal:
  1. Sign up at tidycal.com
  2. Create booking page, go to Embed → Inline
  3. Replace form with their embed snippet.

  Option 5 — Google Calendar / Google Forms:
  1. Create a Google Form with the fields below
  2. Get embed code from Responses → Link/Embed
  3. Or use Google Calendar appointment slots (Google One required)
  ============================================================
-->

/* Footer */
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand-name {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s ease;
}
.footer-contact-link:hover { color: var(--brand); }
.footer-col-title {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--brand); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-badge {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25,1,0.5,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
