﻿:root {
  --brand-ocean: #2b84b8;
  --brand-sea: #46a3a8;
  --brand-sky: #eaf6ff;
  --brand-mint: #dff4ea;
  --brand-navy: #173b5e;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 10% 10%, rgba(234, 246, 255, 0.95), rgba(255, 255, 255, 1) 55%),
    linear-gradient(160deg, rgba(223, 244, 234, 0.35), rgba(255, 255, 255, 0.9) 45%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(43, 132, 184, 0.1);
  box-shadow: 0 15px 45px rgba(23, 59, 94, 0.08);
}

.cta-ring {
  box-shadow: 0 0 0 0 rgba(43, 132, 184, 0.35);
  animation: pulse-ring 2.2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 132, 184, 0.35);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(43, 132, 184, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 132, 184, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.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;
}

.hero-decor::before,
.hero-decor::after {
  content: '';
  position: absolute;
  border-radius: 9999px;
  filter: blur(0.5px);
  pointer-events: none;
}

.hero-decor::before {
  width: 200px;
  height: 200px;
  top: -20px;
  right: -45px;
  background: radial-gradient(circle, rgba(70, 163, 168, 0.32) 0%, rgba(70, 163, 168, 0) 75%);
}

.hero-decor::after {
  width: 250px;
  height: 250px;
  bottom: -75px;
  left: -75px;
  background: radial-gradient(circle, rgba(43, 132, 184, 0.24) 0%, rgba(43, 132, 184, 0) 78%);
}

.map-shell iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

.star {
  color: #f2b705;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(43, 132, 184, 0.4);
  outline-offset: 2px;
}
