/* ── MEDON SHARED STYLESHEET ── */
:root {
  --navy: #0C2340;
  --sky: #0EA5E9;
  --sky-dark: #0369A1;
  --sky-light: #E0F2FE;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-500: #64748B;
  --gray-700: #334155;
  --green: #16A34A;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(12,35,64,0.10);
  --shadow-lg: 0 12px 48px rgba(12,35,64,0.16);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--navy); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); margin-bottom: 0.4rem; }
.section-sub { font-size: 1.05rem; color: var(--gray-500); margin-bottom: 2.5rem; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(12,35,64,0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 34px; height: 34px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700; letter-spacing: 3px; color: var(--navy); line-height: 1; }
.logo-tag { font-size: 0.55rem; letter-spacing: 3px; color: var(--sky); text-transform: uppercase; margin-top: 2px; }

.nav-center { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-link {
  padding: 7px 14px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--gray-700);
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover, .nav-link.active { background: var(--sky-light); color: var(--sky-dark); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-switcher { display: flex; gap: 5px; }
.lang-btn {
  font-size: 1.15rem; letter-spacing: 0;
  padding: 3px 6px; border-radius: 20px; border: 1.5px solid var(--gray-200);
  background: transparent; color: var(--gray-500); cursor: pointer;
  transition: all 0.2s; line-height: 1.4;
}
.lang-btn.active, .lang-btn:hover { background: var(--sky); color: var(--white); border-color: var(--sky); }

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 9px 18px; border-radius: 30px;
  font-size: 0.85rem; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #15803D; transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--sky); color: var(--white);
  padding: 14px 30px; border-radius: 30px;
  font-size: 0.96rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 18px rgba(14,165,233,0.35);
}
.btn-primary:hover { background: var(--sky-dark); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--navy); color: var(--navy);
  padding: 14px 28px; border-radius: 30px;
  font-size: 0.96rem; font-weight: 600;
  display: inline-flex; align-items: center;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 16px 32px; border-radius: 30px;
  font-size: 1rem; font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
}
.btn-wa:hover { background: #1DA851; transform: translateY(-2px); }
.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12); color: var(--white);
  padding: 16px 32px; border-radius: 30px;
  font-size: 1rem; font-weight: 600; border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-call:hover { background: rgba(255,255,255,0.2); }

/* ── CTA SECTION ── */
.cta-section { background: var(--navy); text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FLOATING WA ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.55);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
.wa-float svg { width: 30px; height: 30px; }
.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: var(--white);
  padding: 6px 14px; border-radius: 8px; white-space: nowrap;
  font-size: 0.82rem; font-weight: 600;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── FOOTER ── */
footer { background: #071828; padding: 40px 0 28px; color: rgba(255,255,255,0.5); font-size: 0.83rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; letter-spacing: 3px; color: var(--white); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--sky); }
.footer-copy { width: 100%; text-align: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #EAF6FF 0%, #F8FAFC 70%, #fff 100%);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero-inner { max-width: 780px; }
.page-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sky-light); color: var(--sky-dark);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
h1.page-title { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.18; color: var(--navy); margin-bottom: 16px; }
h1.page-title em { font-style: normal; color: var(--sky); }
.page-lead { font-size: 1.12rem; color: var(--gray-500); line-height: 1.8; max-width: 640px; }

/* ── LANGUAGE VISIBILITY ── */
[data-lang] { display: none; }
[data-lang].visible { display: block; }
[data-lang-inline] { display: none; }
[data-lang-inline].visible { display: inline; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-center { display: none; }
}
@media (max-width: 600px) {
  .nav-cta span { display: none; }
  .footer-links { gap: 12px; }
}



/* ── MOBILE HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--sky-light); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 0 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 13px 24px;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--sky-light); color: var(--sky-dark); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
}
