/* =========================================================
   Fish and Tours – Puerto Vallarta
   Premium tourism / boat marketplace styles
   ========================================================= */

:root {
  --navy: #0a2540;
  --navy-2: #0c2e54;
  --ocean: #0077b6;
  --ocean-2: #0096c7;
  --sky: #caf0f8;
  --gold: #f4b400;
  --gold-2: #ffc107;
  --orange: #ff7e1d;
  --white: #ffffff;
  --bg: #f6f8fb;
  --gray-1: #eef2f7;
  --gray-2: #c7d0db;
  --text: #1c2a3a;
  --muted: #5b6a7d;
  --shadow-sm: 0 2px 6px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 18px 50px rgba(10, 37, 64, 0.18);
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  margin: 0 0 .4em;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { margin-bottom: 10px; }
.section-title p { color: var(--muted); max-width: 720px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 10px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  box-shadow: 0 6px 16px rgba(244, 180, 0, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(244, 180, 0, .45); }
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.btn-secondary:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-2);
}
.btn-outline:hover { border-color: var(--ocean); color: var(--ocean); }
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255,126,29,.35);
}
.btn-orange:hover { transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--gray-1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; width: auto; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--navy); font-size: 1.25rem; }
.logo-text span { color: var(--ocean); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  position: relative;
  transition: color .15s;
}
.nav a:hover, .nav a.active { color: var(--ocean); }
.nav a.active::after {
  content: ''; position: absolute; bottom: -8px; left: 0; right: 0;
  height: 3px; background: var(--gold); border-radius: 3px;
}

.header-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  display: none; background: none; border: 0; padding: 6px;
}
.menu-toggle svg { width: 30px; height: 30px; color: var(--navy); }

@media (max-width: 980px) {
  .nav, .header-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 78px);
  height: calc(100dvh - 78px);
  background: #ffffff;
  z-index: 79;
  padding: 30px 24px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--gray-1);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 12px;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-1);
  color: var(--navy);
}
.mobile-menu .btn { margin-top: 14px; justify-content: center; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #001b34;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 22, 43, .35) 0%, rgba(7, 22, 43, .85) 100%),
    url('../../images/barcos/sofia/sofia-1.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.hero-inner {
  position: relative;
  padding: 80px 0;
  max-width: 880px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero p { font-size: 1.1rem; opacity: .92; margin-bottom: 28px; max-width: 660px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  margin-top: 36px;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: .92rem; opacity: .9;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges svg { width: 18px; height: 18px; color: var(--gold); }

/* Search bar */
.search-bar {
  position: relative;
  margin-top: -45px;
  z-index: 5;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 6px;
  align-items: end;
}
.search-bar .field {
  padding: 6px 16px;
  border-right: 1px solid var(--gray-1);
}
.search-bar .field:last-of-type { border-right: 0; }
.search-bar label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.search-bar select, .search-bar input {
  width: 100%;
  border: 0;
  font-size: .95rem;
  padding: 4px 0;
  background: transparent;
  color: var(--text);
  outline: 0;
}
.search-bar .btn { padding: 16px 28px; }

@media (max-width: 900px) {
  .search-bar { grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px; }
  .search-bar .field { border-right: 0; border-bottom: 1px solid var(--gray-1); padding: 8px 4px; }
  .search-bar .btn { grid-column: span 2; }
}

/* ============ Highlights / trust strip ============ */
.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.trust-grid .item h4 { color: var(--gold); margin: 0 0 4px; font-size: 1.6rem; }
.trust-grid .item p { margin: 0; opacity: .8; font-size: .9rem; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ Catalog filters ============ */
.catalog { background: var(--bg); }
.catalog-toolbar {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.catalog-search {
  flex: 1 1 300px;
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-1);
  border-radius: 999px;
  padding: 8px 18px;
}
.catalog-search input {
  border: 0; background: transparent; outline: 0; flex: 1; font-size: .95rem;
}
.catalog-search svg { width: 18px; color: var(--muted); }

.catalog-toolbar .sort {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--muted);
}
.catalog-toolbar select {
  padding: 8px 14px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  background: #fff;
  font-size: .9rem;
}
.view-toggle {
  display: flex; gap: 4px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  overflow: hidden;
}
.view-toggle button {
  background: #fff; border: 0; padding: 8px 12px; color: var(--muted);
}
.view-toggle button.active { background: var(--navy); color: #fff; }

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip {
  background: #fff;
  border: 1px solid var(--gray-2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  color: var(--text);
  cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--ocean); color: var(--ocean); }
.chip.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ============ Boat grid / cards ============ */
.boat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 26px;
}
.boat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.boat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.boat-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-1);
}
.boat-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.boat-card:hover .boat-media img { transform: scale(1.06); }

.badge-row {
  position: absolute; top: 14px; left: 14px;
  display: flex; gap: 6px;
}
.badge {
  background: rgba(10,37,64,.92);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.badge-available { background: #16a34a; }
.badge-gold { background: var(--gold); color: var(--navy); }

.fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 0; display: grid; place-items: center;
  color: var(--navy);
  cursor: pointer;
  transition: color .15s, transform .15s;
}
.fav:hover { color: #e11d48; transform: scale(1.1); }
.fav.active { color: #e11d48; }
.fav svg { width: 18px; height: 18px; }

.gallery-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px;
}
.gallery-dots span {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.6);
}
.gallery-dots span.on { background: #fff; width: 18px; border-radius: 3px; }

.photo-count {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: .76rem; padding: 4px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}

.boat-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.boat-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.boat-head h3 { margin: 0; font-size: 1.35rem; }
.boat-rating {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .85rem; color: var(--muted); font-weight: 600;
}
.boat-rating svg { width: 14px; color: var(--gold); }

.boat-location {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--muted);
}
.boat-location svg { width: 14px; color: var(--ocean); }

.boat-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: var(--muted);
  padding: 12px 0;
  border-top: 1px dashed var(--gray-1);
  border-bottom: 1px dashed var(--gray-1);
}
.boat-meta div { display: inline-flex; align-items: center; gap: 6px; }
.boat-meta svg { width: 16px; color: var(--ocean); }
.boat-meta strong { color: var(--text); font-weight: 700; }

.boat-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.boat-tags span {
  background: var(--sky);
  color: var(--ocean);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
}

.boat-price {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
  margin-top: auto;
}
.boat-price .from { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.boat-price .amount { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.35rem; font-weight: 700; }
.boat-price .amount span { color: var(--muted); font-size: .8rem; font-weight: 500; font-family: 'Inter', sans-serif; }

.boat-actions { display: flex; gap: 10px; margin-top: 6px; }
.boat-actions .btn { flex: 1; padding: 11px 14px; font-size: .88rem; }

/* List view */
.boat-grid.list { grid-template-columns: 1fr; }
.boat-grid.list .boat-card { flex-direction: row; }
.boat-grid.list .boat-media { width: 380px; aspect-ratio: auto; }
.boat-grid.list .boat-body { flex: 1; }
@media (max-width: 800px) {
  .boat-grid.list .boat-card { flex-direction: column; }
  .boat-grid.list .boat-media { width: 100%; aspect-ratio: 4/3; }
}

/* ============ Destinations ============ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.dest-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,22,43,.85) 100%);
}
.dest-card .body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  z-index: 2;
}
.dest-card h3 { color: #fff; margin: 0 0 4px; font-size: 1.4rem; }
.dest-card p { margin: 0; opacity: .9; font-size: .88rem; }
.dest-card .tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 10px; }
.dest-card .tags span {
  font-size: .7rem; padding: 4px 10px;
  background: rgba(255,255,255,.2); backdrop-filter: blur(6px);
  border-radius: 999px;
}

/* ============ Celebrations / Fishing tiles ============ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.tile {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-1);
  transition: transform .2s, box-shadow .2s;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.tile .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--sky); color: var(--ocean);
  margin-bottom: 14px;
}
.tile .icon svg { width: 24px; height: 24px; }
.tile h4 { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--navy); margin: 0 0 6px; }
.tile p { margin: 0; color: var(--muted); font-size: .88rem; }

.tile-gold .icon { background: #fff5d6; color: #b07d00; }
.tile-orange .icon { background: #ffe5d3; color: var(--orange); }
.tile-navy .icon { background: #dde8f5; color: var(--navy); }

/* ============ Two-column showcase ============ */
.showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.showcase img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.showcase ul { padding-left: 0; list-style: none; margin: 18px 0 24px; }
.showcase ul li {
  display: flex; gap: 10px; padding: 8px 0;
  align-items: flex-start;
}
.showcase ul li svg { width: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 880px) { .showcase { grid-template-columns: 1fr !important; gap: 30px; } }

/* ============ Form ============ */
.form-section { background: var(--navy); color: #fff; }
.form-section h2 { color: #fff; }
.form-section .section-title p { color: rgba(255,255,255,.7); }

.request-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
  max-width: 920px;
  margin: 0 auto;
}
.form-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.form-row-full { grid-column: span 2; }
.field-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  outline: 0;
  transition: border-color .15s, background .15s;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--ocean);
  background: #fff;
}
.field-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  background: #d1fae5;
  color: #065f46;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 18px;
  display: none;
}
.form-success.show { display: block; }

.selection-banner {
  background: linear-gradient(135deg, #fff5d6 0%, #ffe5d3 100%);
  border: 1.5px solid var(--gold);
  color: var(--navy);
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.selection-banner strong { color: var(--navy); }
.selection-banner [data-selection] { color: var(--ocean); font-weight: 600; }
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-row-full { grid-column: span 1; }
  .request-form { padding: 24px; }
}

/* ============ CTA banner ============ */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
  color: #fff;
  padding: 50px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,180,0,.5) 0%, transparent 70%);
}
.cta-banner h3 { color: #fff; font-size: 1.8rem; margin: 0 0 6px; }
.cta-banner p { margin: 0; opacity: .9; }
.cta-banner > div:last-child { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============ Footer ============ */
.footer {
  background: #06182d;
  color: #c5d3e2;
  padding: 70px 0 28px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--gold); }
.footer .logo { margin-bottom: 14px; }
.footer .logo-text, .footer .logo-text span { color: #fff; }
.footer-about p { opacity: .8; line-height: 1.65; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  transition: background .15s, color .15s;
}
.socials a:hover { background: var(--gold); color: var(--navy); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px; margin-top: 50px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .85rem; opacity: .7;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Floating WhatsApp */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  z-index: 90;
  transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ============ Boat detail page ============ */
.detail-hero {
  background: #06182d;
  color: #fff;
  padding-top: 30px;
}
.breadcrumbs {
  font-size: .85rem; opacity: .8; margin-bottom: 14px;
}
.breadcrumbs a { color: var(--gold); }

.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  padding: 24px 0 60px;
}
@media (max-width: 980px) { .detail-grid { grid-template-columns: 1fr; } }

.gallery {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery .main {
  grid-column: 1; grid-row: 1 / 3;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover; cursor: zoom-in;
  transition: transform .4s, opacity .2s;
}
.gallery img:hover { transform: scale(1.04); opacity: .94; }

.view-all-photos {
  position: absolute;
  bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,.96);
  color: var(--navy);
  border: 0; border-radius: 999px;
  font-weight: 600; font-size: .88rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: transform .15s, background .15s;
  z-index: 3;
}
.view-all-photos:hover { background: var(--gold); transform: translateY(-2px); }

@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr; grid-template-rows: 280px; }
  .gallery .main { grid-column: 1; grid-row: 1; }
  .gallery > img:not(.main) { display: none; }
  .view-all-photos { padding: 8px 14px; font-size: .82rem; }
}

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(7, 16, 30, .96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox.open { display: flex; opacity: 1; }

.lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 80px;
}
.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  user-select: none;
  animation: lb-pop .25s ease;
}
@keyframes lb-pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .15s, transform .15s;
  z-index: 5;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); color: var(--navy); transform: scale(1.06); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }

.lightbox-caption {
  position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  z-index: 5;
}

.lightbox-thumbs {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
  max-width: 92vw;
  overflow-x: auto;
  padding: 6px 8px;
  background: rgba(0,0,0,.4);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  scrollbar-width: thin;
}
.lightbox-thumbs::-webkit-scrollbar { height: 6px; }
.lightbox-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius: 4px; }
.lightbox-thumbs img {
  width: 64px; height: 48px; object-fit: cover;
  border-radius: 6px; cursor: pointer;
  opacity: .55;
  border: 2px solid transparent;
  transition: opacity .15s, border-color .15s;
  flex-shrink: 0;
}
.lightbox-thumbs img:hover { opacity: .9; }
.lightbox-thumbs img.active { opacity: 1; border-color: var(--gold); }

@media (max-width: 720px) {
  .lightbox-stage { padding: 60px 12px 100px; }
  .lightbox-prev, .lightbox-next { width: 42px; height: 42px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-thumbs img { width: 50px; height: 38px; }
}

body.lightbox-open { overflow: hidden; }

/* ============ Blog ============ */
.blog-body { background: var(--bg); padding: 50px 0 80px; }
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 980px) {
  .blog-layout { grid-template-columns: 1fr; }
}

.post-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
}
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-meta svg { width: 14px; height: 14px; opacity: .85; }

/* Blog list (index page) */
.blog-list { display: flex; flex-direction: column; gap: 26px; }
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 320px 1fr;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-image { position: relative; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; transition: transform .5s; }
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-image .badge { position: absolute; top: 14px; left: 14px; }
.blog-card-body { padding: 22px 26px; display: flex; flex-direction: column; gap: 8px; }
.blog-card-body .post-meta { color: var(--muted); }
.blog-card-body h2 {
  font-size: 1.4rem;
  margin: 4px 0 6px;
  line-height: 1.3;
}
.blog-card-body h2 a { color: var(--navy); transition: color .15s; }
.blog-card-body h2 a:hover { color: var(--ocean); }
.blog-card-body p { color: var(--muted); margin: 0 0 10px; }
.read-more {
  font-weight: 600; color: var(--ocean);
  margin-top: auto;
  align-self: flex-start;
  transition: gap .15s, color .15s;
}
.read-more:hover { color: var(--gold); }
@media (max-width: 720px) {
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-image img { min-height: 220px; }
}

/* Single post */
.blog-article {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.post-cover {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.post-content {
  padding: 36px 44px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2a3a4d;
}
.post-content p.lead {
  font-size: 1.18rem;
  color: var(--navy);
  font-weight: 500;
  border-left: 4px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 28px;
}
.post-content h2 {
  font-size: 1.6rem;
  margin: 32px 0 12px;
}
.post-content h3 { font-size: 1.25rem; margin: 24px 0 10px; }
.post-content ul, .post-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.post-content li { margin-bottom: 6px; }
.post-content a { color: var(--ocean); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: var(--gold); }
.post-content strong { color: var(--navy); }

@media (max-width: 720px) {
  .post-content { padding: 24px 20px; font-size: 1rem; }
  .post-content h2 { font-size: 1.35rem; }
}

.post-share {
  display: flex; align-items: center; gap: 12px;
  padding: 0 44px 24px;
  color: var(--muted);
  font-weight: 600;
}
.post-share a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg);
  color: var(--navy);
  transition: background .15s, color .15s, transform .15s;
}
.post-share a:hover { background: var(--gold); color: var(--navy); transform: scale(1.06); }
.post-share svg { width: 18px; height: 18px; }
@media (max-width: 720px) { .post-share { padding: 0 20px 20px; } }

.post-cta {
  margin: 0 44px 44px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
}
.post-cta h3 { color: #fff; margin: 0 0 6px; }
.post-cta p { opacity: .9; margin-bottom: 16px; }
@media (max-width: 720px) { .post-cta { margin: 0 20px 20px; padding: 22px 20px; } }

/* ============ Sidebar ============ */
.blog-sidebar { display: flex; flex-direction: column; gap: 22px; }
.sidebar-widget {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 22px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  color: var(--navy);
}
.cat-list, .recent-posts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.cat-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 8px;
  font-size: .92rem;
  color: var(--text);
  transition: background .15s, color .15s;
}
.cat-list a:hover { background: var(--navy); color: #fff; }
.cat-list a::after { content: '→'; opacity: .5; }

.recent-posts li a {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-1);
}
.recent-posts li:last-child a { border-bottom: 0; }
.recent-posts img {
  width: 70px; height: 56px; object-fit: cover; border-radius: 8px;
}
.recent-posts span {
  display: block;
  font-size: .88rem; font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  transition: color .15s;
}
.recent-posts a:hover span { color: var(--ocean); }
.recent-posts small { display: block; font-size: .75rem; color: var(--muted); margin-top: 2px; }

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.sidebar-cta h4 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0 8px;
  border-bottom: 0; padding-bottom: 0;
}
.sidebar-cta p { opacity: .9; font-size: .9rem; margin-bottom: 14px; }
.sidebar-cta .btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }
.sidebar-cta .btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ============ Ad slots ============ */
.ad-slot {
  position: relative;
  background: #f6f8fb;
  border: 1px dashed var(--gray-2);
  border-radius: 10px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.ad-300x250 { width: 100%; max-width: 300px; height: 250px; }
.ad-300x300 { width: 100%; max-width: 300px; height: 300px; }
.ad-300x600 { width: 100%; max-width: 300px; height: 600px; }
.ad-728x90  { width: 100%; max-width: 728px; height: 90px; margin: 30px auto; }

.ad-slot.sticky { position: sticky; top: 100px; }
.ad-slot.inline { margin: 30px auto; }

.ad-label {
  position: absolute;
  top: 6px; left: 8px;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  opacity: .7;
}
.ad-placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  color: var(--muted);
  text-align: center;
}
.ad-placeholder strong { color: var(--navy); font-size: .95rem; }
.ad-placeholder span { font-size: .8rem; }

@media (max-width: 980px) {
  .ad-slot.sticky { position: static; }
  .ad-300x600 { height: 300px; max-width: 300px; }
}

.detail-title { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 30px; gap: 20px; flex-wrap: wrap; }
.detail-title h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 6px; color: #fff; }
.detail-title .meta-line { color: rgba(255,255,255,.85); display: flex; gap: 16px; flex-wrap: wrap; }
.detail-title .meta-line span { display: inline-flex; align-items: center; gap: 6px; }
.detail-title svg { width: 16px; color: var(--gold); }

.detail-body { background: var(--bg); padding: 50px 0 80px; }
.detail-body .container { display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: flex-start; }
@media (max-width: 980px) { .detail-body .container { grid-template-columns: 1fr; } }

.tabs { display: flex; gap: 6px; flex-wrap: wrap; border-bottom: 2px solid var(--gray-1); margin-bottom: 24px; }
.tabs button {
  background: transparent; border: 0;
  padding: 14px 18px; font-weight: 600; font-size: .92rem;
  color: var(--muted);
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.tabs button.active, .tabs button:hover { color: var(--navy); border-color: var(--gold); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 { font-size: 1.4rem; margin-top: 22px; }
.tab-panel ul { padding-left: 22px; line-height: 1.8; }

.price-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky; top: 100px;
}
.price-box .price-line {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.price-box .price-line span { font-size: .9rem; color: var(--muted); font-family: 'Inter'; font-weight: 500; }
.price-box .from { color: var(--muted); font-size: .85rem; }
.price-box hr { border: 0; border-top: 1px solid var(--gray-1); margin: 18px 0; }
.duration-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-bottom: 16px;
}
.duration-list span {
  text-align: center;
  padding: 10px 6px;
  background: var(--bg);
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}

.duration-table {
  width: 100%; border-collapse: collapse; margin: 16px 0;
}
.duration-table th, .duration-table td {
  text-align: left; padding: 12px 14px;
  border-bottom: 1px solid var(--gray-1);
}
.duration-table th { background: var(--navy); color: #fff; font-weight: 600; font-size: .9rem; }
.duration-table tr:last-child td { border-bottom: 0; }
.duration-table tr:hover td { background: var(--bg); }

.checklist {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 24px;
  list-style: none; padding: 0;
}
.checklist li { display: flex; gap: 8px; align-items: flex-start; }
.checklist svg { width: 18px; color: #16a34a; flex-shrink: 0; margin-top: 3px; }
@media (max-width: 600px) { .checklist { grid-template-columns: 1fr; } }

/* ============ Sticky mobile CTA ============ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 -6px 20px rgba(0,0,0,.12);
  padding: 12px 16px;
  display: none;
  align-items: center; justify-content: space-between;
  gap: 12px;
  z-index: 70;
}
.sticky-cta .btn { flex: 1; }
@media (max-width: 720px) { .sticky-cta { display: flex; } }

/* ============ Page hero (sub pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  color: #fff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,180,0,.25) 0%, transparent 70%);
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { max-width: 720px; opacity: .9; font-size: 1.08rem; }
