/* =====================================================
   ZIPLINE TRANSIT — Simple · Orange + Teal
   ===================================================== */

:root {
  --orange: #7c3aed;
  --orange-dark: #5b21b6;
  --orange-soft: #f3e8ff;
  --teal: #06b6d4;
  --teal-dark: #0e7490;
  --teal-soft: #ecfeff;
  --slate: #1f2a37;
  --slate-2: #5a6474;
  --line: #e5ecef;
  --cloud: #f5f8fa;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--slate);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
section.hero-slider
{
    padding: 0px!important;
}
h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Top info strip ---------- */
.top-strip {
  background: var(--slate);
  color: #c6cfd9;
  padding: 10px 0;
  font-size: 13px;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.top-strip span {
  margin-right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.top-strip span svg { color: var(--orange); }

/* ---------- Navbar ---------- */
.site-nav {
  background: var(--white);
  padding: 18px 0;
  box-shadow: 0 2px 14px rgba(31, 42, 55, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--slate);
}
.brand .mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 12px;
  display: grid; place-items: center;
  color: white;
  font-size: 20px;
  transform: rotate(-8deg);
  box-shadow: 0 6px 14px rgba(124,58,237,0.3);
}
.brand .teal-txt { color: var(--teal); }

.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-2);
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--orange);
  background: var(--orange-soft);
}
.nav-links a.active {
  color: var(--teal);
  background: var(--teal-soft);
}

.btn-primary-zip {
  background: var(--orange);
  color: white !important;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.28);
  transition: all 0.25s;
}
.btn-primary-zip:hover {
  background: var(--teal);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(6, 182, 212, 0.35);
}
.btn-outline-zip {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-outline-zip:hover {
  background: white;
  color: var(--slate) !important;
  border-color: white;
}

.menu-toggle {
  background: var(--orange-soft);
  border: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  color: var(--orange);
  font-size: 20px;
  display: none;
}

/* ---------- HERO SLIDER — Full view · centered · fade animations ---------- */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
}
.slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--slate);
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 42, 55, 0.75) 0%,
    rgba(31, 42, 55, 0.55) 50%,
    rgba(6, 182, 212, 0.35) 100%
  );
}
/* Vignette for centered focus */
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* Fully centered slide content */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  color: white;
}
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124, 58, 237, 0.25);
  border: 1px solid rgba(124, 58, 237, 0.55);
  color: #d8b4fe;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.slide-tag .pulse {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(124,58,237,0); }
}

.slide h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: white;
  margin-bottom: 24px;
  line-height: 1.08;
  max-width: 900px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide h1 .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.slide p {
  font-size: 19px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 40px;
  max-width: 680px;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.slide-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==== STAGGERED FADE-IN ANIMATIONS ==== */
/* Each text element fades in + slides up when its slide becomes active */
.carousel-item .slide-tag,
.carousel-item .slide h1,
.carousel-item .slide p,
.carousel-item .slide-cta {
  opacity: 0;
  transform: translateY(30px);
}
.carousel-item.active .slide-tag {
  animation: slideFadeIn 0.9s 0.2s ease-out forwards;
}
.carousel-item.active .slide h1 {
  animation: slideFadeIn 0.9s 0.4s ease-out forwards;
}
.carousel-item.active .slide p {
  animation: slideFadeIn 0.9s 0.6s ease-out forwards;
}
.carousel-item.active .slide-cta {
  animation: slideFadeIn 0.9s 0.8s ease-out forwards;
}
@keyframes slideFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Slow ken-burns zoom on background */
.carousel-item.active .slide {
  animation: slowZoom 8s ease-out forwards;
}
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  opacity: 0.9;
  z-index: 5;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background-size: 20px;
  backdrop-filter: blur(8px);
  transition: background-color 0.2s;
}
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--orange);
  border-color: var(--orange);
}
.carousel-indicators {
  margin-bottom: 28px;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255,255,255,0.4);
  margin: 0 6px;
  transition: all 0.2s;
}
.carousel-indicators .active {
  background-color: var(--orange);
  width: 32px;
  border-radius: 999px;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }

.sec-tag {
  display: inline-flex;
  align-items: center;
  background: var(--orange-soft);
  color: var(--orange);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-tag.teal {
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.sec-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.sec-lede {
  color: var(--slate-2);
  font-size: 17px;
  max-width: 600px;
}

/* ---------- Features ---------- */
.feat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 26px;
  height: 100%;
  text-align: center;
  transition: all 0.3s;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(124,58,237,0.12);
}
.feat-ico {
  width: 64px; height: 64px;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 18px;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  transition: transform 0.3s;
}
.feat-card:nth-child(even) .feat-ico {
  background: var(--orange-soft);
  color: var(--orange);
}
.feat-card:hover .feat-ico {
  transform: rotate(-8deg) scale(1.05);
}
.feat-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.feat-card p {
  color: var(--slate-2);
  font-size: 14px;
  margin: 0;
}

/* ---------- Services ---------- */
.services-section {
  background: var(--cloud);
}
.svc-card {
  background: white;
  border-radius: 22px;
  padding: 34px 28px;
  height: 100%;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
}
.svc-ico {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--orange-soft), var(--teal-soft));
  border-radius: 18px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  font-size: 30px;
}
.svc-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.svc-card p {
  color: var(--slate-2);
  font-size: 15px;
  margin-bottom: 20px;
}
.svc-card .arrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.svc-card:hover .arrow { gap: 12px; }

/* ---------- Counter strip ---------- */
.counter-strip {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  padding: 70px 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.counter-strip::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 260px; height: 260px;
  background: var(--orange);
  opacity: 0.2;
  border-radius: 50%;
  filter: blur(60px);
}
.counter-item {
  text-align: center;
  padding: 20px;
}
.counter-item .num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  color: white;
  margin-bottom: 10px;
}
.counter-item .num .suffix { color: var(--orange); }
.counter-item .lbl {
  font-size: 14px;
  opacity: 0.9;
  letter-spacing: 0.05em;
}

/* ---------- Map section ---------- */
.map-section {
  padding: 80px 0 0;
}
.map-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(31, 42, 55, 0.08);
  margin-bottom: 80px;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.map-info-card {
  background: white;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  transition: all 0.25s;
}
.map-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31, 42, 55, 0.12);
}
.map-info-card .ic {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  color: white;
  border-radius: 14px;
  display: grid; place-items: center;
}
.map-info-card h5 {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 6px;
}
.map-info-card p,
.map-info-card a {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate);
  margin: 0;
  line-height: 1.4;
}
.map-info-card a:hover { color: var(--orange); }

/* ---------- CTA ---------- */
.cta-box {
  background: linear-gradient(135deg, var(--slate) 0%, #0a1420 100%);
  border-radius: 28px;
  padding: 60px 50px;
  color: white;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(50px);
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -60px;
  width: 180px; height: 180px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(50px);
}
.cta-box h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.cta-box p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.cta-box .btn-primary-zip {
  position: relative; z-index: 1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--slate);
  color: #9aa5b1;
  padding: 70px 0 0;
}
.site-footer h5 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.site-footer ul {
  list-style: none;
  padding: 0; margin: 0;
}
.site-footer li { margin-bottom: 10px; }
.site-footer a {
  color: #9aa5b1;
  font-size: 14px;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--orange); }
.site-footer p {
  font-size: 14px;
  margin-bottom: 12px;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background 0.2s;
}
.socials a:hover { background: var(--orange); color: white; }

.footer-credit {
  background: #151c25;
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 13px;
  color: #9aa5b1;
}
.footer-credit a {
  color: var(--orange);
  font-weight: 700;
}
.footer-credit a:hover { color: var(--teal); }

/* ---------- Page hero ---------- */
.page-hero {
  background:
    radial-gradient(circle at 80% 20%, var(--orange-soft) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, var(--teal-soft) 0%, transparent 50%),
    var(--white);
  padding: 70px 0 50px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--slate-2);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-block; }
  .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    padding: 20px;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  section { padding: 56px 0; }
  .hero-slider { height: 100vh; min-height: 560px; }
  .slide-content { padding: 60px 16px; }
  .cta-box { padding: 40px 28px; }
  .top-strip span:nth-child(n+3) { display: none; }
}