
body.true-travel .true-page--corporate .true-corp-hero__title,
body.true-travel .true-page--corporate .true-corp-capability__title,
body.true-travel .true-page--corporate .true-corp-cta__title {
	color: #ffffff;
}

body.true-travel .true-page--corporate .true-corp-hero__subtitle,
body.true-travel .true-page--corporate .true-corp-capability__text,
body.true-travel .true-page--corporate .true-corp-cta__subtitle {
	color: rgba(255, 255, 255, 0.85);
}

body.true-travel .true-page--corporate .true-corp-section-heading,
body.true-travel .true-page--corporate .true-corp-editorial__heading,
body.true-travel .true-page--corporate .true-corp-card__title,
body.true-travel .true-page--corporate .true-corp-services__title,
body.true-travel .true-page--corporate .true-corp-service__title,
body.true-travel .true-page--corporate .true-corp-promise__quote {
	color: #1e4d3a;
}

.true-page--corporate {
  background: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  color: #1a1a1a;
  margin-top: calc(-1 * var(--nav-height));
}

/* Reset global heading margins inside corporate page */
.true-page--corporate :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 0;
}

.true-page--corporate p {
  margin-top: 0;
}

/* ── SHARED CONTAINERS ────────────────────────────────────────── */
.true-corp-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

.true-corp-wide {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.true-corp-editorial {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .true-corp-narrow,
  .true-corp-wide,
  .true-corp-editorial {
    padding: 0 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   1. HERO — Full viewport executive statement with decorations
   ═══════════════════════════════════════════════════════════════ */
.true-corp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 100px;
}

@media (max-width: 768px) {
  .true-corp-hero {
    min-height: 90vh;
    padding: 100px 0 80px;
  }
}

/* Background Image */
.true-corp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.true-corp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient Overlay */
.true-corp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(30, 77, 58, 0.72) 0%,
    rgba(22, 58, 43, 0.68) 50%,
    rgba(21, 51, 40, 0.65) 100%
  );
}

/* Hero content */
.true-corp-hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 920px;
  text-align: center;
  padding: 0 24px;
}

.true-corp-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.true-corp-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(191, 148, 104, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(191, 148, 104, 0.3);
  border-radius: 50px;
  color: #BF9468;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.true-corp-hero__title {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 850px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.true-corp-hero__subtitle {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  max-width: 700px;
  font-weight: 400;
}

/* Hero CTAs */
.true-corp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 640px) {
  .true-corp-hero__ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
}

.true-corp-hero__cta--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: linear-gradient(135deg, #BF9468 0%, #d4ab85 100%);
  color: #1E4D3A;
  box-shadow:
    0 4px 20px rgba(191, 148, 104, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.true-corp-hero__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(191, 148, 104, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.true-corp-hero__cta--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.true-corp-hero__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.true-corp-hero__cta--tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.true-corp-hero__cta--tertiary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* Scroll hint */
.true-corp-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.true-corp-scroll-hint__mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.true-corp-scroll-hint__dot {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0%   { opacity: 1; transform: translateY(0); }
  50%  { opacity: 0.3; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

[dir='rtl'] .true-corp-hero__tag { flex-direction: row-reverse; }
[dir='rtl'] .true-corp-hero__cta--primary { flex-direction: row-reverse; }
[dir='rtl'] .true-corp-hero__cta--tertiary { flex-direction: row-reverse; }

/* ═══════════════════════════════════════════════════════════════
   2. OVERVIEW — Pure typography on white
   ═══════════════════════════════════════════════════════════════ */
.true-corp-overview {
  padding: 120px 0 128px;
  background: #ffffff;
  text-align: center;
}

[dir='rtl'] .true-corp-overview {
  text-align: center;
}

.true-corp-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BF9468;
  margin-bottom: 28px;
}

.true-corp-section-heading {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #1E4D3A;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 44px;
}

.true-corp-body-text {
  font-size: 1.375rem;
  color: #444444;
  line-height: 1.9;
  margin-bottom: 32px;
  text-align: left;
}

[dir='rtl'] .true-corp-body-text {
  text-align: right;
}

.true-corp-body-text:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   3. WHY CHOOSE — Deep green background, flowing paragraphs
   ═══════════════════════════════════════════════════════════════ */
.true-corp-why {
  padding: 120px 0 128px;
  background: #1E4D3A;
}

.true-corp-why__tag {
  display: block;
  font-size: 2.5rem !important;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BF9468;
  margin-bottom: 56px;
}

[dir='rtl'] .true-corp-why__tag {
  text-align: right;
}

.true-corp-capability {
  margin-bottom: 56px;
}

.true-corp-capability:last-child {
  margin-bottom: 0;
}

.true-corp-capability__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.25;
}

.true-corp-capability__text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  max-width: 820px;
}

[dir='rtl'] .true-corp-capability__text {
  text-align: right;
}

/* ═══════════════════════════════════════════════════════════════
   4. CORPORATE INTELLIGENCE — Two-column editorial (not grid)
   ═══════════════════════════════════════════════════════════════ */
.true-corp-intelligence {
  padding: 120px 0 128px;
  background: #ffffff;
}

.true-corp-editorial__columns {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

@media (min-width: 900px) {
  .true-corp-editorial__columns {
    flex-direction: row;
    gap: 0;
  }
}

.true-corp-editorial__left {
  flex: 3;
}

@media (min-width: 900px) {
  .true-corp-editorial__left {
    padding-right: 56px;
  }

  [dir='rtl'] .true-corp-editorial__left {
    padding-right: 0;
    padding-left: 56px;
  }
}

.true-corp-editorial__right {
  flex: 2;
}

@media (min-width: 900px) {
  .true-corp-editorial__right {
    padding-left: 56px;
    border-left: 2px solid rgba(191, 148, 104, 0.3);
  }

  [dir='rtl'] .true-corp-editorial__right {
    padding-left: 0;
    padding-right: 56px;
    border-left: none;
    border-right: 2px solid rgba(191, 148, 104, 0.3);
  }
}

.true-corp-editorial__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1E4D3A;
  margin-bottom: 28px;
  line-height: 1.25;
}

.true-corp-editorial__text {
  font-size: 1.25rem;
  color: #444444;
  line-height: 1.85;
  margin-bottom: 28px;
}

.true-corp-editorial__text:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   4.5. ADVANCED SOLUTIONS — Three professional cards
   ═══════════════════════════════════════════════════════════════ */
.true-corp-advanced {
  padding: 120px 0 128px;
  background: #fafaf9;
}

.true-corp-advanced__tag {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BF9468;
  margin-bottom: 64px;
  text-align: left;
}

[dir='rtl'] .true-corp-advanced__tag {
  text-align: right;
}

.true-corp-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .true-corp-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1080px) {
  .true-corp-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.true-corp-card {
  background: #ffffff;
  border: 1px solid rgba(30, 77, 58, 0.12);
  border-radius: 8px;
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .true-corp-card {
    padding: 36px 32px;
  }
}

@media (min-width: 1024px) {
  .true-corp-card {
    padding: 40px 36px;
  }
}

.true-corp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #BF9468, #1E4D3A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

[dir='rtl'] .true-corp-card::before {
  transform-origin: right;
}

.true-corp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(30, 77, 58, 0.15);
  border-color: rgba(191, 148, 104, 0.3);
}

.true-corp-card:hover::before {
  transform: scaleX(1);
}

.true-corp-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E4D3A;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: left;
}

[dir='rtl'] .true-corp-card__title {
  text-align: right;
}

.true-corp-card__intro {
  font-size: 1rem;
  color: #444444;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

[dir='rtl'] .true-corp-card__intro {
  text-align: right;
}

.true-corp-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.true-corp-card__list-item {
  font-size: 0.9375rem;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
  text-align: left;
  break-inside: avoid;
}

[dir='rtl'] .true-corp-card__list-item {
  padding-left: 0;
  padding-right: 24px;
  text-align: right;
}

.true-corp-card__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #BF9468;
  font-weight: 700;
  font-size: 1rem;
}

[dir='rtl'] .true-corp-card__list-item::before {
  left: auto;
  right: 0;
}

.true-corp-card__list-item:last-child {
  margin-bottom: 0;
}

.true-corp-card__footer {
  font-size: 0.875rem;
  color: #666666;
  font-style: italic;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 77, 58, 0.1);
  text-align: left;
}

[dir='rtl'] .true-corp-card__footer {
  text-align: right;
}

/* ═══════════════════════════════════════════════════════════════
   5. SERVICES — Editorial service blocks on warm background
   ═══════════════════════════════════════════════════════════════ */
.true-corp-services {
  padding: 120px 0 128px;
  background: #fafaf9;
}

.true-corp-services__tag {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BF9468;
  margin-bottom: 56px;
}

[dir='rtl'] .true-corp-services__tag {
  text-align: right;
}

.true-corp-services__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #1E4D3A;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 80px;
}

.true-corp-service {
  margin-bottom: 80px;
}

.true-corp-service:last-child {
  margin-bottom: 0;
}

.true-corp-service__title {
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  font-weight: 600;
  color: #1E4D3A;
  margin-bottom: 18px;
  line-height: 1.3;
}

.true-corp-service__text {
  font-size: 1.25rem;
  color: #444444;
  line-height: 1.85;
  margin-bottom: 22px;
  max-width: 860px;
}

.true-corp-service__text:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   6. PROMISE — Centered quote with gold lines
   ═══════════════════════════════════════════════════════════════ */
.true-corp-promise {
  padding: 120px 0 128px;
  background: #ffffff;
}

.true-corp-promise__container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.true-corp-promise__line--top,
.true-corp-promise__line--bottom {
  width: 100%;
  height: 2px;
  background: #BF9468;
}

.true-corp-promise__line--top {
  margin-bottom: 56px;
}

.true-corp-promise__line--bottom {
  margin-top: 56px;
}

.true-corp-promise__tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #BF9468;
  margin-bottom: 36px;
}

.true-corp-promise__quote {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 300;
  font-style: italic;
  color: #1E4D3A;
  line-height: 1.7;
  margin: 0;
  border: none;
  padding: 0;
}

/* ═══════════════════════════════════════════════════════════════
   7. FINAL CTA — Deep green background
   ═══════════════════════════════════════════════════════════════ */
.true-corp-cta {
  padding: 120px 0 128px;
  background: #1E4D3A;
}

.true-corp-cta__container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.true-corp-cta__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.true-corp-cta__subtitle {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 52px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.true-corp-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 560px) {
  .true-corp-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}

.true-corp-cta__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #BF9468;
  color: #1E4D3A;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.true-corp-cta__btn--primary:hover {
  background: #d4ab85;
  transform: translateY(-2px);
}

[dir='rtl'] .true-corp-cta__btn--primary {
  flex-direction: row-reverse;
}

.true-corp-cta__btn--secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: transparent;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.true-corp-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.true-corp-cta__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .true-corp-cta__contacts {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}

.true-corp-cta__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.true-corp-cta__contact-link span {
  direction: ltr;
  unicode-bidi: embed;
}

.true-corp-cta__contact-link:hover {
  color: #BF9468;
}

[dir='rtl'] .true-corp-cta__contact-link {
  flex-direction: row-reverse;
}

body.true-travel .true-page--corporate a.true-corp-hero__cta--primary,
body.true-travel .true-page--corporate a.true-corp-hero__cta--primary:hover,
body.true-travel .true-page--corporate a.true-corp-cta__btn--primary,
body.true-travel .true-page--corporate a.true-corp-cta__btn--primary:hover {
  color: #1e4d3a !important;
  text-decoration: none;
}

body.true-travel .true-page--corporate a.true-corp-hero__cta--secondary,
body.true-travel .true-page--corporate a.true-corp-hero__cta--secondary:hover,
body.true-travel .true-page--corporate a.true-corp-hero__cta--tertiary,
body.true-travel .true-page--corporate a.true-corp-hero__cta--tertiary:hover,
body.true-travel .true-page--corporate a.true-corp-cta__btn--secondary,
body.true-travel .true-page--corporate a.true-corp-cta__btn--secondary:hover,
body.true-travel .true-page--corporate a.true-corp-cta__contact-link,
body.true-travel .true-page--corporate a.true-corp-cta__contact-link:hover {
  color: #ffffff !important;
  text-decoration: none;
}

body.true-travel .true-page--corporate a.true-corp-cta__contact-link:hover {
  color: #bf9468 !important;
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY & PRINT
   ═══════════════════════════════════════════════════════════════ */
.true-corp-scroll-hint:focus-visible,
.true-corp-hero__cta--primary:focus-visible,
.true-corp-hero__cta--primary:focus-visible,
.true-corp-cta__btn--primary:focus-visible,
.true-corp-cta__btn--secondary:focus-visible,
.true-corp-cta__contact-link:focus-visible {
  outline: 2px solid #BF9468;
  outline-offset: 4px;
}

@media print {
  .true-corp-hero {
    min-height: auto;
    padding: 40px 0;
  }
  .true-corp-hero__bg,
  .true-corp-hero__overlay {
    display: none;
  }
  .true-corp-why,
  .true-corp-cta {
    background: #1E4D3A;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}
