/* Singapore Travels - Pure CSS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --blue: #0a4da3;
  --blue-dark: #063a7d;
  --blue-light: #3d8bdc;
  --gold: #f5a623;
  --gold-dark: #d8901a;
  --green: #25d366;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f7f9fc;
  --white: #fff;
  --shadow: 0 10px 30px rgba(10, 77, 163, .08);
  --shadow-lg: 0 20px 50px rgba(10, 77, 163, .15);
  --radius: 14px;
}

html,
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: .25s;
  text-align: center;
  justify-content: center;
  font-family: inherit
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15)
}

.btn-blue {
  background: var(--blue);
  color: #fff
}

.btn-blue:hover {
  background: var(--blue-dark)
}

.btn-green {
  background: var(--green);
  color: #fff
}

.btn-green:hover {
  background: #1ebe5b
}

.btn-gold {
  background: var(--gold);
  color: #fff
}

.btn-gold:hover {
  background: var(--gold-dark)
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff
}

.btn-outline:hover {
  background: #fff;
  color: var(--blue)
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  z-index: 100
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 7px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 20px
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
  padding: 6px 0
}

.logo img {
  height: 75px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block
}

.nav {
  display: flex;
  gap: 28px;
  margin-left: 10px
}

.nav a {
  font-weight: 500;
  color: var(--text);
  transition: .2s;
  position: relative;
  padding: 6px 0
}

.nav a:hover,
.nav a.active {
  color: var(--blue)
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px
}

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center
}

.header-cta .btn {
  padding: 10px 18px;
  font-size: 14px
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--blue)
}

/* HERO */
.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.05)
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 58, 125, .92) 0%, rgba(10, 77, 163, .78) 50%, rgba(61, 139, 220, .55) 100%);
  z-index: 1
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 70px 20px
}

.hero .established {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px
}

.hero h1 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800
}

.hero h1 span {
  color: var(--gold)
}

.hero .sub {
  font-size: 20px;
  margin-bottom: 14px;
  opacity: .95
}

.hero p.desc {
  font-size: 16px;
  opacity: .9;
  margin-bottom: 22px;
  max-width: 560px
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px
}

.badge {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap
}

.stat strong {
  display: block;
  font-size: 28px;
  color: var(--gold);
  font-weight: 800
}

.stat span {
  font-size: 13px;
  opacity: .9
}

/* FORM CARD */
.form-card {
  background: #fff;
  color: var(--text);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .3)
}

.form-card h3 {
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 6px
}

.form-card .small {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 11px;
  font-size: 14px;
  font-family: inherit;
  transition: .2s;
  background: #fff
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 77, 163, .12)
}

.form-card textarea {
  resize: vertical;
  min-height: 70px
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px
}

/* SECTIONS */
section {
  padding: 70px 0
}

.section-head {
  text-align: center;
  margin-bottom: 46px
}

.section-head .eyebrow {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase
}

.section-head h2 {
  font-size: 36px;
  margin: 8px 0;
  color: var(--text)
}

.section-head p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative
}

.step {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: .3s
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.step .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px
}

.step h4 {
  margin-bottom: 6px;
  color: var(--blue)
}

.step .num {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--gold);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700
}

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

.feature-grid {
  grid-template-columns: repeat(3, 1fr)
}

.trust-card,
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  transition: .3s
}

.trust-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.trust-card .icon,
.feature-card .icon {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 12px
}

/* PACKAGES */
.bg-soft {
  background: var(--bg)
}

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

.pkg {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s
}

.pkg:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.pkg .img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative
}

.pkg .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600
}

.pkg .body {
  padding: 18px
}

.pkg h4 {
  color: var(--blue);
  margin-bottom: 6px
}

.pkg p {
  color: var(--muted);
  font-size: 14px
}

/* SERVICES SLIDER (image cards) */
.svc-slider {
  position: relative;
  overflow: hidden;
  padding: 6px 2px
}

.svc-track {
  display: flex;
  gap: 22px;
  transition: transform .6s ease;
  will-change: transform
}

.svc-card {
  min-width: 300px;
  max-width: 300px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eef2f7;
  display: flex;
  flex-direction: column;
  transition: .3s
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.svc-card .svc-img {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative
}

.svc-card .svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 77, 163, .45))
}

.svc-card .svc-img i {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #fff;
  font-size: 22px;
  background: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2
}

.svc-card .svc-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.svc-card h5 {
  color: var(--blue);
  font-size: 17px;
  margin-bottom: 6px
}

.svc-card p {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 14px;
  flex: 1
}

.svc-card .btn {
  width: 100%;
  padding: 9px 14px;
  font-size: 13.5px
}

.svc-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px
}

.svc-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.svc-nav button:hover {
  background: var(--gold);
  transform: scale(1.08)
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.gallery .g-item {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  cursor: pointer;
  transition: .3s;
  position: relative;
  overflow: hidden
}

.gallery .g-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(10, 77, 163, .65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  opacity: 0;
  transition: .3s
}

.gallery .g-item:hover {
  transform: scale(1.03)
}

.gallery .g-item:hover::after {
  opacity: 1
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999
}

.lightbox.open {
  display: flex
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px
}

.lightbox .lb-btn {
  position: absolute;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.lightbox .lb-btn:hover {
  background: var(--gold)
}

.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%)
}

.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%)
}

.lb-close {
  top: 20px;
  right: 20px
}

/* TESTIMONIALS */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.tst {
  background: #fff;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.tst .stars {
  color: var(--gold);
  margin-bottom: 8px
}

.tst .who {
  margin-top: 14px;
  font-weight: 600;
  color: var(--blue)
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  text-align: center
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 14px
}

.cta .actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px
}

.contact-info .info-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 14px
}

.info-card .icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0
}

.contact-info h5 {
  color: var(--blue);
  margin-bottom: 2px
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow)
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden
}

.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--blue)
}

.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: .4s;
  color: var(--muted)
}

.faq-item.open .faq-a {
  padding: 0 22px 18px;
  max-height: 300px
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg)
}

.faq-q::after {
  content: "+";
  font-size: 24px;
  transition: .3s
}

/* FOOTER */
.site-footer {
  background: #0a1f3d;
  color: #cbd5e1;
  padding: 60px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1.3fr;
  gap: 36px;
  align-items: start
}

.footer-grid h5 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 16px;
  letter-spacing: .5px
}

.footer-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: #cbd5e1;
  font-size: 14px;
  transition: .2s
}

.footer-grid a:hover {
  color: var(--gold);
  transform: translateX(4px)
}

.footer-grid a i {
  width: 18px;
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  padding: 0;
  background: transparent
}

.footer-logo img {
  height: 110px;
  width: auto;
  max-width: 280px;
  display: block;
  background: transparent;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .45))
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7
}

.services-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 26px
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  align-items: center
}

.socials a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 17px;
  color: #fff;
  transition: .25s;
  line-height: 1
}

.socials a i {
  display: block;
  line-height: 1
}

.socials a i:hover {
  color: #fff
}

.socials a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px) scale(1.08);
  border-color: var(--gold)
}

.footer-map {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3)
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  filter: grayscale(.2) contrast(1.05)
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px
}

/* PAGE HEADER */
.page-hero {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  text-align: center;
  padding: 80px 20px 70px
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 8px
}

.page-hero p {
  opacity: .9
}

/* FLOATING BUTTONS */
.float-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 99
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  transition: .3s
}

.float-btn:hover {
  transform: scale(1.12)
}

.float-btn .tip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #1f2937;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  font-weight: 500
}

.float-btn .tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1f2937
}

.float-btn:hover .tip {
  opacity: 1;
  right: 74px
}

.float-wa {
  background: var(--green);
  box-shadow: 0 8px 25px rgba(37, 211, 102, .5);
  animation: pulse 2s infinite
}

.float-call {
  background: var(--gold);
  box-shadow: 0 8px 25px rgba(245, 166, 35, .5);
  animation: bounce 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.08)
  }
}

@keyframes bounce {

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

  50% {
    transform: translateY(-6px)
  }
}

/* RESPONSIVE */
@media(max-width:960px) {

  .nav,
  .header-cta {
    display: none
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1)
  }

  .menu-toggle {
    display: block
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 50px 20px
  }

  .hero h1 {
    font-size: 34px
  }

  .steps,
  .trust-grid,
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .feature-grid,
  .tst-grid,
  .gallery,
  .contact-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }

  .logo img {
    height: 100px;
    max-width: 190px
  }
}

@media(max-width:600px) {

  .steps,
  .trust-grid,
  .pkg-grid,
  .feature-grid,
  .tst-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

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

  .hero h1 {
    font-size: 28px
  }

  .section-head h2 {
    font-size: 26px
  }

  .svc-card {
    min-width: 260px;
    max-width: 260px
  }

  .logo img {
    height: 75px;
    max-width: 160px
  }

  .services-2col {
    grid-template-columns: 1fr
  }

  .footer-logo img {
    height: 64px
  }
}



/* ===== Tour Packages Slider ===== */
.packages-section { padding: 80px 0; background: var(--bg); }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head .eyebrow {
  display: inline-block; color: var(--blue); font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; font-size: 13px; margin-bottom: 10px;
}
.section-head h2 { font-size: 38px; margin-bottom: 12px; }
.section-head h2 span { color: var(--blue); }
.section-head p { color: var(--muted); }

.pkg-slider-wrap { position: relative; }
.packagesSwiper { padding: 20px 5px 50px; overflow: hidden; }

.pkg-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(10,77,163,.08);
  transition: transform .4s ease-in-out, box-shadow .4s ease-in-out;
  height: 100%;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(10,77,163,.18); }

.pkg-media { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in; }
.pkg-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease-in-out;
}
.pkg-media:hover img { transform: scale(1.12); }

.pkg-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; flex-wrap: wrap; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 50px; font-size: 12px;
  font-weight: 600; color: #fff; backdrop-filter: blur(8px);
  background: rgba(10,77,163,.85);
}
.badge-pill.premium { background: rgba(245,166,35,.92); }
.badge-pill.honeymoon { background: rgba(233,25,40,.88); }
.badge-pill.family { background: rgba(37,211,102,.9); }

.pkg-body { padding: 20px 22px 22px; }
.pkg-body h3 { font-size: 20px; margin-bottom: 8px; }
.pkg-body p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.pkg-foot { display: flex; align-items: center; justify-content: space-between; }
.price { color: var(--blue); font-weight: 700; font-size: 18px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* Nav buttons */
.pkg-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%; border: none;
  background: #fff; color: var(--blue); cursor: pointer;
  box-shadow: 0 6px 18px rgba(10,77,163,.18);
  z-index: 10; transition: all .3s ease-in-out;
  display: flex; align-items: center; justify-content: center;
}
.pkg-nav:hover { background: var(--blue); color: #fff; transform: translateY(-50%) scale(1.08); }
.pkg-prev { left: -10px; }
.pkg-next { right: -10px; }
.pkg-nav.swiper-button-disabled { opacity: .35; cursor: not-allowed; }

/* Lightbox */
.pkg-lightbox {
  position: fixed; inset: 0; background: rgba(8,15,30,.94);
  display: none; align-items: center; justify-content: center;
  z-index: 9999; padding: 20px;
  animation: fadeIn .3s ease-in-out;
}
.pkg-lightbox.active { display: flex; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

.lb-stage { max-width: 1100px; width: 100%; text-align: center; }
.lb-stage img {
  max-width: 100%; max-height: 75vh; border-radius: 14px;
  margin: 0 auto; box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: zoomIn .35s ease-in-out;
}
@keyframes zoomIn { from { transform: scale(.9); opacity: 0 } to { transform: scale(1); opacity: 1 } }

.lb-caption { color: #fff; margin-top: 20px; }
.lb-caption h4 { font-size: 22px; margin-bottom: 6px; }
.lb-caption p { color: #c9d4e3; }

.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.12);
  border: none; color: #fff; cursor: pointer;
  border-radius: 50%; transition: all .25s ease-in-out;
  display: flex; align-items: center; justify-content: center;
}
.lb-close { top: 24px; right: 28px; width: 46px; height: 46px; font-size: 28px; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 22px; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close:hover, .lb-nav:hover { background: var(--blue); transform: translateY(-50%) scale(1.1); }
.lb-close:hover { transform: scale(1.1); }

/* Responsive */
@media (max-width: 768px) {
  .section-head h2 { font-size: 28px; }
  .pkg-nav { width: 42px; height: 42px; }
  .pkg-prev { left: 4px; } .pkg-next { right: 4px; }
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}



