/* ═══════════════════════════════════════════════════════════════
   RANDU TOURS — COMPONENT STYLES (components.css)
   Header, preloader, cards, stamps, ticker, arches, timeline,
   fleet cards, tour cards, testimonials, footer
═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   PREMIUM PRELOADER
══════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: var(--z-preloader);
  background: var(--page-bg, #ffffff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease-out, visibility 0.4s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.premium-preloader-inner {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.drive-container {
  display: flex;
  align-items: center;
  gap: 24px;
  position: absolute;
  /* Total 3s duration: drive in, pause, drive out */
  animation: driveBy 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.car-wrapper {
  width: 160px;
  height: auto;
}

.car-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.preloader-brand {
  font-family: 'Inter', 'Outfit', 'Helvetica Neue', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 300; /* Sleek, simple, pro */
  color: var(--text-heading, #0D1B3E);
  letter-spacing: 0.15em;
  white-space: nowrap;
}

@keyframes driveBy {
  0% { transform: translateX(-120vw); }
  35% { transform: translateX(0); } /* brakes and centers */
  65% { transform: translateX(0); } /* stays so user can read */
  100% { transform: translateX(120vw); } /* smoothly exits */
}

/* ══════════════════════════════════════════
   HEADER / NAVBAR
══════════════════════════════════════════ */
@keyframes headerSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  animation: headerSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: background var(--t-base) var(--ease-smooth),
              box-shadow var(--t-base) var(--ease-smooth),
              height var(--t-base) var(--ease-smooth);
}

.site-header.scrolled {
  background: hsla(205,100%,10%,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px hsla(0,0%,0%,0.3);
  height: var(--header-h-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--sp-20);
  max-width: 1400px;
  margin: 0 auto;
  gap: var(--sp-24);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px hsla(0,0%,0%,0.25));
  transition: height var(--t-base);
}

.scrolled .site-logo img {
  height: 40px;
}

.logo-text-block .logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.04em;
}

.logo-text-block .logo-sub {
  display: block;
  font-size: var(--fs-xs);
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.nav-links a {
  display: block;
  padding: 8px 12px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: hsla(0,0%,100%,0.85);
  border-radius: var(--r-sm);
  position: relative;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--orange);
  border-radius: var(--r-pill);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--r-pill);
  transition: all var(--t-base) var(--ease-smooth);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--z-header) - 1);
  background: hsla(205,100%,8%,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: var(--sp-32) 0 var(--sp-64) 0;
  gap: var(--sp-8);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s var(--ease-smooth), opacity 0.5s var(--ease-smooth);
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--white);
  padding: var(--sp-8) var(--sp-32);
  text-align: center;
  transition: color var(--t-fast);
}

.mobile-menu a:hover {
  color: var(--orange);
}

/* ══════════════════════════════════════════
   INFINITE TICKER / MARQUEE
══════════════════════════════════════════ */
.ticker-strip {
  background: var(--orange-gradient);
  overflow: hidden;
  padding: var(--sp-12) 0;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  align-items: center;
  /* Removed gap so math works perfectly for 50% translation */
  animation: tickerScroll 30s linear infinite !important;
  will-change: transform;
}

.ticker-strip:hover .ticker-inner {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-40);
  padding-right: var(--sp-40); /* Spacer for seamless loop */
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.ticker-item .sep {
  font-size: 1rem;
  opacity: 0.7;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   POSTAGE STAMP CARDS
══════════════════════════════════════════ */
.stamp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-32);
}

.stamp-card {
  position: relative;
  padding: var(--sp-40) var(--sp-32);
  text-align: center;
  border-radius: var(--r-md);
  /* Perforated edge via radial-gradient mask */
  -webkit-mask-image: radial-gradient(circle at 50% 0%, transparent 10px, white 10px),
                      radial-gradient(circle at 50% 100%, transparent 10px, white 10px);
  -webkit-mask-size: 24px 100%, 24px 100%;
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-position: 0 top, 0 bottom;
  mask-image: radial-gradient(circle at 50% 0%, transparent 10px, white 10px),
              radial-gradient(circle at 50% 100%, transparent 10px, white 10px);
  mask-size: 24px 100%, 24px 100%;
  mask-repeat: repeat-x;
  mask-position: 0 top, 0 bottom;
  transition: transform var(--t-base) var(--ease-smooth), box-shadow var(--t-base);
}

.stamp-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.stamp-card.orange {
  background: var(--orange-gradient);
  color: var(--white);
  box-shadow: var(--sh-orange);
}

.stamp-card.navy {
  background: var(--teal-gradient);
  color: var(--white);
  box-shadow: var(--sh-teal);
}

.stamp-card.white {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--cream-dark);
}

.stamp-number {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-4xl);
  line-height: 1;
  margin-bottom: var(--sp-12);
}

.stamp-divider {
  width: 40px;
  height: 2px;
  background: currentColor;
  opacity: 0.4;
  border-radius: var(--r-pill);
  margin: var(--sp-12) auto;
}

.stamp-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ══════════════════════════════════════════
   DESTINATION COLLAGE GRID
══════════════════════════════════════════ */
.collage-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: var(--sp-12);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.collage-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.collage-item:nth-child(1) {
  grid-row: 1 / 3;
}

.collage-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.collage-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.collage-item:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
}

.collage-item:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.collage-item .overlay {
  position: absolute;
  inset: 0;
  background: var(--card-gradient);
  transition: background var(--t-slow);
}

.collage-item:hover .overlay {
  background: linear-gradient(180deg, transparent 20%, hsla(205,50%,8%,0.97) 100%);
}

.collage-item .img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slower) var(--ease-smooth);
}

.collage-item:hover .img-inner {
  transform: scale(1.06);
}

.collage-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-24);
  z-index: 2;
}

.collage-city {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-8);
}

.collage-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.collage-tag i {
  font-size: 0.5em;
}

/* ══════════════════════════════════════════
   CIRCULAR JOURNEY CAROUSEL
══════════════════════════════════════════ */
.journey-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}

.journey-cards-track {
  display: flex;
  gap: var(--sp-40);
  overflow: hidden;
  flex: 1;
  padding: var(--sp-24) var(--sp-8);
  justify-content: center;
}

.journey-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-16);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform var(--t-base) var(--ease-smooth);
}

.journey-card:hover {
  transform: translateY(-6px);
}

.journey-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.journey-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}

.journey-card:hover .journey-circle img {
  transform: scale(1.08);
}

/* Dashed colored border via outline + border tricks */
.journey-circle-wrap {
  position: relative;
  width: 156px;
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.journey-circle-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px dashed currentColor;
  animation: dashSpin 12s linear infinite;
}

.journey-circle-wrap.magenta { color: #E91E8C; }
.journey-circle-wrap.green   { color: #4CAF50; }
.journey-circle-wrap.gold    { color: #F5A623; }
.journey-circle-wrap.teal    { color: var(--teal); }
.journey-circle-wrap.blue    { color: #2196F3; }

@keyframes dashSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.journey-card-name {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--text-dark);
  text-align: center;
}

.journey-card-sub {
  font-size: var(--fs-sm);
  color: var(--text-light);
  text-align: center;
  margin-top: -10px;
}

.carousel-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--t-base) var(--ease-smooth);
  background: var(--white);
  box-shadow: var(--sh-sm);
}

.carousel-arrow-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: var(--sh-orange);
  transform: scale(1.08);
}

/* ══════════════════════════════════════════
   TOURS — NAVY SLIDER SECTION
══════════════════════════════════════════ */
.tours-section {
  background: var(--cream);
}

.tours-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 580px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}

.tours-sidebar {
  background: var(--teal-gradient);
  padding: var(--sp-64) var(--sp-48);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Decorative grid pattern on sidebar */
.tours-sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, hsla(191,96%,70%,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.tours-sidebar .sidebar-tag {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-12);
}

.tours-sidebar .sidebar-heading {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-20);
}

.tours-sidebar .sidebar-text {
  font-size: var(--fs-sm);
  color: hsla(0,0%,100%,0.7);
  line-height: 1.7;
  margin-bottom: var(--sp-32);
}

.sidebar-nav-buttons {
  display: flex;
  gap: var(--sp-12);
  margin-top: 2rem;
}

.sidebar-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid hsla(0,0%,100%,0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--t-base) var(--ease-smooth);
}

.sidebar-nav-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: var(--sh-orange);
}

.tours-slides-wrapper {
  overflow: hidden;
  position: relative;
}

.tours-slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s var(--ease-smooth);
}

.tour-slide {
  flex: 0 0 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.tour-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, hsla(205,60%,5%,0.95) 100%);
}

.tour-slide-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-48);
}

.tour-slide-content .badge {
  margin-bottom: var(--sp-16);
}

.tour-slide-title {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--sp-12);
}

.tour-slide-desc {
  font-size: var(--fs-sm);
  color: hsla(0,0%,100%,0.8);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: var(--sp-24);
}

.tour-slide-dots {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-24);
}

.tour-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsla(0,0%,100%,0.4);
  transition: all var(--t-base);
  cursor: pointer;
}

.tour-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: var(--r-pill);
}

/* ══════════════════════════════════════════
   ITINERARY TIMELINE
══════════════════════════════════════════ */
.itinerary-wrapper {
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: var(--sp-48);
  margin-top: var(--sp-32);
  border: 1px solid var(--cream-dark);
  display: none;
  animation: fadeUpIn 0.5s var(--ease-smooth) both;
}

.itinerary-wrapper.open {
  display: block;
}

.itinerary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-40);
}

.itinerary-header h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  color: var(--text-dark);
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 1rem;
  transition: all var(--t-fast);
}

.close-btn:hover {
  background: var(--orange);
  color: var(--white);
}

.timeline {
  position: relative;
  padding-left: var(--sp-48);
}

.timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 16px;
  bottom: 0;
  width: 2px;
  background: var(--cream-dark);
  border-radius: var(--r-pill);
}

.timeline-step {
  position: relative;
  padding-bottom: var(--sp-40);
  animation: fadeUpIn 0.5s var(--ease-smooth) both;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-48) + 8px);
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}

.timeline-day {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  background: var(--orange);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-12);
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--text-dark);
  margin-bottom: var(--sp-8);
}

.timeline-desc {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   ARCH CARDS (EXCURSIONS)
══════════════════════════════════════════ */
.arch-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-24);
}

.arch-card {
  position: relative;
  border-radius: var(--r-arch);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--t-base) var(--ease-smooth);
}

.arch-card:hover {
  transform: translateY(-8px);
}

.arch-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow) var(--ease-smooth);
}

.arch-card:hover .arch-card-img {
  transform: scale(1.06);
}

.arch-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--card-gradient);
}

.arch-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: var(--sp-16) var(--sp-20);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arch-card-label span {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-dark);
}

.arch-card-label i {
  color: var(--orange);
  font-size: 0.85rem;
}

/* ══════════════════════════════════════════
   FLEET CARDS
══════════════════════════════════════════ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-24);
}

.fleet-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--t-base) var(--ease-smooth), box-shadow var(--t-base);
  border: 1px solid var(--cream-dark);
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
}

.fleet-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--teal);
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fleet-card-body {
  padding: var(--sp-24);
}

.fleet-card-name {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--text-dark);
  margin-bottom: var(--sp-8);
}

.fleet-card-capacity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-16);
}

.fleet-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.fleet-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  font-size: var(--fs-sm);
  color: var(--text-mid);
}

.fleet-feature i {
  color: var(--orange);
  width: 16px;
  font-size: 0.8em;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   DARK TESTIMONIALS SECTION
══════════════════════════════════════════ */
.testimonials-section {
  background: var(--charcoal);
  padding: var(--sp-96) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 100px; /* Much larger gap for breathing room */
  align-items: center;
}

.testimonial-intro {
  max-width: 400px;
  margin-left: auto; /* Aligns the block closer to the center */
}

.testimonial-intro .section-heading {
  color: var(--white);
  margin-bottom: var(--sp-32);
}

.trustpilot-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.trust-stars {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  font-size: 1.2rem;
}

.trustpilot-label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--white);
}

.trustpilot-label i {
  color: #00B67A;
}

.trustpilot-count {
  font-size: var(--fs-sm);
  color: hsla(0,0%,100%,0.55);
}

.handdrawn-arrow {
  display: block;
  margin: var(--sp-24) 0 0 var(--sp-32);
}

/* Arch-masked center image */
.testimonial-center {
  display: flex;
  justify-content: center;
}

.testimonial-arch-img {
  width: 280px;
  height: 520px;
  border-radius: 140px 140px 20px 20px;
  overflow: hidden;
  box-shadow: var(--sh-xl);
}

.testimonial-arch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-slide-block {
  max-width: 440px;
  margin-right: auto;
}

.testimonial-slide-block .star-row {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  margin-bottom: var(--sp-16);
}

.testimonial-slide-block h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--white);
  margin-bottom: var(--sp-12);
}

.testimonial-slide-block p {
  font-size: 1.05rem;
  color: hsla(0,0%,100%,0.85);
  line-height: 1.8;
  margin-bottom: var(--sp-24);
}

.testimonial-author-name {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: var(--fs-sm);
}

.testimonial-author-from {
  display: block;
  font-size: var(--fs-xs);
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   TESTIMONIAL CAROUSEL (DUAL REVIEWS)
══════════════════════════════════════════ */
.testimonial-carousel-wrapper {
  max-width: 460px;
  margin-right: auto;
  position: relative;
}

.testi-carousel-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testi-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testi-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
  padding: 0 8px; /* Prevents edge bleed from sub-pixel rendering */
  box-sizing: border-box;
}

.testi-review-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid hsla(0,0%,100%,0.1);
  padding-bottom: var(--sp-24);
}

.testi-review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.testi-review-item .star-row {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  margin-bottom: var(--sp-12);
  font-size: 0.85rem;
}

.testi-review-item h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--white);
  margin-bottom: var(--sp-8);
  line-height: 1.3;
}

.testi-review-item p {
  font-size: 0.95rem;
  color: hsla(0,0%,100%,0.8);
  line-height: 1.6;
  margin-bottom: var(--sp-16);
}

.testi-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-24);
}

.testi-arrows {
  display: flex;
  gap: var(--sp-12);
}

.testi-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid hsla(0,0%,100%,0.2);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-base) ease;
}

.testi-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsla(0,0%,100%,0.3);
  cursor: pointer;
  transition: all var(--t-base) ease;
}

.testi-dot.active {
  width: 24px;
  border-radius: var(--r-pill);
  background: var(--orange);
}

/* Partner logos bar */
.partner-logos-bar {
  border-top: 1px solid hsla(0,0%,100%,0.08);
  margin-top: var(--sp-64);
  padding-top: var(--sp-48);
  display: flex;
  flex-direction: column;
  gap: var(--sp-32);
  align-items: center;
}

.partner-logos-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsla(0,0%,100%,0.35);
  font-weight: 600;
}

.partner-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-64);
  flex-wrap: wrap;
}

.partner-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
  opacity: 0.4;
  transition: opacity var(--t-base);
  filter: grayscale(1) brightness(2);
}

.partner-logo-item:hover {
  opacity: 0.8;
  filter: none;
}

.partner-logo-item i,
.partner-logo-item svg {
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  color: var(--white);
  fill: currentColor;
  display: inline-block;
  transition: transform var(--t-base) ease;
}

.partner-logo-item span {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════ */
.stats-section {
  padding: var(--sp-80) 0;
  position: relative;
  overflow: hidden;
}

.stats-section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.stats-section-overlay {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
}

.stats-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-80);
  align-items: center;
}

.stats-left-content .people-joined-row {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  margin-bottom: var(--sp-20);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--charcoal);
  object-fit: cover;
  margin-left: -10px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-count {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  border: 2.5px solid var(--charcoal);
}

.people-label {
  font-size: var(--fs-sm);
  color: hsla(0,0%,100%,0.75);
}

.stats-intro {
  font-size: var(--fs-sm);
  color: hsla(0,0%,100%,0.6);
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: var(--sp-32);
}

/* ══════════════════════════════════════════
   WHY US SECTION
══════════════════════════════════════════ */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-24);
}

.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-32);
  border: 1px solid var(--cream-dark);
  transition: transform var(--t-base) var(--ease-smooth), box-shadow var(--t-base);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: var(--sp-20);
}

.why-title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--text-dark);
  margin-bottom: var(--sp-8);
}

.why-desc {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════ */
.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-32);
}

.process-step {
  display: flex;
  gap: var(--sp-20);
  align-items: flex-start;
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
  position: relative;
  transition: background var(--t-base), color var(--t-base);
}

.process-step:hover .step-icon-wrap {
  background: var(--orange);
  color: var(--white);
}

/* Connector line between steps */
.process-steps-list .process-step:not(:last-child) .step-icon-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: var(--sp-32);
  background: var(--cream-dark);
  transform: translateX(-50%);
  margin-top: 4px;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--text-dark);
  margin-bottom: var(--sp-4);
}

.step-content p {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-32);
}

.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: transform var(--t-base) var(--ease-smooth), box-shadow var(--t-base);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
  display: block;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-img-wrapper {
  overflow: hidden;
}

.blog-card-body {
  padding: var(--sp-24);
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  font-size: var(--fs-xs);
  color: var(--text-light);
  margin-bottom: var(--sp-12);
}

.blog-meta-row .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: var(--sp-16);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--t-fast);
}

.blog-read-more:hover {
  gap: var(--sp-12);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--teal-darker);
  color: var(--text-white);
  padding: var(--sp-80) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-64);
  padding-bottom: var(--sp-64);
  border-bottom: 1px solid hsla(0,0%,100%,0.08);
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: var(--sp-20);
}

.footer-brand-desc {
  font-size: var(--fs-sm);
  color: hsla(0,0%,100%,0.6);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: var(--sp-24);
}

.footer-social-row {
  display: flex;
  gap: var(--sp-12);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid hsla(0,0%,100%,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsla(0,0%,100%,0.6);
  font-size: 0.95rem;
  transition: all var(--t-base) var(--ease-smooth);
}

.social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-widget h4 {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--white);
  margin-bottom: var(--sp-24);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: hsla(0,0%,100%,0.6);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: var(--sp-8);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.footer-contact-item {
  display: flex;
  gap: var(--sp-12);
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-item span {
  font-size: var(--fs-sm);
  color: hsla(0,0%,100%,0.6);
  line-height: 1.5;
}

.footer-bottom {
  padding: var(--sp-24) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: hsla(0,0%,100%,0.35);
}

/* ══════════════════════════════════════════
   SERVICE CARDS (for services page overview)
══════════════════════════════════════════ */
.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-32);
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--cream-dark);
  transition: transform var(--t-base) var(--ease-smooth), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
}

.service-card-img-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-card-badge {
  position: absolute;
  top: var(--sp-16);
  left: var(--sp-16);
}

.service-card-body {
  padding: var(--sp-28) var(--sp-24);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--text-dark);
  margin-bottom: var(--sp-12);
}

.service-card-desc {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-24);
  flex: 1;
}

.service-card-footer {
  display: flex;
  gap: var(--sp-12);
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  position: relative;
  min-height: 600px;
  padding: 120px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(205,100%,10%,0.88), hsla(191,96%,23%,0.75));
}

.cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-4xl);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-12);
}

.cta-content h3 {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  color: hsla(0,0%,100%,0.7);
  font-weight: 400;
  margin-bottom: var(--sp-40);
}

.cta-fan-cards {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: var(--sp-16);
  margin-top: var(--sp-48);
}

.cta-fan-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  transition: transform var(--t-base) var(--ease-smooth);
}

.cta-fan-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-fan-card:nth-child(1),
.cta-fan-card:nth-child(5) { width: 140px; height: 180px; transform: rotate(-6deg) translateY(20px); }
.cta-fan-card:nth-child(2),
.cta-fan-card:nth-child(4) { width: 160px; height: 200px; transform: rotate(-3deg) translateY(10px); }
.cta-fan-card:nth-child(3) { width: 180px; height: 230px; transform: rotate(0deg); }

.cta-fan-card:hover {
  transform: translateY(-10px) rotate(0deg) !important;
}

/* ══════════════════════════════════════════
   VALUES SECTION
══════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-32);
}

.value-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-40) var(--sp-32);
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: all var(--t-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-smooth);
}

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

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  margin: 0 auto var(--sp-24);
  transition: background var(--t-base), color var(--t-base);
}

.value-card:hover .value-icon {
  background: var(--orange);
  color: var(--white);
}

.value-title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--text-dark);
  margin-bottom: var(--sp-12);
}

.value-desc {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Pro Hover Animation for Glass & Dark Cards ──────────────── */
.glass-card-hover {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease !important;
}
.glass-card-hover:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
  border-color: rgba(255,255,255,0.4) !important;
  z-index: 10;
}
