:root {
  --brand: #183c91;
  --brand-dark: #102f78;
  --gold: #f7c948;
  --cta: #1967d2;
  --surface: #f5f7fb;
  --text: #202636;
  --muted: #687084;
  --border: #e0e6f0;
  --card: #fff;
  --shadow: 0 18px 44px rgba(24, 60, 145, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--surface); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; line-height: 1.5; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(100% - 32px, 1220px); margin: auto; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(24,60,145,.96); color: #fff; backdrop-filter: blur(14px); }
.header-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-size: 22px; font-weight: 900; text-decoration: none; }
.brand::before { content: ""; display: inline-block; width: 11px; height: 11px; margin-right: 10px; border-radius: 999px; background: var(--gold); box-shadow: 0 0 0 5px rgba(247,201,72,.2); }
nav { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 700; }
nav a { text-decoration: none; }
nav a:hover { text-decoration: underline; }
nav button { border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.12); color: #fff; padding: 7px 12px; cursor: pointer; }

.hero { position: relative; isolation: isolate; overflow: hidden; min-height: 680px; padding: 86px 0; color: #fff; background: var(--brand); }
.hero > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10,31,82,.95), rgba(24,60,145,.72) 48%, rgba(24,60,145,.15)); }
.hero-grid { display: grid; grid-template-columns: minmax(0,1fr) 420px; gap: 56px; align-items: center; }
.eyebrow, .section-label { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.hero h1 { margin: 16px 0 0; font-size: clamp(50px, 8vw, 86px); line-height: .95; letter-spacing: 0; }
.hero-copy p { max-width: 660px; margin: 22px 0 0; font-size: 21px; color: rgba(255,255,255,.92); }
.quick-points { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.quick-points span { min-width: 112px; border: 1px solid rgba(255,255,255,.24); border-radius: 16px; background: rgba(255,255,255,.1); padding: 13px 15px; }
.quick-points strong { display: block; font-size: 25px; line-height: 1; }
.quick-points small { color: rgba(255,255,255,.82); }

.booking-card { border: 1px solid rgba(255,255,255,.36); border-radius: 8px 28px 8px 28px; background: rgba(255,255,255,.94); color: var(--text); padding: 26px; box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.booking-card h2 { margin: 0 0 20px; color: var(--brand); font-size: 25px; }
.booking-card label { position: relative; display: grid; gap: 7px; margin-top: 14px; color: var(--muted); font-size: 13px; font-weight: 800; }
.booking-card input, .booking-card select, .chat-widget input, .chat-widget textarea { width: 100%; border: 1px solid var(--border); border-radius: 10px; background: #fff; padding: 13px; color: var(--text); outline: 0; }
.booking-card input:focus, .booking-card select:focus, .chat-widget input:focus, .chat-widget textarea:focus { border-color: var(--cta); box-shadow: 0 0 0 3px rgba(25,103,210,.16); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-card button, .chat-widget button[type="submit"] { width: 100%; border: 0; border-radius: 10px; background: linear-gradient(135deg, var(--brand), var(--cta)); color: #fff; padding: 14px; font-weight: 900; cursor: pointer; }
.booking-card p { margin: 13px 0 0; color: var(--muted); font-size: 13px; }
.suggestions { display: none; position: absolute; inset: calc(100% + 8px) 0 auto; z-index: 20; grid-template-columns: 1fr 1fr; gap: 7px; border: 1px solid var(--border); border-radius: 10px; background: #fff; padding: 8px; box-shadow: var(--shadow); }
.suggestions.open { display: grid; }
.suggestions button { border: 0; border-radius: 8px; background: rgba(24,60,145,.08); color: var(--text); padding: 8px; text-align: left; font-size: 12px; cursor: pointer; }

.intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; padding: 72px 0 46px; align-items: start; }
.intro h2, .section-head h2, .support-strip h2 { margin: 8px 0 0; color: var(--brand); font-size: clamp(28px, 4vw, 42px); line-height: 1.12; }
.intro p { margin: 0; font-size: 18px; color: rgba(32,38,54,.82); }

.steps { padding: 12px 0 64px; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.steps article { border-radius: 18px; background: var(--card); padding: 25px; box-shadow: var(--shadow); }
.steps span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(247,201,72,.22); color: var(--brand); font-weight: 900; }
.steps h3 { margin: 18px 0 8px; }
.steps p { margin: 0; color: var(--muted); }

.feature-band { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; padding: 0 0 70px; }
.feature { position: relative; min-height: 360px; overflow: hidden; border-radius: 8px 28px 8px 28px; box-shadow: var(--shadow); background: var(--brand); }
.feature.large { min-height: 430px; }
.feature img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; opacity: .9; }
.feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,31,82,.9), rgba(24,60,145,.28), transparent); }
.feature div { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 1; max-width: 520px; color: #fff; }
.feature h2 { margin: 0; font-size: 30px; line-height: 1.08; }
.feature p { color: rgba(255,255,255,.88); }
.feature a { display: inline-block; border-radius: 999px; background: var(--gold); color: #2f2609; padding: 11px 16px; font-weight: 900; text-decoration: none; }

.catalog { padding: 0 0 70px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.card-row { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 18px; }
.stay-card { overflow: hidden; border-radius: 8px; background: #fff; box-shadow: var(--shadow); transition: transform .2s ease; }
.stay-card:hover { transform: translateY(-4px); }
.stay-card img { width: 100%; height: 190px; object-fit: cover; }
.stay-card div { padding: 16px; }
.stay-card h3 { margin: 0 0 12px; font-size: 17px; }
.stay-card a { display: block; border-radius: 8px; background: var(--cta); color: #fff; padding: 9px 10px; text-align: center; text-decoration: none; font-weight: 800; }
.destination-row .stay-card:nth-child(even) { transform: translateY(18px); }

.support-strip { display: flex; justify-content: space-between; gap: 28px; align-items: center; border-radius: 8px 28px 8px 28px; background: var(--brand); color: #fff; padding: 32px; margin-bottom: 72px; box-shadow: var(--shadow); }
.support-strip h2 { color: #fff; }
.support-strip a { flex: none; border-radius: 999px; background: rgba(255,255,255,.12); padding: 13px 18px; font-weight: 900; text-decoration: none; }

.faq { padding-bottom: 72px; }
.faq #faqList { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.faq article { border-left: 5px solid var(--gold); border-radius: 8px; background: #fff; padding: 20px; box-shadow: var(--shadow); }
.faq h3 { margin: 0; }
.faq p { margin: 8px 0 0; color: var(--muted); }

footer { background: var(--brand); color: #fff; }
.footer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; padding: 46px 0; }
footer h3 { margin: 0 0 12px; }
footer p { color: rgba(255,255,255,.82); font-size: 14px; }
footer a { font-weight: 900; }
.copyright { margin: 0; border-top: 1px solid rgba(255,255,255,.12); padding: 16px; text-align: center; color: rgba(255,255,255,.7); font-size: 12px; }

.call-bar { position: sticky; bottom: 0; z-index: 50; display: flex; justify-content: center; align-items: center; gap: 22px; background: var(--brand-dark); color: #fff; padding: 11px 16px; font-weight: 900; box-shadow: 0 -10px 28px rgba(0,0,0,.18); }
.call-bar a { display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; background: rgba(255,255,255,.12); padding: 6px 14px; text-decoration: none; }
.call-bar img { width: 34px; height: 34px; border-radius: 999px; object-fit: cover; }

.chat-button { position: fixed; right: 20px; bottom: 82px; z-index: 80; width: 54px; height: 54px; border: 0; border-radius: 999px; background: var(--cta); color: #fff; font-size: 24px; font-weight: 900; box-shadow: var(--shadow); cursor: pointer; }
.chat-widget { position: fixed; right: 20px; bottom: 144px; z-index: 81; width: min(360px, calc(100vw - 32px)); overflow: hidden; border-radius: 8px 22px 8px 22px; background: #fff; box-shadow: var(--shadow); }
.chat-widget > div { display: flex; align-items: center; justify-content: space-between; background: var(--brand); color: #fff; padding: 14px 16px; }
.chat-widget > div button { border: 0; background: transparent; color: #fff; font-size: 24px; cursor: pointer; }
.chat-widget form { display: grid; gap: 10px; padding: 16px; }
.chat-widget textarea { resize: none; }
#formStatus { margin: 0; color: #027a48; font-weight: 800; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.62); padding: 16px; }
.modal.open { display: flex; }
.modal-card { position: relative; width: min(100%, 480px); border-radius: 8px 28px 8px 28px; background: #fff; padding: 30px; text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,.34); }
.modal-card button { position: absolute; top: 10px; right: 14px; border: 0; background: transparent; color: var(--muted); font-size: 28px; cursor: pointer; }
.modal-card h2 { margin: 8px 0 10px; color: var(--brand); font-size: 29px; }
.modal-card p { color: var(--muted); }
.modal-card img { width: 92px; height: 92px; margin: 18px auto; border-radius: 999px; object-fit: cover; box-shadow: 0 0 0 5px rgba(25,103,210,.16); }
.modal-card a { display: block; border-radius: 12px; background: var(--cta); color: #fff; padding: 13px; text-decoration: none; font-size: 22px; font-weight: 900; }

@media (max-width: 980px) {
  .hero-grid, .intro, .feature-band, .steps-grid, .footer-grid { grid-template-columns: 1fr; }
  .booking-card { max-width: 560px; }
  .card-row { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 700px) {
  nav a { display: none; }
  .hero { padding: 54px 0; }
  .hero-grid { gap: 30px; }
  .quick-points, .two-col, .card-row, .faq #faqList { grid-template-columns: 1fr; display: grid; }
  .destination-row .stay-card:nth-child(even) { transform: none; }
  .section-head, .support-strip, .call-bar { align-items: flex-start; flex-direction: column; }
}
