html {
  scroll-padding-top: 110px;
  /* smooth scroll anchor spacing */
}

/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding-top: 10px;
  /* space for fixed navbar */
}

html {
  scroll-padding-top: 110px;
  /* smooth scroll anchor spacing */
}

/* =============================
   GLOBAL STYLES
============================= */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding-top: 110px;
  /* space for fixed navbar */
}

html {
  scroll-padding-top: 110px;
  /* smooth scroll anchor spacing */
}

section {
  padding: 3rem 1.5rem;
}

.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* =============================
   NAVBAR
============================= */
.navbar-custom {
  background-color: #829fca;
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
  color: #fff !important;
}

/* Brand */
.navbar-brand img {
  height: 80px;
  margin-right: 10px;
}

.navbar-brand span {
  font-weight: 600;
  font-size: 1.2rem;
}

/* Links */
.navbar .nav-link.custom-link {
  color: #000 !important;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.6rem 0.9rem !important;
}

.navbar .nav-link.custom-link:hover {
  color: #0d6efd !important;
}

.navbar .nav-link.custom-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0d6efd;
  transition: width 0.3s ease;
}

.navbar .nav-link.custom-link:hover::after {
  width: 100%;
}

.navbar .nav-link.active {
  color: #0d6efd !important;
  font-weight: 600;
}

/* Book Now button */
.btn-book {
  background: #ff5722;
  color: #fff !important;
  font-weight: 600;
  margin-left: 15px;
  transition: 0.3s;
}

.btn-book:hover {
  background: #e64a19;
}

.navbar-custom .btn-book {
  background-color: #a1a4b3;
  color: #000;
  font-weight: bold;
}

/* home start */

#home .container {
  padding-top: 5rem;
  /* adjust as needed */
  padding-bottom: 3rem;
}

/* =============================
   CARDS & BOXES
============================= */
.choose-box,
.review-box {
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: all 0.35s ease;
  overflow: hidden;
}

.choose-box:hover,
.review-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.choose-box::before,
.review-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #0d6efd, #20c997, #6610f2);
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.choose-box>*,
.review-box>* {
  position: relative;
  z-index: 1;
}

.choose-box:hover::before,
.review-box:hover::before {
  opacity: 1;
  animation: borderMove 5s linear infinite;
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Benefit cards */
.benefit-card {
  background: #fff;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  color: #212529;
  transform: translateY(-5px);
  border-color: #ff6f61;
}

.benefit-number {
  font-size: 1.8rem;
  color: #ff6f61;
}

.benefit-card:hover .benefit-number {
  color: #212529;
}

/* Badge hover */
.badge-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Pulse effect */
.pulse-box {
  position: relative;
  overflow: hidden;
}

.pulse-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* =============================
   UTILITIES
============================= */
.icon-circle {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 26px;
}

.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Toasts */
.bg-professional {
  background-color: #3bda2d !important;
  color: #f8fafc;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  border-left: 6px solid #11be37;
}

.toast {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp floating button */
#whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 9999;
}

#whatsapp-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: 50%;
  padding: 16px;
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.7), 0 0 40px rgba(0, 255, 100, 0.5);
  animation: pulseGlow 2s infinite, bounce 3s infinite;
  transition: transform 0.3s ease;
}

#whatsapp-float img {
  width: 70px;
  height: 70px;
  border-radius: 30%;
  filter: drop-shadow(0 0 8px rgba(200, 216, 57, 0.8));
}

#whatsapp-float a:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 30px rgb(44, 59, 196),
    0 0 60px rgba(201, 159, 43, 0.8);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(0, 255, 100, 0.5), 0 0 30px rgba(0, 255, 100, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(0, 255, 100, 1), 0 0 80px rgba(0, 255, 100, 0.8);
  }

  100% {
    box-shadow: 0 0 15px rgba(0, 255, 100, 0.5), 0 0 30px rgba(0, 255, 100, 0.3);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* =============================
   RESPONSIVE
============================= */

/* 📱 Mobile (≤768px) */
@media (max-width: 768px) {
  body {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .btn {
    font-size: 1rem;
    padding: 0.65rem 1.2rem;
    border-radius: 0.6rem;
  }

  h1,
  .display-1,
  .display-2 {
    font-size: 1.8rem !important;
  }

  h2,
  .display-3,
  .display-4 {
    font-size: 1.5rem !important;
  }

  h3,
  h4 {
    font-size: 1.25rem !important;
  }

  section {
    padding: 2.5rem 1rem;
  }

  .card {
    padding: 1.25rem;
    border-radius: 1rem;
  }

  /* Navbar */
  .navbar-brand img {
    height: 50px;
  }

  .navbar .nav-link {
    font-size: 1rem;
    padding: 0.7rem;
  }

  .btn-book {
    margin-left: 0;
    margin-top: 10px;
    display: block;
  }

  /* WhatsApp btn smaller */
  #whatsapp-float {
    bottom: 12px;
    right: 12px;
  }

  #whatsapp-float a {
    padding: 10px;
  }

  #whatsapp-float img {
    width: 38px;
    height: 38px;
  }
}

/* 💻 Desktop (≥992px) */
@media (min-width: 992px) {
  body {
    font-size: 1rem;
    line-height: 1.6;
  }

  h1,
  .display-1,
  .display-2 {
    font-size: 2.2rem !important;
  }

  h2,
  .display-3,
  .display-4 {
    font-size: 1.8rem !important;
  }

  h3,
  h4 {
    font-size: 1.4rem !important;
  }

  section {
    padding: 4rem 2rem;
  }

  .navbar-brand img {
    height: 80px;
  }
}

/* route section */

#routes h5 {
  font-size: 1.2rem;
}

#routes ul li {
  padding: 4px 0;
  border-bottom: 1px dashed #eee;
}

#routes ul li:last-child {
  border-bottom: none;
}

#routes .card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

/* out station */

.scroll-container {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.scroll-container::-webkit-scrollbar {
  height: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}

.scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.route-card {
  display: inline-block;
  min-width: 260px;
  /* bigger card */
  max-width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.city-img {
  width: 100px;
  /* bigger image */
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.arrow-icon {
  font-size: 1.6rem;
  color: #ffc107;
  /* golden arrow */
}

.city-name {
  font-size: 1rem;
  font-weight: 600;
}

/* route section */

#routes a {
  text-decoration: none;
  /* removes underline */
  color: #000;
  /* black text */
  font-weight: 500;
  /* slightly bold for readability */
  transition: color 0.3s ease;
  /* smooth hover effect */
}

#routes a:hover {
  color: #fff;
  background: #007bff;
  padding: 2px 6px;
  border-radius: 4px;
}

#home {
  background-image: url('images/home.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* cover the entire section */
  min-height: 100vh;
  /* full viewport height */
  width: 100%;
}

/* home background & count mobile view */

@media (max-width: 768px) {
  #home {
    background-size: contain;
    /* fits image inside smaller screens */
  }
}

@media (max-width: 576px) {
  .badge-box {
    padding: 1rem !important;
    /* increase padding */
    text-align: center;
  }

  .badge-box h3 {
    font-size: 1rem;
    /* bigger counter numbers */
  }

  .badge-box p {
    font-size: 1rem;
    /* readable text */
  }
}

/* area effect */

.city-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ddd;
  transition: transform 0.3s ease;
}

.city-img:hover {
  transform: scale(1.1);
}

/* Gradient arrow */
.text-gradient {
  background: linear-gradient(90deg, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button gradient */


.btn-gradient {
  background: linear-gradient(270deg, #fa65ad, #f8945a, #adccbe, #d6cda6, #c7a790);
  background-size: 600% 600%;
  color: #fff !important;
  font-weight: 600;
  border: none;
  animation: rainbowShift 8s ease infinite;
}

/* phone box view logo */

@keyframes rainbowShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.phone-mockup {
  max-width: 300px;
  border: 12px solid #000;
  border-radius: 40px;
  padding: 10px;
  background: #fff;
  position: relative;
}

.phone-mockup::before {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  background: #333;
  border-radius: 10px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.phone-mockup img {
  border-radius: 25px;
}

/* phone view scrooll */

.scroll-container {
  position: relative;
  overflow-x: auto;
  display: flex;
  gap: 1rem;
  scroll-behavior: smooth;
  padding: 1rem;
}

/* Hide scrollbar */
.scroll-container::-webkit-scrollbar {
  display: none;
}

/* Fade hint on right side */
.scroll-container::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.4);
  animation: bounceRight 1s infinite;
}

@keyframes bounceRight {

  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(-50%) translateX(5px);
  }
}

/* modal header */

.modal-header {
  background: linear-gradient(270deg, #19f5f5, #a67bdf, #4766f3);
  background-size: 600% 600%;
  animation: gradientMove 8s ease infinite;
  color: #fff;
  /* text color */
  border-bottom: none;
  /* optional: remove border */
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* hide menu css mobile view */

/* Hide navbar toggler (hamburger) only in phone view */
@media (max-width: 768px) {
  .navbar-toggler {
    display: none !important;
  }
}

/* mobile view home first */

@media (max-width: 768px) {
  body {
    margin: 0;
    padding-top: 0 !important;
    /* remove navbar offset in phones */
  }
}

/* phone */

/* Smaller Phone Frame */
.phone-frame {
  width: 200px;
  /* reduced width */
  height: 400px;
  /* reduced height */
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 5px;
  background: linear-gradient(135deg, #ff00cc, #3333ff, #00ffcc);
  background-size: 400% 400%;
  animation: glowBorder 6s infinite alternate;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
}

/* Screen */
.phone-screen {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, #fdfdfd, #ececec);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Glossy shine */
.phone-screen::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transform: rotate(-20deg);
  animation: shine 5s infinite;
}

/* Logo */
.logo-fade {
  max-width: 55%;
  opacity: 0;
  animation: fadeInOut 4s forwards;
}

/* Book Now text */
.book-now {
  font-size: 1.2rem;
  /* smaller font */
  font-weight: bold;
  color: #ff0077;
  text-shadow: 0 0 6px rgba(255, 0, 119, 0.6), 0 0 12px rgba(255, 0, 119, 0.4);
  opacity: 0;
  position: absolute;
  bottom: 35%;
  animation: fadeInBounce 2s 4s forwards, pulse 1.5s infinite 6s;
}

/* Animations (same as before) */
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }

  60% {
    opacity: 1;
    transform: scale(1.1) translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 6px #ff0077, 0 0 20px #ff00cc;
  }

  50% {
    transform: scale(1.1);
    text-shadow: 0 0 12px #ff66b2, 0 0 28px #ff00cc;
  }
}

@keyframes glowBorder {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes shine {
  0% {
    transform: rotate(-20deg) translateX(-100%);
  }

  100% {
    transform: rotate(-20deg) translateX(100%);
  }
}


/* buuton mobile view */

/* Default (desktop) */
#social-buttons .btn {
  font-size: 1rem;
}

/* On mobile screens */
@media (max-width: 768px) {
  #social-buttons {
    justify-content: center;
    /* center align */
  }

  #social-buttons .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}