@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --green:      #7FD856;
  --green-dark: #5CB038;
  --blue:       #2E8DB5;
  --dark:       #2C3E50;
  --white:      #FFFFFF;
  --off-white:  #F8F9FA;
  --light-gray: #E9ECEF;
  --text-85:    rgba(44,62,80,0.85);
  --text-65:    rgba(44,62,80,0.65);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow:     0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.15);
  --radius:     14px;
  --radius-sm:  8px;
  --nav-h:      64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; }

h1 { font-size: 2rem;     font-weight: 800; line-height: 1.15; }
h2 { font-size: 1.625rem; font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.35; }
p  { font-size: 1rem; color: var(--text-85); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.section    { padding: 64px 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { margin-bottom: 10px; }
.section-header p  { color: var(--text-65); max-width: 560px; margin: 0 auto; }
.section-tag {
  display: inline-block; color: var(--green-dark);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.9375rem; font-weight: 600;
  cursor: pointer; border: none; transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap; min-height: 48px;
}
.btn-primary      { background: var(--green); color: var(--dark); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline      { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.8); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-ghost        { background: transparent; color: var(--dark); border: 2px solid var(--light-gray); font-size: 0.8125rem; padding: 11px 18px; }
.btn-ghost:hover  { border-color: var(--green); color: var(--green-dark); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8125rem; min-height: 40px; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray); height: var(--nav-h);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px;
}
.logo-mark {
  font-size: 1.0625rem; font-weight: 500; color: var(--dark);
  letter-spacing: -0.3px;
}
.logo-mark strong { font-weight: 800; color: var(--green-dark); }

.nav-links     { display: none; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.875rem; font-weight: 500; color: var(--dark);
  padding: 8px 12px; border-radius: 8px;
  transition: color .2s, background .2s; display: flex; align-items: center; gap: 4px;
}
.nav-links > li > a:hover { color: var(--green-dark); background: rgba(127,216,86,0.08); }

/* Dropdown */
.nav-dropdown-trigger .drop-arrow { font-size: 0.65rem; transition: transform .2s; }
.nav-item-dropdown:hover .drop-arrow { transform: rotate(180deg); }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 240px; padding: 8px; z-index: 300;
}
.nav-item-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 10px 14px; font-size: 0.875rem; font-weight: 500;
  color: var(--dark); border-radius: var(--radius-sm); transition: background .15s, color .15s;
}
.nav-dropdown a:hover { background: rgba(127,216,86,0.1); color: var(--green-dark); }
.nav-dropdown .dd-divider { height: 1px; background: var(--light-gray); margin: 6px 0; }

.nav-cta    { display: none; }
.nav-toggle {
  background: none; border: none; cursor: pointer;
  padding: 8px; display: flex; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }

/* Mobile drawer */
.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--light-gray);
  padding: 12px 20px 20px; z-index: 199; box-shadow: var(--shadow);
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 12px 0;
  font-weight: 500; font-size: 0.9375rem;
  border-bottom: 1px solid var(--light-gray); color: var(--dark);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .mobile-section-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-65); padding: 14px 0 4px;
  border-bottom: none;
}
.nav-mobile .mobile-tour-link {
  padding: 10px 0 10px 14px; font-size: 0.875rem; color: var(--text-85);
}
.nav-mobile .mobile-tour-link::before { content: '→ '; color: var(--green-dark); font-weight: 700; }

/* ── Hero ── */
.hero {
  position: relative; height: 100svh;
  min-height: 620px; max-height: 900px;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.22) 45%, rgba(0,0,0,0.62) 100%);
}
.hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 16px 52px; color: var(--white);
}
.hero-badge {
  display: inline-block; background: var(--green); color: var(--dark);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.hero-content h1 { color: var(--white); margin-bottom: 12px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1.0625rem; margin-bottom: 28px; max-width: 560px; }
.hero-buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.hero-operator {
  font-size: 0.8rem; color: rgba(255,255,255,0.65);
}
.hero-operator a { color: rgba(255,255,255,0.9); font-weight: 600; }
.hero-operator a:hover { color: var(--green); }

/* ── Trust Bar ── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--light-gray); padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.trust-item { text-align: center; }
.trust-icon   { font-size: 1.75rem; margin-bottom: 4px; }
.trust-number { font-size: 1.25rem; font-weight: 800; color: var(--dark); line-height: 1; }
.trust-label  { font-size: 0.75rem; font-weight: 600; color: var(--dark); margin-top: 2px; }

/* ── Tour Cards ── */
.tours-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.tour-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tour-card-img { position: relative; height: 210px; overflow: hidden; flex-shrink: 0; }
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-category {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: var(--dark);
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.tour-difficulty {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  color: var(--white); font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.tour-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.tour-card-body h3 { margin-bottom: 6px; }
.tour-card-desc { font-size: 0.875rem; color: var(--text-65); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.tour-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.tour-meta-item { font-size: 0.775rem; color: var(--text-65); }
.tour-pricing-block {
  background: var(--off-white); border-radius: var(--radius-sm);
  padding: 10px 14px; margin-bottom: 12px;
  display: flex; align-items: baseline; gap: 5px;
}
.price-from   { font-size: 0.7rem; color: var(--text-65); }
.price-amount { font-size: 1.625rem; font-weight: 800; color: var(--dark); }
.price-per    { font-size: 0.75rem; color: var(--text-65); }
.tour-chips   { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.chip {
  font-size: 0.675rem; font-weight: 500;
  background: rgba(127,216,86,0.14); color: var(--green-dark);
  padding: 3px 9px; border-radius: 50px;
}
.tour-card-actions { display: flex; gap: 8px; }
.tour-card-actions .btn { flex: 1; padding: 11px 14px; font-size: 0.8125rem; }
.vat-note { text-align: center; font-size: 0.75rem; color: var(--text-65); margin-top: 24px; }

/* ── Operator Band ── */
.operator-band { padding: 72px 0; background: var(--off-white); }
.operator-inner {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
.operator-text .section-tag { margin-bottom: 10px; }
.operator-text h2 { margin-bottom: 16px; }
.operator-text p  { margin-bottom: 14px; color: var(--text-85); line-height: 1.8; }
.operator-text .btn { margin-top: 8px; }
.operator-photos { position: relative; height: 340px; }
.op-photo { position: absolute; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow-lg); }
.op-photo-top    { width: 65%; height: 220px; top: 0; right: 0; }
.op-photo-bottom { width: 55%; height: 190px; bottom: 0; left: 0; border: 4px solid var(--white); }

/* ── Blog Grid ── */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.blog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { position: relative; height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: var(--dark);
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.blog-card-body { padding: 20px; }
.blog-date { font-size: 0.725rem; color: var(--text-65); display: block; margin-bottom: 6px; }
.blog-card-body h3 { margin-bottom: 8px; font-size: 1rem; }
.blog-card-body p  { font-size: 0.875rem; color: var(--text-65); line-height: 1.6; margin-bottom: 14px; }
.blog-read-more { font-size: 0.875rem; font-weight: 600; color: var(--green-dark); }
.blog-read-more:hover { text-decoration: underline; }

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--green) 0%, #4cbf8a 50%, var(--blue) 100%);
  padding: 72px 16px;
}
.cta-band-inner { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }
.cta-band h2 { color: var(--dark); font-size: 1.75rem; margin-bottom: 10px; }
.cta-band p  { color: rgba(44,62,80,0.78); max-width: 520px; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; }

/* ── Footer ── */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
.footer-logo-mark { font-size: 1.125rem; font-weight: 500; color: var(--white); display: block; margin-bottom: 12px; }
.footer-logo-mark strong { font-weight: 800; color: var(--green); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 12px; }
.tucanes-link { font-size: 0.875rem; color: var(--green); font-weight: 600; }
.tucanes-link:hover { text-decoration: underline; }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--white); margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.6); padding: 4px 0; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 0.725rem; color: rgba(255,255,255,0.35); }

/* ══ Tablet 768px+ ══ */
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }

  .nav-links { display: flex; }
  .nav-cta   { display: block; }
  .nav-toggle { display: none; }

  .hero-buttons { flex-direction: row; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
  .cta-band-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .cta-band-actions { flex-direction: row; }
  .operator-inner { grid-template-columns: 1fr 1fr; }
}

/* ══ Desktop 1024px+ ══ */
@media (min-width: 1024px) {
  h1 { font-size: 3.25rem; }
  .hero-content { padding: 40px 64px 72px; max-width: 780px; }
  .tours-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid  { grid-template-columns: repeat(3, 1fr); }
}
