/* ============================================
   Main Stylesheet - Total Transfer Homepage
   Order matters: variables → base → components
   ============================================ */


/* ── Buttons ──────────────────────────────── */
.ot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--wdtFontTypo_Alt) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.02em !important;
  transition: all var(--transition-base) !important;
  border: 2px solid transparent !important;
  white-space: nowrap !important;
  cursor: pointer !important ;
  text-decoration: none !important;
}

.ot-btn--primary {
  background: var(--wdtPrimaryColor) !important;
  color: #fff !important;
  border-color: var(--wdtPrimaryColor) !important;
}
.ot-btn--primary:hover {
  background: #3a56e8 !important;
  border-color: #3a56e8 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(var(--wdtPrimaryColorRgb), 0.35) !important;
}

.ot-btn--outline {
  background: transparent !important;
  color: #fff !important;
  border-color: var(--wdtBorderColor) !important;
}
.ot-btn--outline:hover {
  background: var(--wdtPrimaryColor) !important;
  border-color: var(--wdtPrimaryColor) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

.submit-area p {
    margin: 0;
}

/* Submit area container */
.submit-area p {
    position: relative;
    margin: 0;
    width: 100%;
}


/* Spinner container */
span.wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    margin: 0;
    background-color: var(--wdtPrimaryColor) !important;
    opacity: 1;
    border-radius : var(--radius-full) !important;
}


/* Spinner dots animation */
.wpcf7-spinner::before {
    content: '';
    /*display: block;*/
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    transform-origin: 0px 0px;
}

/* Optional second dot for smoother effect */
.wpcf7-spinner::after {
    content: '';
    display: block;
    width: 21px;
    height: 21px;
    background-color: #fff;
    opacity: 0.6;
    border-radius: 50%;
    margin-left: 6px;
}

/*@keyframes spin {*/
/*    0% {*/
/*        transform: rotate(0deg) translate(-50%, -50%);*/
/*    }*/
    
/*    100% {*/
/*        transform: rotate(360deg) translate(-50%, -50%);*/
/*    }*/
/*}*/

/* Form note below button */
.submit-area .ot-form-note {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
    display: block;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .submit-area input.wpcf7-submit {
        font-size: 14px;
        padding: 10px 16px;
    }
}

.ot-btn--ghost {
  background: transparent;
  color: var(--wdtPrimaryColor);
  border-color: transparent;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.ot-btn--ghost:hover {
  color: #3a56e8;
  transform: translateX(4px);
}

.ot-btn--white {
  background: #fff;
  color: var(--wdtPrimaryColor);
  border-color: #fff;
}
.ot-btn--white:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.ot-btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.ot-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Logo ─────────────────────────────────── */
.ot-logo { text-decoration: none; }
.ot-logo__text {
  font-family: var(--wdtFontTypo_Alt);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--wdtBodyTxtColor);
  letter-spacing: -0.02em;
}
.ot-logo__accent { color: var(--wdtPrimaryColor); }

/* ── Header & Nav ─────────────────────────── */
.ot-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--wdtBorderColor), 0.6);
  box-shadow: var(--shadow-sm);
}

.ot-nav {
  height: var(--header-height);
  gap: 2rem;
}

.ot-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ot-nav__links a {
  font-family: var(--wdtFontTypo_Alt);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--wdtBodyTxtColor);
  position: relative;
}
.ot-nav__links a:not(.ot-btn)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--wdtPrimaryColor);
  border-radius: 2px;
  transition: width var(--transition-base);
}
.ot-nav__links a:not(.ot-btn):hover::after,
.ot-nav__links a.active::after {
  width: 100%;
}
.ot-nav__links a.active { color: var(--wdtPrimaryColor); }

/* Mobile toggle */
.ot-nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.ot-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wdtBodyTxtColor);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}
.ot-nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ot-nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ot-nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991.98px) {
  .ot-nav__links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid var(--wdtBorderColor);
    transform: translateY(-110%);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-lg);
  }
  .ot-nav__links.is-open { transform: translateY(0); }
  .ot-nav__links li { width: 100%; padding: 0.6rem 0; border-bottom: 1px solid var(--wdtTertiaryColor); }
  .ot-nav__links li:last-child { border-bottom: none; padding-top: 1.25rem; }
  .ot-nav__links a { display: block; width: 100%; }
  .ot-nav__links .ot-btn { width: 100%; text-align: center; justify-content: center; }
}

/* ── Hero ─────────────────────────────────── */
.ot-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #050b20 0%, #0d1b4b 50%, #1a2f6b 100%);
  padding-top: var(--header-height);
}

.ot-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(var(--wdtPrimaryColorRgb), 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(var(--wdtPrimaryColorRgb), 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated floating particles */
.ot-hero__particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(var(--wdtPrimaryColorRgb), 0.15);
  animation: particleFloat 12s ease-in-out infinite;
}
.particle--1 { width: 300px; height: 300px; top: -80px; right: -60px; animation-delay: 0s; animation-duration: 14s; }
.particle--2 { width: 180px; height: 180px; bottom: 10%; left: 5%; animation-delay: -4s; animation-duration: 10s; background: rgba(var(--wdtPrimaryColorRgb), 0.1); }
.particle--3 { width: 80px; height: 80px; top: 30%; right: 20%; animation-delay: -7s; animation-duration: 8s; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.05); opacity: 1; }
}

.ot-hero .container { position: relative; z-index: 2; }

.ot-hero__content {
  max-width: 760px;
  padding: 5rem 0 4rem;
}

.ot-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.ot-hero__title-accent {
  color: var(--wdtPrimaryColor);
}

.ot-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.7;
}

.ot-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.ot-hero__scroll-hint {
  display: flex;
  align-items: center;
}
.ot-hero__scroll-hint a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  animation: scrollBounce 2.5s ease-in-out infinite;
  transition: all var(--transition-base);
}
.ot-hero__scroll-hint a:hover {
  border-color: var(--wdtPrimaryColor);
  color: var(--wdtPrimaryColor);
  background: rgba(var(--wdtPrimaryColorRgb), 0.1);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Breadcrumb ───────────────────────────── */
.ot-breadcrumb {
  background: var(--wdtTertiaryColor);
  border-bottom: 1px solid var(--wdtBorderColor);
  padding: 0.75rem 0;
}
.ot-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.ot-breadcrumb__list li { display: flex; align-items: center; }
.ot-breadcrumb__list i { font-size: 0.6rem; color: var(--wdtBorderColor); }
.ot-breadcrumb__list a { color: var(--wdtBodyTxtColor); font-weight: 500; }
.ot-breadcrumb__list a:hover { color: var(--wdtPrimaryColor); }
.ot-breadcrumb__list .active { color: var(--wdtPrimaryColor); font-weight: 600; }

/* ── Intro / Stats Strip ──────────────────── */
.ot-intro {
  padding: 3.5rem 0;
  background: #fff;
  border-bottom: 1px solid var(--wdtBorderColor);
}

.ot-stat {
  text-align: center;
  padding: 2rem 1rem;
  transition: transform var(--transition-base);
  background: #f5f7fb;
border-radius: 12px;
}
.ot-stat:hover { transform: translateY(-4px); }
.ot-stat__icon {
  font-size: 1.75rem;
  color: var(--wdtPrimaryColor);
  margin-bottom: 0.5rem;
  display: block;
}
.ot-stat__value {
  font-family: var(--wdtFontTypo_Alt);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--wdtHeadAltColor);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.ot-stat__value span {
  font-size: 1rem;
  font-weight: 500;
  color: #777;
}
.ot-stat__label {
  font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--wdtHeadAltColor);
    font-family: var(--wdtFontTypo_Alt);
}
.ot-stat p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #777;
    margin: 0;
}

/* ── Section Label ────────────────────────── */
.ot-section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.ot-section-label--center {
  justify-content: center;
}
.ot-section-label__line {
  flex: 1;
  max-width: 48px;
  height: 2px;
  background: var(--wdtPrimaryColor);
  border-radius: 2px;
  display: block;
}
.ot-section-label__text {
  font-family: var(--wdtFontTypo_Ext, var(--wdtFontTypo_Alt));
  font-size: 1rem;
  color: var(--wdtPrimaryColor);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.ot-section-label--light .ot-section-label__line { background: rgba(255, 255, 255, 0.5); }
.ot-section-label--light .ot-section-label__text { color: rgba(255, 255, 255, 0.85); }

/* ── Section Header ───────────────────────── */
.ot-section-header { max-width: 720px; margin-left: auto; margin-right: auto; }
.ot-service__heading {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.ot-service__subheading {
  color: #555;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* ── Tag / Badge ──────────────────────────── */
.ot-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(var(--wdtPrimaryColorRgb), 0.1);
  color: var(--wdtPrimaryColor);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  font-family: var(--wdtFontTypo_Alt);
      width: fit-content;
}
.ot-tag--dark {
  background: rgba(5, 11, 32, 0.08);
  color: var(--wdtBodyTxtColor);
}

/* ── Feature Card ─────────────────────────── */
.ot-feature-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--wdtBorderColor);
  transition: box-shadow var(--transition-slow);
}
.ot-feature-card:hover { box-shadow: var(--shadow-xl); }

.ot-feature-card__image-wrap {
  height: 100%;
  min-height: 380px;
}

.ot-feature-card__image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Cruise background – rich ocean/ship visual via CSS gradient + SVG overlay */
.ot-feature-card__image--cruise {
  background:
    linear-gradient(
      160deg,
      #0b3d91 0%,
      #1565c0 30%,
      #0d7377 60%,
      #14a085 100%
    );
}
.ot-feature-card__image--cruise::before {
  content: '\f21a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

/* Hourly travel background */
.ot-feature-card__image--hourly {
  background:
    linear-gradient(
      160deg,
      #1a1a2e 0%,
      #050b20 40%,
      #162447 100%
    );
}
.ot-feature-card__image--hourly::before {
  content: '\f1b9';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
}

.ot-feature-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.ot-feature-card__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: var(--wdtPrimaryColor);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--wdtFontTypo_Alt);
  z-index: 2;
}
.ot-feature-card__badge--dark {
  background: rgba(5, 11, 32, 0.85);
  backdrop-filter: blur(6px);
}

.ot-feature-card__floating-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.85rem;
  z-index: 2;
}
.ot-feature-card__floating-info > i {
  font-size: 1.5rem;
  color: var(--wdtPrimaryColor);
  flex-shrink: 0;
}
.ot-feature-card__floating-info--right {
  left: auto;
  right: 1.5rem;
}

.ot-feature-card__body {
  padding: clamp(1.75rem, 3vw, 3rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ot-feature-card__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.ot-feature-card__title em {
  font-style: normal;
  color: var(--wdtPrimaryColor);
}

.ot-feature-card__text {
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-size: 0.97rem;
}

.ot-feature-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

/* ── Feature List ─────────────────────────── */
.ot-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-left: 0;
    margin-left: 0;
}
.ot-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--wdtBodyTxtColor);
}
.ot-feature-list__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(var(--wdtPrimaryColorRgb), 0.1);
  color: var(--wdtPrimaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Pricing Teaser ───────────────────────── */
.ot-pricing-teaser {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 1.75rem;
  padding: 1rem 1.5rem;
  background: var(--wdtTertiaryColor);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--wdtPrimaryColor);
}
.ot-pricing-teaser__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.ot-pricing-teaser__price {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wdtHeadAltColor);
  line-height: 1;
}
.ot-pricing-teaser__price span {
  font-size: 1rem;
  font-weight: 500;
  color: #777;
}

/* ── Mini Cards ───────────────────────────── */
.ot-mini-card {
  background: #fff;
  border: 1px solid var(--wdtBorderColor);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.ot-mini-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--wdtPrimaryColor);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.ot-mini-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-6px);
}
.ot-mini-card:hover::before { transform: scaleX(1); }

.ot-mini-card--featured {
  background: var(--wdtPrimaryColor);
  border-color: var(--wdtPrimaryColor);
  color: #fff;
}
.ot-mini-card--featured::before { background: rgba(255, 255, 255, 0.4); }
.ot-mini-card--featured .ot-mini-card__title,
.ot-mini-card--featured .ot-mini-card__text { color: rgba(255, 255, 255, 0.95); }
.ot-mini-card--featured .ot-mini-card__link { color: rgba(255, 255, 255, 0.9); }
.ot-mini-card--featured .ot-mini-card__link:hover { color: #fff; }

.ot-mini-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.ot-mini-card__icon-wrap--blue {
  background: rgba(var(--wdtPrimaryColorRgb), 0.1);
  color: var(--wdtPrimaryColor);
}
.ot-mini-card__icon-wrap--white {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.ot-mini-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--wdtHeadAltColor);
}
.ot-mini-card__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.ot-mini-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wdtPrimaryColor);
  font-family: var(--wdtFontTypo_Alt);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
}
.ot-mini-card__link:hover { gap: 0.5rem; color: #3a56e8; }

/* ── Divider ──────────────────────────────── */
.ot-divider { padding: 0; }
.ot-divider__inner {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wdtBorderColor) 30%, var(--wdtPrimaryColor) 50%, var(--wdtBorderColor) 70%, transparent);
  margin: 0 var(--section-padding-x);
}

/* ── How It Works ─────────────────────────── */
.section.ot-how { background: #f5f7fb !important; }

.ot-step {
  background: #fff;
  border: 1px solid var(--wdtBorderColor);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all var(--transition-base);
}
.ot-step:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-6px);
}

.ot-step--featured {
  background: var(--wdtPrimaryColor);
  border-color: var(--wdtPrimaryColor);
}
.ot-step--featured .ot-step__number,
.ot-step--featured .ot-step__title,
.ot-step--featured .ot-step__text { color: rgba(255, 255, 255, 0.95); }
.ot-step--featured .ot-step__icon-wrap { background: rgba(255, 255, 255, 0.2); color: #fff; }
.ot-step--featured:hover { background: #3a56e8; }

.ot-step__number {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(var(--wdtPrimaryColorRgb), 0.1);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.ot-step__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: rgba(var(--wdtPrimaryColorRgb), 0.1);
  color: var(--wdtPrimaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
}
.ot-step__title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.ot-step__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}
.ot-step--featured .ot-step__text { color: rgba(255, 255, 255, 0.8); }

/* ── Testimonials ─────────────────────────── */
.ot-testimonials { background: var(--wdtTertiaryColor); }

.ot-testimonial {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--wdtBorderColor);
  transition: all var(--transition-base);
}
.ot-testimonial:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}
.ot-testimonial--featured {
  background: var(--wdtPrimaryColor);
  border-color: var(--wdtPrimaryColor);
}
.ot-testimonial--featured .ot-testimonial__quote,
.ot-testimonial--featured .ot-testimonial__name { color: #fff; }
.ot-testimonial--featured .ot-testimonial__role { color: rgba(255, 255, 255, 0.75); }
.ot-testimonial--featured .ot-testimonial__stars { color: #ffd54f; }

.ot-testimonial__stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}
.ot-testimonial__quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.ot-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ot-testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wdtPrimaryColor);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ot-testimonial__avatar--light {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.ot-testimonial__name {
  font-family: var(--wdtFontTypo_Alt);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--wdtHeadAltColor);
  margin-bottom: 0.1rem;
}
.ot-testimonial__role {
  font-size: 0.8rem;
  color: #888;
}

/* ── CTA Section ──────────────────────────── */
.ot-cta {
  position: relative;
  background: linear-gradient(135deg, #050b20 0%, #0d1b4b 50%, #1a2f6b 100%);
  padding: var(--section-padding-y) 0;
  overflow: hidden;
}
.ot-cta__bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(var(--wdtPrimaryColorRgb), 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ot-cta .container { position: relative; z-index: 2; }
.ot-cta__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.ot-cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #fff;
  margin-bottom: 1rem;
}
.ot-cta__text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.ot-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── Footer ───────────────────────────────── */
.ot-footer {
  background: var(--wdtBodyTxtColor);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 0;
}
.ot-footer .ot-logo__text { color: #fff; }
.ot-footer__desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}
.ot-footer__socials {
  display: flex;
  gap: 0.75rem;
}
.ot-footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition-base);
}
.ot-footer__socials a:hover {
  background: var(--wdtPrimaryColor);
  border-color: var(--wdtPrimaryColor);
  color: #fff;
  transform: translateY(-2px);
}

.ot-footer__heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  font-family: var(--wdtFontTypo_Alt);
  font-weight: 600;
}
.ot-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ot-footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-base);
}
.ot-footer__links a:hover {
  color: var(--wdtPrimaryColor);
  padding-left: 4px;
}

.ot-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ot-footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}
.ot-footer__contact i {
  color: var(--wdtPrimaryColor);
  font-size: 0.95rem;
  width: 18px;
  flex-shrink: 0;
}
.ot-footer__contact a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-base);
}
.ot-footer__contact a:hover { color: var(--wdtPrimaryColor); }

.ot-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  margin-top: 3.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
.ot-footer__bottom ul {
  display: flex;
  gap: 1.5rem;
}
.ot-footer__bottom a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}
.ot-footer__bottom a:hover { color: var(--wdtPrimaryColor); }


/* ── Mini Card button fix ─────────────────── */
.ot-mini-card__link {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}

/* ── Booking Modal ────────────────────────── */
.ot-modal .modal-dialog { max-width: 720px; }

.ot-modal__content {
  border: none;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.ot-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 2rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--wdtBorderColor);
  position: relative;
}

.ot-modal__header-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  background: rgba(var(--wdtPrimaryColorRgb), 0.1);
  color: var(--wdtPrimaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ot-modal__header-icon--dark {
  background: rgba(5, 11, 32, 0.08);
  color: var(--wdtBodyTxtColor);
}

.ot-modal__title {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wdtHeadAltColor);
  margin-bottom: 0.2rem;
}
.ot-modal__subtitle {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

.ot-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wdtTertiaryColor);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}
.ot-modal__close:hover {
  background: #e0e0e0;
  color: var(--wdtBodyTxtColor);
}

.ot-modal__body {
  padding: 1.75rem 2rem 2rem;
  background: #fff;
  max-height: 75vh;
  overflow-y: auto;
}
.ot-modal__body::-webkit-scrollbar { width: 6px; }
.ot-modal__body::-webkit-scrollbar-track { background: var(--wdtTertiaryColor); }
.ot-modal__body::-webkit-scrollbar-thumb { background: var(--wdtBorderColor); border-radius: 3px; }

/* ── Booking Form ─────────────────────────── */
.ot-booking-form { width: 100%; }

.ot-form-group p { display: flex; flex-direction: column; gap: 0.35rem; margin: 0; }

.ot-form-label {
  font-family: var(--wdtFontTypo_Alt);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wdtBodyTxtColor);
  display: flex;
  align-items: center;
}
.ot-form-label i { color: var(--wdtPrimaryColor); }
.ot-required { color: #e53935; margin-left: 2px; }

.ot-form-control {
  width: 100%;
    padding: 0.65rem 1rem !important;
    font-family: var(--wdtFontTypo_Base);
    font-size: 0.9rem;
    color: var(--wdtBodyTxtColor) !important;
    background: #fff;
    border: 1.5px solid var(--wdtBorderColor) !important;
    border-radius: var(--radius-md) !important;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none !important;
    -webkit-appearance: none;
}
.ot-form-control::placeholder { color: #aaa; }
.ot-form-control:focus {
  border-color: var(--wdtPrimaryColor);
  box-shadow: 0 0 0 3px rgba(var(--wdtPrimaryColorRgb), 0.12);
}
textarea.ot-form-control { resize: vertical; min-height: 80px; }

.ot-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px;
  padding-right: 2.25rem;
  cursor: pointer;
}

/* Error state */
.ot-has-error .ot-form-control {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}
.ot-form-error {
  font-size: 0.78rem;
  color: #e53935;
  display: none;
  font-weight: 500;
}
.ot-has-error .ot-form-error { display: block; }

/* Submit button */
.ot-btn-submit { position: relative; }
.ot-btn-submit:disabled { opacity: 0.75; cursor: not-allowed; transform: none !important; }

/* Form note */
.ot-form-note {
  font-size: 0.78rem;
  color: #999;
  text-align: center;
  margin-bottom: 0;
}
.ot-form-note i { color: var(--wdtPrimaryColor); }

/* ── Success Message ──────────────────────── */
.ot-form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.ot-form-success__icon {
  font-size: 4rem;
  color: #22c55e;
  margin-bottom: 1rem;
  animation: successPop 0.4s ease;
}
@keyframes successPop {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}
.ot-form-success h5 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--wdtHeadAltColor);
}
.ot-form-success p {
  color: #666;
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Scroll Animations ────────────────────── */
.ot-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ot-animate--in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for sibling cards */
.col-md-4:nth-child(1) .ot-animate,
.col-md-4:nth-child(1) .ot-mini-card,
.col-md-4:nth-child(1) .ot-step,
.col-md-4:nth-child(1) .ot-testimonial { transition-delay: 0s; }

.col-md-4:nth-child(2) .ot-animate,
.col-md-4:nth-child(2) .ot-mini-card,
.col-md-4:nth-child(2) .ot-step,
.col-md-4:nth-child(2) .ot-testimonial { transition-delay: 0.12s; }

.col-md-4:nth-child(3) .ot-animate,
.col-md-4:nth-child(3) .ot-mini-card,
.col-md-4:nth-child(3) .ot-step,
.col-md-4:nth-child(3) .ot-testimonial { transition-delay: 0.24s; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 991.98px) {
  .ot-feature-card__image-wrap { min-height: 300px; }
  .ot-feature-card__image { min-height: 300px; }
  .ot-feature-card__body { padding: 2rem; }
}

@media (max-width: 767.98px) {
  .ot-hero__content { padding: 3.5rem 0 3rem; }
  .ot-hero__actions { flex-direction: column; align-items: flex-start; }
  .ot-hero__actions .ot-btn { width: 100%; max-width: 280px; justify-content: center; }
  .ot-cta__actions .ot-btn { width: 100%; max-width: 280px; }
  .ot-cta__actions { flex-direction: column; align-items: center; }
  .ot-feature-card__image-wrap { min-height: 260px; }
  .ot-feature-card__image { min-height: 260px; }
  .ot-footer__bottom { flex-direction: column; text-align: center; }
  .ot-footer__bottom ul { justify-content: center; }
}

@media (max-width: 479.98px) {
  .ot-nav__links .ot-btn { max-width: 100%; }
  .ot-feature-card__floating-info { display: none; }
}

/* ── Override Bootstrap defaults ──────────── */
.container {
  max-width: var(--container-max);
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}
