/* ===========================================================
   Albania HC — Health & Medical Tourism  (albaniahc.com)
   Corporate, restrained design. Single self-hosted font (Poppins).
   No external requests (GDPR / KVKK friendly).
   =========================================================== */

/* ---------- Self-hosted Poppins ---------- */
@font-face { font-family:"Poppins"; font-style:normal; font-weight:400; font-display:swap; src:url("/assets/fonts/poppins-400.woff2") format("woff2"); }
@font-face { font-family:"Poppins"; font-style:normal; font-weight:500; font-display:swap; src:url("/assets/fonts/poppins-500.woff2") format("woff2"); }
@font-face { font-family:"Poppins"; font-style:normal; font-weight:600; font-display:swap; src:url("/assets/fonts/poppins-600.woff2") format("woff2"); }
@font-face { font-family:"Poppins"; font-style:normal; font-weight:700; font-display:swap; src:url("/assets/fonts/poppins-700.woff2") format("woff2"); }

:root {
  --navy: #0f2b40;
  --navy-2: #14384f;
  --accent: #16785a;      /* calm, clinical green — used sparingly */
  --accent-dark: #115f47;
  --accent-soft: #eef4f1;

  --ink: #1b2a35;
  --muted: #5a6b78;
  --line: #e4e9ee;
  --line-2: #eef1f4;
  --bg: #f6f8fa;
  --white: #ffffff;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px rgba(15,43,64,.05);
  --maxw: 1140px;
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 600; letter-spacing: -.01em; line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 600; }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 76px 0; }
.section--tight { padding: 44px 0; }
.bg-soft { background: var(--bg); }
.center { text-align: center; }

.eyebrow {
  display: block; font-size: .74rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.eyebrow--light { color: #6fb69d; }
.lead { font-size: 1.06rem; color: var(--muted); max-width: 620px; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { max-width: 640px; margin: 0 auto 44px; }

/* ---------- Buttons (flat, corporate) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 500; font-size: .95rem;
  padding: 13px 24px; border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; transition: background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-2); }
.btn--line { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--line:hover { border-color: var(--muted); }
.btn--wide { width: 100%; }

/* ---------- Header (white, corporate) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--navy); }
.brand__mark {
  width: 38px; height: 38px; border-radius: 7px; background: var(--navy);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .82rem; letter-spacing: .02em;
}
.brand__name { font-weight: 700; font-size: 1rem; line-height: 1.1; color: var(--navy); }
.brand__tag { display: block; font-weight: 400; font-size: .64rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: #33465a; font-size: .92rem; font-weight: 400; transition: color .15s ease; }
.nav__links a:hover { color: var(--accent); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; }

/* ---------- Hero (flat navy, no glow/glass) ---------- */
.hero { background: var(--navy); color: #fff; border-bottom: 3px solid var(--accent); }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; padding: 80px 0; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero__sub { color: #c2d0dc; font-size: 1.1rem; max-width: 520px; margin-bottom: 28px; font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero__trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; margin: 0; padding: 0; }
.hero__trust li { list-style: none; display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #cbd7e1; font-weight: 300; }
.hero__trust svg { flex: none; color: var(--accent); }
.hero__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3.2; background: #14384f; border: 1px solid rgba(255,255,255,.08); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Trust strip ---------- */
.strip { background: var(--navy-2); color: #fff; padding: 18px 0; }
.strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 38px; }
.strip__row span { font-size: .86rem; color: #b9c6d2; display: inline-flex; align-items: center; gap: 8px; font-weight: 300; }
.strip__row svg { color: var(--accent); }

/* ---------- Grids & cards (flat) ---------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.card__icon { width: 44px; height: 44px; border-radius: 8px; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent-dark); margin-bottom: 16px; }
.card h3 { margin-bottom: 6px; }
.card p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 16px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; }
.about-list svg { flex: none; color: var(--accent); margin-top: 3px; }
.about-list strong { display: block; font-weight: 600; font-size: .98rem; }
.about-list span { color: var(--muted); font-size: .9rem; }

/* ---------- Feature list ---------- */
.feature { display: flex; gap: 13px; align-items: flex-start; }
.feature__dot { flex: none; width: 26px; height: 26px; border-radius: 6px; background: var(--accent-soft); color: var(--accent-dark); display: grid; place-items: center; margin-top: 2px; }
.feature h3 { font-size: 1rem; margin-bottom: 3px; }
.feature p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Process ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { padding: 24px 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.step__num { counter-increment: step; width: 34px; height: 34px; border-radius: 7px; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: .92rem; margin-bottom: 14px; }
.step__num::before { content: counter(step); }
.step h3 { font-size: 1rem; }
.step p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Testimonials ---------- */
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
.quote__stars { color: #e0a92e; letter-spacing: 2px; margin-bottom: 10px; font-size: .9rem; }
.quote p { font-size: .95rem; color: var(--ink); }
.quote__by { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: .85rem; color: var(--muted); }
.quote__av { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: .76rem; }

/* ---------- Compliance ---------- */
.compliance { background: var(--bg); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 20px 22px; display: flex; gap: 14px; align-items: flex-start; color: #3a4a57; font-size: .9rem; }
.compliance svg { flex: none; color: var(--accent-dark); margin-top: 2px; }
.compliance a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; }

/* ---------- Form ---------- */
.form-section { background: var(--navy); color: #fff; }
.form-wrap { display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items: start; }
.form-wrap h2 { color: #fff; }
.form-wrap .lead { color: #c2d0dc; font-weight: 300; }
.form-intro ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.form-intro li { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; color: #d3dee6; font-weight: 300; }
.form-intro svg { flex: none; color: var(--accent); margin-top: 3px; }

.form-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 30px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .82rem; font-weight: 500; margin-bottom: 6px; color: #33465a; }
.field .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .94rem; color: var(--ink); background: #fff; transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(22,120,90,.12); }
.field textarea { resize: vertical; min-height: 84px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.field-note { font-size: .78rem; color: var(--muted); margin: 4px 0 0; }

.consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; font-size: .82rem; color: #45566a; line-height: 1.5; }
.consent input { flex: none; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--accent); }
.consent a { color: var(--accent-dark); text-decoration: underline; }
.form-error { color: #c0392b; font-size: .82rem; margin: 2px 0 10px; display: none; }
.form-error.show { display: block; }
.form-disclaimer { font-size: .77rem; color: var(--muted); margin-top: 13px; text-align: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 12px; background: #fff; }
.faq summary { font-weight: 600; cursor: pointer; font-size: .98rem; list-style: none; position: relative; padding-right: 26px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: -2px; font-size: 1.3rem; color: var(--accent); font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 12px 0 0; color: var(--muted); font-size: .93rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-item { display: flex; flex-direction: column; gap: 5px; }
.contact-item .lbl { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.contact-item a, .contact-item span { font-weight: 500; color: var(--ink); font-size: .96rem; }
.socials { display: flex; gap: 10px; margin-top: 4px; }
.socials a { width: 38px; height: 38px; border-radius: 7px; background: var(--bg); border: 1px solid var(--line); color: var(--navy); display: grid; place-items: center; transition: .15s ease; }
.socials a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #aebccb; padding: 56px 0 26px; font-size: .89rem; font-weight: 300; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 32px; margin-bottom: 32px; }
.site-footer h4 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 15px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand__name, .footer-brand .brand__mark { color: #fff; }
.footer-brand .brand__mark { background: rgba(255,255,255,.12); }
.footer-brand p { color: #8ea1b2; max-width: 300px; font-size: .87rem; margin-top: 14px; }
.footer-legal-note { font-size: .77rem; color: #7b8ea0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; line-height: 1.7; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 14px; font-size: .81rem; color: #7b8ea0; }
.footer-bottom a { text-decoration: underline; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 6px 18px rgba(37,211,102,.4); transition: transform .15s ease; }
.wa-float:hover { transform: scale(1.05); }

/* ---------- Cookie banner ---------- */
.cookie { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 70; max-width: 540px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(15,43,64,.14); padding: 20px 22px; display: none; }
.cookie.show { display: block; }
.cookie p { font-size: .86rem; color: var(--muted); margin: 0 0 13px; }
.cookie a { color: var(--accent-dark); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 10px 18px; font-size: .88rem; }

/* ---------- Legal pages ---------- */
.mini-header { background: rgba(255,255,255,.96); }
.legal { max-width: 800px; margin: 0 auto; padding: 60px 24px 76px; }
.legal h1 { font-size: 2rem; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: .88rem; margin-bottom: 30px; }
.legal h2 { font-size: 1.22rem; margin: 32px 0 10px; font-weight: 600; }
.legal h3 { font-size: 1.02rem; margin: 20px 0 8px; }
.legal p, .legal li { color: #3a4a57; font-size: .96rem; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--accent-dark); text-decoration: underline; }
.legal .callout { background: var(--bg); border-left: 3px solid var(--accent); border-radius: 8px; padding: 16px 18px; margin: 20px 0; font-size: .92rem; }
.legal .ph { background: #fff5d6; border-bottom: 1px dashed #d8b23a; padding: 0 3px; }
.legal .toc { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin: 24px 0; }
.legal .toc ul { display: grid; gap: 6px; margin: 8px 0 0; }

/* ---------- Thank you / 404 ---------- */
.thanks { min-height: 68vh; display: grid; place-items: center; text-align: center; padding: 56px 24px; }
.thanks__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); display: grid; place-items: center; margin: 0 auto 20px; }

/* ---------- Pop-in reveal (subtle, corporate) ----------
   Gated on .js so content is fully visible without JS (crawlers, no-JS). */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .hero__media { max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .form-wrap { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .nav[data-open="true"] .nav__links { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; padding: 6px 0; border-bottom: 1px solid var(--line); }
  .nav[data-open="true"] .nav__links li { width: 100%; }
  .nav[data-open="true"] .nav__links a { display: block; padding: 13px 24px; }
}
@media (max-width: 560px) {
  .section { padding: 54px 0; }
  .grid--3, .grid--4, .grid--2, .steps, .contact-grid, .footer-grid, .field--row, .hero__trust { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
