:root {
  --primary: #03a0a6;
  --secondary: #1a9bb1;
  --dark: #0f172a;
  --surface: rgba(255, 255, 255, 0.72);
  --text: #111827;
  --muted: #4b5563;
  --stroke: rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #e0f7ff 0%, #f4fbff 35%, #f8fafc 100%);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(55px);
  z-index: -1;
  opacity: 0.35;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: #38bdf8;
  top: -80px;
  right: -80px;
}

.orb-2 {
  width: 420px;
  height: 420px;
  background: #2dd4bf;
  bottom: -160px;
  left: -140px;
}

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

.small {
  max-width: 520px;
  margin-top: 5rem;
}

.hero {
  padding: 5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.3rem;
  align-items: stretch;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(3, 160, 166, 0.1);
  color: #0f766e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0.8rem 0;
  line-height: 1.05;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.hero-subtitle,
.section-subtitle {
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.7;
}

.hero-cta {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 16px 50px rgba(3, 10, 30, 0.08);
}

.hero-panel ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
}

section {
  margin: 2.4rem 0;
}

.cards,
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.gallery img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 28px rgba(15, 23, 42, 0.15);
}

.btn,
button {
  display: inline-block;
  border: 0;
  border-radius: 12px;
  padding: 0.72rem 1rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: all 200ms ease;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.btn:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(3, 160, 166, 0.22);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--stroke);
  color: var(--text);
}

input,
textarea {
  width: 100%;
  margin: 0.3rem 0 0.9rem;
  padding: 0.7rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font: inherit;
}

#map {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  margin: 1rem 0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.11);
}

.video-wrapper iframe {
  width: 100%;
  min-height: 360px;
  border: none;
  border-radius: 14px;
}

.service-list {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.2rem;
}

footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1rem 0;
  margin-top: 3rem;
}

footer a {
  color: #93c5fd;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
