:root {
  --navy: #002c74;
  --deep-navy: #001d55;
  --teal: #009aa6;
  --teal-dark: #007e8b;
  --cyan: #00b7c6;
  --white: #ffffff;
  --soft-bg: #f4fbfc;
  --light-teal: #e5fbfd;
  --text: #0d2651;
  --muted: #5c6b82;
  --border: rgba(0, 44, 116, 0.12);
  --shadow: 0 24px 70px rgba(0, 44, 116, 0.14);
  --radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 154, 166, 0.16), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(0, 44, 116, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff, #f4fbfc 48%, #eafcff);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { width: 100%; display: block; }

.container {
  width: min(1180px, 90%);
  margin: auto;
}

/* HEADER */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.35s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 44, 116, 0.10);
}

.nav-container {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 250px;
  max-height: 72px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-menu a {
  font-weight: 800;
  font-size: 14px;
  position: relative;
  color: var(--deep-navy);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--teal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-btn {
  padding: 13px 22px;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 16px 34px rgba(0, 154, 166, 0.24);
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--navy);
  color: white;
  border-radius: 14px;
  padding: 9px 13px;
  font-size: 24px;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 155px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(0,44,116,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,44,116,.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .38;
}

.glow-one {
  width: 360px;
  height: 360px;
  background: var(--teal);
  left: -100px;
  top: 150px;
}

.glow-two {
  width: 420px;
  height: 420px;
  background: var(--navy);
  right: -120px;
  top: 120px;
}

.hero-shape {
  position: absolute;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  font-size: 34px;
  animation: floatGraphic 5s ease-in-out infinite;
}

.shape-one { left: 7%; top: 25%; }
.shape-two { left: 45%; bottom: 12%; animation-delay: 0.5s; }
.shape-three { right: 8%; top: 20%; animation-delay: 1s; }
.shape-four { right: 36%; top: 15%; animation-delay: 1.5s; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 999px;
  background: white;
  color: var(--teal);
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 16px 40px rgba(0, 44, 116, 0.08);
  margin-bottom: 22px;
}

.hero h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(54px, 7vw, 94px);
  line-height: 0.98;
  margin-bottom: 24px;
  color: var(--deep-navy);
}

.hero h2 span {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.35s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: white;
  box-shadow: 0 18px 40px rgba(0, 154, 166, 0.24);
}

.outline-btn {
  background: white;
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(0, 44, 116, 0.08);
}

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

.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-mini-stats div {
  min-width: 140px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 40px rgba(0, 44, 116, 0.08);
}

.hero-mini-stats strong {
  display: block;
  font-size: 28px;
  color: var(--navy);
}

.hero-mini-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  min-height: 590px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

/* CSS-only hero graphic */
.service-orbit-card {
  width: min(540px, 100%);
  height: 560px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 48px;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 154, 166, 0.32), transparent 34%),
    linear-gradient(145deg, #001d55, #003b83 55%, #007e8b);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: heroFloat 6s ease-in-out infinite;
}

.service-orbit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.65) 1px, transparent 1px),
    radial-gradient(circle at 60% 28%, rgba(255,255,255,.55) 1px, transparent 1px),
    radial-gradient(circle at 80% 72%, rgba(255,255,255,.60) 1px, transparent 1px),
    radial-gradient(circle at 38% 85%, rgba(255,255,255,.45) 1px, transparent 1px);
  background-size: 130px 130px;
  opacity: .55;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.34);
}

.ring-one {
  width: 350px;
  height: 350px;
  animation: orbitSpin 18s linear infinite;
}

.ring-two {
  width: 445px;
  height: 445px;
  animation: orbitSpin 24s linear infinite reverse;
}

.center-service-card {
  width: 250px;
  min-height: 230px;
  padding: 24px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255,255,255,.95);
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
  position: relative;
  z-index: 3;
}

.center-service-card img {
  width: 200px;
  margin-bottom: 8px;
}

.center-service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.orbit-item {
  position: absolute;
  z-index: 4;
  width: 82px;
  height: 82px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: white;
  box-shadow: var(--shadow);
  font-size: 30px;
}

.orbit-item small {
  display: block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.item-one { top: 60px; left: 225px; }
.item-two { top: 175px; right: 45px; }
.item-three { bottom: 88px; right: 105px; }
.item-four { bottom: 86px; left: 105px; }
.item-five { top: 175px; left: 45px; }
.item-six { top: 380px; left: 230px; }

.floating-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 14px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  animation: badgeFloat 4s ease-in-out infinite;
}

.floating-badge span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--light-teal);
}

.floating-badge strong {
  display: block;
  font-size: 14px;
  color: var(--deep-navy);
}

.floating-badge p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  color: var(--muted);
}

.badge-one { top: 45px; left: 28px; }
.badge-two { right: 24px; top: 52px; animation-delay: 0.5s; }
.badge-three { left: 50%; bottom: 28px; transform: translateX(-50%); animation-delay: 1s; }

/* QUICK BOOKING CARD */
.quick-booking-card {
  position: relative;
  z-index: 5;
  margin-top: -20px;
  padding: 22px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  background: white;
  box-shadow: var(--shadow);
}

.quick-item {
  display: grid;
  gap: 8px;
  padding: 12px 16px;
  border-right: 1px solid var(--border);
}

.quick-item span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
}

.quick-item input,
.quick-item select {
  border: 0;
  outline: 0;
  font-family: inherit;
  font-weight: 800;
  color: var(--deep-navy);
  background: transparent;
}

.quick-btn {
  display: grid;
  place-items: center;
  padding: 0 28px;
  border-radius: 20px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

/* COMMON */
.section {
  padding: 105px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 58px;
}

.section-title span,
.about-strip span,
.special-card span,
.gallery-heading span,
.map-content span,
.contact-info span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title h2,
.about-strip h2,
.special-card h2,
.gallery-heading h2,
.map-content h2,
.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 12px 0 16px;
  color: var(--deep-navy);
}

.section-title p,
.special-card p,
.map-content p,
.contact-info p {
  color: var(--muted);
  line-height: 1.8;
}

/* ABOUT STRIP */
.about-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: white;
}

.about-strip-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-strip h2 {
  color: white;
}

.about-strip p {
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 255px;
  padding: 26px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 50px rgba(0, 44, 116, 0.08);
  border: 1px solid var(--border);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(0, 154, 166, 0.10);
}

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

.service-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--light-teal), #ffffff);
  font-size: 32px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  color: var(--deep-navy);
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.wide-service {
  grid-column: span 2;
}

/* PROCESS */
.tickets {
  background: linear-gradient(135deg, #ffffff, var(--light-teal));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-card {
  padding: 34px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 50px rgba(0, 44, 116, 0.08);
}

.process-card span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: white;
  font-weight: 900;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--deep-navy);
}

.process-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* BEAUTIFUL CAROUSEL */
.featured-carousel-section {
  background: white;
}

.beautiful-carousel {
  height: 540px;
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-track,
.featured-slide {
  width: 100%;
  height: 100%;
}

.featured-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: 0.8s ease;
}

.featured-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.featured-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,29,85,.82), transparent 60%);
}

.featured-slide div {
  position: absolute;
  z-index: 3;
  left: 50px;
  bottom: 45px;
  color: white;
}

.featured-slide span {
  display: inline-block;
  color: #8cf7ff;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.featured-slide h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 60px);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-size: 24px;
  box-shadow: var(--shadow);
}

.carousel-arrow.left { left: 22px; }
.carousel-arrow.right { right: 22px; }

.carousel-dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(0,154,166,.25);
  transition: .3s;
}

.carousel-dots button.active {
  width: 38px;
  background: var(--teal);
}

/* PACKAGE OPTIONS */
.package-section {
  background: white;
}

.package-option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.package-option {
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, var(--light-teal));
  box-shadow: 0 18px 50px rgba(0, 44, 116, 0.08);
  border: 1px solid var(--border);
}

.package-option div {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #ffffff;
  font-size: 36px;
  margin-bottom: 22px;
  box-shadow: 0 12px 25px rgba(0, 44, 116, 0.08);
}

.package-option h3 {
  font-size: 23px;
  margin-bottom: 10px;
  color: var(--deep-navy);
}

.package-option p {
  color: var(--muted);
  line-height: 1.7;
}

/* SPECIAL BUS */
.special-section {
  background: linear-gradient(135deg, var(--light-teal), #ffffff);
}

.special-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 46px;
  border-radius: 44px;
  background: white;
  box-shadow: var(--shadow);
}

.special-graphic {
  min-height: 340px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 154, 166, 0.20), transparent 32%),
    linear-gradient(135deg, #ffffff, var(--light-teal));
  position: relative;
  overflow: hidden;
}

.road-line {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 90px;
  height: 85px;
  background: var(--deep-navy);
  transform: rotate(-6deg);
}

.road-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  height: 5px;
  background: repeating-linear-gradient(90deg, #8cf7ff 0 60px, transparent 60px 120px);
  animation: roadMove 1s linear infinite;
}

.special-bus {
  position: absolute;
  left: 50px;
  bottom: 105px;
  font-size: 58px;
  z-index: 2;
  animation: specialBusMove 4s ease-in-out infinite;
}

.special-pin {
  position: absolute;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
  font-size: 34px;
  animation: floatGraphic 4s ease-in-out infinite;
}

.pin-a { left: 55px; top: 50px; }
.pin-b { right: 70px; top: 70px; animation-delay: .6s; }
.pin-c { right: 160px; bottom: 40px; animation-delay: 1.2s; }

/* GALLERY */
.gallery-section {
  background: linear-gradient(135deg, #ffffff, var(--soft-bg));
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}

.memory-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.memory-gallery div {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 44, 116, 0.10);
}

.memory-gallery img {
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.memory-gallery div:hover img {
  transform: scale(1.12);
}

.big-gallery-card {
  grid-row: span 2;
  grid-column: span 2;
}

.wide-gallery-card {
  grid-column: span 2;
}

.tall-gallery-card {
  grid-row: span 2;
}

/* MAP */
.map-section {
  padding: 100px 0;
}

.map-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.map-card {
  position: relative;
  height: 520px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: perspective(1100px) rotateX(8deg) rotateY(-7deg);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.15) contrast(1.05);
}

.moving-route {
  position: absolute;
  z-index: 3;
  font-size: 42px;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.route-a {
  left: 12%;
  top: 35%;
  animation: routeMoveA 7s ease-in-out infinite;
}

.route-b {
  right: 20%;
  bottom: 20%;
  animation: routeMoveB 8s ease-in-out infinite;
}

.route-c {
  left: 50%;
  top: 20%;
  animation: pinBounce 2.5s ease-in-out infinite;
}

/* CONTACT */
.contact-section {
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: white;
}

.contact-info h2 {
  color: white;
}

.contact-info p {
  color: rgba(255,255,255,0.72);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.contact-list a,
.contact-list p {
  color: white;
  font-weight: 800;
}

.whatsapp-btn {
  display: inline-flex;
  padding: 14px 22px;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  background: #25d366;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  border-radius: 30px;
  background: white;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  outline: 0;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: none;
}

.contact-form button {
  border: 0;
  padding: 16px;
  border-radius: 16px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  cursor: pointer;
}

/* FOOTER */
.footer {
  background: #000f31;
  color: white;
  padding-top: 70px;
}

.footer-logo {
  width: 260px;
  background: white;
  border-radius: 18px;
  padding: 12px;
  margin-bottom: 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}

.footer h3 {
  font-size: 32px;
  margin-bottom: 14px;
}

.footer h4 {
  margin-bottom: 16px;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding: 22px;
}

.top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  display: none;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
}

.top-btn.show {
  display: block;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-18px) rotateY(-4deg); }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes floatGraphic {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(5deg); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes roadMove {
  from { background-position: 0 0; }
  to { background-position: 120px 0; }
}

@keyframes specialBusMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(160px); }
}

@keyframes routeMoveA {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(260px, 80px); }
}

@keyframes routeMoveB {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-220px, -110px); }
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.1); }
}

/* RESPONSIVE */
@media (max-width: 1150px) {
  .service-grid,
  .package-option-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wide-service {
    grid-column: span 1;
  }

  .brand-logo {
    width: 210px;
  }
}

@media (max-width: 1050px) {
  .hero-grid,
  .map-grid,
  .contact-grid,
  .about-strip-grid,
  .special-card {
    grid-template-columns: 1fr;
  }

  .quick-booking-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .service-grid,
  .package-option-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .memory-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .menu-btn {
    display: block;
  }

  .nav-btn {
    display: none;
  }

  .brand-logo {
    width: 180px;
  }

  .nav-menu {
    position: absolute;
    top: 92px;
    right: 5%;
    width: 270px;
    padding: 24px;
    border-radius: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .floating-badge,
  .hero-shape {
    display: none;
  }

  .service-orbit-card {
    height: 470px;
  }

  .orbit-item {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .memory-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .big-gallery-card,
  .wide-gallery-card,
  .tall-gallery-card {
    grid-column: span 1;
    grid-row: span 1;
  }

  .beautiful-carousel {
    height: 420px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 125px;
  }

  .hero h2 {
    font-size: 48px;
  }

  .quick-booking-card,
  .process-grid,
  .service-grid,
  .package-option-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-btn {
    min-height: 54px;
  }

  .gallery-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .memory-gallery {
    grid-template-columns: 1fr;
  }

  .map-card {
    height: 400px;
    transform: none;
  }

  .special-card {
    padding: 26px;
    border-radius: 30px;
  }

  .service-orbit-card {
    height: 400px;
    border-radius: 34px;
  }

  .orbit-ring,
  .orbit-item {
    display: none;
  }

  .featured-slide div {
    left: 24px;
    bottom: 30px;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
  }
}

/* =========================================================
   FORCE LIGHT THEME
   This prevents iPhone/Mac/Android dark mode from changing
   the website colors. The site will look the same in both
   light mode and dark mode devices.
   ========================================================= */

:root {
  color-scheme: light only;
}

html,
body {
  color-scheme: light only;
  background-color: #f4fbfc !important;
}

input,
select,
textarea,
button {
  color-scheme: light only;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light only;
  }

  html,
  body {
    background:
      radial-gradient(circle at 10% 10%, rgba(0, 154, 166, 0.16), transparent 30%),
      radial-gradient(circle at 90% 12%, rgba(0, 44, 116, 0.12), transparent 28%),
      linear-gradient(135deg, #ffffff, #f4fbfc 48%, #eafcff) !important;
    background-color: #f4fbfc !important;
    color: #0d2651 !important;
  }

  .header.scrolled,
  .nav-menu,
  .quick-booking-card,
  .service-card,
  .process-card,
  .package-option,
  .special-card,
  .contact-form,
  .center-service-card,
  .floating-badge {
    background-color: #ffffff !important;
    color: #0d2651 !important;
  }

  .section-title h2,
  .special-card h2,
  .gallery-heading h2,
  .map-content h2,
  .service-card h3,
  .process-card h3,
  .package-option h3,
  .hero h2 {
    color: #001d55 !important;
  }

  .hero p,
  .section-title p,
  .special-card p,
  .map-content p,
  .service-card p,
  .process-card p,
  .package-option p,
  .center-service-card p,
  .quick-item span {
    color: #5c6b82 !important;
  }

  input,
  select,
  textarea {
    background-color: #ffffff !important;
    color: #0d2651 !important;
    border-color: rgba(0, 44, 116, 0.12) !important;
  }

  input::placeholder,
  textarea::placeholder {
    color: #7a8797 !important;
    opacity: 1;
  }

  .contact-section,
  .about-strip,
  .footer {
    color: #ffffff !important;
  }

  .contact-section h2,
  .about-strip h2 {
    color: #ffffff !important;
  }

  .contact-section p,
  .about-strip p,
  .footer p,
  .footer a {
    color: rgba(255, 255, 255, 0.72) !important;
  }
}

/* Social Media Icons */
.social-links,
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-links {
  margin: 24px 0;
}

.footer-social-links {
  margin-top: 18px;
}

.social-links a,
.footer-social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-grid !important;
  place-items: center;
  background: #ffffff;
  color: #002c74 !important;
  border: 1px solid rgba(0, 154, 166, 0.20);
  box-shadow: 0 14px 30px rgba(0, 44, 116, 0.14);
  transition: 0.3s ease;
}

.footer-social-links a {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.18);
}

.social-links a:hover,
.footer-social-links a:hover {
  transform: translateY(-7px) scale(1.05);
  background: linear-gradient(135deg, #002c74, #009aa6);
  color: #ffffff !important;
}

.social-links svg,
.footer-social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (prefers-color-scheme: dark) {
  .social-links a {
    background: #ffffff !important;
    color: #002c74 !important;
  }

  .footer-social-links a {
    background: rgba(255, 255, 255, 0.10) !important;
    color: #ffffff !important;
  }

  .social-links a:hover,
  .footer-social-links a:hover {
    background: linear-gradient(135deg, #002c74, #009aa6) !important;
    color: #ffffff !important;
  }
}

/* =========================================================
   SOLID WHITE HEADER FIX
   Navbar/header will stay fully white, not transparent.
   ========================================================= */

.header,
.header.scrolled {
  background: #ffffff !important;
  background-color: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 10px 35px rgba(0, 44, 116, 0.08) !important;
}

.nav-container {
  background: #ffffff !important;
}

@media (prefers-color-scheme: dark) {
  .header,
  .header.scrolled,
  .nav-container {
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* SEO + Accessibility focus style */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #00b7c6;
  outline-offset: 4px;
}
