/* Royal Routes — About page enhancements (Gotur-compatible) */

@media (min-width: 992px) {
  .about-one--rr-compact > .container > .row.align-items-stretch,
  .about-one--rr-compact > .container > .row.gutter-y-40 {
    align-items: center;
  }
}

/* ---------- About hero: thumb spacing + flight-path decor ---------- */
.about-one--rr-compact .about-one__thumb {
  padding-left: 24px;
  padding-right: 82px;
}

@media (max-width: 1199px) {
  .about-one--rr-compact .about-one__thumb {
    padding-left: 20px;
    padding-right: 64px;
  }
}

@media (max-width: 767px) {
  .about-one--rr-compact .about-one__thumb {
    padding-left: 16px;
    padding-right: 52px;
  }
}

/* Pull vertical accent bar slightly inward so it visually meets the photo cluster */
.about-one--rr-compact .about-one__thumb::after {
  left: 4px;
  bottom: 10%;
}

/* Pin → dashed arc → plane, tucked beside the main photo */
.rr-about-thumb-flightpath {
  position: absolute;
  z-index: 4;
  top: 14%;
  bottom: 22%;
  left: 8px;
  width: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  pointer-events: none;
  color: var(--gotur-base, #63AB45);
}

@media (min-width: 992px) {
  .about-one--rr-compact .rr-about-thumb-flightpath {
    left: 18px;
    transform: translateX(10px);
  }
}

@media (max-width: 575px) {
  .rr-about-thumb-flightpath {
    transform: scale(0.9);
    transform-origin: top left;
    left: 4px;
    width: 36px;
  }
}

.rr-about-thumb-flightpath__pin {
  font-size: 16px;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.08));
}

.rr-about-thumb-flightpath__svg {
  flex: 1 1 auto;
  width: 100%;
  min-height: 64px;
  margin: 2px 0;
}

.rr-about-thumb-flightpath__plane {
  font-size: 15px;
  line-height: 1;
  transform: rotate(52deg);
  margin-left: 6px;
  margin-top: -2px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
}

/* ---------- Right column: typography rhythm ---------- */
.about-one--rr-compact .about-one__right > .sec-title {
  margin-bottom: 14px;
}

.about-one--rr-compact .about-one__top__text {
  margin-bottom: 18px;
}

.about-one--rr-compact .about-one__feature {
  margin-top: 0;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.about-one--rr-compact .about-one__feature-text {
  margin-bottom: 0;
}

/* Landscape strip + CTAs: tucked under feature columns, nudged up / left on desktop */
.about-one__right-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.about-one--rr-compact .about-one__button {
  margin-top: 0;
}

.rr-about-one-strip {
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(18, 58, 115, 0.08);
  box-shadow: 0 10px 28px rgba(15, 31, 58, 0.08);
  width: 100%;
  max-width: min(100%, 520px);
  align-self: flex-start;
}

@media (min-width: 992px) {
  .about-one--rr-compact .rr-about-one-strip {
    transform: translate(-16px, -10px);
    max-width: 498px;
  }
}

@media (max-width: 991px) {
  .about-one--rr-compact .rr-about-one-strip {
    transform: none;
    max-width: 100%;
  }
}

.rr-about-one-strip img {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .rr-about-one-strip img {
    height: 96px;
  }
}

.rr-about-split {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%);
}

.rr-about-split__figure {
  margin: 0;
  text-align: center;
}

.rr-about-split__figure img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(18, 58, 115, 0.12));
}

.rr-about-split__accent {
  color: var(--gotur-primary, #f4b400);
  font-weight: 700;
}

.rr-about-promise {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.rr-about-promise__inner {
  max-width: 820px;
  margin: 0 auto;
}

.rr-about-promise__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(18, 58, 115, 0.88);
  margin: 0;
}

.rr-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 1.75rem;
}

@media (max-width: 575px) {
  .rr-feature-grid {
    grid-template-columns: 1fr;
  }
}

.rr-feature-pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(18, 58, 115, 0.08);
  box-shadow: 0 8px 28px rgba(15, 31, 58, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rr-feature-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 180, 0, 0.35);
  box-shadow: 0 14px 36px rgba(15, 31, 58, 0.1);
}

.rr-feature-pill__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 58, 115, 0.08);
  color: var(--gotur-base, #123a73);
  font-size: 18px;
}

.rr-feature-pill:hover .rr-feature-pill__icon {
  background: var(--gotur-base, #123a73);
  color: #fff;
}

.rr-feature-pill__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--gotur-black, #051d49);
}

.rr-why {
  background: #f3f6fb;
}

.rr-why-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(18, 58, 115, 0.06);
  box-shadow: 0 12px 40px rgba(15, 31, 58, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rr-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 31, 58, 0.12);
}

.rr-why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gotur-base, #123a73), #1a4d8f);
  color: #fff;
  font-size: 22px;
}

.rr-why-card__title {
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--gotur-black, #051d49);
}

.rr-why-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #5a6578;
}

.rr-contact-panel {
  background-color: #f3f6fb;
  position: relative;
  overflow: hidden;
}

.rr-contact-panel__heading .sec-title__tagline {
  color: #5a6578;
}

.rr-contact-panel__heading .sec-title__title {
  color: var(--gotur-black, #051d49);
}

.rr-contact-panel .container {
  position: relative;
  z-index: 1;
}

#rr-about-page .rr-about-contact-top .contact-top__item {
  height: 100%;
}

#rr-about-page .rr-about-contact-top .contact-top__item__title a {
  color: inherit;
}

.rr-contact-card {
  height: 100%;
  padding: 26px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(18, 58, 115, 0.08);
  box-shadow: 0 8px 28px rgba(15, 31, 58, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.rr-contact-card:hover {
  border-color: rgba(244, 180, 0, 0.35);
  box-shadow: 0 14px 36px rgba(15, 31, 58, 0.1);
  transform: translateY(-2px);
}

.rr-contact-card__label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a6578;
  margin-bottom: 10px;
}

.rr-contact-card__title {
  margin: 0 0 14px;
  font-size: 22px;
  color: var(--gotur-black, #051d49);
}

.rr-contact-card__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #4a5568;
}

.rr-contact-card__body a {
  color: var(--gotur-base, #123a73);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 180, 0, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.rr-contact-card__body a:hover {
  color: var(--gotur-primary, #f4b400);
  border-color: var(--gotur-primary, #f4b400);
}

.rr-contact-card__icon {
  font-size: 22px;
  color: var(--gotur-base, #123a73);
  margin-bottom: 12px;
}

.rr-contact-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 767px) {
  .rr-contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rr-contact-actions .gotur-btn {
    justify-content: center;
  }
}
