@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&family=Manrope:wght@400;500;600;700;800&display=swap");

/* ===== Design tokens ===== */
:root {
  /* fixed brand colors */
  --teal: #2e7ea6;
  --teal-2: #47a0c4;
  --teal-deep: #256d90;
  --green: #23a468;
  --green-2: #1c8b57;
  --navy: #0e3348;
  --navy-2: #0a2635;

  /* semantic (light) */
  --bg: #f5f3ec;
  --bg-2: #ece9de;
  --surface: #ffffff;
  --surface-2: #fbfaf6;
  --text: #16262f;
  --text-muted: #5c6b73;
  --heading: #0e3348;
  --border: rgba(14, 51, 72, 0.1);
  --chip-bg: #d9eeee;
  --chip-text: #205d7c;
  --nav-bg: rgba(255, 255, 255, 0.55);
  --nav-border: rgba(255, 255, 255, 0.7);
  --eye-stage: radial-gradient(
    120% 120% at 30% 25%,
    #eef8f5 0%,
    #c9e6ea 55%,
    #a9d6de 100%
  );
  --eye-lid: #d8ecec;
  --footer-bg: #0a2635;
  --panel: linear-gradient(155deg, #0e3348 0%, #123f57 100%);
  --glass: rgba(255, 255, 255, 0.66);
  --glass-border: rgba(255, 255, 255, 0.75);
  --blob-1: #bfe3e6;
  --blob-2: #cfe7e1;
  --shadow: 0 24px 60px -30px rgba(14, 51, 72, 0.35);
  --shadow-sm: 0 12px 30px -18px rgba(14, 51, 72, 0.3);
  --r-lg: 30px;
  --r-md: 22px;
  --r-sm: 16px;
}

[data-theme="dark"] {
  --bg: #081820;
  --bg-2: #0c2029;
  --surface: #102a36;
  --surface-2: #12303d;
  --text: #dde8ed;
  --text-muted: #92a7b0;
  --heading: #f2f7f9;
  --border: rgba(255, 255, 255, 0.09);
  --chip-bg: rgba(71, 160, 196, 0.16);
  --chip-text: #7fc9e0;
  --nav-bg: rgba(14, 34, 44, 0.55);
  --nav-border: rgba(255, 255, 255, 0.1);
  --eye-stage: radial-gradient(
    120% 120% at 30% 25%,
    #123847 0%,
    #0d2836 55%,
    #08202b 100%
  );
  --eye-lid: #123c4d;
  --footer-bg: #061219;
  --panel: linear-gradient(155deg, #0d2b3a 0%, #113a51 100%);
  --glass: rgba(20, 44, 56, 0.55);
  --glass-border: rgba(255, 255, 255, 0.12);
  --blob-1: #14485a;
  --blob-2: #10394a;
  --shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.7);
  --shadow-sm: 0 14px 34px -20px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  transition:
    background-color 0.45s ease,
    color 0.45s ease;
}

/* ===== Custom scrollbar ===== */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: var(--bg-2);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--teal), var(--navy));
  border-radius: 10px;
  border: 3px solid var(--bg-2);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--teal-2), var(--teal));
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--bg-2);
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 80;
  background: linear-gradient(90deg, var(--teal), var(--teal-2), var(--green));
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(46, 126, 166, 0.6);
}

.hs-app {
  overflow-x: hidden;
  position: relative;
}

.display {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* background blobs */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  transition: background-color 0.45s ease;
}
.blob.a {
  width: 460px;
  height: 460px;
  background: var(--blob-1);
  top: -120px;
  right: -100px;
}
.blob.b {
  width: 400px;
  height: 400px;
  background: var(--blob-2);
  top: 40%;
  left: -180px;
  opacity: 0.4;
}

/* chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--chip-bg);
  color: var(--chip-text);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* buttons */
.btn {
  font-family: "Manrope", sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  padding: 16px 28px;
  border-radius: 40px;
  text-decoration: none;
}
[data-theme="dark"] .btn-primary {
  background: var(--teal);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -16px rgba(14, 51, 72, 0.6);
  filter: brightness(1.08);
}
.btn-teal {
  background: var(--teal);
  color: #fff;
  padding: 16px 28px;
  border-radius: 40px;
}
.btn-teal:hover {
  background: var(--teal-deep);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -16px rgba(46, 126, 166, 0.7);
}
.btn-ghost {
  background: var(--glass);
  color: var(--heading);
  padding: 15px 26px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* ===== iOS glass pill nav ===== */
.nav-wrap {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.nav-pill {
  width: 100%;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--nav-border);
  border-radius: 50px;
  padding: 9px 12px 9px 20px;
  box-shadow:
    0 8px 32px -12px rgba(14, 51, 72, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}
.nav-pill.scrolled {
  box-shadow:
    0 14px 40px -14px rgba(14, 51, 72, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
[data-theme="dark"] .nav-pill {
  box-shadow:
    0 10px 34px -14px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}
.brand-txt {
  line-height: 1;
}
.brand-name {
  font-family: "Fraunces", serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--heading);
}
.brand-sub {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 30px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.nav-links a:hover {
  background: var(--chip-bg);
  color: var(--chip-text);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.theme-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--heading);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    transform 0.35s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}
.theme-btn:hover {
  transform: rotate(25deg) scale(1.08);
  color: var(--teal);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--heading);
  padding: 8px;
}

.mobile-menu {
  display: none;
}
@media (max-width: 940px) {
  .nav-center {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-actions .btn-primary {
    display: none;
  }
  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: fixed;
    z-index: 55;
    top: 88px;
    left: 20px;
    right: 20px;
    background: var(--surface);
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--shadow);
  }
  .mobile-menu.open a {
    text-decoration: none;
    color: var(--heading);
    font-weight: 600;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 17px;
  }
  .mobile-menu.open a:hover {
    background: var(--chip-bg);
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 150px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.02;
  color: var(--heading);
  margin: 22px 0 0;
}
.accent-text {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    100deg,
    var(--teal) 0%,
    var(--teal-2) 45%,
    var(--teal) 90%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  to {
    background-position: 220% 0;
  }
}
.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 460px;
  margin: 24px 0 30px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -12px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--teal), var(--navy));
  display: block;
  box-shadow: var(--shadow-sm);
}
.trust-avatars span:first-child {
  margin-left: 0;
}
.trust-avatars img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-trust .t-txt {
  font-size: 13.5px;
  color: var(--text-muted);
}
.hero-trust .t-txt strong {
  color: var(--heading);
}
.hero-trust .stars {
  display: flex;
  gap: 2px;
  color: #e6a93c;
}

/* eye stage — 3D interactive */
.eye-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  perspective: 1100px;
}
.eye-3d {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.eye-card {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: var(--eye-stage);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transform: translateZ(0);
}
.eye-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.35),
    transparent 45%
  );
}
.eye-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 60% at 70% 80%,
    rgba(46, 126, 166, 0.14),
    transparent
  );
}
.eye-svg-wrap {
  transform: translateZ(45px);
  width: 92%;
}
.eye-svg-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.pupil-grp {
  transition: transform 0.14s ease-out;
}
/* realistic eyelid blink */
.lid-up,
.lid-down {
  fill: var(--eye-lid);
  transform-box: fill-box;
}
.lid-up {
  transform-origin: top;
  animation: blinkUp 4.8s ease-in-out infinite;
}
.lid-down {
  transform-origin: bottom;
  animation: blinkDown 4.8s ease-in-out infinite;
}
@keyframes blinkUp {
  0%,
  89%,
  100% {
    transform: scaleY(0);
  }
  94% {
    transform: scaleY(1.03);
  }
}
@keyframes blinkDown {
  0%,
  89%,
  100% {
    transform: scaleY(0);
  }
  94% {
    transform: scaleY(1.03);
  }
}
.lash {
  stroke: #0b2a3a;
  stroke-width: 2.4;
  stroke-linecap: round;
}

/* floating glass badges (3D pop) */
.eye-badge {
  position: absolute;
  z-index: 3;
  transform: translateZ(90px);
}
.badge-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 13px 16px;
  box-shadow: var(--shadow-sm);
}
.eye-badge .bic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--teal), var(--navy));
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.eye-badge h5 {
  margin: 0;
  font-size: 14px;
  color: var(--heading);
  font-weight: 800;
}
.eye-badge p {
  margin: 2px 0 0;
  font-size: 11.5px;
  color: var(--text-muted);
}
.eye-badge.b1 {
  top: 12%;
  left: -9%;
}
.eye-badge.b2 {
  bottom: 18%;
  right: -7%;
}
.eye-badge.b3 {
  bottom: -3%;
  left: 12%;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.eye-badge.b1 .badge-inner {
  animation: bob 5s ease-in-out infinite;
}
.eye-badge.b2 .badge-inner {
  animation: bob 6s ease-in-out infinite 0.6s;
}
.eye-badge.b3 .badge-inner {
  animation: bob 5.5s ease-in-out infinite 0.3s;
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 96px;
}
.marquee-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scroll-x 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-size: 22px;
  color: var(--heading);
  opacity: 0.7;
}
.marquee-item svg {
  color: var(--teal);
}
@keyframes scroll-x {
  to {
    transform: translateX(-50%);
  }
}

/* ===== Section base ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.section-head {
  max-width: 640px;
}
.section-title {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
  color: var(--heading);
  margin: 18px 0 0;
}
.section-title em,
.accent-em {
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 18px;
  max-width: 540px;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.center .chip {
  margin: 0 auto;
}

/* Services — uniform cards, animated icons */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}
.svc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 30px 30px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.svc-ic {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--chip-bg);
  color: var(--chip-text);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.svc-ic svg > * {
  stroke-dasharray: 130;
  stroke-dashoffset: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.svc:hover .svc-ic svg > * {
  animation: icon-draw 0.9s ease forwards;
}
@keyframes icon-draw {
  0% {
    stroke-dashoffset: 130;
    opacity: 0.25;
  }
  60% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
.svc .idx {
  font-family: "Fraunces", serif;
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
}
.svc h3 {
  font-family: "Fraunces", serif;
  font-size: 25px;
  color: var(--heading);
  margin: 0 0 10px;
}
.svc p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 22px;
  flex: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--heading);
  font-weight: 700;
  font-size: 14.5px;
  transition:
    gap 0.2s ease,
    color 0.2s ease;
}
.svc-link:hover {
  gap: 12px;
  color: var(--teal);
}

/* How it works panel */
.how {
  background: var(--panel);
  color: #fff;
  border-radius: 44px;
  margin: 0 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.how .chip {
  background: rgba(255, 255, 255, 0.1);
  color: #9fd4e6;
}
.how .section-title {
  color: #fff;
}
.how .section-title em {
  color: #6cc6df;
}
.how-desc {
  color: rgba(255, 255, 255, 0.72);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 58px;
  position: relative;
}
.tl {
  position: relative;
}
.tl:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 46px;
  right: -64px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.28) 0 8px,
    transparent 8px 18px
  );
  z-index: 0;
}
.tl-node {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(150deg, #1a4c66, #0c2c3e);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  color: #6cc6df;
  position: relative;
  z-index: 2;
}
.tl .num {
  font-family: "Fraunces", serif;
  font-size: 15px;
  color: #6cc6df;
  margin: 22px 0 8px;
}
.tl h3 {
  font-family: "Fraunces", serif;
  font-size: 23px;
  color: #fff;
  margin: 0 0 8px;
}
.tl p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
}
.rev {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.rev:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.stars {
  display: flex;
  gap: 3px;
  color: #e6a93c;
  margin-bottom: 12px;
}
.rev blockquote {
  margin: 0 0 24px;
  font-family: "Fraunces", serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--heading);
  font-style: italic;
  flex: 1;
}
.rev-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(150deg, var(--teal), var(--navy));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rev-author strong {
  display: block;
  color: var(--heading);
  font-size: 15px;
}
.rev-author span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 2px;
}
.reviews-note {
  text-align: center;
  margin-top: 34px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Booking */
.book {
  padding: 100px 0;
}
.book-card {
  position: relative;
  background: linear-gradient(150deg, var(--teal) 0%, var(--navy) 100%);
  border-radius: 40px;
  padding: 58px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.book .chip {
  background: rgba(255, 255, 255, 0.14);
  color: #cdeef7;
}
.book-title {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.06;
  color: #fff;
  margin: 18px 0 0;
  font-weight: 600;
}
.book-title em {
  font-style: italic;
  color: #bfe6f3;
  font-weight: 500;
}
.book-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
  margin: 22px 0 30px;
  max-width: 420px;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cc {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}
.cc:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
.cc.green {
  background: var(--green);
}
.cc.green:hover {
  background: var(--green-2);
}
.cc .ic {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.cc span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.cc strong {
  display: block;
  color: #fff;
  font-size: 17px;
  margin-top: 2px;
}
.book-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
}
.book-form h4 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  color: var(--heading);
  margin: 0 0 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .full {
  grid-column: 1 / -1;
}
.book-form .hs-input,
.book-form .hs-select,
.book-form .hs-textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.book-form .hs-input::placeholder,
.book-form .hs-textarea::placeholder {
  color: var(--text-muted);
}
.book-form .hs-select {
  color: var(--text);
}
.book-form .hs-select option {
  color: #16262f;
}
.book-form .hs-input:focus,
.book-form .hs-select:focus,
.book-form .hs-textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--surface-2);
}
.book-form .hs-textarea {
  resize: vertical;
  min-height: 84px;
}
.book-blob {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -120px;
  right: -80px;
  z-index: 1;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: "Fraunces", serif;
  font-size: 19px;
  color: var(--heading);
}
.faq-q .plus {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--chip-bg);
  color: var(--chip-text);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}
.faq-q.open .plus {
  transform: rotate(45deg);
  background: var(--teal);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq-a.open {
  max-height: 260px;
}
.faq-a-inner {
  padding: 0 26px 24px;
}

/* Footer */
.hs-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 36px;
  border-radius: 44px 44px 0 0;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-top .brand-name {
  color: #fff;
}
.footer-top .brand-sub {
  color: rgba(255, 255, 255, 0.5);
}
.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 300px;
}
.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-cols h6 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-cols a,
.footer-cols p {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 14.5px;
  margin-bottom: 11px;
  transition: color 0.2s ease;
}
.footer-cols a:hover {
  color: #6cc6df;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 12px;
}

/* Floating WhatsApp (icon-only FAB) */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px -12px rgba(35, 164, 104, 0.7);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.06);
  background: var(--green-2);
}

/* Reveal + stagger */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.05s;
}
.d2 {
  transition-delay: 0.15s;
}
.d3 {
  transition-delay: 0.25s;
}
.d4 {
  transition-delay: 0.35s;
}
.d5 {
  transition-delay: 0.45s;
}

/* Responsive */
@media (max-width: 940px) {
  .container {
    padding: 0 22px;
  }
  .hero-grid,
  .book-inner,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .eye-stage {
    max-width: 420px;
    margin: 0 auto;
  }
  .services-grid,
  .reviews-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
  .tl:not(:last-child)::after {
    display: none;
  }
  .how {
    margin: 0 12px;
    border-radius: 34px;
  }
  .book-card {
    padding: 34px 24px;
  }
}
@media (max-width: 560px) {
  .contact-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 70px 0;
  }
  .eye-badge.b1 {
    left: 0;
  }
  .eye-badge.b2 {
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spin-a,
  .spin-b,
  .eye-badge .badge-inner,
  .marquee-track,
  .accent-text,
  .eye-live {
    animation: none !important;
  }
}

/* ===== Creative logo mark ===== */
.logo-mark {
  width: 38px;
  height: 38px;
  display: block;
}

/* ===== 3D Eye Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: grid;
  place-items: center;
  gap: 26px;
  grid-auto-flow: row;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
.loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.loader-stage {
  width: 150px;
  height: 150px;
  position: relative;
  perspective: 700px;
}
.loader-orbit {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: orbit-tilt 7s linear infinite;
}
@keyframes orbit-tilt {
  0% {
    transform: rotateX(64deg) rotateZ(0);
  }
  100% {
    transform: rotateX(64deg) rotateZ(360deg);
  }
}
.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}
.orbit.o1 {
  border-top-color: var(--teal);
  border-bottom-color: var(--teal);
  animation: o-spin 1.6s linear infinite;
}
.orbit.o2 {
  inset: 16px;
  border-left-color: var(--teal-2);
  border-right-color: var(--teal-2);
  animation: o-spin 2s linear infinite reverse;
}
.orbit.o3 {
  inset: 32px;
  border-top-color: var(--green);
  border-left-color: var(--green);
  animation: o-spin 2.4s linear infinite;
}
@keyframes o-spin {
  to {
    transform: rotateZ(360deg);
  }
}
.loader-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 34px rgba(46, 126, 166, 0.6);
  animation: core-pulse 1.8s ease-in-out infinite;
}
.loader-eye {
  width: 100%;
  height: 100%;
  display: block;
}
.loader-pupil {
  animation: pupil-wander 3.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes pupil-wander {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5px, -3px);
  }
  55% {
    transform: translate(-5px, 3px);
  }
  80% {
    transform: translate(3px, 4px);
  }
}
.loader-lid {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: var(--eye-lid);
  transform-origin: top;
  transform: scaleY(0);
  animation: loader-blink 3.2s ease-in-out infinite;
}
@keyframes loader-blink {
  0%,
  88%,
  100% {
    transform: scaleY(0);
  }
  94% {
    transform: scaleY(1);
  }
}
@keyframes core-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.loader-brand h3 {
  font-family: "Fraunces", serif;
  font-size: 26px;
  color: var(--heading);
  margin: 0;
  letter-spacing: 0.02em;
}
.loader-brand p {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
  animation: fade-pulse 1.6s ease-in-out infinite;
}
@keyframes fade-pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.loader-bar {
  width: 180px;
  height: 3px;
  border-radius: 3px;
  background: var(--bg-2);
  overflow: hidden;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  animation: bar-slide 1.3s ease-in-out infinite;
}
@keyframes bar-slide {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(350%);
  }
}

/* ===== Static build helpers (icon sizing + inline WhatsApp glyphs) ===== */
.wa-ic,
.wa-ic-light,
.wa-ic-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.chip svg {
  width: 15px;
  height: 15px;
}
.btn svg:not(.logo-mark) {
  width: 18px;
  height: 18px;
}
.stars svg {
  width: 13px;
  height: 13px;
}
.svc-ic svg {
  width: 26px;
  height: 26px;
}
.tl-node svg {
  width: 28px;
  height: 28px;
}
.bic svg,
.cc .ic svg {
  width: 18px;
  height: 18px;
}
.faq-q .plus svg {
  width: 18px;
  height: 18px;
}
.theme-btn svg {
  width: 18px;
  height: 18px;
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
}
.svc-link svg,
.marquee-item svg {
  width: 16px;
  height: 16px;
}

.stars svg {
  fill: currentColor;
}
