:root {
  --primary: #1a6b5a;
  --primary-dark: #134f42;
  --accent: #ff7a3d;
  --accent-dark: #e6622a;
  --text: #222;
  --text-light: #5a5a5a;
  --bg: #fafaf8;
  --card-bg: #ffffff;
  --border: #e5e1d8;
  --rating: #f5a623;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--primary-dark);
  padding: 16px 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
}
.main-nav a {
  color: #f0f0f0;
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--accent); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 800;
}
.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 24px;
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-block { display: block; width: 100%; text-align: center; }

/* Intro section */
.intro-section {
  padding: 40px 0 10px;
}
.intro-section p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 800px;
}

/* Highlights list */
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  list-style: none;
}
.highlights li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

/* Tour cards */
.tours-section {
  padding: 40px 0;
}
.section-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 800;
}
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.tour-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease, transform 0.1s ease;
}
.tour-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.tour-card-img {
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}
.tour-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tour-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.tour-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.tour-rating {
  color: var(--rating);
  font-weight: 700;
}
.tour-highlights {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 14px;
  flex-grow: 1;
}
.tour-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.tour-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Comparison table */
.compare-table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
}
table.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  min-width: 700px;
}
table.compare-table th, table.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.92rem;
}
table.compare-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
table.compare-table tr:last-child td { border-bottom: none; }
table.compare-table tr:hover { background: #f5f3ee; }

/* Trust section */
.trust-section {
  background: #fff;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.trust-item h4 {
  margin-bottom: 6px;
  color: var(--primary-dark);
}
.trust-item p {
  font-size: 0.92rem;
  color: var(--text-light);
}

/* FAQ */
.faq-section { padding: 40px 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}
.faq-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA banner */
.cta-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  margin: 40px 0;
}
.cta-banner h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.cta-banner p {
  margin-bottom: 20px;
  opacity: 0.95;
}
.cta-banner .btn {
  background: #fff;
  color: var(--accent-dark);
}
.cta-banner .btn:hover { background: #f0f0f0; }

/* Region grid (homepage) */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin: 30px 0 50px;
}
.region-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.15s ease, transform 0.1s ease;
}
.region-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.region-card h3 {
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.region-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: #e6e6e6;
  padding: 30px 0;
  font-size: 0.85rem;
  margin-top: 40px;
}
.site-footer .disclosure {
  margin: 12px 0;
  max-width: 800px;
  opacity: 0.85;
}
.site-footer a { color: #fff; text-decoration: underline; }
.footer-links { margin-top: 10px; }
.copyright { margin-top: 10px; opacity: 0.7; }

/* Breadcrumbs */
.breadcrumbs {
  padding: 14px 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumbs a {
  color: var(--primary-dark);
  text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span[aria-hidden] {
  margin: 0 8px;
  color: var(--border);
}

/* Video Hero */
.hero-video {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero-video-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* oversize + center to crop like background-size: cover, maintaining 16:9 */
  width: 177.77vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(26,107,90,0.78) 0%, rgba(19,79,66,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 70px 20px;
  color: #fff;
  width: 100%;
}
.hero-video .hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-video .hero-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 24px;
  opacity: 0.95;
}
.hero-updated {
  font-size: 0.85rem !important;
  opacity: 0.8 !important;
  margin: 16px auto 0 !important;
}

@media (max-width: 700px) {
  .hero-video { min-height: 340px; }
  .hero-content { padding: 50px 16px; }
}

/* Author box */
.author-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin: 30px 0;
}
.author-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.author-name {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary-dark);
}
.author-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 6px;
}
.author-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 1rem; }
  .section-title { font-size: 1.3rem; }
}
