/* ===========================
   TRANSFERS.CSS
   Used by: transfers.html
   =========================== */

/* ── TRANSFERS HERO ── */
.tr-hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: center; overflow: hidden;
}
.tr-hero-bg { position: absolute; inset: 0; }
.tr-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.tr-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(8,22,14,.82) 0%, rgba(8,22,14,.6) 55%, rgba(0,0,0,.25) 100%);
}
.tr-hero-content {
  position: relative; z-index: 2;
  padding-top: 92px; padding-bottom: 110px;
}
.tr-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800;
  color: var(--white); line-height: 1.12; margin-bottom: 14px; max-width: 780px;
}
.tr-hero-sub {
  color: rgba(255,255,255,.68); font-size: .92rem;
  line-height: 1.65; margin-bottom: 28px; max-width: 520px;
}
.tr-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── WELCOME ── */
.tr-welcome { background: var(--white); }
.tr-welcome-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
}
.tr-welcome-img {
  position: relative;
}
.tr-welcome-img img {
  width: 100%; height: 380px; object-fit: cover;
  border-radius: 20px; box-shadow: 0 8px 40px rgba(0,0,0,.12);
}
.tr-exp-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--gold); color: white;
  border-radius: 14px; padding: 16px 20px; text-align: center;
  box-shadow: 0 6px 24px rgba(201,151,61,.4);
}
.tr-exp-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.tr-exp-label { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; margin-top: 3px; max-width: 80px; line-height: 1.3; }
.tr-welcome-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 700; margin-bottom: 16px;
}
.tr-welcome-text p { color: var(--muted); font-size: .92rem; line-height: 1.78; margin-bottom: 24px; }
.tr-welcome-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.tr-tag-item {
  display: flex; align-items: center; gap: 8px;
  background: #f0f4f0; border-radius: 10px; padding: 10px 14px;
  font-size: .83rem; font-weight: 600; color: var(--ink);
}
.tr-tag-item svg { stroke: var(--forest); flex-shrink: 0; }

/* ── SERVICES ── */
.tr-services { background: #f4f4f0; }
.tr-services h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700; margin-bottom: 8px;
}
.tr-services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.tr-service-card {
  background: var(--white); border-radius: var(--radius-card);
  padding: 28px 22px 24px; border: 1.5px solid #eeeeea;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tr-service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }
.tr-service-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(28,48,40,.08); display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.tr-service-icon svg { width: 22px; height: 22px; stroke: var(--forest); }
.tr-service-icon.teal { background: rgba(32,140,140,.1); } .tr-service-icon.teal svg { stroke: #208c8c; }
.tr-service-icon.gold { background: rgba(201,151,61,.12); } .tr-service-icon.gold svg { stroke: var(--gold); }
.tr-service-icon.purple { background: rgba(100,60,180,.08); } .tr-service-icon.purple svg { stroke: #6430b4; }
.tr-service-card h3 { font-size: .97rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.tr-service-card p { color: var(--muted); font-size: .83rem; line-height: 1.65; margin-bottom: 14px; }
.tr-service-price { font-size: .82rem; color: var(--muted); margin-bottom: 12px; }
.tr-service-price strong { color: var(--ink); font-size: .95rem; }
.tr-enquire {
  color: var(--forest); font-size: .82rem; font-weight: 700;
  text-decoration: none; transition: color var(--transition);
}
.tr-enquire:hover { color: var(--gold); }

/* ── PRICING TABLE ── */
.tr-pricing { background: var(--white); }
.tr-pricing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700; margin-bottom: 8px;
}
.tr-price-table-wrap {
  max-width: 780px; margin: 0 auto;
}
.tr-price-table {
  width: 100%; border-collapse: collapse;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
.tr-price-table thead {
  background: var(--forest);
}
.tr-price-table thead th {
  padding: 14px 20px; text-align: left;
  font-size: .8rem; font-weight: 700; color: var(--white);
  letter-spacing: .04em; text-transform: uppercase;
}
.tr-price-table tbody tr {
  border-bottom: 1px solid #eeeee8;
  transition: background var(--transition);
}
.tr-price-table tbody tr:hover { background: #f7f7f2; }
.tr-price-table tbody tr:last-child { border-bottom: none; }
.tr-price-table tbody td {
  padding: 14px 20px; font-size: .88rem; color: var(--ink);
}
.tr-price-table tbody td:first-child { font-weight: 500; }
.tr-price-table tbody td strong { color: var(--forest); font-size: .95rem; }
.tr-table-note {
  margin-top: 14px; font-size: .78rem; color: var(--muted);
  font-style: italic; text-align: center;
}

/* ── WHY TRAVEL WITH US ── */
.tr-why { background: #f4f4f0; }
.tr-why h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700; margin-bottom: 40px;
}
.tr-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tr-why-card {
  background: var(--white); border-radius: 16px; padding: 32px 24px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tr-why-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }
.tr-why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(28,48,40,.08); display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.tr-why-icon svg { width: 24px; height: 24px; stroke: var(--forest); }
.tr-why-icon.teal { background: rgba(32,140,140,.1); } .tr-why-icon.teal svg { stroke: #208c8c; }
.tr-why-icon.gold { background: rgba(201,151,61,.12); } .tr-why-icon.gold svg { stroke: var(--gold); }
.tr-why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.tr-why-card p { color: var(--muted); font-size: .87rem; line-height: 1.68; }
.tr-why-pera { margin-top: 28px; font-size: .88rem; color: var(--muted); line-height: 1.7; max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
/* ── BOOKING PROCESS ── */
.tr-process { background: var(--white); }
.tr-process h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700; margin-bottom: 48px;
}
.tr-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.tr-step {
  text-align: center; flex: 1; min-width: 120px; max-width: 160px;
}
.tr-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--forest); color: white;
  font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 14px rgba(28,48,40,.3);
}
.tr-step h4 { font-size: .88rem; font-weight: 700; margin-bottom: 6px; }
.tr-step p { color: var(--muted); font-size: .75rem; line-height: 1.5; }
.tr-step-arrow {
  color: var(--gold); font-size: 1.4rem; font-weight: 700;
  padding: 0 8px; margin-bottom: 24px; flex-shrink: 0;
}

/* ── REVIEWS ── */
.tr-reviews { background: var(--section-bg); }
.tr-reviews h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700; margin-bottom: 40px;
}
.tr-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tr-review-card {
  background: var(--white); border-radius: var(--radius-card);
  padding: 28px 24px; border: 1.5px solid #eeeee8;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
  transition: transform var(--transition);
  position: relative;
  overflow: hidden;
}
.tr-review-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--gold); }
.tr-review-card:nth-child(2)::before { background: #d85b88; }
.tr-review-card:nth-child(3)::before { background: #45a7a0; }
.tr-review-card:hover { transform: translateY(-4px); }
.tr-review-card p {
  color: var(--muted); font-size: .87rem; line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.tr-reviewer { display: flex; align-items: center; gap: 12px; padding-left: 14px; border-left: 3px solid var(--gold); }
.tr-reviewer strong { color: var(--ink); font-size: .88rem; display: block; }
.tr-reviewer span { color: var(--muted); font-size: .75rem; }

/* ── BOTTOM CTA ── */
.tr-cta { position: relative; padding: 80px 0; }
.tr-cta-bg { position: absolute; inset: 0; }
.tr-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.tr-cta-overlay { position: absolute; inset: 0; background: rgba(8,22,14,.84); }
.tr-cta-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.tr-cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.tr-cta-content p { color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.7; margin-bottom: 28px; }
.tr-cta-info {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap; margin-bottom: 28px;
}
.tr-cta-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75); font-size: .87rem; font-weight: 500;
}
.tr-cta-item svg { stroke: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tr-services-grid { grid-template-columns: repeat(2, 1fr); }
  .tr-why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .tr-welcome-grid { grid-template-columns: 1fr; gap: 40px; }
  .tr-welcome-img { padding-bottom: 16px; max-width: 460px; }
  .tr-exp-badge { right: 0; }
  .tr-services-grid { grid-template-columns: 1fr 1fr; }
  .tr-why-grid { grid-template-columns: 1fr; }
  .tr-reviews-grid { grid-template-columns: 1fr; }
  .tr-steps { gap: 8px; }
  .tr-step-arrow { display: none; }
  .tr-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .tr-step { max-width: 100%; }
}
@media (max-width: 480px) {
  .tr-hero-title { font-size: 1.8rem; }
  .tr-hero-btns { flex-direction: column; }
  .tr-services-grid { grid-template-columns: 1fr; }
  .tr-steps { grid-template-columns: 1fr 1fr; }
}
