/* ============================================================
   TravelBajetAntarabangsa — Farafisyah Travel & Tours
   ============================================================ */

:root {
  --primary: #0e7c7b;
  --primary-dark: #0a5c5b;
  --primary-light: #12a4a2;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --dark: #0f2435;
  --dark-2: #16364d;
  --text: #33475b;
  --muted: #64748b;
  --bg: #f7fafc;
  --bg-alt: #eef6f6;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(15, 36, 53, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 36, 53, 0.14);
  --wa: #25d366;
  --wa-dark: #128c7e;
  --grad: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --grad-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.2;
  white-space: nowrap;
}
.btn-wa { background: var(--wa); color: var(--white); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(15, 36, 53, 0.08);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; font-size: 1.15rem; font-weight: 800; color: var(--white); }
.navbar.scrolled .brand { color: var(--dark); }
.brand-logo { height: 48px; width: auto; display: block; max-width: 180px; object-fit: contain; }

.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.95rem; transition: color 0.3s; position: relative; }
.navbar.scrolled .nav-menu > a:not(.btn) { color: var(--dark); }
.nav-menu a:not(.btn):hover { color: var(--accent); }
.nav-menu a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--accent); transition: width 0.3s;
}
.nav-menu a:not(.btn):hover::after { width: 100%; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar.scrolled .lang-toggle { border-color: var(--primary); color: var(--primary); background: rgba(14,124,123,0.08); }
.lang-toggle:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 3px; background: var(--white); border-radius: 3px; transition: all 0.3s; }
.navbar.scrolled .hamburger span { background: var(--dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.8) 100%),
    url('../assets/img/hero.jpg') center/cover no-repeat;
  animation: heroZoom 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.1); } }

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.05) 46%, transparent 60%);
  background-size: 250% 100%;
  animation: sheenSweep 10s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sheenSweep {
  0% { background-position: 140% 0; }
  100% { background-position: -140% 0; }
}

.hero-content { position: relative; z-index: 2; padding: 150px 0 70px; max-width: 820px; }
.hero-content > * {
  animation: heroReveal 1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.08s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.32s; }
.hero-content > *:nth-child(4) { animation-delay: 0.44s; }
.hero-content > *:nth-child(5) { animation-delay: 0.56s; }
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 26px;
}
.hero-badge i { color: var(--accent); font-size: 0.8rem; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.14;
  font-weight: 700;
  margin-bottom: 24px;
}
.highlight { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.92;
  font-weight: 400;
  max-width: 620px;
  margin-bottom: 38px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }
.hero-cta .btn { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22); }

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 28px;
}
.stat { padding: 0 44px 0 0; }
.stat + .stat { padding-left: 44px; border-left: 1px solid rgba(255, 255, 255, 0.16); }
.stat h3 { font-size: 2.1rem; color: var(--accent); font-weight: 800; line-height: 1.1; }
.stat p { font-size: 0.88rem; opacity: 0.88; margin-top: 4px; }

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 2;
  opacity: 0.9;
}
.scroll-hint::after {
  content: '';
  position: absolute;
  top: 0;
  left: -3.5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: scrollDot 2.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translateY(58px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-bg::after, .hero-content > *, .scroll-hint::after {
    animation: none !important;
  }
  .hero-content > * { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-head.light p { color: rgba(255,255,255,0.9); }
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(14, 124, 123, 0.1);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head.light .section-tag { background: rgba(255,255,255,0.15); color: var(--accent); }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--dark); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.section-head.light .section-title { color: var(--white); }
.section-head p { color: var(--muted); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 460px; object-fit: cover; transition: transform 0.6s ease; }
.about-img:hover img { transform: scale(1.06); }
.about-badge {
  position: absolute; bottom: -24px; right: -18px;
  background: var(--grad);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg);
}
.about-badge i { font-size: 2rem; }
.about-badge strong { display: block; font-size: 1rem; }
.about-badge span { font-size: 0.8rem; opacity: 0.9; }

.about-content p { margin-bottom: 16px; }
.about-list { margin: 18px 0 24px; display: grid; gap: 10px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--dark); }
.about-list i { color: var(--primary); }
.about-info { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 26px; font-weight: 600; color: var(--dark); }
.about-info i { color: var(--primary); margin-right: 6px; }

/* ============================================================
   TABS & DESTINATIONS
   ============================================================ */
.tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid #d3e4e4;
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active { background: var(--grad); border-color: var(--primary); color: var(--white); box-shadow: 0 8px 20px rgba(14,124,123,0.3); }

.tab-content { display: none; animation: fadeUp 0.5s ease; }
.tab-content.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.dest-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  display: flex; flex-direction: column;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-img { height: 220px; overflow: hidden; position: relative; }
.dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover .dest-img img { transform: scale(1.1); }
.dest-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.dest-flag {
  align-self: flex-start;
  background: rgba(14, 124, 123, 0.12);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.dest-body h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--dark); margin-bottom: 8px; }
.dest-body p { font-size: 0.9rem; color: var(--muted); flex: 1; margin-bottom: 16px; }

/* ============================================================
   UMRAH
   ============================================================ */
.umrah-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.umrah-img { min-height: 380px; }
.umrah-img img { width: 100%; height: 100%; object-fit: cover; }
.umrah-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.umrah-body h3 { font-family: var(--font-display); font-size: 2rem; color: var(--dark); margin-bottom: 14px; }
.umrah-body p { margin-bottom: 14px; }
.umrah-body .about-list { margin-bottom: 24px; }

/* ============================================================
   PROMO
   ============================================================ */
.promo {
  background:
    linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, var(--primary-dark) 100%);
  color: var(--white);
}
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.promo-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: all 0.35s ease;
  display: flex; flex-direction: column;
}
.promo-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-6px); }
.promo-tag {
  align-self: flex-start;
  background: var(--grad-accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.promo-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 10px; }
.promo-card p { font-size: 0.92rem; opacity: 0.9; flex: 1; margin-bottom: 18px; }
.promo-price { font-size: 1.1rem; font-weight: 800; color: var(--accent); margin-bottom: 20px; }
.promo-note {
  margin-top: 40px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.4);
  padding: 18px 24px;
  border-radius: var(--radius);
  font-size: 0.98rem;
}
.promo-note strong { color: var(--accent); }

/* ============================================================
   FEATURES
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  border-bottom: 4px solid transparent;
}
.feature:hover { transform: translateY(-8px); border-bottom-color: var(--primary); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 74px; height: 74px;
  margin: 0 auto 20px;
  background: var(--bg-alt);
  border-radius: 22px;
  display: grid; place-items: center;
  color: var(--primary);
  font-size: 1.8rem;
  transition: all 0.35s ease;
}
.feature:hover .feature-icon { background: var(--grad); color: var(--white); }
.feature h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.feature p { font-size: 0.9rem; color: var(--muted); }

/* ============================================================
   TESTIMONI
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.35s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-card::before {
  content: '\201C';
  position: absolute; top: 6px; right: 26px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(14, 124, 123, 0.12);
  line-height: 1;
}
.stars { color: var(--accent); margin-bottom: 16px; font-size: 0.9rem; letter-spacing: 2px; }
.testi-card p { font-size: 0.95rem; font-style: italic; margin-bottom: 20px; }
.testi-user strong { display: block; color: var(--dark); }
.testi-user span { font-size: 0.82rem; color: var(--primary); font-weight: 600; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-alt); }
.contact-card {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  background: var(--white);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-info { padding: 52px; background: var(--grad); color: var(--white); }
.contact-info .section-tag { background: rgba(255,255,255,0.18); color: var(--white); }
.contact-info .section-title { color: var(--white); }
.contact-info > p { opacity: 0.95; margin-bottom: 28px; }
.contact-list { display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.contact-list i {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.contact-list a:hover { text-decoration: underline; }

.contact-form { padding: 52px; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--dark); margin-bottom: 24px; }
.contact-form form { display: grid; gap: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.3s;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--primary); }
.form-note { margin-top: 14px; font-size: 0.82rem; color: var(--muted); }
.form-note i { color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.85); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 48px; }
.footer .brand { color: var(--white); margin-bottom: 18px; }
.footer-about p { font-size: 0.92rem; opacity: 0.85; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: var(--white);
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--grad); transform: translateY(-3px); }
.footer-links h4, .footer-contact h4 {
  font-size: 1.05rem; color: var(--white);
  margin-bottom: 18px; font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; opacity: 0.85; transition: all 0.3s; }
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 10px; }
.footer-contact i { color: var(--accent); margin-right: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; text-align: center; font-size: 0.85rem; opacity: 0.8; }

.dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
}
.dev-credit:hover { color: var(--accent); }
.dev-credit img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; }
.dev-credit strong { color: var(--accent); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 999;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 2rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.wa-float:hover { transform: scale(1.1); }
.wa-float-text {
  position: absolute;
  right: 74px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.wa-float-text::after {
  content: ''; position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}
.wa-float:hover .wa-float-text { opacity: 1; }

/* ============================================================
   GALERI
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-more {
  text-align: center;
  margin-top: 44px;
}
.gallery-more .btn {
  padding: 14px 34px;
  font-size: 0.95rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
}
.gallery-skeleton {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #e2e8f0 25%, #eef2f7 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
  transition: opacity 0.4s ease;
}
.lightbox .gallery-skeleton {
  background: linear-gradient(90deg, #16364d 25%, #0f2435 50%, #16364d 75%);
}
@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.gallery-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.5s ease, transform 0.6s ease;
}
.gallery-img.loaded { opacity: 1; transform: scale(1); }
.gallery-item:hover .gallery-img { transform: scale(1.08); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 20, 30, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 30px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-body { position: relative; max-width: min(1100px, 92vw); max-height: 88vh; }
.lightbox-body .lightbox-skeleton {
  position: absolute;
  z-index: 1;
  width: 100%; height: 100%;
}
.lightbox-body img {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 10px;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.lightbox-body img.loaded { opacity: 1; transform: scale(1); }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--primary); transform: scale(1.08); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

/* ============================================================
   FACEBOOK FOLLOW CARD
   ============================================================ */
.fb-follow {
  max-width: 820px;
  margin: 0 auto 36px;
}
.fb-follow-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
  padding: 16px 20px;
}
.fb-follow-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fb-follow-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}
.fb-follow-id strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}
.fb-follow-id span {
  font-size: 0.85rem;
  color: var(--muted);
}
.fb-follow-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-fb { background: #1877f2; color: var(--white); }
.btn-fb:hover { background: #166fe5; color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(24, 119, 242, 0.35); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .umrah-wrap { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .fb-follow-card { flex-direction: column; align-items: flex-start; }
  .fb-follow-actions { width: 100%; }
  .fb-follow-actions .btn { flex: 1; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(78vw, 340px);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    z-index: 1001;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { color: var(--dark); font-size: 1.05rem; }
  .nav-menu a::after { background: var(--primary); }
  .nav-menu .btn-wa { align-self: stretch; }
  .hamburger { display: flex; z-index: 1002; }
  .lang-toggle { z-index: 1002; }
  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--dark); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--dark); }

  .hero-stats { gap: 28px; }
  .stat h3 { font-size: 1.6rem; }
  .dest-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-badge { right: 0; }
  .contact-info, .contact-form { padding: 36px 28px; }
  .about-img img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { padding-top: 130px; }
}
