/* =========================================================
   ROATÁN TOURS AND TRAVELS — MAIN STYLESHEET
   ========================================================= */

:root {
  --primary-teal: #0E7C7B;
  --deep-ocean: #0F2C59;
  --accent-coral: #F26419;
  --jungle-green: #2A9D8F;
  --bg-sand: #FAF9F6;
  --white: #FFFFFF;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(15, 44, 89, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 44, 89, 0.12);
  --shadow-lg: 0 16px 40px rgba(15, 44, 89, 0.18);
  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--deep-ocean);
  background: var(--bg-sand);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--deep-ocean); line-height: 1.25; }
section { padding: 90px 0; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Utility ---------- */
.section-tag {
  display: inline-block;
  color: var(--jungle-green);
  background: rgba(42, 157, 143, 0.1);
  border: 1px solid rgba(42, 157, 143, 0.25);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.section-tag.tag-coral { color: var(--accent-coral); background: rgba(242,100,25,0.1); border-color: rgba(242,100,25,0.25); }
.section-tag.tag-teal { color: var(--primary-teal); background: rgba(14,124,123,0.1); border-color: rgba(14,124,123,0.25); }
.section-tag.tag-ocean { color: var(--deep-ocean); background: rgba(15,44,89,0.08); border-color: rgba(15,44,89,0.2); }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}
.section-subtitle {
  color: #556;
  max-width: 620px;
  font-size: 1.05rem;
}
.section-head { text-align: center; margin-bottom: 50px; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head .section-subtitle { margin: 0 auto; }
.section-head.left .section-subtitle { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-coral);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(242, 100, 25, 0.35);
}
.btn-primary:hover { background: #d9530f; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--deep-ocean); }
.btn-teal {
  background: var(--primary-teal);
  color: var(--white);
}
.btn-teal:hover { background: #0a5f5e; transform: translateY(-2px); }
.btn-jungle {
  background: var(--jungle-green);
  color: var(--white);
}
.btn-jungle:hover { background: #22857a; transform: translateY(-2px); }
.btn-ocean {
  background: var(--deep-ocean);
  color: var(--white);
}
.btn-ocean:hover { background: #0a1f3d; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--primary-teal), var(--jungle-green), var(--accent-coral)) 1;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 54px; width: 54px; }
.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--deep-ocean);
  line-height: 1.1;
}
.brand-name span { display: block; font-size: 0.68rem; font-weight: 500; color: var(--primary-teal); letter-spacing: 1px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--deep-ocean);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}
.nav-menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent-coral);
  transition: var(--transition);
}
.nav-menu a:not(.nav-cta):hover { color: var(--primary-teal); }
.nav-menu a:not(.nav-cta):hover::after { width: 100%; }
.nav-menu a.active { color: var(--primary-teal); }
.nav-menu a.active::after { width: 100%; background: var(--jungle-green); }

.nav-menu .nav-cta { display: none; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
}
.hamburger span {
  width: 26px; height: 3px;
  background: var(--deep-ocean);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(15,44,89,0.55) 0%, rgba(15,44,89,0.75) 100%),
    url('../assets/yxzzoe-diving-886718_1920.jpg') center/cover no-repeat;
}
.hero-content { max-width: 760px; padding-top: 90px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 18px;
}
.hero h1 em { color: #FFD9B3; font-style: normal; }
.hero p {
  font-size: 1.15rem;
  max-width: 560px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 50px; }
.trust-badges {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-badge svg { width: 22px; height: 22px; flex-shrink: 0; color: #7FE0C7; }

/* ---------- Memories Gallery ---------- */
.memories-section { background: var(--white); overflow: hidden; }
.memories-head { position: relative; text-align: center; margin-bottom: 40px; }
.memories-watermark {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  color: rgba(15, 44, 89, 0.05);
  letter-spacing: 6px;
  line-height: 1;
  margin-bottom: -30px;
  user-select: none;
}
.memories-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}
.memories-track {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  gap: 20px;
  overflow: hidden;
}
.memories-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  transition: transform 0.45s ease;
}
.memories-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.memories-slide:hover img { transform: scale(1.06); }
.memories-arrow {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(15,44,89,0.12);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-ocean);
  transition: var(--transition);
}
.memories-arrow:hover { background: var(--primary-teal); color: var(--white); }
.memories-arrow svg { width: 20px; height: 20px; }
.memories-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 10px 22px;
  border-radius: 40px;
  background: rgba(42,157,143,0.08);
  border: 1px solid rgba(42,157,143,0.25);
  color: var(--jungle-green);
  font-weight: 600;
  font-size: 0.9rem;
}
.memories-badge svg { width: 20px; height: 20px; }

@media (max-width: 768px) {
  .memories-slide { flex: 0 0 100%; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .memories-slide { flex: 0 0 calc((100% - 20px) / 2); }
}

/* ---------- Cruise Section ---------- */
.cruise-section {
  background: var(--deep-ocean);
  color: var(--white);
  position: relative;
}
.cruise-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../assets/ericalamb-roatan-2421414.jpg') center/cover;
  opacity: 0.12;
}
.cruise-section .container { position: relative; z-index: 1; }
.cruise-section .section-title, .cruise-section h3 { color: var(--white); }
.cruise-section .section-subtitle { color: rgba(255,255,255,0.75); }
.cruise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.cruise-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.cruise-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.cruise-card h3 .pin { color: var(--accent-coral); }
.cruise-card ul { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.cruise-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.cruise-card ul li svg { color: var(--jungle-green); flex-shrink: 0; margin-top: 3px; width: 18px; height: 18px; }
.cruise-note {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(242, 100, 25, 0.12);
  border: 1px solid rgba(242, 100, 25, 0.3);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}
.cruise-note svg { color: var(--accent-coral); flex-shrink: 0; width: 26px; height: 26px; }

/* ---------- Tours Section ---------- */
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 40px;
  border: 1.5px solid rgba(15, 44, 89, 0.15);
  background: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-ocean);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--primary-teal); color: var(--primary-teal); }
.filter-btn.active {
  background: var(--primary-teal);
  border-color: var(--primary-teal);
  color: var(--white);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--primary-teal);
}
.tour-card[data-category="eco"] { border-top-color: var(--jungle-green); }
.tour-card[data-category="snorkel"] { border-top-color: var(--primary-teal); }
.tour-card[data-category="adventure"] { border-top-color: var(--accent-coral); }
.tour-card[data-category="culture"] { border-top-color: var(--deep-ocean); }
.tour-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.tour-media { position: relative; height: 220px; overflow: hidden; }
.tour-media img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.tour-card:hover .tour-media img { transform: scale(1.08); }
.tour-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent-coral);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tour-cat {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(15,44,89,0.75);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 30px;
}
.tour-card[data-category="eco"] .tour-cat { background: rgba(42,157,143,0.88); }
.tour-card[data-category="snorkel"] .tour-cat { background: rgba(14,124,123,0.88); }
.tour-card[data-category="adventure"] .tour-cat { background: rgba(242,100,25,0.88); }
.tour-card[data-category="culture"] .tour-cat { background: rgba(15,44,89,0.88); }
.tour-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tour-body h3 { font-size: 1.15rem; }
.tour-meta { display: flex; gap: 16px; color: #667; font-size: 0.85rem; }
.tour-meta span { display: flex; align-items: center; gap: 6px; }
.tour-meta svg { width: 16px; height: 16px; color: var(--primary-teal); }
.tour-rating { display: flex; align-items: center; gap: 6px; color: #F4A100; font-size: 0.9rem; }
.tour-rating span { color: #667; font-size: 0.82rem; }
.tour-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #eee;
}
.tour-price { font-family: var(--font-heading); font-weight: 700; color: var(--deep-ocean); font-size: 1.1rem; }
.tour-price small { display: block; font-weight: 400; font-size: 0.7rem; color: #889; }

/* ---------- Why Choose Us ---------- */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-sand);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-teal), var(--jungle-green));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
}
.why-card:nth-child(2) .why-icon { background: linear-gradient(135deg, var(--accent-coral), #ff8c52); }
.why-card:nth-child(3) .why-icon { background: linear-gradient(135deg, var(--deep-ocean), var(--primary-teal)); }
.why-card:nth-child(4) .why-icon { background: linear-gradient(135deg, var(--jungle-green), var(--primary-teal)); }
.why-icon svg { width: 32px; height: 32px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: #667; }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--bg-sand); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--accent-coral);
}
.testimonial-card:nth-child(2) { border-bottom-color: var(--jungle-green); }
.testimonial-card:nth-child(3) { border-bottom-color: var(--primary-teal); }
.testimonial-stars { color: #F4A100; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: #445; font-size: 0.95rem; margin-bottom: 20px; min-height: 90px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-heading);
}
.testimonial-card:nth-child(2) .testimonial-avatar { background: var(--jungle-green); }
.testimonial-card:nth-child(3) .testimonial-avatar { background: var(--accent-coral); }
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author small { color: #889; font-size: 0.78rem; }

/* ---------- Booking / Contact ---------- */
.booking-section { background: var(--deep-ocean); color: var(--white); position: relative; overflow: hidden; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.booking-info h2, .booking-info .section-tag { color: var(--white); }
.booking-info .section-title { color: var(--white); }
.booking-info p { color: rgba(255,255,255,0.75); margin-bottom: 26px; }
.booking-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.booking-contact-item svg { color: var(--jungle-green); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.booking-contact-item strong { display: block; font-size: 0.95rem; }
.booking-contact-item span { color: rgba(255,255,255,0.7); font-size: 0.87rem; }

.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--deep-ocean);
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; }
.form-group input, .form-group select {
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--deep-ocean);
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.15);
}
.form-group.error input, .form-group.error select { border-color: #e63946; }
.field-error { color: #e63946; font-size: 0.76rem; min-height: 14px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success svg { width: 60px; height: 60px; color: var(--jungle-green); margin: 0 auto 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: #667; }

/* ---------- Footer ---------- */
.site-footer {
  background: #081C38;
  color: rgba(255,255,255,0.8);
  padding-top: 70px;
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--jungle-green), var(--primary-teal), var(--accent-coral)) 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 46px; width: 46px; }
.footer-brand span { font-family: var(--font-heading); font-weight: 700; color: var(--white); font-size: 1.05rem; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--accent-coral); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent-coral); }
.footer-map { border-radius: var(--radius-md); overflow: hidden; height: 160px; margin-top: 14px; filter: grayscale(0.3) sepia(0.2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--accent-coral); }

/* ---------- WhatsApp Floating Widget ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 999;
  animation: pulse 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; color: var(--white); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 44, 89, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  backdrop-filter: blur(3px);
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.28s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(15,44,89,0.06);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: var(--transition);
}
.modal-close:hover { background: var(--accent-coral); color: var(--white); }
.modal-img { width: 100%; height: 260px; object-fit: cover; }
.modal-content { padding: 30px; }
.modal-content h2 { margin-bottom: 6px; }
.modal-meta { display: flex; gap: 18px; color: #667; font-size: 0.88rem; margin-bottom: 20px; flex-wrap: wrap; }
.modal-price-tag {
  display: inline-block;
  background: rgba(242,100,25,0.1);
  color: var(--accent-coral);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.modal-section { margin-bottom: 22px; }
.modal-section h4 { font-size: 0.95rem; margin-bottom: 10px; color: var(--primary-teal); text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.8rem;}
.modal-list { display: flex; flex-direction: column; gap: 8px; font-size: 0.92rem; }
.modal-list li { display: flex; gap: 8px; align-items: flex-start; }
.modal-list.check li svg { color: var(--jungle-green); width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; }
.modal-list.cross li svg { color: #e63946; width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; }
.modal-quickform { background: var(--bg-sand); border-radius: var(--radius-md); padding: 22px; margin-top: 10px; }
.modal-quickform .form-row { grid-template-columns: 1fr 1fr; }

/* ---------- Blog ---------- */
.blog-hero {
  background: linear-gradient(180deg, rgba(15,44,89,0.75), rgba(15,44,89,0.85)), url('https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=1600&q=70') center/cover;
  color: var(--white);
  padding: 160px 0 70px;
  text-align: center;
}
.blog-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.blog-hero p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.blog-card img { height: 220px; object-fit: cover; width: 100%; }
.blog-card-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-tag { color: var(--jungle-green); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.blog-card h3 { font-size: 1.2rem; }
.blog-excerpt { color: #667; font-size: 0.92rem; flex: 1; }
.blog-readmore { color: var(--primary-teal); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }

/* ---------- Post page ---------- */
.post-hero {
  padding: 150px 0 40px;
  background: var(--bg-sand);
}
.post-hero .blog-tag { margin-bottom: 10px; display: block; }
.post-hero h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.post-meta { display: flex; gap: 20px; color: #667; font-size: 0.88rem; flex-wrap: wrap; }
.post-cover { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-lg); margin: 30px 0; }
.post-body { max-width: 760px; margin: 0 auto; }
.tldr-box {
  background: linear-gradient(135deg, rgba(14,124,123,0.08), rgba(42,157,143,0.08));
  border: 1.5px solid rgba(14,124,123,0.25);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin-bottom: 34px;
}
.tldr-box h3 { display: flex; align-items: center; gap: 8px; color: var(--primary-teal); margin-bottom: 14px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.tldr-box ul { display: flex; flex-direction: column; gap: 10px; }
.tldr-box ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; }
.tldr-box ul li svg { color: var(--accent-coral); width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.post-content h2 { margin: 34px 0 14px; font-size: 1.5rem; }
.post-content h3 { margin: 24px 0 10px; font-size: 1.2rem; color: var(--primary-teal); }
.post-content p { margin-bottom: 16px; color: #334; }
.post-content ul { margin: 0 0 20px 0; display: flex; flex-direction: column; gap: 10px; }
.post-content ul li { padding-left: 24px; position: relative; color: #334; }
.post-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--jungle-green); font-weight: 700; }
.faq-item { border-bottom: 1px solid #eee; padding: 16px 0; }
.faq-item h3 { margin: 0 0 8px; font-size: 1.05rem; }
.post-cta {
  margin-top: 40px;
  background: var(--deep-ocean);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  text-align: center;
}
.post-cta h3 { color: var(--white); margin-bottom: 10px; }
.post-cta p { color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.related-tour-float {
  position: fixed;
  bottom: 26px; left: 26px;
  z-index: 999;
}
.related-tour-float .btn { box-shadow: var(--shadow-lg); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
    gap: 26px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-menu.active { transform: translateX(0); }
  .hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }
  .nav-menu .nav-cta { display: inline-flex; margin-top: 10px; }

  .cruise-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .modal-quickform .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero { min-height: 92vh; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .trust-badges { gap: 16px; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 1rem; }
  .brand img { height: 44px; width: 44px; }
  .hero h1 { font-size: 1.8rem; }
  .modal-content { padding: 22px; }
}
