/* ==========================================================================
   Tour365 — Bootstrap 5 theme
   Brand: #003e99 (blue)  ·  #009ece (cyan)  ·  Font: Geologica
   ========================================================================== */

:root {
  --t365-blue: #003e99;
  --t365-cyan: #009ece;
  --t365-ink: #12161f;
  --t365-body: #5b6472;
  --t365-muted: #8a93a3;
  --t365-line: #ececec;
  --t365-tint: #f5f8fc;
  --t365-tint2: #f0f4fa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Geologica', system-ui, -apple-system, sans-serif;
  color: var(--t365-ink);
  background: #ffffff;
  overflow-x: hidden;
}

a { color: var(--t365-blue); text-decoration: none; }
a:hover { color: var(--t365-cyan); }

h1, h2, h3, h4 { letter-spacing: -0.01em; }

.text-body-2 { color: var(--t365-body); }
.text-muted-2 { color: var(--t365-muted); }
.bg-tint { background: var(--t365-tint); }
.section { padding: clamp(56px, 8vw, 100px) 0; }

/* ------- Buttons ------- */
.btn-t365 {
  --bs-btn-color: #fff; --bs-btn-bg: var(--t365-blue); --bs-btn-border-color: var(--t365-blue);
  --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #00337f; --bs-btn-hover-border-color: #00337f;
  --bs-btn-active-bg: #00337f; --bs-btn-active-border-color: #00337f;
  border-radius: 100px; font-weight: 700; padding: 14px 30px;
}
.btn-cyan {
  --bs-btn-color: #fff; --bs-btn-bg: var(--t365-cyan); --bs-btn-border-color: var(--t365-cyan);
  --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #0088b0; --bs-btn-hover-border-color: #0088b0;
  --bs-btn-active-bg: #0088b0; --bs-btn-active-border-color: #0088b0;
  border-radius: 100px; font-weight: 700; padding: 14px 30px;
}
.btn-white {
  --bs-btn-color: #0b1a33; --bs-btn-bg: #fff; --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #0b1a33; --bs-btn-hover-bg: #eef2f8; --bs-btn-hover-border-color: #eef2f8;
  border-radius: 100px; font-weight: 700; padding: 14px 30px;
}
.btn-glass {
  --bs-btn-color: #fff; --bs-btn-bg: rgba(255,255,255,0.14); --bs-btn-border-color: rgba(255,255,255,0.6);
  --bs-btn-hover-color: #0b1a33; --bs-btn-hover-bg: #fff; --bs-btn-hover-border-color: #fff;
  border-radius: 100px; font-weight: 700; padding: 14px 28px; backdrop-filter: blur(6px);
}

/* ------- Eyebrow labels ------- */
.eyebrow { font-size: 16px; font-weight: 700; color: var(--t365-cyan);
  letter-spacing: 0.08em; text-transform: uppercase; }
.eyebrow-blue { color: var(--t365-blue); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.t365-navbar {
  padding: 14px 0;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  background: #ffffff;
  border-bottom: 1px solid rgba(230,230,230,0.7);
}
.t365-navbar .container { align-items: center; }
.t365-logo { width: clamp(96px, 20vw, 118px); height: auto; display: block; }
.t365-logo .lp { fill: var(--t365-blue); transition: fill .3s ease; }
.t365-logo .la { fill: var(--t365-cyan); transition: fill .3s ease; }

.t365-navbar .nav-link {
  font-size: 17px; font-weight: 500; color: var(--t365-body);
  padding: 6px 0; margin: 0 16px; border-bottom: 2px solid transparent;
}
.t365-navbar .nav-link:hover { color: var(--t365-blue); }
.t365-navbar .nav-link.active { color: var(--t365-ink); border-bottom-color: var(--t365-cyan); }
.t365-navbar .btn-link-plain {
  font-size: 15px; font-weight: 600; color: var(--t365-ink); padding: 10px 6px;
}
.t365-navbar .btn-link-plain:hover { color: var(--t365-cyan); }
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler .bar { display: block; width: 24px; height: 2px; background: var(--t365-ink);
  border-radius: 2px; margin: 5px 0; transition: background .3s ease; }

/* Transparent state (over hero) */
.t365-navbar.navbar-transparent {
  background: transparent; border-bottom-color: transparent; box-shadow: none;
}
.t365-navbar.navbar-transparent:not(.navbar-scrolled):not(.menu-open) .t365-logo .lp,
.t365-navbar.navbar-transparent:not(.navbar-scrolled):not(.menu-open) .t365-logo .la { fill: #fff; }
.t365-navbar.navbar-transparent:not(.navbar-scrolled):not(.menu-open) .nav-link { color: rgba(255,255,255,0.85); }
.t365-navbar.navbar-transparent:not(.navbar-scrolled):not(.menu-open) .nav-link:hover,
.t365-navbar.navbar-transparent:not(.navbar-scrolled):not(.menu-open) .nav-link.active { color: #fff; border-bottom-color: #fff; }
.t365-navbar.navbar-transparent:not(.navbar-scrolled):not(.menu-open) .btn-link-plain { color: #fff; }
.t365-navbar.navbar-transparent:not(.navbar-scrolled):not(.menu-open) .navbar-toggler .bar { background: #fff; }

/* Scrolled / solid state */
.t365-navbar.navbar-scrolled {
  background: rgba(255,255,255,0.9); backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(230,230,230,0.6);
  box-shadow: 0 6px 24px -18px rgba(11,26,51,0.4);
}

/* Mobile collapsed menu panel */
@media (max-width: 991.98px) {
  #t365Nav { background: #ffffff; border-radius: 16px; margin-top: 12px;
    padding: 10px 16px 18px; box-shadow: 0 24px 50px -24px rgba(11,26,51,0.35); }
  .t365-navbar.menu-open { background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); }
  .t365-navbar .nav-link { margin: 0; padding: 12px 2px; border-bottom: 1px solid var(--t365-line); }
  .t365-navbar .nav-link.active { border-bottom-color: var(--t365-line); }
  .navbar-actions { display: flex; gap: 12px; margin-top: 16px; }
  .navbar-actions .btn { flex: 1; }
  .navbar-actions .btn-link-plain {
    flex: 1; text-align: center; border: 1.5px solid var(--t365-line); border-radius: 100px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 120px 0 80px; }
.hero-sm { min-height: 72vh; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(rgba(45,45,45,0.22), rgba(45,45,45,0.22)),
    linear-gradient(180deg, rgba(3,15,36,0.60) 0%, rgba(3,15,36,0.28) 42%, rgba(3,15,36,0.72) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-title { font-size: clamp(28px, 4.8vw, 50px); line-height: 1.12; font-weight: 800;
  letter-spacing: -0.02em; margin: 0 0 18px; text-wrap: balance; }
.hero-lead { font-size: clamp(15px, 2.2vw, 20px); line-height: 1.55; color: rgba(255,255,255,0.9);
  margin: 0 auto 30px; max-width: 640px; text-wrap: balance; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.35); color: #fff;
  font-size: clamp(13px, 1.6vw, 17px); font-weight: 600; padding: 10px 20px; border-radius: 100px;
  margin-bottom: 24px; }

/* ==========================================================================
   Cards / sections
   ========================================================================== */
.feature-card { background: var(--t365-tint); border-radius: 22px; padding: 36px; height: 100%; }
.feature-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 10px; }
.feature-card p { font-size: 15px; line-height: 1.7; color: var(--t365-body); margin: 0; }
.feature-card .mark { font-size: 13px; font-weight: 800; color: var(--t365-cyan);
  letter-spacing: 0.04em; margin-bottom: 12px; }

.how-step { border-left: 3px solid var(--t365-blue); padding-left: 24px; }
.how-step h4 { font-size: 21px; font-weight: 800; margin: 0 0 8px; color: var(--t365-ink); }
.how-step p { font-size: 17px; line-height: 1.6; color: var(--t365-body); margin: 0; }

.step-card { background: var(--t365-blue); color: #fff; border-radius: 22px; padding: 36px 28px; height: 100%; }
.step-card .num { font-size: 40px; font-weight: 800; color: #3f6bc4; margin-bottom: 8px; line-height: 1; }
.step-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.step-card p { font-size: 14px; line-height: 1.65; color: #c7d9f7; margin: 0; }

.media-frame { position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(11,26,51,0.28); }
.media-frame video, .media-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-square { aspect-ratio: 1 / 1; background: #0b1a33; }
.media-square video { object-fit: contain; }
.media-tall { height: min(440px, 72vw); }

/* Role split cards */
.role-card { position: relative; border-radius: 28px; overflow: hidden; height: min(440px, 92vw); }
.role-card img { width: 100%; height: 100%; object-fit: cover; }
.role-card .role-overlay { position: absolute; inset: 0; }
.role-card .role-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 36px; z-index: 2; }
.role-card .role-eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 10px; }
.role-card h3 { font-size: 26px; font-weight: 800; color: #fff; margin: 0 0 16px; max-width: 340px; }
.role-guides .role-overlay { background: linear-gradient(rgba(45,45,45,0.22),rgba(45,45,45,0.22)),
  linear-gradient(180deg, rgba(0,62,153,0) 30%, rgba(0,20,60,0.85) 100%); }
.role-agents .role-overlay { background: linear-gradient(rgba(45,45,45,0.22),rgba(45,45,45,0.22)),
  linear-gradient(180deg, rgba(0,158,206,0) 30%, rgba(0,50,70,0.85) 100%); }
.role-guides .role-eyebrow { color: #8fb4ff; }
.role-agents .role-eyebrow { color: #c9f2ff; }

/* CTA band */
.cta-band { position: relative; border-radius: 32px; overflow: hidden; min-height: 340px;
  display: flex; align-items: center; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-band .cta-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(0,20,60,0.92) 20%, rgba(0,50,80,0.55) 100%); }
.cta-band .cta-body { position: relative; z-index: 2; padding: clamp(32px, 6vw, 64px); max-width: 560px; color: #fff; }
.cta-band h2 { font-size: clamp(24px, 4.5vw, 34px); font-weight: 800; margin: 0 0 16px; }
.cta-band p { font-size: 16px; color: #c7d9f7; margin: 0 0 32px; }

/* ==========================================================================
   Pricing table
   ========================================================================== */
.plan-grid { border: 1px solid var(--t365-line); border-radius: 16px; overflow: hidden; }
.plan-cell { padding: 32px 24px; border-top: 1px solid var(--t365-line);
  border-left: 1px solid var(--t365-line); display: flex; flex-direction: column; height: 100%; }
.plan-cell h3 { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin: 14px 0 4px; }
.plan-price .amt { font-size: 32px; font-weight: 700; }
.plan-price .per { font-size: 13px; color: var(--t365-muted); }
.plan-note { font-size: 12px; color: var(--t365-muted); margin: 0 0 20px; line-height: 1.4; }
.plan-feats { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.plan-feats .feat { font-size: 13px; color: #4a5468; line-height: 1.4; }
.plan-cta { display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 14px; font-weight: 600; padding: 12px 18px; border-radius: 8px; }
.plan-cta.light { color: var(--t365-blue); background: var(--t365-tint2); }
.plan-cta.solid { color: #fff; background: var(--t365-blue); }
.plan-cta.solid:hover { color: #fff; background: #00337f; }

/* FAQ */
.faq-item { border-top: 1px solid var(--t365-line); }
.faq-item:last-child { border-bottom: 1px solid var(--t365-line); }
.faq-item summary { font-size: 15.5px; font-weight: 600; cursor: pointer; list-style: none;
  padding: 20px 40px 20px 0; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 16px;
  font-size: 24px; font-weight: 400; color: var(--t365-cyan); transition: transform .2s ease; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { font-size: 14px; line-height: 1.7; color: var(--t365-body); margin: 0 0 20px; }

/* Contact form */
.contact-field label { font-size: 13px; font-weight: 600; color: #4a5468; margin-bottom: 8px; display: block; }
.contact-field input, .contact-field textarea {
  width: 100%; padding: 13px 0; border: none; border-bottom: 1.5px solid var(--t365-line);
  font-size: 15px; outline: none; font-family: inherit; background: transparent; }
.contact-field input:focus, .contact-field textarea:focus { border-bottom-color: var(--t365-cyan); }
.contact-field input::placeholder, .contact-field textarea::placeholder { color: #a8b0bd; }

/* ==========================================================================
   Legal pages (Terms / Privacy)
   ========================================================================== */
.legal { max-width: 760px; }
.legal h1 { font-size: clamp(26px, 4vw, 34px); font-weight: 800; margin: 0 0 8px; }
.legal .updated { font-size: 13.5px; color: var(--t365-muted); margin: 0 0 40px; }
.legal-h { font-size: 19px; font-weight: 800; color: var(--t365-ink); margin: 26px 0 4px; }
.legal-p { font-size: 15px; line-height: 1.8; color: #4a5468; margin: 0 0 14px; }
.legal-sub { font-size: 15px; line-height: 1.8; color: #4a5468; margin: 0 0 14px; padding-left: 22px; }
.legal-sub2 { font-size: 15px; line-height: 1.8; color: #4a5468; margin: 0 0 14px; padding-left: 44px; }
.legal-important { font-size: 15px; line-height: 1.8; font-weight: 700; color: var(--t365-ink);
  background: var(--t365-tint2); padding: 16px 18px; border-radius: 12px; margin: 0 0 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.t365-footer { background: #fff; border-top: 1px solid var(--t365-line); padding: 48px 0 20px; }
.t365-footer .foot-logo { width: 96px; height: auto; }
.t365-footer .foot-logo .lp { fill: var(--t365-blue); }
.t365-footer .foot-logo .la { fill: var(--t365-cyan); }
.t365-footer .foot-nav a { color: #4a5468; font-size: 14px; margin: 0 8px; }
.t365-footer .foot-nav a:hover { color: var(--t365-cyan); }
.t365-footer .foot-social a { width: 32px; height: 32px; border-radius: 50%; background: var(--t365-tint2);
  display: flex; align-items: center; justify-content: center; color: #4a5468; font-size: 12px; font-weight: 700; }
.t365-footer .foot-social a:hover { background: var(--t365-cyan); color: #fff; }
.t365-footer .foot-mail { color: #4a5468; font-size: 14px; }
.t365-footer .foot-credit { font-size: 11px; color: #c2c9d3; }
.t365-footer .foot-credit a { color: #8a93a3; font-weight: 600; }
