/* =====================================================
   SHIBOM TOUR & TRAVELS — Global Stylesheet
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ──────────────────────────────────── */
:root {
  --navy:         #0a1628;
  --navy-light:   #0f2040;
  --deep-blue:    #1a3c6e;
  --teal:         #0d9488;
  --teal-light:   #14b8a6;
  --orange:       #f97316;
  --orange-dark:  #ea580c;
  --gold:         #d4a64a;
  --gold-light:   #f5ca3c;
  --white:        #f8fafc;
  --text-muted:   #94a3b8;
}

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--orange), var(--gold));
  border-radius: 4px;
}

/* ── Gold Gradient Text ─────────────────────────────── */
.text-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Badge ──────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,115,22,.10);
  border: 1px solid rgba(249,115,22,.30);
  color: var(--orange);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* ── Navbar ─────────────────────────────────────────── */
#navbar {
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
#navbar.scrolled {
  background: rgba(10,22,40,.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.nav-link {
  position: relative;
  transition: color .3s;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(to right, var(--orange), var(--gold));
  border-radius: 2px;
  transition: width .35s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--orange) !important; }

/* ── Animated Hamburger Button ──────────────────────── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .3s ease, border-color .3s ease;
  padding: 0;
}
.nav-hamburger:hover {
  background: rgba(249,115,22,.15);
  border-color: rgba(249,115,22,.45);
}
.nav-hamburger:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.nav-hamburger.open {
  background: rgba(249,115,22,.18);
  border-color: rgba(249,115,22,.5);
}
.nav-hamburger .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease, width .3s ease;
}
.nav-hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .bar:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Dropdown Menu ───────────────────────────── */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
}
.mob-nav-inner {
  padding: 14px 0 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 12px;
}
.mob-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  padding: 11px 14px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
  border-left: 3px solid transparent;
  margin-bottom: 2px;
}
.mob-nav-link .mob-icon {
  width: 20px;
  text-align: center;
  color: #64748b;
  font-size: .82rem;
  flex-shrink: 0;
  transition: color .25s ease;
}
.mob-nav-link:hover,
.mob-nav-link.active {
  color: var(--orange);
  background: rgba(249,115,22,.08);
  border-left-color: var(--orange);
}
.mob-nav-link:hover .mob-icon,
.mob-nav-link.active .mob-icon { color: var(--orange); }
.mob-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 13px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 18px rgba(249,115,22,.38);
}
.mob-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,.55);
}

/* Solid background when mobile menu is open */
#navbar.menu-open {
  background: rgba(10,22,40,.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
}

/* Hide logo text on very small phones (≤360px) */
@media (max-width: 360px) {
  .nav-logo-text { display: none; }
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .5px;
  border: none;
  cursor: pointer;
  transition: all .35s ease;
  box-shadow: 0 4px 22px rgba(249,115,22,.38);
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(249,115,22,.55);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .5px;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .35s ease;
  font-family: 'Inter', sans-serif;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-3px);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  color: var(--navy);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .5px;
  border: none;
  cursor: pointer;
  transition: all .35s ease;
  box-shadow: 0 4px 20px rgba(212,166,74,.35);
  font-family: 'Inter', sans-serif;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(212,166,74,.55);
}

/* ── Hero Section ────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,.88) 0%,
    rgba(26,60,110,.60) 50%,
    rgba(13,148,136,.35) 100%
  );
}
.hero-dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 38px 38px;
}
.hero-text    { animation: fadeInUp .9s ease both; }
.hero-sub     { animation: fadeInUp .9s .25s ease both; opacity: 0; }
.hero-btns    { animation: fadeInUp .9s .5s  ease both; opacity: 0; }
.hero-contact { animation: fadeInUp .9s .72s ease both; opacity: 0; }
.hero-scroll  { animation: fadeInUp .9s .9s  ease both; opacity: 0; }

/* ── Stats Bar ───────────────────────────────────────── */
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 12%;
  height: 76%; width: 1px;
  background: rgba(255,255,255,.14);
}

/* ── Package Cards ───────────────────────────────────── */
.package-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.07);
  transition: all .45s cubic-bezier(.25,.8,.25,1);
}
.package-card:hover {
  transform: translateY(-12px);
  border-color: rgba(249,115,22,.35);
  box-shadow: 0 28px 65px rgba(0,0,0,.45), 0 0 0 1px rgba(249,115,22,.18);
}
.card-img-wrap { overflow: hidden; }
.card-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .65s ease;
  display: block;
}
.package-card:hover .card-img-wrap img { transform: scale(1.08); }
.duration-badge {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--navy);
  font-size: .73rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .5px;
  font-family: 'Inter', sans-serif;
}

/* ── Feature Cards ───────────────────────────────────── */
.feature-card {
  padding: 30px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  transition: all .4s ease;
  text-align: center;
}
.feature-card:hover {
  background: rgba(249,115,22,.06);
  border-color: rgba(249,115,22,.22);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.3);
}
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(249,115,22,.14), rgba(212,166,74,.14));
  border: 1px solid rgba(249,115,22,.24);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  transition: all .4s ease;
  margin: 0 auto 18px;
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color: var(--orange);
  color: #fff;
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 8px 28px rgba(249,115,22,.45);
}

/* ── Gallery ─────────────────────────────────────────── */
.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-cap-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(10,22,40,.92) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s ease;
}
.gallery-item:hover .gallery-cap-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ── Testimonials ────────────────────────────────────── */
.testimonial-card {
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 32px;
  transition: all .4s ease;
}
.testimonial-card:hover {
  border-color: rgba(249,115,22,.30);
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
}
.star-gold { color: var(--gold); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
  background: rgba(255,255,255,.025);
}
.faq-item.open {
  border-color: rgba(249,115,22,.38);
  background: rgba(249,115,22,.04);
}
.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #fff;
  font-size: .97rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  gap: 16px;
}
.faq-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(249,115,22,.14);
  border: 1px solid rgba(249,115,22,.30);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .35s ease;
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, padding .3s ease;
  padding: 0 24px;
  color: #94a3b8;
  line-height: 1.75;
  font-size: .94rem;
}

/* ── Form Inputs ─────────────────────────────────────── */
.form-input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: all .3s ease;
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(249,115,22,.16);
}
.form-input::placeholder { color: #475569; }
.form-input option { background: var(--navy-light); color: #fff; }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-label {
  display: block;
  margin-bottom: 7px;
  font-size: .83rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* ── Scroll Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.d1 { transition-delay: .10s !important; }
.d2 { transition-delay: .20s !important; }
.d3 { transition-delay: .30s !important; }
.d4 { transition-delay: .40s !important; }
.d5 { transition-delay: .50s !important; }

/* ── Page Banner (inner pages) ───────────────────────── */
.page-banner {
  min-height: 370px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,22,40,.90) 0%,
    rgba(26,60,110,.72) 60%,
    rgba(13,148,136,.45) 100%
  );
}

/* ── Why Choose / About highlights ──────────────────── */
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.highlight-dot {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(249,115,22,.16), rgba(212,166,74,.16));
  border: 1px solid rgba(249,115,22,.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all .3s ease;
}
.highlight-item:hover .highlight-dot {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(249,115,22,.4);
}

/* ── Divider ─────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.12), transparent);
}

/* ── Contact info items ──────────────────────────────── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  transition: all .35s ease;
}
.contact-item:hover {
  background: rgba(249,115,22,.07);
  border-color: rgba(249,115,22,.25);
  transform: translateX(5px);
}
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}

/* ── Keyframes ───────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0);  opacity: 1; }
  50%     { transform: translateY(9px); opacity: .5; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.animate-float        { animation: float 3.2s ease-in-out infinite; }
.animate-scroll-bounce{ animation: scrollBounce 1.6s ease-in-out infinite; }

/* ── Gallery filter buttons ──────────────────────────── */
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .7px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.18);
  color: #94a3b8;
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 18px rgba(249,115,22,.38);
}
.gallery-grid-item { transition: opacity .4s ease, transform .4s ease; }
.gallery-grid-item.hidden { opacity: 0; transform: scale(.9); pointer-events: none; display: none; }

/* ── Lightbox ────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(8px);
  padding: 20px;
  animation: fadeInUp .3s ease;
}
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
}

/* ── Success message ─────────────────────────────────── */
.success-msg {
  background: linear-gradient(135deg, rgba(13,148,136,.2), rgba(13,148,136,.1));
  border: 1px solid rgba(13,148,136,.4);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5eead4;
}

/* ── Mobile tweaks ───────────────────────────────────── */
@media (max-width: 768px) {
  .hero-bg { background-attachment: scroll; }
  .page-banner-bg { background-attachment: scroll; }
  .stat-item:not(:last-child)::after { display: none; }
}
