/* Worlds Travel LLC — shared stylesheet
   Modern travel theme (teal / white) */

:root {
  --teal-900: #06363b;
  --teal-700: #0b6b73;
  --teal-600: #0f8b94;
  --teal-500: #14a3ad;
  --teal-50:  #e6f5f6;
  --accent:   #ff7a45;
  --accent-dark: #e85f29;
  --ink:      #14242a;
  --muted:    #566872;
  --line:     #dde8ea;
  --bg:       #ffffff;
  --bg-soft:  #f3f9f9;
  --radius:   12px;
  --shadow:   0 8px 28px rgba(6, 54, 59, 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(--teal-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(--teal-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(--teal-900); color: #bfe3e5; 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(--teal-600), var(--teal-900));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.05rem; flex: none;
}
.brand .b-name { font-weight: 800; color: var(--teal-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(--teal-50); text-decoration: none; }
.nav .dropdown { position: relative; }
.nav .dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  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: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-call { background: var(--teal-600); }
.btn-call:hover { background: var(--teal-700); }

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

/* page header */
.page-head { background: linear-gradient(135deg, var(--teal-900), var(--teal-700)); color: #fff; padding: 48px 0; }
.page-head h1 { color: #fff; margin-bottom: 6px; }
.page-head p { color: #d6eeef; margin: 0; }
.breadcrumb { font-size: .85rem; color: #9fd2d6; 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); }
.grid-5 { grid-template-columns: repeat(5, 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(--teal-50);
  color: var(--teal-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 */
.trust { background: var(--teal-50); }
.trust .t-item { text-align: center; padding: 14px; }
.trust .t-item .num { font-size: 1.9rem; font-weight: 800; color: var(--teal-700); }
.trust .t-item .lbl { color: var(--muted); font-size: .95rem; }

/* notices */
.notice {
  background: #fff5ef; border: 1px solid #f6cdb6; border-left: 5px solid var(--accent);
  border-radius: 10px; padding: 18px 20px; margin: 22px 0; color: #7a3c1c;
}
.notice strong { color: #6a3214; }
.info-box {
  background: var(--teal-50); border: 1px solid #bfe3e5; border-left: 5px solid var(--teal-600);
  border-radius: 10px; padding: 18px 20px; margin: 22px 0;
}

/* content / legal */
.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 { 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(--teal-600); color: #fff; display: grid; place-items: center; font-weight: 800; }

/* contact */
.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(--teal-600); font-weight:800; font-size:1.1rem; flex:none; width:26px; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--teal-700), var(--teal-900)); color:#fff; text-align:center; }
.cta-band h2 { color:#fff; }
.cta-band p { color:#d6eeef; }
.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(--teal-900); color: #b9dadc; padding: 50px 0 0; font-size: .95rem; }
.site-footer h4 { color:#fff; font-size: 1.02rem; margin-bottom: 14px; }
.site-footer a { color:#b9dadc; }
.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(--teal-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:#8fb9bc; line-height:1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding: 16px 0; font-size: .82rem; color:#8fb9bc; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }
.footer-bottom a { color:#bfe3e5; }

/* responsive */
@media (max-width: 1000px) { .grid-5 { grid-template-columns: repeat(3, 1fr); } }
@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-5 { 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; }
}
