/* MediDent İstanbul — design system (from new landing, made static/SEO-friendly) */
:root {
  --ink: #2B2318;
  --ink-soft: #4A4034;
  --muted: #7A6F60;
  --muted-2: #8A7F6D;
  --cream: #FBF8F3;
  --cream-2: #F4EEE4;
  --sand: #E6DDCF;
  --gold: #C6A15B;
  --gold-ink: #3A2A08;
  --red: #E13539;
  --red-deep: #C22A2E;
  --blue: #1A62B0;
  --dark: #1C150D;
  --dark-2: #241D16;
  --white: #fff;
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1200px;
  --font-sans: "Jost", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --shadow: 0 30px 54px -42px rgba(43, 35, 24, 0.55);
  --shadow-lg: 0 46px 80px -44px rgba(43, 35, 24, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}

a:hover {
  color: var(--red);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

::selection {
  background: var(--gold);
  color: #fff;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before,
.eyebrow.center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.center {
  justify-content: center;
}

h1,
h2,
.h-display {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.06;
  color: var(--ink);
  text-wrap: balance;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
}

h2 {
  font-size: clamp(30px, 4.2vw, 52px);
}

h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--ink);
}

em {
  font-style: italic;
  color: var(--gold);
}

.lead {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.62;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 20px 32px -20px rgba(225, 53, 57, 0.85);
}

.btn-primary:hover {
  background: var(--red-deep);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: rgba(43, 35, 24, 0.16);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-red {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}

.btn-outline-red:hover {
  background: var(--red);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: var(--gold-ink);
  font-weight: 800;
}

.btn-gold:hover {
  background: #fff;
  color: var(--gold);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.section {
  padding: clamp(64px, 8vw, 110px) 0;
  scroll-margin-top: 88px;
}

.section-alt {
  background: var(--cream-2);
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .lead {
  color: #c9beac;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 20px;
}

/* Topbar */
.topbar {
  background: var(--ink);
  color: #e6ddcf;
  font-size: 13px;
  font-weight: 500;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
  padding: 9px 24px;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 244, 0.9);
  border-bottom: 1px solid rgba(43, 35, 24, 0.07);
  transition: background 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
}

.site-header.is-scrolled {
  background: rgba(251, 249, 244, 0.98);
  box-shadow: 0 18px 44px -32px rgba(43, 35, 24, 0.55);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
}

.nav a:hover,
.nav a.is-active {
  color: var(--red);
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(43, 35, 24, 0.12);
  background: #fff;
}

.lang-switch a {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.lang-switch a.is-active {
  background: var(--ink);
  color: #fff;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(43, 35, 24, 0.14);
  align-items: center;
  justify-content: center;
  background: #fff;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(43, 35, 24, 0.45);
  backdrop-filter: blur(4px);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 86vw);
  height: 100%;
  background: var(--cream);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -30px 0 60px -30px rgba(43, 35, 24, 0.6);
  overflow-y: auto;
}

.mobile-panel a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(43, 35, 24, 0.08);
  color: var(--ink);
  font-weight: 600;
  font-size: 18px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -40px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(198, 161, 91, 0.16), transparent 68%);
  pointer-events: none;
}

.hero-inner {
  padding: clamp(48px, 7vw, 92px) 24px clamp(56px, 7vw, 96px);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.hero-media {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--sand);
}

.hero-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 13px 16px;
  box-shadow: 0 24px 40px -24px rgba(43, 35, 24, 0.5);
  display: flex;
  align-items: center;
  gap: 11px;
  animation: md-float 6s ease-in-out infinite;
}

.float-card.top-left {
  top: 22px;
  left: -16px;
}

.float-card.bottom-right {
  bottom: -26px;
  right: -14px;
  width: 264px;
  padding: 10px;
  flex-direction: column;
  align-items: stretch;
  animation-duration: 7s;
  cursor: pointer;
  text-align: left;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--muted);
}

.stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 19px;
}

/* Stats */
.stats {
  background: var(--ink);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 22px;
  padding: 34px 24px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
}

.stat-num span {
  color: var(--gold);
}

.stat-label {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9beac;
  margin-top: 8px;
  font-weight: 600;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid rgba(43, 35, 24, 0.08);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 26px 44px -36px rgba(43, 35, 24, 0.5);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, border-color 0.35s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 54px -34px rgba(43, 35, 24, 0.5);
  border-color: rgba(225, 53, 57, 0.4);
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
}

.link-more:hover {
  gap: 10px;
}

/* Before/after */
.ba {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  cursor: ew-resize;
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: none;
  background: var(--sand);
}

.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  clip-path: inset(0 50% 0 0);
}

.ba-label {
  position: absolute;
  top: 16px;
  background: rgba(43, 35, 24, 0.72);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 7px 13px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.ba-label.after {
  right: 16px;
  left: auto;
  background: rgba(225, 53, 57, 0.9);
}

.ba-label.before {
  left: 16px;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 26px -8px rgba(43, 35, 24, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.case-grid button,
.case-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--sand);
  box-shadow: 0 26px 44px -34px rgba(43, 35, 24, 0.55);
  display: block;
  padding: 0;
  width: 100%;
  transition: transform 0.35s;
}

.case-card:hover,
.case-grid button:hover {
  transform: translateY(-5px);
}

.case-card img,
.case-grid button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card .shade,
.case-grid button .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(43, 35, 24, 0.62));
}

.case-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(251, 249, 244, 0.92);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 11px;
  border-radius: 999px;
}

.case-title {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

/* Marquee */
.marquee-wrap {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  overflow: hidden;
}

.marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: md-marquee 52s linear infinite;
  padding: 10px;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee button {
  flex: 0 0 auto;
  width: 210px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 24px 44px -30px rgba(43, 35, 24, 0.6);
  background: var(--sand);
}

.marquee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Process / packages / reviews */
.step {
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px;
  border: 1px solid rgba(43, 35, 24, 0.07);
  box-shadow: 0 24px 42px -36px rgba(43, 35, 24, 0.5);
}

.step-n {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
}

.pkg {
  background: #fff;
  border: 1px solid rgba(43, 35, 24, 0.09);
  border-radius: 22px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 50px -40px rgba(43, 35, 24, 0.5);
}

.pkg.featured {
  background: var(--dark-2);
  color: #fff;
  box-shadow: 0 44px 70px -40px rgba(225, 53, 57, 0.9);
  position: relative;
  transform: translateY(-6px);
}

.pkg.featured h3 {
  color: #fff;
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--gold-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pkg-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pkg-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.3px;
}

.review {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: 28px 26px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gold-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

/* FAQ */
.faq {
  background: #fff;
  border-radius: 22px;
  padding: 8px 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(43, 35, 24, 0.06);
}

.faq-item {
  border-bottom: 1px solid rgba(43, 35, 24, 0.09);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 2px;
  text-align: left;
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
}

.faq-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.faq-a {
  display: none;
  padding: 0 2px 26px;
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--muted-2);
  max-width: 720px;
}

.faq-item.is-open .faq-a {
  display: block;
}

.faq-item.is-open .faq-icon .plus {
  display: none;
}

.faq-item:not(.is-open) .faq-icon .minus {
  display: none;
}

/* Contact / form */
.contact-band {
  background: linear-gradient(160deg, #2b2318, #1c150d);
  color: #fff;
}

.contact-band h2 {
  color: #fff;
}

.form-card {
  background: var(--cream);
  border-radius: 24px;
  padding: clamp(26px, 3vw, 38px);
  box-shadow: 0 50px 90px -50px rgba(0, 0, 0, 0.7);
  color: var(--ink);
}

.form-card h3 {
  font-size: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label span.lbl {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 7px;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid rgba(43, 35, 24, 0.16);
  background: #fff;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.2);
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.form-card.is-sent .form-main {
  display: none;
}

.form-card.is-sent .form-success {
  display: block;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-links a,
.contact-links .row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.contact-links a:hover {
  color: var(--gold);
}

.contact-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Page chrome for inner pages */
.page-hero {
  padding: clamp(48px, 6vw, 80px) 0 40px;
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--red);
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.prose h2,
.prose h3 {
  margin-top: 1.6em;
}

.prose p {
  margin: 0 0 1em;
}

.prose ul {
  padding-left: 1.2em;
}

.doctor-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(43, 35, 24, 0.08);
  box-shadow: var(--shadow);
}

.doctor-card .photo {
  aspect-ratio: 4 / 5;
  background: var(--sand);
}

.doctor-card .body {
  padding: 22px 22px 26px;
}

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

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sand);
  cursor: pointer;
  padding: 0;
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(43, 35, 24, 0.08);
  box-shadow: var(--shadow);
}

.article-row:not(:has(.article-thumb)) {
  grid-template-columns: 1fr auto;
}

.article-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--sand);
}

.article-cover {
  margin: 0 0 1.25em;
}

.article-cover img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

.article-cover figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted-2);
}

@media (max-width: 640px) {
  .article-row {
    grid-template-columns: 1fr;
  }
  .article-thumb {
    width: 100%;
    height: 160px;
  }
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #c9beac;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px 28px;
  padding: clamp(52px, 6vw, 76px) 24px 30px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-col-title {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 14px;
  color: #a89d8b;
}

.footer-links a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.socials a:hover {
  background: var(--red);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #8a7f6d;
}

.footer-bottom a {
  color: #8a7f6d;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Floating */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px -10px rgba(37, 211, 102, 0.7);
  animation: md-pulse 2.6s infinite;
  color: #fff;
}

.wa-float:hover {
  transform: scale(1.06);
  color: #fff;
}

.to-top {
  position: fixed;
  bottom: 96px;
  right: 29px;
  z-index: 69;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(43, 35, 24, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -12px rgba(43, 35, 24, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  color: var(--gold);
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 22, 24, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(560px, 92vw);
  max-height: 88vh;
  width: auto;
  border-radius: 18px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@keyframes md-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes md-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes md-pulse {
  0%,
  100% {
    box-shadow: 0 16px 34px -10px rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 16px 34px -10px rgba(37, 211, 102, 0.7), 0 0 0 14px rgba(37, 211, 102, 0.15);
  }
}

@media (max-width: 940px) {
  .nav {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .float-card.top-left,
  .float-card.bottom-right {
    display: none;
  }
  .pkg.featured {
    transform: none;
  }
  .hide-md {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hide-sm {
    display: none !important;
  }
  .header-cta {
    display: none;
  }
}
