/* ============================================
   i-klinik Romania — Premium Dental Tourism
   Design System
============================================ */

:root {
  /* Brand colors — corporate medical palette on the i-klinik.com identity:
     petrol darks, clean neutral surfaces, deep turquoise accent */
  --ink: #0B4A55;
  --ink-soft: #0A6076;
  --gold: #0E8C9C;        /* accent on light surfaces */
  --gold-deep: #076B77;   /* accent text / hover */
  --teal: #39A3C6;
  --teal-deep: #0B647A;
  --cream: #F4F6F7;
  --sand: #E6EBED;
  --bone: #FAFBFC;
  --slate: #22333B;
  --muted: #5D6B72;
  --line: #DFE5E8;
  --line-soft: #ECF0F2;
  --white: #FFFFFF;
  --success: #2F855A;

  /* Type scale */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Layout */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 12px rgba(11, 74, 85, 0.06);
  --shadow: 0 18px 60px -18px rgba(11, 74, 85, 0.18);
  --shadow-gold: 0 18px 50px -20px rgba(14, 140, 156, 0.4);
}

/* On dark petrol sections the accent brightens so it stays legible */
.hero, .about, .contact, .footer, .mobile-menu, .plan.featured,
.tx-hero, .article-hero {
  --gold: #3FCBDC;
  --gold-deep: #8FE3EE;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.15; color: var(--ink); }
p { margin: 0; }

/* Type */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.h-display { font-size: clamp(40px, 6vw, 80px); font-weight: 400; }
.h-section { font-size: clamp(32px, 4.6vw, 56px); font-weight: 400; }
.h-card { font-size: clamp(20px, 2.2vw, 26px); font-weight: 500; }
.lede { font-size: clamp(17px, 1.4vw, 19px); color: var(--muted); max-width: 56ch; line-height: 1.65; }

/* Layout helpers */
.container { width: 100%; max-width: var(--max); padding-inline: var(--gutter); margin-inline: auto; }
section { padding-block: clamp(72px, 10vw, 140px); position: relative; }
.section-head { display: flex; flex-direction: column; gap: 18px; max-width: 720px; margin-bottom: clamp(40px, 5vw, 72px); }
.split-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.split-head .lede { margin-left: auto; max-width: 46ch; }
@media (max-width: 820px) { .split-head { grid-template-columns: 1fr; } .split-head .lede { margin-left: 0; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--gold-deep); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-gold { background: #0E8C9C; color: #FFFFFF; }
.btn-gold:hover { background: #076B77; color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.btn-link { display: inline-flex; gap: 10px; align-items: center; font-size: 14px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 6px; }
.btn-link:hover { color: var(--gold-deep); border-color: var(--gold); }

/* ============ NAVBAR ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled { background: rgba(250, 251, 252, 0.94); backdrop-filter: saturate(180%) blur(14px); padding-block: 12px; box-shadow: 0 1px 0 rgba(11, 74, 85,0.06); }
.nav.dark { color: var(--cream); }
.nav.dark .nav-links a { color: var(--cream); }
.nav.scrolled.dark { color: var(--ink); }
.nav.scrolled.dark .nav-links a { color: var(--ink); }

.nav-brand { display: inline-flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-brand img { height: 58px; width: auto; display: block; }
.nav-brand .divider { width: 1px; height: 24px; background: currentColor; opacity: 0.25; }
.nav-brand .city { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; opacity: 0.85; white-space: nowrap; }
.nav.dark .nav-brand img { filter: brightness(0) invert(1); }
.nav.scrolled.dark .nav-brand img { filter: none; }
.footer-brand .nav-brand img { filter: brightness(0) invert(1); height: 72px; }

.nav-links { display: flex; gap: clamp(18px, 2.2vw, 38px); align-items: center; }
.nav-links a { font-size: 14px; letter-spacing: 0.04em; transition: color .2s ease; position: relative; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang { display: flex; gap: 4px; padding: 6px; border-radius: 999px; border: 1px solid currentColor; opacity: .85; }
.lang button, .lang a { padding: 6px 10px; border-radius: 999px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; color: inherit; }
.lang button.active, .lang a.active { background: #0E8C9C; color: #FFFFFF; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 999px; border: 1px solid currentColor; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 16px; height: 1.5px; background: currentColor; position: relative; transition: transform .3s ease; }
.nav-toggle span::before { position: absolute; top: -5px; }
.nav-toggle span::after { position: absolute; top: 5px; }

/* English labels are longer than Turkish ones; collapse to the hamburger
   earlier so nav links never crowd the brand at laptop widths. */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav .lang { display: none; }
  body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
}

/* The location tag collides with nav links only at in-between widths;
   on phones (hamburger mode) there is room, so it stays visible */
@media (min-width: 1181px) and (max-width: 1400px) {
  .nav-brand .divider, .nav-brand .city { display: none; }
}


.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: var(--ink);
  color: var(--cream);
  padding: 100px var(--gutter) 60px;
  display: flex; flex-direction: column; gap: 28px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .55s var(--ease), opacity .35s ease;
}
.mobile-menu a { font-family: var(--serif); font-size: 32px; letter-spacing: -0.01em; }
.mobile-menu .lang { display: inline-flex; align-self: flex-start; margin-top: auto; border-color: rgba(244, 246, 247, 0.25); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px var(--gutter) 120px;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(120% 80% at 80% 10%, #0A6076 0%, #0C4E59 55%, #041D23 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 90%, rgba(200,162,107,0.18) 0%, transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(200,162,107,0.08) 0%, transparent 50%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, transparent 70%, rgba(7,24,44,0.6) 100%);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; max-width: var(--max); margin-inline: auto; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 60px; } }

.hero-text .eyebrow { color: var(--gold); }
.hero h1 { color: var(--cream); margin-top: 24px; font-size: clamp(44px, 5.5vw, 78px); font-weight: 400; letter-spacing: -0.015em; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.h-section em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.about .h-section em { color: var(--gold); }
.hero p { margin-top: 28px; font-size: clamp(16px, 1.3vw, 18px); color: rgba(244, 246, 247, 0.8); max-width: 50ch; }
.hero-cta { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(244, 246, 247, 0.12);
}
.hero-trust .num { font-family: var(--serif); font-size: 36px; color: var(--gold); }
.hero-trust .lab { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244, 246, 247, 0.6); margin-top: 6px; }

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #0E5D6E 0%, #0C4E59 100%);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.6);
}
.hero-card .img-wrap {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1580489944761-15a19d654956?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.05);
}
.hero-card .img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 74, 85,0.85) 100%);
}
.hero-badge {
  position: absolute; top: 24px; left: 24px;
  background: rgba(244, 246, 247, 0.96);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--success); box-shadow: 0 0 0 3px rgba(47,133,90,0.25); }

.hero-quote {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  background: rgba(244, 246, 247, 0.96);
  color: var(--ink);
  padding: 26px 28px;
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
}
.hero-quote .stars { color: #E3A63B; letter-spacing: 4px; font-size: 14px; }
.hero-quote p { font-family: var(--serif); font-size: 19px; line-height: 1.45; margin-top: 10px; color: var(--ink); }
.hero-quote .who { display: flex; gap: 10px; align-items: center; margin-top: 14px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(244, 246, 247, 0.6);
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(180deg, rgba(244, 246, 247,0.6), transparent); animation: cue 2.4s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(1); transform-origin: top; } 50% { transform: scaleY(0.4); } }

/* ============ MARQUEE TRUST STRIP ============ */
.trust-strip {
  background: var(--cream);
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
  padding-block: 30px;
}
.trust-strip .track {
  display: flex; gap: 80px; align-items: center;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.trust-strip .item { display: flex; align-items: center; gap: 14px; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.trust-strip .item svg { color: var(--gold-deep); width: 22px; height: 22px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SERVICES ============ */
.services { background: var(--bone); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 320px;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; color: var(--ink); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .icon { background: rgba(11, 74, 85,0.12); }
.service-card:hover .meta { color: var(--ink); opacity: .8; }

.service-card .icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 8px;
  transition: background .3s ease;
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 24px; }
.service-card .meta { font-size: 14px; color: var(--muted); margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line-soft); transition: color .3s ease; }
.service-card .meta b { font-family: var(--serif); font-size: 22px; color: var(--ink); font-weight: 500; }

/* ============ ABOUT / WHY ============ */
.about { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.about .eyebrow { color: var(--gold); }
.about h2 { color: var(--cream); }
.about .lede { color: rgba(244, 246, 247, 0.75); }

.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; } }

.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,24,44,0.6) 100%);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 44px;
}
.about-stat { padding: 24px; border: 1px solid rgba(244, 246, 247, 0.12); border-radius: var(--radius); }
.about-stat .num { font-family: var(--serif); font-size: 44px; color: var(--gold); display: block; }
.about-stat .lab { font-size: 13px; color: rgba(244, 246, 247, 0.65); margin-top: 6px; letter-spacing: 0.04em; }

.values-list { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.value-item { display: grid; grid-template-columns: 36px 1fr; gap: 18px; align-items: start; padding-bottom: 22px; border-bottom: 1px solid rgba(244, 246, 247, 0.08); }
.value-item:last-child { border-bottom: 0; padding-bottom: 0; }
.value-item .ic { width: 36px; height: 36px; border-radius: 999px; background: rgba(63, 203, 220, 0.16); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; }
.value-item .ic svg { width: 18px; height: 18px; }
.value-item h4 { color: var(--cream); font-family: var(--sans); font-size: 17px; font-weight: 600; letter-spacing: -0.005em; }
.value-item p { color: rgba(244, 246, 247, 0.65); margin-top: 6px; font-size: 15px; line-height: 1.6; }

/* ============ JOURNEY (Process) ============ */
.journey { background: var(--cream); }
.journey-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
@media (max-width: 980px) { .journey-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .journey-grid { grid-template-columns: 1fr; } }

.journey-step {
  position: relative;
  padding: 34px 28px;
  background: var(--bone);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
  transition: transform .4s var(--ease), box-shadow .3s ease;
}
.journey-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.journey-step .step-num {
  font-family: var(--serif); font-size: 60px; color: var(--gold-deep); line-height: 1;
  font-weight: 400; opacity: .35;
}
.journey-step h3 { font-size: 22px; }
.journey-step p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ============ DOCTORS ============ */
.doctors { background: var(--bone); }
.doctors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 690px; }
@media (max-width: 980px) { .doctors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .doctors-grid { grid-template-columns: 1fr; } }

.doctor {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.doctor:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.doctor .photo {
  aspect-ratio: 4/5;
  position: relative;
  background: linear-gradient(160deg, #0E2D4D 0%, #041D23 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.doctor .photo::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(63, 203, 220, 0.25);
  border-radius: 12px;
  pointer-events: none;
  transition: inset .6s var(--ease), border-color .4s ease;
}
.doctor:hover .photo::before { inset: 14px; border-color: rgba(63, 203, 220, 0.5); }
.doctor .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(200,162,107,0.10), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(200,162,107,0.06), transparent 50%);
  pointer-events: none;
}
.doctor .photo .monogram {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 92px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: transform .6s var(--ease);
}
.doctor:hover .photo .monogram { transform: scale(1.06); }
.doctor .photo .corner-mark {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 246, 247, 0.4);
  font-weight: 500;
  z-index: 1;
}
.doctor .info { padding: 26px 24px; }
.doctor .name { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.doctor .role { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-top: 6px; }
.doctor .langs { margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.doctor .langs span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 4px 10px; background: var(--cream); border-radius: 999px; }

/* ============ GALLERY ============ */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.case {
  position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; background: var(--sand);
}
.case img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.case:hover img { transform: scale(1.06); }
.case .label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(250, 247, 241, 0.95);
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
}
.case.tall { aspect-ratio: auto; grid-row: span 2; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--cream); position: relative; overflow: hidden; }
.testimonials::before {
  content: "“"; position: absolute; top: -80px; left: -20px; font-family: var(--serif);
  font-size: 480px; color: var(--gold); opacity: .07; line-height: 1;
}
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
@media (max-width: 980px) { .tcards { grid-template-columns: 1fr; } }

.tcard {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 20px;
  border: 1px solid var(--line-soft);
}
.tcard .stars { color: #E3A63B; letter-spacing: 4px; font-size: 14px; }
.tcard .quote { font-family: var(--serif); font-size: 22px; line-height: 1.45; color: var(--ink); font-weight: 400; }
.tcard .person { display: flex; gap: 14px; align-items: center; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.tcard .avatar { width: 44px; height: 44px; border-radius: 999px; background: var(--cream); display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; color: var(--ink); }
.tcard .name { font-size: 14px; font-weight: 600; color: var(--ink); }
.tcard .city { font-size: 12px; color: var(--muted); margin-top: 2px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ============ PRICING ============ */
.pricing { background: var(--bone); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.featured { background: var(--ink); color: var(--cream); border-color: transparent; }
.plan.featured h3, .plan.featured .price { color: var(--cream); }
.plan.featured .meta, .plan.featured ul { color: rgba(244, 246, 247,0.75); }
.plan.featured .ribbon { display: inline-flex; }

.ribbon {
  display: none;
  position: absolute; top: -14px; left: 34px;
  background: #0E8C9C; color: #FFFFFF;
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
}

.plan h3 { font-size: 26px; }
.plan .meta { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.plan .price { font-family: var(--serif); font-size: 50px; color: var(--ink); display: flex; align-items: baseline; gap: 6px; }
.plan .price small { font-family: var(--sans); font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
.plan ul { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.plan li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; font-size: 15px; line-height: 1.5; }
.plan li svg { color: var(--gold); margin-top: 4px; }
.plan.featured li svg { color: var(--gold); }

/* ============ TRAVEL ============ */
.travel { background: var(--white); }
.travel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 980px) { .travel-grid { grid-template-columns: 1fr; gap: 40px; } }

.travel-img { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; }
.travel-img img { width: 100%; height: 100%; object-fit: cover; }
.travel-img .pin {
  position: absolute; top: 24px; left: 24px;
  background: var(--white); padding: 12px 18px; border-radius: 999px;
  font-size: 13px; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 10px; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.travel-img .pin svg { color: var(--gold-deep); width: 16px; height: 16px; }

.travel-perks { margin-top: 30px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.perk { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.perk .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--cream); color: var(--gold-deep); display: inline-flex; align-items: center; justify-content: center; }
.perk .ic svg { width: 22px; height: 22px; }
.perk h4 { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--ink); }
.perk p { font-size: 14px; color: var(--muted); margin-top: 4px; line-height: 1.5; }

/* ============ BLOG ============ */
.blog { background: var(--bone); }
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .posts { grid-template-columns: 1fr; } }

.post {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post .cover { aspect-ratio: 4/3; overflow: hidden; }
.post .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post:hover .cover img { transform: scale(1.05); }
.post .body { padding: 28px 26px; }
.post .tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.post h3 { font-size: 22px; margin-top: 12px; }
.post p { color: var(--muted); margin-top: 10px; font-size: 15px; line-height: 1.5; }
.post .read { margin-top: 18px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); display: inline-flex; gap: 8px; }

/* ============ FAQ ============ */
.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }

.accordion { display: flex; flex-direction: column; }
.acc {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}
.acc:last-child { border-bottom: 1px solid var(--line); }
.acc summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 22px; color: var(--ink);
  font-weight: 500;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary .plus {
  width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--line); flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease), background .25s ease, color .25s ease;
}
.acc[open] summary .plus { transform: rotate(45deg); background: var(--ink); color: var(--cream); border-color: var(--ink); }
.acc .answer { padding: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 56ch; }

/* ============ CONTACT ============ */
.contact { background: var(--ink); color: var(--cream); }
.contact .eyebrow { color: var(--gold); }
.contact h2 { color: var(--cream); }
.contact .lede { color: rgba(244, 246, 247, 0.7); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.cinfo-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: start; }
.cinfo-item .ic { width: 48px; height: 48px; border-radius: 999px; background: rgba(63, 203, 220, 0.18); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; }
.cinfo-item h4 { color: var(--cream); font-family: var(--sans); font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.cinfo-item p { color: rgba(244, 246, 247, 0.85); margin-top: 6px; font-size: 17px; line-height: 1.5; }
.cinfo-item p a:hover { color: var(--gold); }

.form {
  background: rgba(244, 246, 247, 0.04);
  border: 1px solid rgba(244, 246, 247, 0.12);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  backdrop-filter: blur(16px);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 540px) { .form .row { grid-template-columns: 1fr; } }
.form label { display: flex; flex-direction: column; gap: 8px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244, 246, 247, 0.7); }
.form input, .form select, .form textarea {
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(244, 246, 247, 0.25);
  color: var(--cream);
  font-family: inherit; font-size: 16px;
  padding: 12px 0;
  outline: none;
  transition: border-color .25s ease;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--gold); }
.form textarea { resize: vertical; min-height: 110px; }
.form select option { background: var(--ink); color: var(--cream); }
.form .submit { width: 100%; justify-content: center; margin-top: 12px; }

.consent { font-size: 12px; color: rgba(244, 246, 247, 0.55); margin-top: 14px; line-height: 1.55; }
.consent a { color: var(--gold); border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* ============ FOOTER ============ */
.footer { background: #061629; color: rgba(244, 246, 247, 0.75); padding-block: 80px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(244, 246, 247, 0.08); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .nav-brand { color: var(--cream); }
.footer-brand p { margin-top: 18px; max-width: 36ch; line-height: 1.6; font-size: 14px; }
.footer h5 { font-family: var(--sans); color: var(--cream); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 22px; font-weight: 600; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; font-size: 12px; letter-spacing: 0.06em; color: rgba(244, 246, 247, 0.45); flex-wrap: wrap; gap: 20px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid rgba(244, 246, 247, 0.16);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.socials svg { width: 16px; height: 16px; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ ARTICLE (Blog detail) ============ */
.article-hero {
  padding: 180px var(--gutter) 80px;
  background: linear-gradient(160deg, #0C4E59 0%, #0A6076 100%);
  color: var(--cream);
}
.article-hero .container { max-width: 880px; }
.article-hero .crumbs { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244, 246, 247,0.6); margin-bottom: 28px; }
.article-hero .crumbs a { color: var(--gold); }
.article-hero h1 { color: var(--cream); font-size: clamp(36px, 5vw, 60px); }
.article-hero .meta { display: flex; gap: 24px; margin-top: 24px; font-size: 13px; color: rgba(244, 246, 247,0.65); letter-spacing: 0.06em; flex-wrap: wrap; }
.article-hero .meta b { color: var(--gold); font-weight: 500; }

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px var(--gutter);
  font-size: 17px;
  line-height: 1.8;
  color: var(--slate);
}
.article p { margin-bottom: 24px; }
.article h2 { font-family: var(--serif); font-size: 36px; margin: 60px 0 24px; }
.article h3 { font-family: var(--serif); font-size: 26px; margin: 40px 0 16px; }
.article ul { list-style: disc; padding-left: 22px; margin-bottom: 24px; color: var(--slate); }
.article ul li { margin-bottom: 8px; line-height: 1.7; }
.article blockquote {
  margin: 40px 0;
  padding: 30px 36px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
}
.article .lead { font-size: 21px; line-height: 1.6; color: var(--ink); font-family: var(--serif); margin-bottom: 36px; }
.article-cover { aspect-ratio: 16/8; overflow: hidden; margin: -40px var(--gutter) 60px; max-width: 1100px; border-radius: var(--radius-lg); margin-inline: auto; transform: translateY(-40px); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-cta {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 40px 36px; margin: 60px 0; display: flex; gap: 30px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.article-cta h3 { font-size: 24px; margin: 0; }
.article-cta p { color: var(--muted); margin-top: 6px; max-width: 50ch; }

/* ============ DUAL-CURRENCY PRICE NOTES ============ */
.service-card .meta b small {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ============ FORM STATUS BANNER ============ */
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--success);
}
.form-status.error {
  background: rgba(183, 28, 28, 0.08);
  color: #b71c1c;
}

/* ============ UNIFIED IMAGE TONE ============ */
.case img, .post .cover img, .about-img img, .travel-img img, .country-card .cover img {
  filter: saturate(0.94) contrast(1.03);
}

/* ============ MISC ============ */
::selection { background: var(--gold); color: var(--ink); }

/* ============ MOBILE POLISH ============ */
@media (max-width: 760px) {
  .nav { padding: 12px 20px; }
  .nav-brand img { height: 46px; }
  /* The bar keeps only logo + hamburger; the CTA lives inside the menu */
  .nav-actions > .btn { display: none; }

  .hero { padding-top: 120px; padding-bottom: 64px; min-height: auto; }
  .hero h1 { font-size: clamp(38px, 11vw, 48px); }
  .hero-cta { margin-top: 34px; gap: 12px; }
  .hero-cta .btn { padding: 14px 24px; font-size: 13px; }
  .hero-trust { margin-top: 44px; gap: 14px; padding-top: 28px; }
  .hero-trust .num { font-size: 26px; }
  .hero-trust .lab { font-size: 10px; letter-spacing: 0.08em; }
  .scroll-cue { display: none !important; }

  /* Hero card: image and quote stack instead of overlapping,
     so the photo is never covered on small screens */
  .hero-card { aspect-ratio: auto; background: none; box-shadow: none; overflow: visible; }
  .hero-card .img-wrap {
    position: relative; inset: auto; height: 330px;
    border-radius: var(--radius-lg); overflow: hidden;
    background-position: center 30%;
    box-shadow: 0 26px 60px -26px rgba(0, 0, 0, 0.55);
  }
  .hero-badge { top: 14px; left: 14px; padding: 10px 14px; font-size: 10px; letter-spacing: 0.14em; }
  .hero-quote { position: static; margin-top: 14px; padding: 20px 22px; }
  .hero-quote p { font-size: 17px; }

  .mobile-menu a { font-size: 22px; }
}
