@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=DM+Serif+Display&display=swap');

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

:root {
  --navy: #1a3a5c;
  --petrol: #1d5c65;
  --terra: #c2522a;
  --sand: #c8a96e;
  --teal: #7ecdc0;
  --dark: #0d2233;
  --surface: #f4f7f7;
  --muted: #6b7280;
  --text: #1a1f2e;
  --border: rgba(0,0,0,0.08);
  --radius: 14px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--petrol);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-icon svg { width: 20px; height: 20px; }
.nav-brand strong { display: block; font-size: 15px; font-weight: 500; color: var(--petrol); letter-spacing: 0.06em; }
.nav-brand small { display: block; font-size: 10px; color: var(--muted); }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.lang-btn { font-size: 11px; padding: 3px 9px; border: 1px solid var(--border); border-radius: 20px; background: none; cursor: pointer; color: var(--muted); }
.lang-btn.active { background: var(--petrol); color: #fff; border-color: var(--petrol); }
.nav-cta { font-size: 13px; padding: 9px 18px; background: var(--terra); color: #fff; border: none; border-radius: 7px; cursor: pointer; font-weight: 500; margin-left: 4px; white-space: nowrap; font-family: inherit; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--text); }

/* ── MOBILE MENU ── */
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: #0d2233; flex-direction: column; overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mob-menu-close { background: none; border: none; color: #fff; cursor: pointer; font-size: 24px; line-height: 1; }
.mob-nav-links a { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; font-size: 16px; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mob-lang-row { display: flex; gap: 8px; padding: 16px 20px; }
.mob-lang-row button { flex: 1; padding: 9px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 7px; color: #fff; font-size: 13px; cursor: pointer; font-family: inherit; }
.mob-lang-row button.active { background: var(--petrol); border-color: var(--petrol); }
.mob-cta { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }

/* ── SECTIONS ── */
.sec { padding: 64px 0; }
.sec-alt { padding: 64px 0; background: var(--surface); }
.hero-sm { background: var(--dark); padding: 52px 0 44px; }
.sec-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--petrol); font-weight: 500; margin-bottom: .6rem; }
h1, h2 { font-family: 'DM Serif Display', serif; line-height: 1.25; }
h1 { font-size: clamp(24px, 4vw, 36px); }
h2 { font-size: clamp(20px, 3vw, 28px); margin-bottom: .9rem; }
h2 em { color: var(--petrol); font-style: normal; }
.sec-sub { font-size: 15px; color: var(--muted); max-width: 540px; margin-bottom: 2rem; }

/* ── BUTTONS ── */
.btn-terra { padding: 12px 22px; background: var(--terra); color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 8px; }
.btn-ghost { padding: 12px 22px; background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; font-size: 14px; cursor: pointer; font-family: inherit; }
.btn-navy { padding: 12px 22px; background: var(--navy); color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: inherit; }
.btn-wa { padding: 12px 22px; background: #25d366; color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline { padding: 10px 20px; background: none; color: var(--text); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; cursor: pointer; font-family: inherit; }

/* ── CARDS ── */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.icon-box { width: 40px; height: 40px; border-radius: 10px; background: #e0efee; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box svg { width: 20px; height: 20px; stroke: var(--petrol); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.t-pill { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 30px; padding: 8px 16px; font-size: 13px; }
.t-pill svg { width: 15px; height: 15px; stroke: var(--petrol); fill: none; stroke-width: 1.8; stroke-linecap: round; flex-shrink: 0; }
.loc-tag { display: flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--border); border-radius: 7px; padding: 7px 14px; font-size: 13px; font-weight: 500; }
.loc-tag svg { width: 13px; height: 13px; stroke: var(--petrol); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── PACKAGES ── */
.pkg { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; position: relative; display: flex; flex-direction: column; }
.pkg.star { border: 2px solid var(--petrol); }
.pkg-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--petrol); color: #fff; font-size: 11px; padding: 3px 14px; border-radius: 20px; white-space: nowrap; }
.pkg ul { list-style: none; margin-bottom: 1rem; flex: 1; }
.pkg ul li { font-size: 13px; color: var(--muted); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.pkg ul li svg { width: 14px; height: 14px; stroke: var(--petrol); fill: none; stroke-width: 2.5; stroke-linecap: round; flex-shrink: 0; margin-top: 4px; }
.pkg-btn { width: 100%; padding: 11px; border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer; border: none; background: #f0f0f0; color: var(--text); font-family: inherit; margin-top: auto; }
.pkg.star .pkg-btn { background: var(--terra); color: #fff; }

/* ── AGENTS DARK ── */
.agents-dark { background: linear-gradient(135deg, #0a1a2a 0%, var(--navy) 100%); padding: 64px 0; }
.agents-dark h2 { color: #fff; }
.agents-dark p { color: #b0c8dc; }
.agents-dark .sec-label { color: var(--teal); }
.a-field { width: 100%; padding: 10px 12px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 7px; color: #fff; font-size: 13px; font-family: inherit; }
.a-field::placeholder { color: rgba(255,255,255,0.3); }

/* ── FOOTER ── */
footer { background: #080f18; padding: 44px 0 24px; }
footer p, footer a { font-size: 13px; color: #7a8fa0; text-decoration: none; line-height: 2; display: block; }
footer h5 { font-size: 13px; color: #c5d3df; font-weight: 500; margin-bottom: .5rem; }
.footer-bot { border-top: 1px solid #1a2d40; padding-top: 16px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.f-langs button { font-size: 11px; color: #7a8fa0; background: none; border: 1px solid #1e3045; border-radius: 4px; padding: 2px 7px; cursor: pointer; margin-right: 4px; }

/* ── STICKY ── */
.sticky-wa { position: fixed; bottom: 20px; right: 20px; z-index: 200; background: #25d366; color: #fff; border: none; border-radius: 50%; width: 54px; height: 54px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mob-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; padding: 10px 16px 16px; background: #fff; border-top: 1px solid var(--border); gap: 10px; }

/* ── FORM ── */
.form-label { font-size: 12px; color: var(--muted); display: block; margin-bottom: 4px; margin-top: 12px; }
.form-label:first-of-type { margin-top: 0; }
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #dde1e7; border-radius: 7px;
  font-size: 13px; font-family: inherit; background: #fff; color: var(--text);
  transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--petrol); }
textarea { resize: vertical; min-height: 90px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 4px; }
.check-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding: 8px 10px; border: 1px solid var(--border); border-radius: 6px; cursor: pointer; background: var(--surface); }
.check-item input[type=checkbox] { accent-color: var(--petrol); width: 14px; height: 14px; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; align-items: center; }
  .sec, .sec-alt, .agents-dark { padding: 44px 0; }
  .hero-sm { padding: 40px 0 36px; }
  .sticky-wa { display: none; }
  .mob-sticky-bar { display: flex; }
  body { padding-bottom: 76px; }
  footer { padding: 36px 0 20px; }
}
@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
}

/* ── LANGUAGE DROPDOWN ── */
.lang-dropdown-wrap { position: relative; }

.lang-trigger {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 10px; border: 1px solid var(--border);
  border-radius: 7px; background: #fff; cursor: pointer;
  font-family: inherit; font-size: 13px; color: var(--text);
  transition: border-color .15s;
  white-space: nowrap;
}
.lang-trigger:hover { border-color: var(--petrol); }
.lang-flag { font-size: 15px; line-height: 1; }
.lang-code { font-weight: 500; font-size: 13px; }
.lang-chevron { transition: transform .2s; flex-shrink: 0; color: var(--muted); }
.lang-menu.open ~ .lang-trigger .lang-chevron,
.lang-trigger[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }

.lang-menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; min-width: 170px;
  overflow: hidden; z-index: 500;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.lang-menu.open { display: block; }

.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 14px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 13px; color: var(--text);
  text-align: left; transition: background .1s;
}
.lang-option:hover { background: var(--surface); }
.lang-option.active { background: #fef2f0; color: var(--terra); font-weight: 500; }
.lang-option.active .lang-label { color: var(--terra); }
.lang-code-sm { font-size: 11px; color: var(--muted); min-width: 22px; font-weight: 500; }
.lang-label { font-size: 13px; }
.lang-option.active .lang-code-sm { color: var(--terra); }

/* Mobile lang row overrides */
.mob-lang-row button { font-size: 12px; }
@media(max-width: 768px) {
  
}

/* Sections: full-width background, inner content constrained */
.hero, .hero-sm, .sec, .sec-alt, .agents-dark, .cta-sec, footer {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


/* ── MAX WIDTH ── */
.nav { max-width: 1100px; margin: 0 auto; }

.sec, .sec-alt, .hero, .hero-sm, .agents-dark, .cta-sec {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
footer { padding-left: 0 !important; padding-right: 0 !important; }

.inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
