:root {
  --primary: #0066cc;
  --primary-soft: #0088dd;
  --primary-dark: #004a99;
  --green: #5cbf00;
  --green-soft: #7acc1a;
  --green-dark: #4aa000;
  --secondary: #1a2b3c;
  --footer: #003366;
  --text: #1f2a37;
  --muted: #6b7280;
  --white: #ffffff;
  --bg: #f4f8fc;
  --brand-gradient: linear-gradient(135deg, #0066cc 0%, #5cbf00 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Topbar */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.88rem;
  padding: 0.55rem 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.topbar-left a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-left i {
  color: var(--green-soft);
}

.btn-portal {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.btn-portal:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Header */
.main-header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #000;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover span {
  transform: translateY(-2px);
}

.nav-menu a span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.fa-home { color: var(--green); }
.fa-cogs { color: var(--primary); }
.fa-info-circle { color: var(--primary-soft); }
.fa-star { color: var(--green-soft); }
.nav-menu .fa-envelope { color: var(--green); }

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  margin: 6px 0;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 900;
}

/* Hero slider */
.hero-slider {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  background: #000;
}

.slider-container,
.slide {
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.08);
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  width: min(90%, 760px);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(2px);
}

.slide-content h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.45);
}

.slide-content p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #e8e8e8;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slide-indicators {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.indicator.active {
  background: #fff;
  transform: scale(1.15);
}

/* Notification / gradient bar */
.notification-bar {
  background: var(--brand-gradient);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.7rem 0;
  font-weight: 600;
}

.marquee {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
}

.marquee span::before {
  content: "•";
  margin-right: 0.8rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section-title {
  text-align: center;
  color: #333;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title.left {
  text-align: left;
}

.title-underline {
  width: 80px;
  height: 3px;
  background: var(--brand-gradient);
  margin: 12px auto 0;
  position: relative;
}

.title-underline.left {
  margin-left: 0;
}

.title-underline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
  width: 40px;
  height: 7px;
  background: var(--green);
  border-radius: 5px;
}

.our-product {
  padding: 70px 0;
  background: #f5f7fb;
  overflow: hidden;
}

.services-intro {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 1.25rem auto 0;
}

.services-slider {
  margin-top: 40px;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.services-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  animation: servicesSlide 35s linear infinite;
  padding: 8px 0 16px;
}

.services-slider:hover .services-track {
  animation-play-state: paused;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px 26px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid #eef2f7;
  width: 260px;
  flex: 0 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card::before {
  display: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 0;
  box-shadow: none;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}

.product-card:hover .icon-wrapper {
  transform: scale(1.06);
}

.product-card .icon-wrapper i {
  font-size: 1.7rem;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: inherit;
}

.icon-flight { background: #fff0e8; color: #ff7a3d; }
.icon-hotel { background: #eaf8ee; color: #2f9e44; }
.icon-bus { background: #fce8f3; color: #d63384; }
.icon-train { background: #fff3e0; color: #f59f00; }
.icon-visa { background: #e8f1ff; color: #1c7ed6; }
.icon-insurance { background: #efe8ff; color: #7048e8; }
.icon-pan { background: #e6f8f5; color: #12b886; }
.icon-holiday { background: #fff8e1; color: #fab005; }

.product-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.product-card p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.product-card:hover h3 {
  color: var(--primary);
}

@keyframes servicesSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .services-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0 1rem 16px;
  }

  .services-slider {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .product-card[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .product-card {
    width: 220px;
    padding: 22px 16px;
  }

  .services-track {
    animation-duration: 26s;
    gap: 14px;
  }
}

/* About */
.about-section {
  padding: 70px 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.about-copy p {
  color: #555;
  margin-top: 1rem;
}

.mission-box {
  display: grid;
  gap: 18px;
}

.mission-item {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.mission-item h3 {
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mission-item h3 i {
  color: var(--green);
}

.mission-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Why choose */
.why-choose-us {
  padding: 70px 0;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
}

.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, #0066cc, #0088dd); }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, #5cbf00, #7acc1a); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, #004a99, #5cbf00); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, #0088dd, #4aa000); }

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Commitment */
.commitment-banner {
  background: var(--brand-gradient);
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.commitment-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.commitment-banner p {
  max-width: 780px;
  margin: 0 auto;
  opacity: 0.92;
  font-size: 1.05rem;
}

/* Contact */
.contact-section {
  padding: 70px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.contact-info p {
  margin-top: 1rem;
  color: #555;
}

.contact-info ul {
  list-style: none;
  margin: 1.25rem 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  color: #444;
  line-height: 1.5;
}

.contact-info i {
  color: var(--primary);
  width: 18px;
}

.tagline {
  font-weight: 700;
  color: var(--primary-dark) !important;
}

.contact-form {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}

.btn-primary {
  border: 0;
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  width: fit-content;
  transition: 0.25s ease;
}

.btn-primary:hover {
  filter: brightness(1.05);
  background: linear-gradient(135deg, #0055b0 0%, #4aa000 100%);
}

.form-note {
  color: #00a86b;
  font-size: 0.92rem;
}

/* Footer */
.footer {
  background: var(--footer);
  color: #fff;
  padding: 50px 0 20px;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h3 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  color: #a4b4cd;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-logo {
  width: 110px;
  height: auto;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}

.footer-links a {
  color: #a4b4cd;
}

.footer-links a:hover {
  color: var(--green-soft);
}

.footer-contact a {
  color: #a4b4cd;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact i {
  margin-right: 8px;
  vertical-align: top;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  text-align: center;
}

.footer-bottom p {
  color: #a4b4cd;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-sections {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .footer-sections {
    grid-template-columns: 1fr 1fr;
  }

  .hamburger {
    display: block;
    z-index: 1100;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(82%, 320px);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
    transition: right 0.35s ease;
    z-index: 1050;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid #eee;
  }
}

@media (max-width: 640px) {
  .logo-img {
    height: 58px;
  }

  .hero-slider {
    height: 58vh;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
  }

  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }

  .features-grid,
  .about-grid,
  .contact-grid,
  .footer-sections,
  .form-row {
    grid-template-columns: 1fr;
  }

  .btn-primary {
    width: 100%;
  }

  .topbar-right {
    width: 100%;
  }
}

/* Policy pages */
.policy-page {
  background: #fff;
}

.policy-hero {
  background: var(--brand-gradient);
  color: #fff;
  padding: 48px 0;
}

.policy-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.policy-hero p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.policy-content {
  max-width: 860px;
  padding: 48px 0 70px;
}

.policy-content h2 {
  margin: 1.8rem 0 0.7rem;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.policy-content p,
.policy-content li {
  color: #555;
  line-height: 1.75;
}

.policy-content ul {
  margin: 0.6rem 0 1rem 1.2rem;
}

.policy-content a {
  color: var(--primary);
  font-weight: 600;
}

.policy-content a:hover {
  color: var(--green-dark);
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.policy-links a {
  background: var(--bg);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  color: var(--primary-dark);
}

/* Bank Details */
.bank-wrap {
  padding: 48px 0 70px;
}

.bank-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.bank-side {
  display: grid;
  gap: 24px;
}

.bank-card-account {
  height: 100%;
}

.bank-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  border: 1px solid #eef2f7;
}

.bank-card-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
}

.bank-card-head i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.12), rgba(92, 191, 0, 0.12));
  color: var(--primary);
}

.bank-card-head h2 {
  font-size: 1.25rem;
  margin: 0;
}

.bank-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bank-list li {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #eef2f7;
}

.bank-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bank-list span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bank-list strong {
  color: var(--text);
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  word-break: break-all;
}

.copy-btn {
  border: 0;
  background: var(--bg);
  color: var(--primary);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.copy-btn:hover {
  background: rgba(0, 102, 204, 0.12);
}

.qr-box {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  padding: 16px;
  display: grid;
  place-items: center;
}

.qr-box img {
  width: 100%;
  max-width: 240px;
  height: auto;
}

.qr-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.upi-box {
  background: var(--bg);
  border-radius: 14px;
  padding: 1.4rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.upi-box strong {
  font-size: 1.35rem;
  color: var(--primary-dark);
  word-break: break-all;
}

.upi-box .btn-primary {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.bank-help {
  margin-top: 2rem;
  text-align: center;
  color: #555;
  background: #f4f8fc;
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.bank-help a {
  color: var(--primary);
  font-weight: 700;
}

.about-copy .iata-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(92, 191, 0, 0.1));
  border-radius: 10px;
  color: var(--primary-dark);
  font-weight: 600;
}

.about-copy .iata-badge i {
  color: var(--green);
}

.about-copy .iata-badge strong {
  color: var(--primary);
  letter-spacing: 0.04em;
}

.about-hero .container {
  text-align: center;
}

.about-hero-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  margin: 0 auto 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.about-page-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  margin-bottom: 1.25rem;
  border: 1px solid #e8edf3;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

/* Partners */
.partners-section {
  padding: 70px 0;
  background: #fff;
  overflow: hidden;
}

.partners-intro {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 1.25rem auto 0;
}

.partners-slider {
  margin-top: 40px;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: partnersSlide 40s linear infinite;
}

.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  width: 180px;
  min-height: 100px;
  padding: 16px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.partner-logo img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes partnersSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0 1rem;
  }

  .partners-slider {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .partner-logo[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .partner-logo {
    width: 140px;
    min-height: 84px;
  }

  .partner-logo img {
    max-height: 42px;
  }

  .partners-track {
    animation-duration: 28s;
  }
}

@media (max-width: 1000px) {
  .bank-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bank-grid {
    grid-template-columns: 1fr;
  }
}

.fa-info-circle { color: var(--primary-soft); }
.fa-building-columns { color: var(--primary); }
.fa-calendar-days { color: #e67e22; }
.nav-menu .fa-envelope { color: var(--green); }

/* Fixed Departure */
.fixed-section {
  padding: 40px 0 70px;
  background: #f5f7fb;
}

.trip-toggle {
  display: flex;
  gap: 14px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.trip-btn {
  border: 0;
  min-width: 160px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: #fff;
  background: #1f6feb;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.trip-btn.active { background: #e67e22; }
.trip-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }

.fd-status { margin-bottom: 1.25rem; color: #556; font-size: 0.95rem; }
.fd-status.error { color: #c0392b; font-weight: 600; }
.fd-block { margin-bottom: 1.75rem; }
.fd-heading { font-size: 1.15rem; margin-bottom: 0.9rem; color: #222; }

.ex-grid,
.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}

.ex-btn,
.route-btn {
  border: 3px solid transparent;
  border-radius: 10px;
  padding: 1rem 0.5rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: var(--ex, #2980b9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ex-btn:hover,
.route-btn:hover { transform: translateY(-2px); }

.ex-btn.active,
.route-btn.active {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #27ae60;
  filter: brightness(1.05);
}

.route-btn {
  display: grid;
  gap: 0.2rem;
  min-height: 78px;
  place-content: center;
}

.route-btn span { font-size: 0.85rem; opacity: 0.95; }
.route-btn strong { font-size: 1.15rem; }

.fd-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.fd-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

.fd-table th {
  background: #f8d7e4;
  text-align: left;
  padding: 0.85rem 0.75rem;
  font-size: 0.9rem;
  color: #333;
}

.fd-table td {
  padding: 0.9rem 0.75rem;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  font-size: 0.92rem;
}

.airline-chip {
  display: inline-block;
  background: #003366;
  color: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
}

.bag-note { margin-top: 0.35rem; font-size: 0.75rem; color: #777; }

.book-btn {
  display: inline-block;
  background: #e67e22;
  color: #fff !important;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
}

.empty-row { text-align: center; color: #777; padding: 1.5rem !important; }

@media (max-width: 640px) {
  .trip-btn { min-width: 140px; flex: 1; }
  .ex-grid,
  .route-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Mobile polish ===== */
@media (max-width: 900px) {
  .container {
    width: min(94%, 1200px);
  }

  .nav-wrapper {
    min-height: 68px;
  }

  .footer-sections {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .slide-content {
    width: min(92%, 760px);
    padding: 1.35rem 1.1rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }

  .policy-hero {
    padding: 36px 0;
  }

  .bank-card {
    padding: 22px 18px;
  }

  .bank-list li {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(92%, 1200px);
  }

  .logo-img {
    height: 52px;
  }

  .nav-wrapper {
    min-height: 62px;
  }

  .hero-slider {
    height: 52vh;
    min-height: 340px;
  }

  .slide-content h1 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
    margin-bottom: 0.45rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .slider-arrow {
    display: none;
  }

  .our-product,
  .about-section,
  .why-choose-us,
  .contact-section,
  .bank-wrap,
  .fixed-section {
    padding: 42px 0 54px;
  }

  .commitment-banner {
    padding: 42px 0;
  }

  .features-grid,
  .about-grid,
  .contact-grid,
  .footer-sections,
  .form-row,
  .bank-grid {
    grid-template-columns: 1fr;
  }

  .footer-sections {
    gap: 26px;
  }

  .footer-bottom {
    text-align: center;
    padding: 1rem 0.75rem;
  }

  .footer-bottom p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .btn-primary {
    width: 100%;
  }

  .policy-content {
    padding: 32px 0 54px;
  }

  .policy-links {
    flex-direction: column;
  }

  .policy-links a {
    text-align: center;
  }

  .trip-toggle {
    gap: 10px;
  }

  .trip-btn {
    min-width: 0;
    flex: 1;
    padding: 0.85rem 0.75rem;
    font-size: 0.9rem;
  }

  .ex-grid,
  .route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .ex-btn,
  .route-btn {
    padding: 0.85rem 0.35rem;
    font-size: 0.85rem;
  }

  .route-btn strong {
    font-size: 1rem;
  }

  .fd-table-wrap {
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .fd-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 12px;
  }

  .fd-table thead {
    display: none;
  }

  .fd-table tbody tr {
    display: block;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    padding: 0.35rem 0.85rem 0.85rem;
    margin: 0;
  }

  .fd-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid #f0f2f5;
    padding: 0.7rem 0;
    text-align: right;
  }

  .fd-table td:last-child {
    border-bottom: 0;
    justify-content: stretch;
    padding-top: 0.85rem;
  }

  .fd-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #555;
    text-align: left;
    flex: 0 0 42%;
  }

  .fd-table td:last-child::before {
    display: none;
  }

  .fd-table td:last-child .book-btn {
    width: 100%;
    text-align: center;
  }

  .empty-row {
    display: block !important;
    text-align: center;
  }

  .empty-row::before {
    display: none !important;
  }
}

@media (max-width: 400px) {
  .ex-grid,
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
