/* ============================================================
   Waafoo Innovations Private Limited — design tokens
   Palette: ink #0B1115 · bg-dark #05080A · paper #FFFFFF
            teal-light #2FE6D2 · teal-deep #0B6E86 · coral #FF4D5E
   Type:    Baloo 2 (display, echoes the rounded logo wordmark)
            Inter (body) · IBM Plex Mono (legal / labels)
   ============================================================ */

:root {
  --ink: #0B1115;
  --bg-dark: #05080A;
  --paper: #FFFFFF;
  --paper-dim: #F4F7F7;
  --teal-light: #04729D;
  --teal-mid: #14B8B0;
  --teal-deep: #0B6E86;
  --blue-accent: #0F7BDB;
  --blue-accent-dark: #0A5CB0;
  --coral: #FF4D5E;
  --muted: #6B7280;
  --line: #E7EAEC;
  --max: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Baloo 2', sans-serif;
  margin: 0;
}

.mono { font-family: 'IBM Plex Mono', monospace; }

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  padding: 12px 28px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .brand-icon { height: 54px; width: 54px; border-radius: 50%; display: block; flex-shrink: 0; }
.brand-whatsapp {
  width: 180px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}
.brand img.wordmark { height: 26px; width: auto; display: block; }
.brand .legal-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { display: flex; gap: 30px; font-size: 14.5px; }
.nav-links a { text-decoration: none; color: var(--ink); opacity: 0.7; }
.nav-links a:hover { opacity: 1; color: var(--teal-deep); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-glow {
  position: absolute;
  top: 500px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,230,210,0.22) 0%, rgba(47,230,210,0) 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 26px;
  align-items: start;
  position: relative;
  padding: 12px 0 18px;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; padding: 12px 0 18px; }
}
.eyebrow {
  position: absolute;
  top: 18px;
  left: 8%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b5d79;
  background: rgba(255,255,255,0.72);
  border: none;
  border-radius: 999px;
  padding: 7px 18px;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(14, 165, 165, 0.15);
}
.eyebrow::before { content:''; width: 10px; height: 10px; border-radius: 50%; background: #FF0000; }
.hero h1 {
  font-size: clamp(36px, 5.2vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  max-width: 13ch;
  color: #111827;
  letter-spacing: -0.05em;
}
.hero h1 span { color: var(--teal-light); }
.hero-sub {
  margin-top: 22px;
  max-width: 46ch;
  color: #1f2937;
  font-size: 17px;
}
.legal-line {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted);
}
.legal-line strong { color: var(--ink); font-weight: 600; }

/* booking form */
.notify-form {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 460px;
}
.notify-form .full { grid-column: 1 / -1; }
.notify-form input[type="email"],
.notify-form input[type="text"],
.notify-form input[type="tel"],
.notify-form input[type="search"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}
.notify-form input:focus { border-color: var(--teal-mid); outline: none; }
.notify-btn {
  padding: 15px 26px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #2dd4bf, #0ea5a5);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  box-shadow: 0 10px 18px rgba(13, 148, 136, 0.2);
}
.notify-btn:hover,
.notify-btn:focus-visible { background: linear-gradient(135deg, #14b8a6, #0f766e); box-shadow: 0 12px 20px rgba(13, 148, 136, 0.28); }
.notify-btn:active { background: linear-gradient(135deg, #0f766e, #115e59); transform: translateY(1px); }
.notify-btn:disabled { opacity: 0.6; cursor: default; }
.form-note {
  margin-top: 12px;
  font-size: 12.5px;
  color: #77848A;
}
.form-status {
  margin-top: 14px;
  font-size: 14px;
  min-height: 20px;
}
.form-status.ok { color: var(--teal-light); }
.form-status.err { color: var(--coral); }

/* hero visual: marketing image */
.glass-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  margin-top: 18px;
}
.glass-wrap img.hero-img,
.glass-wrap svg.hero-anim {
  max-width: 100%;
  height: auto;
  max-height: 520px;
}
.glass-wrap .hero-bg-photo {
  width: 100%;
  max-width: 560px;
  min-height: 460px;
  aspect-ratio: 0.95 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 24px 60px -20px rgba(11, 110, 134, 0.35);
  margin-top: -150px;
  transform: translateY(8px);
}
.badge {
  display: none !important;
}

/* ---------- section shell ---------- */
section { padding: 84px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 12px;
  display: block;
}
.section-head h2 { font-size: clamp(24px, 3.2vw, 32px); font-weight: 600; }
.section-head p { margin-top: 12px; color: var(--muted); font-size: 16px; }

/* value grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 800px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  background: var(--paper-dim);
}
.value-card .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-deep));
  margin-bottom: 18px;
}
.value-card h3 { font-size: 18px; font-weight: 600; }
.value-card p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }

/* about */
.about { background: var(--paper-dim); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.about p { color: #3A3F47; font-size: 16px; }
.about p + p { margin-top: 14px; }
.stat-list { border-top: 1px solid var(--line); }
.stat {
  display: flex; justify-content: space-between; padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'IBM Plex Mono', monospace; font-size: 13px;
}
.stat span:first-child { color: var(--muted); }
.stat span:last-child { color: var(--ink); font-weight: 600; }

/* contact */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; gap: 18px; }
.contact-list .k { width: 110px; flex-shrink: 0; font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }
.contact-list .v { font-size: 15.5px; }
.contact-list .v a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- footer: legal spec sheet ---------- */
footer { background: #F3F9F9; color: #12313A; padding: 56px 0 28px; }
.spec-head { display: flex; align-items: center; gap: 10px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #0C7A88; margin-bottom: 24px; }
.spec-head .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-mid); animation: blink 2.4s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.spec-sheet { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #D5E3E5; border-left: 1px solid #D5E3E5; }
@media (max-width: 760px) { .spec-sheet { grid-template-columns: 1fr; } }
.spec-row { border-right: 1px solid #D5E3E5; border-bottom: 1px solid #D5E3E5; padding: 16px 20px; font-family: 'IBM Plex Mono', monospace; font-size: 13px; }
.spec-row .k { color: #58747A; letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; margin-bottom: 6px; }
.spec-row .v { color: #12313A; }
.spec-row .v a { color: #0B6E86; text-decoration: none; }
.spec-row .v a:hover { text-decoration: underline; }
.foot-bottom { margin-top: 32px; padding-top: 22px; border-top: 1px solid #D5E3E5; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; color: #58747A; }
.foot-bottom a { color: #0D596C; text-decoration: none; margin-left: 20px; }
.foot-bottom a:hover { color: #0B3F4D; }
.foot-links { display: flex; flex-wrap: wrap; }
.foot-logo { height: 22px; opacity: 0.85; margin-bottom: 14px; }

/* ---------- legal pages ---------- */
.legal-page { padding: 64px 0 96px; }
.legal-page h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 600; }
.legal-updated { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.legal-body { margin-top: 40px; max-width: 72ch; }
.legal-body h2 { font-size: 19px; font-weight: 600; margin-top: 40px; margin-bottom: 12px; font-family: 'Baloo 2', sans-serif; }
.legal-body p, .legal-body li { color: #3A3F47; font-size: 15.5px; }
.legal-body ul { padding-left: 20px; }
.legal-body li { margin-bottom: 6px; }
