/* ===========================
   ABOUT.CSS – about.html only
   Extends style.css, no overrides
   =========================== */

/* ── ABOUT HERO ── */
.about-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 0;
}
.about-hero-bg {
  position: absolute; inset: 0;
}
.about-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15,35,20,.72) 0%, rgba(15,35,20,.5) 55%, rgba(0,0,0,.25) 100%);
}
.about-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 100px;
  padding-bottom: 110px;
}
.about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.01em;
  max-width: 720px;
}
.about-hero-sub {
  color: rgba(255,255,255,.78);
  font-size: .96rem; line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}
.about-hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.about-hero-cta .btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
}

/* ── WHO WE ARE ── */
.who-we-are { background: var(--white); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.who-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--ink);
}
.who-text p {
  color: var(--muted);
  font-size: .95rem; line-height: 1.78;
  margin-bottom: 28px;
}
.who-text strong { color: var(--ink); }
.reg-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--forest);
  color: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
}
.reg-badge svg { stroke: var(--gold-light); flex-shrink: 0; }
.reg-label {
  display: block;
  font-size: .7rem; letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 2px;
}
.reg-num {
  display: block;
  font-size: .92rem; font-weight: 600;
  color: var(--white);
}
.who-img-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
}
.who-img {
  width: 100%; height: 380px;
  object-fit: cover;
  display: block;
}
.who-img-1{
  width: 100%; height: 380px;
  object-fit: contain;
  display: block;
}
.who-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,28,18,.85) 0%, transparent 100%);
  padding: 30px 20px 20px;
}
.who-img-caption p {
  color: var(--white);
  font-weight: 600; font-size: .9rem;
  margin-bottom: 4px;
}
.who-img-caption span {
  color: rgba(255,255,255,.7);
  font-size: .8rem; line-height: 1.5;
}

/* ── WHAT MAKES US DIFFERENT ── */
.different { background: #f4f4f0; }
.diff-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.diff-para {
  color: var(--muted);
  font-size: .93rem; line-height: 1.7;
  margin-bottom: 28px;
}

.diff-underline {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 4px;
  margin: 0 auto 48px;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.diff-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.diff-card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.diff-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 16px;
}
.diff-icon svg { width: 22px; height: 22px; stroke: var(--forest); }
.diff-icon.teal { background: rgba(32,140,140,.1); }
.diff-icon.teal svg { stroke: #208c8c; }
.diff-icon.green { background: rgba(46,120,80,.1); }
.diff-icon.green svg { stroke: #2e7850; }
.diff-icon.red { background: rgba(200,60,60,.08); }
.diff-icon.red svg { stroke: #c83c3c; }
.diff-icon.gold { background: rgba(201,151,61,.12); }
.diff-icon.gold svg { stroke: var(--gold); }
.diff-card h4 {
  font-size: .88rem; font-weight: 600;
  margin-bottom: 6px; color: var(--ink);
}
.diff-card p {
  color: var(--muted);
  font-size: .78rem; line-height: 1.55;
}

/* ── OUR COMMITMENT ── */
.commitment { background: var(--white); }
.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.commitment-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid #e8e8e0;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,.06);
  overflow: hidden;
}
.commitment-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,151,61,.18) 0%, transparent 70%);
  pointer-events: none;
}
.commitment-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
}
.commitment-card p {
  color: var(--muted);
  font-size: .93rem; line-height: 1.78;
  margin-bottom: 28px;
}
.commitment-stars {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid #eeeeea;
  padding-top: 22px;
}
.commitment-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.commitment-star-wrap {
  display: flex; flex-direction: column; gap: 3px;
}
.commitment-label {
  font-size: .78rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em;
}
.stars-gold { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.commitment-img {
  width: 100%; height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
}

/* ── MEET THE TEAM ── */
.team { background: var(--section-bg); }
.team h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.team-sub {
  color: var(--muted);
  font-size: .93rem;
  margin-bottom: 48px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 380px);
  gap: 28px;
  justify-content: center;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  text-align: center;
  box-shadow: 0 3px 20px rgba(0,0,0,.07);
  border: 1.5px solid #eeeeea;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.team-avatar-wrap {
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--gold-light);
}
.team-avatar {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 4px; color: var(--ink);
}
.team-role {
  display: inline-block;
  font-size: .75rem; font-weight: 600;
  color: var(--gold);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 12px;
}
.team-quote {
  color: var(--muted);
  font-size: .87rem; line-height: 1.65;
  font-style: italic;
}

/* ── ABOUT CTA DARK ── */
.about-cta-dark {
  background: var(--forest);
  padding: 90px 0;
}
.about-cta-inner {
  text-align: center;
}
.about-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-cta-inner p {
  color: rgba(255,255,255,.65);
  font-size: .93rem; line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}
.about-cta-contacts {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.about-cta-box {
  display: flex; align-items: center; gap: 14px;
  background: var(--forest-mid);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 16px 22px;
  min-width: 220px;
}
.about-cta-box svg { color: var(--gold-light); flex-shrink: 0; }
.cta-box-label {
  display: block;
  font-size: .7rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 2px;
}
.cta-box-val {
  display: block;
  font-size: .88rem; font-weight: 600;
  color: var(--white);
}
.about-cta-btn { margin-top: 4px; }

/* ── FOOTER newsletter column ── */
.footer-newsletter-text {
  font-size: .82rem; color: rgba(255,255,255,.55);
  margin-bottom: 12px; line-height: 1.5;
}
.newsletter-form {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.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;
  transition: background var(--transition);
  color: white;
}
.newsletter-btn:hover { background: var(--gold-light); }
.footer-copy {
  font-size: .72rem; color: rgba(255,255,255,.3);
  line-height: 1.5;
}

/* ── WHY TRAVEL WITH US ── */
.wtu-section {
  background: var(--white);
}
.wtu-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

.wtu-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.wtu-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.wtu-intro {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.78;
  margin-bottom: 34px;
}

.wtu-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.wtu-list-item {
  display: flex;
  gap: 16px;
}
.wtu-check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(46,120,80,.1);
  color: #2e7850;
  display: flex; align-items: center; justify-content: center;
}
.wtu-check svg { width: 15px; height: 15px; }
.wtu-list-item h4 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.wtu-list-item p {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.6;
}

.wtu-cta { display: inline-block; }

/* Stats panel */
.wtu-stats-wrap {
  position: relative;
}
.wtu-stats-panel {
  background: var(--forest);
  border-radius: var(--radius-card);
  padding: 44px 36px;
  display: grid;
  gap: 32px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
}
.wtu-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wtu-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.wtu-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .02em;
}

.wtu-stats-badge {
  margin-top: 20px;
  background: var(--white);
  border: 1.5px solid #eeeeea;
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}
.wtu-badge-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .wtu-grid { grid-template-columns: 1fr; gap: 44px; }
  .wtu-intro { max-width: none; }
}
@media (max-width: 480px) {
  .wtu-stats-panel { grid-template-columns: 1fr 1fr; padding: 32px 24px; }
  .wtu-stat-num { font-size: 1.7rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .who-grid { grid-template-columns: 1fr; gap: 36px; }
  .commitment-grid { grid-template-columns: 1fr; }
  .commitment-img { height: 260px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .about-cta-contacts { flex-direction: column; align-items: center; }
  .about-cta-box { width: 100%; max-width: 320px; }
}
@media (max-width: 480px) {
  .about-hero-title { font-size: 1.9rem; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
}