/* ═══════════════════════════════════════════════════════════
   ABOUT US PAGE  —  te-abp-*
   ═══════════════════════════════════════════════════════════ */

/* ── Shared section utilities ─────────────────────────────── */
.te-abp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.te-abp-section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.te-abp-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  margin-top: 10px;
  letter-spacing: -.02em;
}

/* ── 1. HERO ──────────────────────────────────────────────── */
.te-abp-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: var(--te-darker);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 130px 0 90px;
}

.te-abp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(9,13,20,.95) 0%,
    rgba(9,13,20,.75) 50%,
    rgba(232,64,27,.20) 100%
  );
  z-index: 0;
}

/* Subtle noise texture */
.te-abp-hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
}

/* Grid overlay */
.te-abp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

/* Floating shape blobs */
.te-abp-hero-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.te-abp-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .15;
}
.te-abp-shape--1 {
  width: 420px; height: 420px;
  background: var(--te-trek);
  top: -80px; right: 8%;
  animation: te-abp-float 9s ease-in-out infinite;
}
.te-abp-shape--2 {
  width: 280px; height: 280px;
  background: var(--te-hotel);
  bottom: -40px; right: 22%;
  animation: te-abp-float 12s ease-in-out infinite reverse;
}
.te-abp-shape--3 {
  width: 180px; height: 180px;
  background: var(--te-green);
  top: 30%; left: 55%;
  animation: te-abp-float 7s ease-in-out infinite 2s;
  opacity: .08;
}

@keyframes te-abp-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-24px) scale(1.04); }
}

.te-abp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.te-abp-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--te-hotel);
  background: rgba(240,146,42,.1);
  border: 1px solid rgba(240,146,42,.22);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  margin-bottom: 24px;
}

.te-abp-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.8vw, 70px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 24px;
}
.te-abp-hero-heading-accent {
  background: linear-gradient(135deg, var(--te-trek) 0%, var(--te-hotel) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.te-abp-hero-subtext {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
}

.te-abp-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.te-abp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  text-decoration: none;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.te-abp-hero-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

.te-abp-hero-stats-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.te-abp-hero-stats-mini strong { color: rgba(255,255,255,.85); font-weight: 700; }
.te-abp-hero-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* ── 2. MISSION / STORY ───────────────────────────────────── */
.te-abp-mission-section { background: var(--te-surface); }

.te-abp-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.te-abp-mission-grid--flip .te-abp-mission-text  { order: 2; }
.te-abp-mission-grid--flip .te-abp-mission-media { order: 1; }

.te-abp-mission-heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.015em;
  margin: 10px 0 0;
}

.te-abp-mission-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--te-trek), var(--te-hotel));
  border-radius: 2px;
  margin: 22px 0 24px;
}

.te-abp-mission-body {
  color: var(--te-muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.te-abp-mission-body:last-of-type { margin-bottom: 0; }

/* Trust badges */
.te-abp-mission-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.te-abp-mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--te-text);
  background: var(--te-bg);
  border: 1px solid var(--te-border);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  transition: border-color var(--dur) var(--ease);
}
.te-abp-mission-badge:hover { border-color: var(--te-trek); }
.te-abp-mission-badge svg { color: var(--te-green); flex-shrink: 0; }

/* Media column */
.te-abp-mission-media { position: relative; }

.te-abp-mission-img-wrap { position: relative; }

.te-abp-mission-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

.te-abp-mission-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--te-text);
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}
.te-abp-mission-img-badge svg { color: var(--te-hotel); }

/* Rating accent card */
.te-abp-mission-img-accent {
  position: absolute;
  top: 28px;
  right: -20px;
  background: var(--te-darker);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
}
.te-abp-mission-img-accent-inner { text-align: center; }
.te-abp-mission-img-accent-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}
.te-abp-mission-img-accent-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 4px 0 8px;
}
.te-abp-mission-stars { display: flex; gap: 2px; justify-content: center; color: var(--te-hotel); }

.te-abp-mission-placeholder {
  width: 100%;
  height: 460px;
  background: var(--te-bg);
  border: 2px dashed var(--te-border);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--te-light);
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
}

/* ── 3. STATS ─────────────────────────────────────────────── */
.te-abp-stats-section {
  background: var(--te-dark);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.te-abp-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(232,64,27,.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(240,146,42,.08) 0%, transparent 50%);
  pointer-events: none;
}

.te-abp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.te-abp-stat {
  text-align: center;
  padding: 60px 32px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--dur) var(--ease);
}
.te-abp-stat:last-child { border-right: none; }
.te-abp-stat:hover { background: rgba(255,255,255,.025); }

.te-abp-stat-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.te-abp-stat[data-stat="1"] .te-abp-stat-icon-wrap { background: rgba(232,64,27,.15); color: var(--te-trek); }
.te-abp-stat[data-stat="2"] .te-abp-stat-icon-wrap { background: rgba(240,146,42,.15); color: var(--te-hotel); }
.te-abp-stat[data-stat="3"] .te-abp-stat-icon-wrap { background: rgba(76,175,80,.12); color: var(--te-green); }
.te-abp-stat[data-stat="4"] .te-abp-stat-icon-wrap { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }

.te-abp-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.te-abp-stat[data-stat="1"] .te-abp-stat-num { color: var(--te-trek); }
.te-abp-stat[data-stat="2"] .te-abp-stat-num { color: var(--te-hotel); }
.te-abp-stat[data-stat="3"] .te-abp-stat-num { color: #fff; }
.te-abp-stat[data-stat="4"] .te-abp-stat-num { color: var(--te-green); }

.te-abp-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* ── 4. JOURNEY / TIMELINE ────────────────────────────────── */
.te-abp-journey-section { background: var(--te-bg); }

.te-abp-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 16px 0 0;
}

.te-abp-timeline-track {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--te-trek) 0%, var(--te-hotel) 50%, rgba(255,255,255,.06) 100%);
}

.te-abp-timeline-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 52px;
}
.te-abp-timeline-item:last-child { margin-bottom: 0; }

/* Left item: card on left, dot in center */
.te-abp-timeline-item--left .te-abp-timeline-card { grid-column: 1; text-align: right; padding-right: 32px; }
.te-abp-timeline-item--left .te-abp-timeline-dot  { grid-column: 2; }

/* Right item: empty on left, dot, card on right */
.te-abp-timeline-item--right { direction: rtl; }
.te-abp-timeline-item--right .te-abp-timeline-card { direction: ltr; text-align: left; padding-left: 32px; }
.te-abp-timeline-item--right .te-abp-timeline-dot  { direction: ltr; }

.te-abp-timeline-dot {
  display: flex;
  justify-content: center;
  padding-top: 6px;
  position: relative;
  z-index: 1;
}

.te-abp-timeline-dot-inner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--te-dark);
  border: 3px solid var(--te-trek);
  box-shadow: 0 0 0 4px rgba(232,64,27,.15);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.te-abp-timeline-item:hover .te-abp-timeline-dot-inner {
  border-color: var(--te-hotel);
  box-shadow: 0 0 0 6px rgba(240,146,42,.18);
}

.te-abp-timeline-year {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--te-trek);
  margin-bottom: 8px;
}

.te-abp-timeline-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--te-text);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.te-abp-timeline-desc {
  font-size: 14px;
  color: var(--te-muted);
  line-height: 1.78;
}

/* ── 5. VALUES ────────────────────────────────────────────── */
.te-abp-values-section { background: var(--te-surface); }

.te-abp-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Accent colours per card */
:root {
  --abp-val-1: var(--te-trek);
  --abp-val-2: var(--te-hotel);
  --abp-val-3: var(--te-green);
  --abp-val-4: #7c6ef8;
  --abp-val-5: #f59e0b;
  --abp-val-6: #06b6d4;
}

.te-abp-value-card {
  background: var(--te-bg);
  border: 1px solid var(--te-border);
  border-radius: var(--r-lg);
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

/* Top accent line — coloured per card */
.te-abp-value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity 220ms var(--ease);
}
.te-abp-value-card--1::before { background: var(--abp-val-1); }
.te-abp-value-card--2::before { background: var(--abp-val-2); }
.te-abp-value-card--3::before { background: var(--abp-val-3); }
.te-abp-value-card--4::before { background: var(--abp-val-4); }
.te-abp-value-card--5::before { background: var(--abp-val-5); }
.te-abp-value-card--6::before { background: var(--abp-val-6); }

.te-abp-value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.te-abp-value-card:hover::before { opacity: 1; }

/* Big ghost number */
.te-abp-value-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--te-border);
  letter-spacing: -.04em;
  user-select: none;
  pointer-events: none;
  transition: color 220ms var(--ease);
}
.te-abp-value-card:hover .te-abp-value-num { color: rgba(0,0,0,.04); }

/* Icon */
.te-abp-value-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 220ms var(--ease), color 220ms var(--ease);
}
.te-abp-value-card--1 .te-abp-value-icon-wrap { background: rgba(232,64,27,.1);  color: var(--abp-val-1); }
.te-abp-value-card--2 .te-abp-value-icon-wrap { background: rgba(240,146,42,.1); color: var(--abp-val-2); }
.te-abp-value-card--3 .te-abp-value-icon-wrap { background: rgba(76,175,80,.1);  color: var(--abp-val-3); }
.te-abp-value-card--4 .te-abp-value-icon-wrap { background: rgba(124,110,248,.1);color: var(--abp-val-4); }
.te-abp-value-card--5 .te-abp-value-icon-wrap { background: rgba(245,158,11,.1); color: var(--abp-val-5); }
.te-abp-value-card--6 .te-abp-value-icon-wrap { background: rgba(6,182,212,.1);  color: var(--abp-val-6); }

.te-abp-value-card:hover .te-abp-value-icon-wrap { filter: brightness(1.1); }

.te-abp-value-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--te-text);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.te-abp-value-desc {
  font-size: 14px;
  color: var(--te-muted);
  line-height: 1.78;
}

/* ── 6. TEAM ──────────────────────────────────────────────── */
.te-abp-team-section { background: var(--te-bg); }

.te-abp-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.te-abp-team-card {
  background: var(--te-surface);
  border: 1px solid var(--te-border);
  border-radius: var(--r-lg);
  padding: 40px 24px 32px;
  text-align: center;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
  position: relative;
  overflow: hidden;
}
.te-abp-team-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--te-trek), var(--te-hotel));
  transform: scaleX(0);
  transition: transform 300ms var(--ease);
}
.te-abp-team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.te-abp-team-card:hover::after { transform: scaleX(1); }

.te-abp-team-avatar-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 22px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--te-dark) 0%, #2d3f5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 3px var(--te-surface), 0 0 0 5px var(--te-border);
  transition: box-shadow 220ms var(--ease);
}
.te-abp-team-card:hover .te-abp-team-avatar-wrap {
  box-shadow: 0 0 0 3px var(--te-surface), 0 0 0 5px var(--te-trek);
}

.te-abp-team-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

.te-abp-team-initials {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
  user-select: none;
}

.te-abp-team-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--te-text);
  margin-bottom: 5px;
  letter-spacing: -.01em;
}
.te-abp-team-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--te-hotel);
  margin-bottom: 14px;
}
.te-abp-team-bio {
  font-size: 13px;
  color: var(--te-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

/* Social links */
.te-abp-team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--te-border);
}
.te-abp-team-social-link {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--te-bg);
  border: 1px solid var(--te-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--te-muted);
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.te-abp-team-social-link:hover { background: var(--te-trek); color: #fff; border-color: var(--te-trek); }

/* ── 7. CTA ───────────────────────────────────────────────── */
.te-abp-cta-section {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  background: var(--te-darker);
}
.te-abp-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 8% 50%, rgba(232,64,27,.2) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 92% 50%, rgba(240,146,42,.16) 0%, transparent 55%);
  pointer-events: none;
}
.te-abp-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,64,27,.5), transparent);
  filter: blur(2px);
  pointer-events: none;
}

.te-abp-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
}
.te-abp-cta-content {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1 1 auto;
}
.te-abp-cta-icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--te-hotel);
  flex-shrink: 0;
}
.te-abp-cta-text { flex: 1 1 auto; }
.te-abp-cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.te-abp-cta-subtext { font-size: 15px; color: rgba(255,255,255,.52); line-height: 1.65; }
.te-abp-cta-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Ghost button */
.te-btn--ghost {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.18);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.te-btn--ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.32);
  color: #fff;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .te-abp-mission-img-accent { right: 0; }
}

@media (max-width: 1100px) {
  .te-abp-team-grid { grid-template-columns: repeat(2, 1fr); }
  .te-abp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .te-abp-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .te-abp-stat:nth-child(n+3) { border-bottom: none; }
}

@media (max-width: 960px) {
  .te-abp-values-grid { grid-template-columns: repeat(2, 1fr); }
  .te-abp-mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .te-abp-mission-grid--flip .te-abp-mission-text,
  .te-abp-mission-grid--flip .te-abp-mission-media { order: unset; }
  .te-abp-mission-img { height: 360px; }
  .te-abp-mission-img-accent { right: 0; }
}

@media (max-width: 768px) {
  .te-abp-hero { min-height: 420px; padding: 100px 0 64px; }
  .te-abp-hero-stats-mini { display: none; }
  .te-abp-shape { display: none; }

  .te-abp-timeline-track { display: none; }
  .te-abp-timeline-item { grid-template-columns: 1fr; direction: ltr !important; }
  .te-abp-timeline-item .te-abp-timeline-dot { display: none; }
  .te-abp-timeline-item--left .te-abp-timeline-card,
  .te-abp-timeline-item--right .te-abp-timeline-card {
    text-align: left;
    padding: 28px;
    background: var(--te-surface);
    border: 1px solid var(--te-border);
    border-radius: var(--r-lg);
  }
  .te-abp-timeline-item--left .te-abp-timeline-card { padding-right: 28px; }
  .te-abp-timeline-item--right .te-abp-timeline-card { padding-left: 28px; direction: ltr; }
  .te-abp-timeline-item { margin-bottom: 16px; }

  .te-abp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .te-abp-stat { padding: 40px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .te-abp-stat:nth-child(2n) { border-left: 1px solid rgba(255,255,255,.06); }
  .te-abp-stat:nth-last-child(-n+2) { border-bottom: none; }

  .te-abp-values-grid { grid-template-columns: 1fr; }
  .te-abp-team-grid   { grid-template-columns: 1fr; }

  .te-abp-mission-img-accent { display: none; }

  .te-abp-cta-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .te-abp-cta-content { flex-direction: column; align-items: flex-start; gap: 20px; }
  .te-abp-cta-icon { display: none; }
  .te-abp-cta-actions { flex-wrap: wrap; width: 100%; }
  .te-abp-cta-actions .te-btn { flex: 1 1 auto; justify-content: center; text-align: center; }

  .te-abp-section-head { flex-direction: column; align-items: flex-start; }
  .te-abp-section-head--center { align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .te-abp-stats-grid { grid-template-columns: 1fr; }
  .te-abp-stat { border-left: none !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.06); }
  .te-abp-stat:last-child { border-bottom: none; }
  .te-abp-mission-badges { gap: 8px; }
  .te-abp-hero-btn { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE  —  te-con-*
   ═══════════════════════════════════════════════════════════ */

/* ── 1. HERO ──────────────────────────────────────────────── */
.te-con-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: var(--te-darker);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 120px 0 72px;
}
.te-con-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(9,13,20,.96) 0%, rgba(9,13,20,.78) 55%, rgba(232,64,27,.18) 100%);
  z-index: 0;
}
.te-con-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0; pointer-events: none;
}
.te-con-hero-inner { position: relative; z-index: 1; max-width: 640px; }

.te-con-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 18px 0 18px;
}
.te-con-hero-subtext {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,.58);
  line-height: 1.75;
  max-width: 480px;
}

/* ── 2. MAIN GRID ─────────────────────────────────────────── */
.te-con-main { background: var(--te-bg); }

.te-con-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* ── Form card ────────────────────────────────────────────── */
.te-con-form-card {
  background: var(--te-surface);
  border: 1px solid var(--te-border);
  border-radius: var(--r-xl);
  padding: 44px 40px;
}

.te-con-form-heading {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  letter-spacing: -.015em;
  margin-bottom: 6px;
}
.te-con-form-subtext { font-size: 14px; color: var(--te-muted); margin-bottom: 32px; line-height: 1.65; }

.te-con-errors {
  background: rgba(220,38,38,.08);
  border: 1px solid rgba(220,38,38,.25);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin-bottom: 24px;
}
.te-con-errors p { font-size: 13px; color: #dc2626; margin: 0; line-height: 1.6; }

.te-con-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.te-con-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.te-con-field:last-child { margin-bottom: 0; }

.te-con-label {
  font-size: 13px; font-weight: 600;
  color: var(--te-text); letter-spacing: -.005em;
}
.te-con-label span { color: var(--te-trek); }

.te-con-input {
  width: 100%;
  background: var(--te-bg);
  border: 1px solid var(--te-border);
  border-radius: var(--r-md);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--te-text);
  line-height: 1.5;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
  box-sizing: border-box;
}
.te-con-input::placeholder { color: var(--te-light); }
.te-con-input:focus {
  border-color: var(--te-trek);
  box-shadow: 0 0 0 3px rgba(232,64,27,.12);
}
.te-con-textarea { resize: vertical; min-height: 140px; font-family: inherit; }
.te-con-submit { width: 100%; justify-content: center; margin-top: 8px; gap: 10px; }

.te-con-success { text-align: center; padding: 32px 0 16px; }
.te-con-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(76,175,80,.12); color: var(--te-green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.te-con-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.te-con-success p  { color: var(--te-muted); font-size: 15px; margin-bottom: 28px; }

/* ── Info cards ───────────────────────────────────────────── */
.te-con-info-cards { display: flex; flex-direction: column; gap: 12px; }

.te-con-info-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--te-surface);
  border: 1px solid var(--te-border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  text-decoration: none; color: inherit;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
a.te-con-info-card:hover {
  border-color: var(--te-trek);
  box-shadow: 0 4px 20px rgba(232,64,27,.1);
  transform: translateX(4px);
}

.te-con-info-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.te-con-info-icon--email    { background: rgba(232,64,27,.1);  color: var(--te-trek); }
.te-con-info-icon--phone    { background: rgba(240,146,42,.1); color: var(--te-hotel); }
.te-con-info-icon--location { background: rgba(76,175,80,.1);  color: var(--te-green); }
.te-con-info-icon--hours    { background: rgba(124,110,248,.1);color: #7c6ef8; }

.te-con-info-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.te-con-info-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--te-muted);
}
.te-con-info-value {
  font-size: 14px; font-weight: 600; color: var(--te-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.te-con-info-arrow { color: var(--te-light); flex-shrink: 0; transition: transform var(--dur) var(--ease); }
a.te-con-info-card:hover .te-con-info-arrow { transform: translateX(4px); color: var(--te-trek); }

.te-con-response-badge {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; padding: 14px 18px;
  background: var(--te-surface); border: 1px solid var(--te-border);
  border-radius: var(--r-md); font-size: 13px; color: var(--te-muted); font-weight: 500;
}
.te-con-response-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--te-green); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(76,175,80,.2);
  animation: te-con-pulse 2.4s ease-in-out infinite;
}
@keyframes te-con-pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(76,175,80,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(76,175,80,.08); }
}

/* ── 3. FAQ ───────────────────────────────────────────────── */
.te-con-faq-section { background: var(--te-surface); }
.te-con-faq-container { max-width: 760px; }

.te-con-faq-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--te-border); border-radius: var(--r-lg); overflow: hidden;
}
.te-con-faq-item { border-bottom: 1px solid var(--te-border); }
.te-con-faq-item:last-child { border-bottom: none; }

.te-con-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer;
  text-align: left; font-size: 15px; font-weight: 600; color: var(--te-text);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.te-con-faq-q:hover { background: var(--te-bg); }
.te-con-faq-item--open .te-con-faq-q { color: var(--te-trek); background: var(--te-bg); }

.te-con-faq-chevron {
  flex-shrink: 0; color: var(--te-light);
  transition: transform 280ms var(--ease), color var(--dur) var(--ease);
}
.te-con-faq-item--open .te-con-faq-chevron { transform: rotate(180deg); color: var(--te-trek); }

.te-con-faq-a { padding: 0 24px 20px; background: var(--te-bg); }
.te-con-faq-a p {
  font-size: 14px; color: var(--te-muted); line-height: 1.82; margin: 0;
  border-top: 1px solid var(--te-border); padding-top: 16px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .te-con-grid { grid-template-columns: 1fr; }
  .te-con-info-cards { display: grid; grid-template-columns: 1fr 1fr; }
  .te-con-response-badge { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .te-con-form-card { padding: 28px 20px; }
  .te-con-form-row  { grid-template-columns: 1fr; }
  .te-con-info-cards { grid-template-columns: 1fr; }
  .te-con-hero { min-height: 280px; padding: 90px 0 52px; }
}
