/* Worldz Tour & Travels — shared stylesheet
   Modern travel theme (blue / white) */

:root {
  --blue-900: #0a2540;
  --blue-700: #11528a;
  --blue-600: #1565c0;
  --blue-500: #1e7bd6;
  --blue-50:  #eaf3fc;
  --accent:   #ff8a00;
  --accent-dark: #e07700;
  --ink:      #1c2733;
  --muted:    #5b6b7b;
  --line:     #e2e8ef;
  --bg:       #ffffff;
  --bg-soft:  #f5f8fc;
  --ok:       #1f8a4c;
  --radius:   12px;
  --shadow:   0 8px 28px rgba(10, 37, 64, 0.10);
  --maxw:     1140px;
  --font:     "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 { color: var(--blue-900); line-height: 1.25; margin: 0 0 .5em; }
h1 { font-size: 2.1rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--blue-900);
  color: #cfe1f3;
  font-size: .86rem;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar .tb-right { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Header / nav ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
  display: grid; place-items: center; color: #fff; font-weight: 800;
  font-size: 1.1rem; flex: none;
}
.brand .b-name { font-weight: 800; color: var(--blue-900); font-size: 1.12rem; letter-spacing: .2px; }
.brand .b-sub { display: block; font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; }

.nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav a {
  color: var(--ink); padding: 8px 12px; border-radius: 8px;
  font-weight: 600; font-size: .95rem;
}
.nav a:hover { background: var(--blue-50); text-decoration: none; }
.nav .dropdown { position: relative; }
.nav .dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow); padding: 8px; display: none;
}
.nav .dropdown:hover .dropdown-menu,
.nav .dropdown:focus-within .dropdown-menu { display: block; }
.nav .dropdown-menu a { display: block; padding: 8px 10px; }

.btn {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 11px 20px; border-radius: 9px; font-weight: 700;
  border: none; cursor: pointer; font-size: .98rem;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; }
.btn-outline {
  background: transparent; color: var(--blue-700);
  border: 2px solid var(--blue-600);
}
.btn-outline:hover { background: var(--blue-50); }
.btn-call { background: var(--blue-600); }
.btn-call:hover { background: var(--blue-700); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: #fff; padding: 70px 0 80px;
}
.hero h1 { color: #fff; font-size: 2.6rem; max-width: 760px; }
.hero p { color: #d9e8f7; font-size: 1.15rem; max-width: 640px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero .phone-big { font-size: 1.05rem; margin-top: 18px; color: #cfe1f3; }
.hero .phone-big strong { color: #fff; font-size: 1.25rem; }

/* page header (interior pages) */
.page-head {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff; padding: 48px 0;
}
.page-head h1 { color: #fff; margin-bottom: 6px; }
.page-head p { color: #d9e8f7; margin: 0; }
.breadcrumb { font-size: .85rem; color: #aecbe8; margin-bottom: 14px; }
.breadcrumb a { color: #fff; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.center { text-align: center; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 720px; }
.center .lead { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.card .ic {
  width: 48px; height: 48px; border-radius: 12px; background: var(--blue-50);
  color: var(--blue-600); display: grid; place-items: center; font-size: 1.4rem;
  margin-bottom: 14px; font-weight: 800;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 14px; }
.card a.more { font-weight: 700; }

/* trust strip */
.trust { background: var(--blue-50); }
.trust .grid-4 { gap: 18px; }
.trust .t-item { text-align: center; padding: 14px; }
.trust .t-item .num { font-size: 1.9rem; font-weight: 800; color: var(--blue-700); }
.trust .t-item .lbl { color: var(--muted); font-size: .95rem; }

/* callout / fee notice */
.notice {
  background: #fff8ec; border: 1px solid #f3d9a8; border-left: 5px solid var(--accent);
  border-radius: 10px; padding: 18px 20px; margin: 22px 0; color: #6a4a12;
}
.notice strong { color: #5a3d0c; }

.info-box {
  background: var(--blue-50); border: 1px solid #cfe0f3; border-left: 5px solid var(--blue-600);
  border-radius: 10px; padding: 18px 20px; margin: 22px 0;
}

/* ---------- Content / legal pages ---------- */
.content { max-width: 860px; }
.content h2 { margin-top: 34px; }
.content h3 { margin-top: 24px; }
.content ul, .content ol { margin: 0 0 1rem; padding-left: 22px; }
.content li { margin-bottom: 8px; }
.updated { color: var(--muted); font-size: .9rem; margin-bottom: 6px; }

/* steps */
.steps { counter-reset: step; display: grid; gap: 16px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step .n {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-600); color: #fff; display: grid; place-items: center;
  font-weight: 800;
}

/* contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.contact-card .row { display:flex; gap:12px; align-items:flex-start; margin-bottom:16px; }
.contact-card .row .ic { color: var(--blue-600); font-weight:800; font-size:1.1rem; flex:none; width:26px; }
.field { margin-bottom: 16px; }
.field label { display:block; font-weight:600; margin-bottom:6px; font-size:.92rem; }
.field input, .field textarea, .field select {
  width:100%; padding:11px 12px; border:1px solid var(--line); border-radius:8px;
  font-family: inherit; font-size: .97rem;
}
.field textarea { min-height: 130px; resize: vertical; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color:#fff; text-align:center;
}
.cta-band h2 { color:#fff; }
.cta-band p { color:#d9e8f7; }
.cta-band .phone { font-size: 1.7rem; font-weight: 800; margin: 10px 0 18px; }
.cta-band .phone a { color:#fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-900); color: #c5d6e8; padding: 50px 0 0; font-size: .95rem; }
.site-footer h4 { color:#fff; font-size: 1.02rem; margin-bottom: 14px; }
.site-footer a { color:#c5d6e8; }
.site-footer a:hover { color:#fff; }
.footer-grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 30px; }
.footer-grid ul { list-style:none; padding:0; margin:0; }
.footer-grid li { margin-bottom: 9px; }
.footer-brand .logo {
  width: 40px; height:40px; border-radius:10px; background:#fff; color:var(--blue-900);
  display:grid; place-items:center; font-weight:800; margin-bottom: 12px;
}
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 40px; padding: 22px 0; font-size: .82rem; color:#9fb6cc; line-height:1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 16px 0; font-size: .82rem; color:#9fb6cc;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.footer-bottom a { color:#cfe1f3; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
}
@media (max-width: 620px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-header .container { flex-direction: column; align-items: flex-start; }
  .nav { width: 100%; }
  .topbar .container { justify-content: center; }
  h1 { font-size: 1.7rem; }
  .hero { padding: 50px 0; }
}
