/* css/tours.css - Tours page specific styles */

/* PAGE HERO */
.page-hero {
  padding-top: 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,34,64,0.92) 0%, rgba(10,34,64,0.4) 60%, rgba(10,34,64,0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 80px;
  width: 100%;
}
@media (max-width: 768px) {
  .page-hero-content {
    padding: 48px 24px;
  }
}
.page-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 20px;
}
.page-h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-meta {
    gap: 20px;
  }
}
.hm {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hm-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hm-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.hm-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
}
.hm-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: block;
}

/* PARTNER STRIP */
.partner-strip {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .partner-strip {
    padding: 16px 24px;
    gap: 14px;
  }
}
.ps-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ps-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}
.ps-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ps-logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(20%);
  transition: opacity var(--trans);
}
.ps-logos img:hover {
  opacity: 1;
}
.ps-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

/* SECTIONS */
.sec {
  padding: 96px 80px;
}
@media (max-width: 1100px) {
  .sec {
    padding: 72px 48px;
  }
}
@media (max-width: 768px) {
  .sec {
    padding: 56px 24px;
  }
}
.sec-alt {
  background: var(--light);
}
.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
.h2 em {
  font-style: italic;
  color: var(--gold);
}
.subp {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 560px;
}
.sec-head {
  margin-bottom: 52px;
}
.arr::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.2s;
}
.arr:hover::after {
  transform: translateX(4px);
}

/* INCLUDED SECTION */
.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
@media (max-width: 768px) {
  .incl-grid {
    grid-template-columns: 1fr;
  }
}
.incl-col {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--border);
}
.incl-col.excl {
  background: var(--light);
}
.incl-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.incl-col-title.green {
  color: #1A7340;
}
.incl-col-title.red {
  color: #C0392B;
}
.incl-col-title svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.incl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.incl-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}
.incl-list li::before {
  content: '✓';
  font-weight: 700;
  color: #1A7340;
  flex-shrink: 0;
  margin-top: 1px;
}
.excl .incl-list li::before {
  content: '✕';
  color: #C0392B;
}

/* ACCOMMODATION TABLE */
.accom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.accom-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.accom-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: top;
}
.accom-table tr:last-child td {
  border-bottom: none;
}
.accom-table tr:nth-child(even) td {
  background: var(--light);
}
.basis-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}
.basis-dbb {
  background: rgba(26,115,64,0.1);
  color: #1A7340;
}
.basis-bb {
  background: rgba(21,101,192,0.1);
  color: #1565C0;
}
.nights-badge {
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  letter-spacing: 0.08em;
  border-radius: 2px;
}

/* ITINERARY */
.itinerary {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.day-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  .day-block {
    grid-template-columns: 1fr;
  }
}
.day-block:last-child {
  border-bottom: none;
}
.day-left {
  padding: 40px 32px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: sticky;
  top: 72px;
  align-self: start;
}
@media (max-width: 768px) {
  .day-left {
    position: static;
    padding: 28px 24px;
  }
}
.day-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.day-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.day-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.day-dest {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.day-right {
  padding: 40px 48px;
}
@media (max-width: 768px) {
  .day-right {
    padding: 28px 24px;
  }
}
.day-dest-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.day-dest-title em {
  font-style: italic;
  color: var(--gold);
}
.day-itinerary-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.day-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.act-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}
.act-chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 13px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--light);
  transition: background var(--trans), border-color var(--trans), color var(--trans);
  border-radius: 20px;
}
.act-chip:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.day-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .day-img-row {
    grid-template-columns: 1fr;
  }
}
.day-img-row img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.day-img-single img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}
.overnight-card {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
}
.oc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.oc-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.oc-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.oc-basis {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A7340;
}
.oc-basis svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
@media (max-width: 1100px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: border-color var(--trans), transform 0.2s, box-shadow 0.2s;
}
.info-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(10,34,64,0.07);
}
.info-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.info-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.info-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* CTA SECTION */
.cta-section {
  background: var(--navy);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1100px) {
  .cta-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 72px 48px;
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding: 56px 24px;
  }
}
.cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
.cta-h2 em {
  font-style: italic;
  color: var(--gold);
}
.cta-p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 15px 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: background var(--trans), color var(--trans), transform 0.2s;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 14px 34px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2);
  transition: border-color var(--trans), color var(--trans);
}
.btn-outline-w:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 768px) {
  .cf-row {
    grid-template-columns: 1fr;
  }
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cf-field.full {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .cf-field.full {
    grid-column: auto;
  }
}
.cf-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.cf-input, .cf-select, .cf-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--trans);
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
  border-color: var(--gold);
}
.cf-select option {
  background: var(--navy);
  color: var(--white);
}
.cf-textarea {
  resize: vertical;
  min-height: 90px;
}

/* SCROLL REVEAL */
.rev {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s, transform 0.65s;
}
.rev.in {
  opacity: 1;
  transform: translateY(0);
}
.rev-d1 {
  transition-delay: 0.1s;
}
.rev-d2 {
  transition-delay: 0.2s;
}
.rev-d3 {
  transition-delay: 0.3s;
}