/* ===========================
   TOURS.CSS – shared across all tour pages
   =========================== */

/* ── TOURS PAGE HERO ── */
.tp-hero {
  position: relative; min-height: 62vh;
  display: flex; align-items: center; overflow: hidden;
}
.tp-hero-bg { position: absolute; inset: 0; }
.tp-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.tp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(10,28,18,.82) 0%, rgba(10,28,18,.55) 60%, rgba(0,0,0,.2) 100%);
}
.tp-hero-content {
  position: relative; z-index: 2;
  padding-top: 88px; padding-bottom: 110px;
}
.tp-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 800; color: var(--white);
  line-height: 1.13; margin-bottom: 16px;
  max-width: 720px;
}
.tp-hero-sub {
  color: rgba(255,255,255,.72);
  font-size: .95rem; line-height: 1.7;
  margin-bottom: 30px; max-width: 640px;
}
.tp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-tp-outline {
  border: 1.5px solid rgba(255,255,255,.55);
  color: var(--white); border-radius: var(--radius-btn);
  padding: 13px 24px; font-size: .9rem; font-weight: 600;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
  display: inline-block;
}
.btn-tp-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ── WELCOME ── */
.tp-welcome { background: var(--white); }
.tp-welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.tp-welcome-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 700;
  margin-bottom: 16px; color: var(--ink);
}
.tp-welcome-text p { color: var(--muted); font-size: .93rem; line-height: 1.78; margin-bottom: 24px; }
.tp-badges { display: flex; flex-direction: column; gap: 10px; }
.tp-badge {
  display: flex; align-items: center; gap: 10px;
  background: #f4f4f0; border-radius: 10px;
  padding: 11px 16px; font-size: .85rem; font-weight: 500; color: var(--ink);
}
.tp-badge svg { stroke: var(--forest); flex-shrink: 0; }
.tp-welcome-img img {
  width: 100%; height: 380px; object-fit: cover;
  border-radius: 20px; box-shadow: 0 8px 40px rgba(0,0,0,.12);
}

/* ── SECTION HEADINGS ── */
.tp-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; margin-bottom: 10px;
}
.tp-section-paragraph{
  font-size: 1.05rem; font-weight: 600; margin-bottom: 16px;
}
.tp-section-sub {
  color: var(--muted); font-size: .93rem; margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ── DAY TOURS GRID ── */
.tp-day { background: var(--section-bg); }
.day-tours-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.dt-card {
  background: var(--white); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dt-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,.12); }
.dt-img-wrap { position: relative; }
.dt-img-wrap img { width: 100%; height: 200px; object-fit: cover; display: block; }
.dt-price-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--gold); color: var(--white);
  border-radius: 20px; padding: 4px 12px;
  font-size: .78rem; font-weight: 700;
}
.dt-info { padding: 20px 20px 22px; }
.dt-info h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.dt-info p { color: var(--muted); font-size: .83rem; line-height: 1.6; margin-bottom: 12px; }
.dt-meta { display: flex; gap: 14px; margin-bottom: 14px; }
.dt-meta span { display: flex; align-items: center; gap: 5px; font-size: .78rem; color: var(--muted); }
.dt-meta svg { stroke: var(--forest); }
.dt-link { color: var(--forest); font-size: .82rem; font-weight: 600; text-decoration: none; transition: color var(--transition); }
.dt-link:hover { color: var(--gold); }

/* ── ROUND TOURS ── */
.tp-round { background: var(--white); }
.round-featured {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.1);
  margin-bottom: 32px;
}
.rf-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px; }
.rf-info { padding: 40px 36px; background: var(--white); }
.rf-tags { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.rf-tag {
  border: 1.5px solid #ccc; border-radius: 20px;
  padding: 4px 12px; font-size: .72rem; font-weight: 600; color: var(--muted);
}
.rf-tag.popular { background: var(--gold); border-color: var(--gold); color: white; }
.rf-tag.comfort { background: var(--forest); border-color: var(--forest); color: white; }
.rf-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.rf-info p { color: var(--muted); font-size: .92rem; line-height: 1.7; margin-bottom: 20px; }
.rf-price { font-size: .9rem; color: var(--muted); margin-bottom: 20px; }
.rf-price strong { font-size: 1.4rem; color: var(--gold); }
.rf-price span { font-size: .8rem; }
.rf-btns { display: flex; align-items: center; gap: 20px; }
.rf-plan-link { color: var(--forest); font-size: .88rem; font-weight: 600; text-decoration: none; transition: color var(--transition); }
.rf-plan-link:hover { color: var(--gold); }
.round-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.rg-card {
  background: var(--section-bg); border-radius: 16px;
  padding: 12px 12px 22px; border: 1.5px solid #eeeeea;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.rg-thumb {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 11px;
  margin-bottom: 16px;
}
.rg-card h4, .rg-card p, .rg-card .rg-link { margin-left: 8px; margin-right: 8px; }
.rg-card .rg-dur { margin-left: 8px; }
.rg-card:hover { box-shadow: var(--shadow-card); border-color: transparent; }
.rg-dur {
  display: inline-block; background: var(--forest);
  color: white; border-radius: 20px; padding: 3px 12px;
  font-size: .7rem; font-weight: 600; margin-bottom: 12px;
}
.rg-dur.popular { background: var(--gold); }
.rg-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.rg-card p { color: var(--muted); font-size: .82rem; line-height: 1.6; margin-bottom: 14px; }
.rg-price { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.rg-price strong { font-size: 1.1rem; color: var(--ink); }
.rg-link { color: var(--forest); font-size: .82rem; font-weight: 600; text-decoration: none; transition: color var(--transition); }
.rg-link:hover { color: var(--gold); }

/* ── CUSTOM ── */
.tp-custom { background: #f4f4f0; }
.custom-icons { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 40px; }
.ci-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ci-icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--white); box-shadow: 0 2px 14px rgba(0,0,0,.07);
  display: flex; align-items: center; justify-content: center;
}
.ci-icon-wrap svg { width: 26px; height: 26px; stroke: var(--forest); }
.ci-item span { font-size: .85rem; font-weight: 600; color: var(--ink); }

/* ── WHY BOOK ── */
.tp-why { background: var(--white); }
.tp-why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.tp-why-card {
  text-align: center; padding: 28px 18px;
  border: 1.5px solid #eeeeea; border-radius: var(--radius-card);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.tp-why-card:hover { box-shadow: var(--shadow-card); border-color: transparent; }
.tp-why-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(28,48,40,.08); display: flex;
  align-items: center; justify-content: center; margin: 0 auto 14px;
}
.tp-why-icon svg { width: 22px; height: 22px; stroke: var(--forest); }
.tp-why-card h4 { font-size: .88rem; font-weight: 600; margin-bottom: 6px; }
.tp-why-card p { color: var(--muted); font-size: .78rem; line-height: 1.55; }

/* ── CTA ── */
.tp-cta { background: var(--forest); }
.tp-cta-inner { text-align: center; }
.tp-cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; color: var(--white); margin-bottom: 12px; }
.tp-cta-inner p { color: rgba(255,255,255,.68); font-size: .95rem; margin-bottom: 28px; }
.tp-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── FOOTER NEWSLETTER ── */
.footer-newsletter-text { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 12px; line-height: 1.5; }
.newsletter-form { display: flex; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; overflow: hidden; margin-bottom: 16px; }
.newsletter-input { flex: 1; background: transparent; border: none; outline: none; padding: 10px 14px; font-size: .83rem; color: var(--white); font-family: inherit; }
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-btn { background: var(--gold); border: none; cursor: pointer; padding: 10px 14px; display: flex; align-items: center; justify-content: center; color: white; transition: background var(--transition); }
.newsletter-btn:hover { background: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tp-why-grid { grid-template-columns: repeat(3, 1fr); }
  .round-grid { grid-template-columns: repeat(2, 1fr); }
  .day-tours-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .tp-welcome-grid { grid-template-columns: 1fr; gap: 32px; }
  .round-featured { grid-template-columns: 1fr; }
  .tp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .day-tours-grid { grid-template-columns: 1fr; }
  .round-grid { grid-template-columns: 1fr 1fr; }
  .custom-icons { gap: 20px; }
}
@media (max-width: 480px) {
  .tp-hero-title { font-size: 1.8rem; }
  .round-grid { grid-template-columns: 1fr; }
  .tp-hero-btns { flex-direction: column; }
}
