/* ======= BASIC LAYOUT ======= */
  .container { width: 90%; max-width: 1200px; margin: 0 auto; }
  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }
  .tour-booking { padding: 2rem 0 3rem; }
  .tour-booking h2 { font-size: 1.8rem; margin: 0 0 .25rem; }
  .tour-booking .tb-sub { margin: 0 0 1rem; opacity: .85; }

  /* ======= FORM ======= */
  form fieldset {
    border: 1px solid #e5e7eb;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: #fff;
  }
  form legend {
    font-weight: 700; padding: 0 .5rem; font-size: 1rem;
  }
  label { display: block; font-weight: 600; font-size: .95rem; }
  label input, label textarea, label select {
    margin-top: .35rem; width: 100%;
    padding: .7rem .8rem;
    border: 1px solid #d1d5db; border-radius: 10px;
    font: inherit; background: #fff;
  }
  label textarea { resize: vertical; }
  .checkbox, .radio { display: flex; align-items: center; gap: .55rem; font-weight: 600; }
  .checkbox input, .radio input { width: 18px; height: 18px; }

  /* Grids */
  .grid-2, .grid-3 { display: grid; gap: .8rem; }
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  @media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
  @media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

  /* Buttons */
  .btn-primary {
    --blue:#1b74e4; --blue2:#0f5bd4;
    background: linear-gradient(180deg, var(--blue), var(--blue2));
    color:#fff; border:none; padding:.9rem 1.2rem;
    border-radius:12px; font-weight:800; cursor:pointer;
    box-shadow:0 8px 18px rgba(27,116,228,.25);
    transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
  }
  .btn-primary:hover { transform: translateY(-1px); filter: brightness(1.03); }
  .btn-primary:active { transform: translateY(0); }

  .btn-ghost {
    background:#f3f4f6; color:#111827; border:1px solid #e5e7eb;
    padding:.9rem 1.2rem; border-radius:12px; font-weight:700; cursor:pointer;
  }
  .actions { display:flex; align-items:center; gap:1rem; margin-top:.5rem; }
  .actions .help { font-size:.9rem; opacity:.7; margin:0; }

  /* Helpers */
  .hp { position:absolute; left:-9999px; top:auto; width:1px; height:1px; }

  /* Toast */
  .toast {
    position: fixed; bottom: 20px; right: 20px;
    background: #111827; color: #fff; padding: .6rem .9rem;
    border-radius: 10px; font-weight:700; opacity:0; pointer-events:none;
    transform: translateY(10px); transition: all .2s ease;
  }
  .toast.show { opacity: 1; transform: translateY(0); }
  
  
  
  
  
  
 
/* ===== TOUR INFO SECTION ===== */
.tour-info {
  background-color: #f9fafb;
  padding: 3rem 0;
  margin-top: 2rem;
}
.tour-info h2 {
  text-align: center;
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 1rem;
}
.tour-info .intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
}

/* Grid layout */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tour-grid { grid-template-columns: 1fr; }
}

/* Cards */
.tour-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}
.tour-icon {
  font-size: 2rem;
  margin-bottom: .6rem;
}
.tour-card h3 {
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: .5rem;
}
.tour-card p {
  color: #4b5563;
  font-size: .95rem;
  line-height: 1.6;
}
.tour-link {
  display: inline-block;
  margin-top: .8rem;
  font-weight: 600;
  color: #1b74e4;
  text-decoration: none;
  transition: color .2s;
}
.tour-link:hover {
  color: #0f5bd4;
}

/* Call-to-action box */
.cta-box {
  background-color: #1e3a8a;
  color: #fff;
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.cta-box h3 {
  font-size: 1.6rem;
  margin-bottom: .5rem;
}
.cta-box p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: .8rem 1.4rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color .2s, transform .2s;
}
.btn-primary {
  background: #fbbf24;
  color: #111827;
}
.btn-primary:hover { background: #f59e0b; transform: translateY(-2px); }
.btn-secondary {
  background: #fff;
  color: #1e3a8a;
  border: 2px solid #fff;
}
.btn-secondary:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}


  
  
  
  
  

.vip-seo {
  padding: 3rem 0;
  background: #f9fafb;
}
.vip-seo h1 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}
.vip-seo h2 {
  font-size: 1.4rem;
  margin-top: 1.8rem;
  margin-bottom: .5rem;
  color: #1e40af;
}
.vip-seo p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: .8rem;
}
.vip-seo ul {
  margin: 0;
  padding-left: 1.5rem;
  color: #374151;
  font-size: 1rem;
}
.vip-contact {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}
.vip-contact a {
  padding: .9rem 1.4rem;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: all .2s;
}
.btn-primary {
  background: #1b74e4;
  color: #fff;
}
.btn-primary:hover { background: #0f5bd4; }
.btn-secondary {
  background: #fff;
  border: 2px solid #1b74e4;
  color: #1b74e4;
}
.btn-secondary:hover { background: #e0ecff; }


  
  
  
  
  /* ===== Boat Booking styles ===== */
.boat-booking { padding: 2.5rem 0 3rem; }
.boat-booking h2 { font-size: 1.9rem; margin: 0 0 .3rem; }
.bb-sub { margin: 0 0 1.1rem; opacity: .85; }

.boat-booking fieldset{
  border:1px solid #e5e7eb; padding:1rem; border-radius:12px; margin-bottom:1rem; background:#fff;
}
.boat-booking legend{ font-weight:700; padding:0 .5rem; font-size:1rem; }
.boat-booking label{ display:block; font-weight:600; font-size:.95rem; }
.boat-booking input, .boat-booking select, .boat-booking textarea{
  margin-top:.35rem; width:100%; padding:.7rem .8rem; border:1px solid #d1d5db; border-radius:10px; font:inherit; background:#fff;
}
.boat-booking textarea{ resize:vertical; }
.checkbox, .radio{ display:flex; align-items:center; gap:.55rem; font-weight:600; }
.checkbox input, .radio input{ width:18px; height:18px; }

.grid-2, .grid-3{ display:grid; gap:.8rem; }
.grid-2{ grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3,minmax(0,1fr)); }
@media (max-width: 900px){ .grid-3{ grid-template-columns:1fr; } }
@media (max-width: 640px){ .grid-2{ grid-template-columns:1fr; } }

.btn-primary{
  --blue:#1b74e4; --blue2:#0f5bd4;
  background:linear-gradient(180deg,var(--blue),var(--blue2));
  color:#fff; border:none; padding:.9rem 1.2rem; border-radius:12px; font-weight:800; cursor:pointer;
  box-shadow:0 8px 18px rgba(27,116,228,.25);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-primary:hover{ transform:translateY(-1px); filter:brightness(1.03); }
.btn-ghost{
  background:#f3f4f6; color:#111827; border:1px solid #e5e7eb;
  padding:.9rem 1.2rem; border-radius:12px; font-weight:700; cursor:pointer;
}
.actions{ display:flex; align-items:center; gap:1rem; margin-top:.6rem; flex-wrap:wrap; }
.actions .help{ font-size:.9rem; opacity:.7; margin:0; }
.tiny-note{ font-size:.85rem; opacity:.7; margin-top:.6rem; }

/* Helpers */
.hp{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; }

/* Toast */
.toast{
  position:fixed; bottom:20px; right:20px; background:#111827; color:#fff; padding:.6rem .9rem;
  border-radius:10px; font-weight:700; opacity:0; pointer-events:none; transform:translateY(10px); transition:all .2s ease;
}
.toast.show{ opacity:1; transform:translateY(0); }

  
  
  
  
  
  
  
  /* ===== Boat Tours – SEO text block ===== */
.boat-seo-text {
  background: #f9fafb;
  border-radius: 14px;
  padding: 2.2rem 1rem;
  margin: 1.8rem 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  border: 1px solid #eef2f7;
}

/* tighten the width a touch for readability */
.boat-seo-text .container { max-width: 980px; }

/* headings */
.boat-seo-text h2 {
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1e3a8a;              /* deep blue */
  margin: 0 0 .8rem;
}
.boat-seo-text h3 {
  font-size: 1.25rem;
  margin: 1.6rem 0 .5rem;
  color: #1e40af;
}

/* body text */
.boat-seo-text p {
  font-size: 1.02rem;
  color: #374151;
  line-height: 1.75;
  margin: 0 0 .9rem;
}

/* links */
.boat-seo-text a {
  color: #1b74e4;
  text-decoration: none;
  border-bottom: 1px dashed rgba(27,116,228,.4);
  transition: color .15s ease, border-color .15s ease;
}
.boat-seo-text a:hover {
  color: #0f5bd4;
  border-bottom-color: rgba(15,91,212,.8);
}

/* list styling (we used ✅ in the HTML; keep it clean & aligned) */
.boat-seo-text ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .6rem .9rem;
  margin: .3rem 0 1.1rem;
}
.boat-seo-text li {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: .6rem .75rem;
  font-size: 1rem;
  color: #374151;
}

/* responsive tweaks */
@media (max-width: 820px) {
  .boat-seo-text ul { grid-template-columns: 1fr; }
  .boat-seo-text h2 { font-size: 1.7rem; }
}
@media (prefers-color-scheme: dark) {
  .boat-seo-text { background: #0f172a; border-color: #1f2937; box-shadow: none; }
  .boat-seo-text h2, .boat-seo-text h3 { color: #93c5fd; }
  .boat-seo-text p, .boat-seo-text li { color: #e5e7eb; }
  .boat-seo-text li { background: #111827; border-color: #1f2937; }
  .boat-seo-text a { color: #93c5fd; border-bottom-color: rgba(147,197,253,.45); }
  .boat-seo-text a:hover { color: #60a5fa; border-bottom-color: rgba(96,165,250,.8); }
}

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* ===== Flight Booking styles ===== */
.flight-booking { padding: 2.5rem 0 3rem; }
.flight-booking h2 { font-size: 1.9rem; margin: 0 0 .3rem; }
.fb-sub { margin: 0 0 1.1rem; opacity: .85; }

.flight-booking fieldset{
  border:1px solid #e5e7eb; padding:1rem; border-radius:12px; margin-bottom:1rem; background:#fff;
}
.flight-booking legend{ font-weight:700; padding:0 .5rem; font-size:1rem; }
.flight-booking label{ display:block; font-weight:600; font-size:.95rem; }
.flight-booking input, .flight-booking select, .flight-booking textarea{
  margin-top:.35rem; width:100%; padding:.7rem .8rem; border:1px solid #d1d5db; border-radius:10px; font:inherit; background:#fff;
}
.flight-booking textarea{ resize:vertical; }
.checkbox, .radio{ display:flex; align-items:center; gap:.55rem; font-weight:600; }
.checkbox input, .radio input{ width:18px; height:18px; }

.grid-2, .grid-3{ display:grid; gap:.8rem; }
.grid-2{ grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3,minmax(0,1fr)); }
@media (max-width: 900px){ .grid-3{ grid-template-columns:1fr; } }
@media (max-width: 640px){ .grid-2{ grid-template-columns:1fr; } }

/* dynamic segments */
.seg-row{
  display:grid; gap:.6rem; grid-template-columns: repeat(4, minmax(0,1fr));
  padding:.6rem; margin:.5rem 0; border:1px dashed #d1d5db; border-radius:10px; background:#f9fafb;
}
.seg-row input{ padding:.6rem .7rem; }
.seg-row .seg-actions-inline{ display:flex; align-items:center; gap:.5rem; }
.seg-actions{ display:flex; align-items:center; gap:.6rem; margin-top:.3rem; }
.hint{ opacity:.65; }

.hidden{ display:none; }

/* Buttons */
.btn-primary{
  --blue:#1b74e4; --blue2:#0f5bd4;
  background:linear-gradient(180deg,var(--blue),var(--blue2));
  color:#fff; border:none; padding:.9rem 1.2rem; border-radius:12px; font-weight:800; cursor:pointer;
  box-shadow:0 8px 18px rgba(27,116,228,.25);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-primary:hover{ transform:translateY(-1px); filter:brightness(1.03); }
.btn-primary:active{ transform:translateY(0); }
.btn-ghost{
  background:#f3f4f6; color:#111827; border:1px solid #e5e7eb;
  padding:.9rem 1.2rem; border-radius:12px; font-weight:700; cursor:pointer;
}
.actions{ display:flex; align-items:center; gap:1rem; margin-top:.6rem; flex-wrap:wrap; }
.actions .help{ font-size:.9rem; opacity:.7; margin:0; }
.tiny-note{ font-size:.85rem; opacity:.7; margin-top:.6rem; }

/* Helpers */
.hp{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; }

/* Toast */
.toast{
  position:fixed; bottom:20px; right:20px; background:#111827; color:#fff; padding:.6rem .9rem;
  border-radius:10px; font-weight:700; opacity:0; pointer-events:none; transform:translateY(10px); transition:all .2s ease;
}
.toast.show{ opacity:1; transform:translateY(0); }

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* ====== FLIGHT BOOKING – SEO TEXT ====== */
.flight-seo {
  background: #f9fafb;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 2.2rem 1rem;
  margin: 1.8rem 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
}
.flight-seo .container { max-width: 980px; margin: 0 auto; }

.flight-seo h1 {
  font-size: 2rem;
  line-height: 1.2;
  color: #1e3a8a;
  margin: 0 0 .8rem;
}
.flight-seo h2 {
  font-size: 1.25rem;
  color: #1e40af;
  margin: 1.4rem 0 .5rem;
}
.flight-seo p {
  font-size: 1.02rem;
  color: #374151;
  line-height: 1.75;
  margin: 0 0 .9rem;
}

/* Lists */
.flight-seo-list {
  list-style: none;
  padding-left: 0;
  margin: .2rem 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .6rem .9rem;
}
.flight-seo-list li {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: .6rem .75rem;
  font-size: 1rem;
  color: #374151;
}
.flight-seo-steps {
  margin: .2rem 0 1.1rem;
  padding-left: 1.2rem;
  color: #374151;
}
.flight-seo-steps li { margin: .25rem 0; }

/* CTAs */
.flight-seo-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 .4rem;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: .85rem 1.3rem;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
}
.btn-primary {
  background: linear-gradient(180deg, #1b74e4, #0f5bd4);
  color: #fff;
  box-shadow: 0 8px 18px rgba(27,116,228,.25);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-secondary {
  background: #fff;
  color: #1e3a8a;
  border: 2px solid #1e3a8a;
}
.btn-secondary:hover { transform: translateY(-1px); }

.flight-seo a { color: #1b74e4; text-decoration: none; }
.flight-seo a:hover { color: #0f5bd4; }
.flight-seo-note { font-size: .95rem; opacity: .8; }

/* Responsive */
@media (max-width: 820px) {
  .flight-seo .container { padding: 0 .1rem; }
  .flight-seo h1 { font-size: 1.75rem; }
  .flight-seo-list { grid-template-columns: 1fr; }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .flight-seo { background: #0f172a; border-color: #1f2937; box-shadow: none; }
  .flight-seo h1, .flight-seo h2 { color: #93c5fd; }
  .flight-seo p, .flight-seo-list li, .flight-seo-steps { color: #e5e7eb; }
  .flight-seo-list li { background: #111827; border-color: #1f2937; }
  .btn-secondary { background: transparent; color: #93c5fd; border-color: #93c5fd; }
}

  