/* ===================== Variables ===================== */
:root {
  --primary: #f5a623;
  --primary-dark: #d98c0f;
  --dark: #16213a;
  --dark-2: #1f2b4d;
  --light: #f7f8fb;
  --gray: #6b7280;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(22, 33, 58, 0.1);
  --transition: all 0.35s ease;
  --font-head: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  vertical-align: -0.15em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.25;
}

section {
  position: relative;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(245, 166, 35, 0.45);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* ===================== Top Bar ===================== */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-item .icon {
  font-size: 0.95rem;
}
.topbar-item a:hover {
  color: var(--primary);
}
.topbar-address {
  color: rgba(255, 255, 255, 0.6);
}

/* ===================== Header ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(22, 33, 58, 0.85);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.header.scrolled::before {
  background: rgba(22, 33, 58, 0.97);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
}
.logo-text em {
  color: var(--primary);
  font-style: normal;
}

.nav ul {
  display: flex;
  gap: 30px;
}
.nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav a:hover,
.nav a.active {
  color: var(--primary);
}
.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  position: relative;
  z-index: 1000;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(16, 22, 42, 0.92) 30%,
    rgba(16, 22, 42, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  color: var(--white);
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.hero-tag .icon {
  font-size: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  max-width: 780px;
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--primary);
}

.hero-desc {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
  max-width: 700px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num,
.stat-plus {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: inline;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  z-index: 1;
}
.scroll-down span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.6s infinite;
}
@keyframes scrollDown {
  0% {
    opacity: 1;
    top: 8px;
  }
  70% {
    opacity: 0;
    top: 24px;
  }
  100% {
    opacity: 0;
    top: 24px;
  }
}

/* ===================== Quick Booking Strip ===================== */
.quickbook {
  background: var(--white);
  position: relative;
  z-index: 2;
  margin-top: -50px;
}
.quickbook-inner {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 10px;
}
.qb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-right: 1px solid #eee;
}
.qb-item:last-child {
  border-right: none;
}
.qb-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.12);
  color: var(--primary-dark);
  border-radius: 14px;
  font-size: 1.5rem;
}
.qb-item h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.qb-item p {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ===================== Section Head ===================== */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
}
.section-tag {
  display: inline-block;
  color: var(--primary-dark);
  background: rgba(245, 166, 35, 0.12);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 14px;
}
.section-desc {
  color: var(--gray);
}

/* ===================== About ===================== */
.about {
  padding: 110px 0 90px;
  background: var(--light);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 55%;
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--dark);
  padding: 20px 26px;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.4);
  text-align: center;
}
.about-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
}
.about-badge span {
  font-size: 0.78rem;
  font-weight: 600;
}

.about-content .section-tag {
  margin-bottom: 12px;
}
.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 18px;
}
.about-content p {
  color: var(--gray);
  margin-bottom: 20px;
}
.about-list {
  margin-bottom: 28px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
}
.about-list .icon {
  width: 22px;
  height: 22px;
  padding: 4px;
  background: rgba(245, 166, 35, 0.15);
  color: var(--primary-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===================== Services ===================== */
.services {
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(22, 33, 58, 0.15);
  border-color: var(--primary);
}
.service-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.08);
}
.service-card h3 {
  font-size: 1.2rem;
  margin: 22px 28px 10px;
}
.service-card p {
  color: var(--gray);
  font-size: 0.92rem;
  margin: 0 28px 20px;
}

.service-actions {
  display: flex;
  gap: 10px;
  padding: 0 28px 28px;
}
.btn-sm {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-sm .icon {
  width: 0.95rem;
  height: 0.95rem;
}
.btn-sm-call {
  background: #25d366;
  color: var(--white);
}
.btn-sm-call:hover {
  background: #1eb958;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}
.btn-sm-enquire {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary-dark);
}
.btn-sm-enquire:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ===================== One-Way Routes ===================== */
.routes {
  padding: 100px 0;
  background: var(--light);
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.route-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.route-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(22, 33, 58, 0.15);
}
.route-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
}
.route-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.route-card:hover .route-img img {
  transform: scale(1.08);
}
.route-card-body {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  font-weight: 600;
}
.route-card .icon {
  width: 22px;
  height: 22px;
  padding: 6px;
  background: rgba(245, 166, 35, 0.15);
  color: var(--primary-dark);
  border-radius: 50%;
  flex-shrink: 0;
}
.routes-vehicles {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.routes-vehicles-label {
  font-weight: 600;
  color: var(--gray);
}
.vehicle-chip {
  background: var(--dark);
  color: var(--white);
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}
.routes-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================== Gallery ===================== */
.gallery {
  padding: 100px 0;
  background: var(--light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 240px;
  box-shadow: var(--shadow);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item {
  cursor: zoom-in;
}
.gallery-item .zoom-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-item .zoom-hint svg {
  width: 34px;
  height: 34px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}
.gallery-item:hover .zoom-hint {
  opacity: 1;
}

/* ===================== Gallery Lightbox ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.25s ease;
  touch-action: none;
  user-select: none;
}
.lightbox-img.zoomed {
  cursor: grab;
}
.lightbox-img.dragging {
  cursor: grabbing;
  transition: none;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  color: var(--dark);
}
.lightbox-close {
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
}
.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}
.lightbox-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  border-radius: 20px;
}
.lightbox-hint {
  position: absolute;
  bottom: 22px;
  right: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}
@media (max-width: 600px) {
  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;
  }
  .lightbox-hint {
    display: none;
  }
}

/* ===================== Why Us ===================== */
.why {
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-content {
  text-align: center;
}
.why-content .section-tag,
.why-content h2 {
}
.why-card {
  background: var(--light);
  padding: 34px 22px;
  border-radius: var(--radius);
  text-align: left;
  transition: var(--transition);
}
.why-card:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-6px);
}
.why-card:hover p {
  color: rgba(255, 255, 255, 0.75);
}
.why-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.15);
  color: var(--primary-dark);
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 14px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--dark);
}
.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--gray);
  font-size: 0.88rem;
}

/* ===================== CTA ===================== */
.cta {
  background: linear-gradient(120deg, var(--dark), var(--dark-2));
  padding: 80px 0;
}
.cta-inner {
  text-align: center;
  color: var(--white);
}
.cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}
.cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== Contact ===================== */
.contact {
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--light);
  padding: 20px 22px;
  border-radius: var(--radius);
}
.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.info-card a,
.info-card p {
  color: var(--gray);
  font-size: 0.92rem;
}
.info-card a:hover {
  color: var(--primary-dark);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-4px);
}

.contact-map {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 420px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* ===================== Footer ===================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand .logo-text,
.footer-brand .logo-mark {
  color: var(--white);
}
.footer-brand p {
  font-size: 0.88rem;
  margin-top: 8px;
  max-width: 320px;
}
.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1rem;
}
.footer-links a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-contact .icon {
  color: var(--primary);
  font-size: 1rem;
}
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.85rem;
}

/* ===================== Floating buttons ===================== */
.float-call {
  position: fixed;
  bottom: 96px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
  z-index: 500;
  animation: pulse 2s infinite;
}
.float-call .icon {
  width: 1.3rem;
  height: 1.3rem;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.back-to-top .icon {
  width: 1.1rem;
  height: 1.1rem;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary);
  color: var(--dark);
}

.float-enquire {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  rotate: 180deg;
  background: #f5a623;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 20px 12px;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 4px 16px rgba(139, 55, 119, 0.4);
  z-index: 500;
  transition: var(--transition);
}
.float-enquire:hover {
  padding-right: 18px;
  background: #f5a623;
}

@media (max-width: 640px) {
  .float-enquire {
    font-size: 0.85rem;
    padding: 16px 9px;
  }
}

/* ===================== Enquiry Popup ===================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 22, 42, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  padding: 40px 32px 32px;
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
.popup-overlay.show .popup-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--light);
  color: var(--dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.popup-close:hover {
  background: var(--primary);
  color: var(--dark);
  transform: rotate(90deg);
}

.popup-header {
  text-align: center;
  margin-bottom: 24px;
}
.popup-header .logo-mark {
  margin: 0 auto 14px;
}
.popup-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.popup-header p {
  color: var(--gray);
  font-size: 0.9rem;
}

.popup-form .form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--light);
  transition: var(--transition);
}
.popup-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
  background: var(--white);
}
.popup-submit {
  width: 100%;
  justify-content: center;
  background: var(--primary);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35);
}
.popup-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(245, 166, 35, 0.45);
}
.popup-submit .icon {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 480px) {
  .popup-box {
    padding: 34px 22px 26px;
  }
}

/* ===================== Scroll Reveal ===================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-aos].aos-show {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: repeat(2, auto);
    row-gap: 24px;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    overflow-y: auto;
    background: var(--dark);
    flex-direction: column;
    padding: 100px 30px 30px;
    transition: right 0.4s ease;
    z-index: 998;
  }
  .nav.open {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }
  .nav ul {
    flex-direction: column;
    gap: 22px;
  }
  .hamburger {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .nav-overlay {
    display: block;
  }
  .nav-overlay.show {
    opacity: 1;
    visibility: visible;
  }
  .quickbook-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .qb-item {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }
  .topbar-address {
    display: none;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .routes-grid,
  .gallery-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item {
    height: 180px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .services-grid,
  .routes-grid,
  .gallery-grid,
  .why-grid,
  .quickbook-inner {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: repeat(2, auto);
  }
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-btns .btn {
    justify-content: center;
  }
}
