/* ===================================================
   Ocean Sharm — Premium Styles (Red Sea theme)
   Palette: deep #072A45 · sea #0F9DB8 · gold #C8A96A
   =================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700&display=swap");

:root {
  --deep: #072A45;
  --sea: #0F9DB8;
  --sea-light: #56C7D9;
  --gold: #C8A96A;
  --gold-light: #DFC58F;
  --sand: #F4EFE6;
  --cream: #FBF9F4;
  --wa: #25D366;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}
body { overflow-x: hidden; }
img { max-width: 100%; }

::selection { background: var(--gold); color: var(--deep); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sea); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--deep); }

/* ============ TYPOGRAPHY ============ */
.section-eyebrow {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sea);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

/* ============ BUTTONS ============ */
.btn-gold, .btn-outline, .btn-sea, .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.85rem 2rem;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--deep); box-shadow: 0 10px 25px -8px rgba(200,169,106,0.7); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -8px rgba(200,169,106,0.85); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.7); color: #fff; backdrop-filter: blur(4px); }
.btn-outline:hover { background: #fff; color: var(--deep); transform: translateY(-3px); }
.btn-sea { background: var(--sea); color: #fff; }
.btn-sea:hover { background: var(--deep); transform: translateY(-3px); }
.btn-whatsapp { background: var(--wa); color: #fff; box-shadow: 0 10px 25px -8px rgba(37,211,102,0.6); }
.btn-whatsapp:hover { background: #1eb857; transform: translateY(-3px); }
.btn-whatsapp i { font-size: 1.2rem; }

/* ============ NAVBAR ============ */
#navbar {
  transition: transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
#navbar.nav-hidden {
  transform: translateY(-110%);
  pointer-events: none;
}
#navbar .nav-brand, #navbar .nav-item { color: #fff; }
#navbar .nav-item { position: relative; font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
#navbar .nav-item::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--gold); transition: width 0.3s; }
#navbar .nav-item:hover { color: var(--gold); }
#navbar .nav-item:hover::after { width: 100%; }
#navbar.scrolled { background: rgba(251,249,244,0.92); backdrop-filter: blur(14px); box-shadow: 0 6px 24px -12px rgba(0,0,0,0.25); }
#navbar.scrolled .nav-brand, #navbar.scrolled .nav-item { color: var(--deep); }
#navbar.scrolled .nav-item:hover { color: var(--sea); }
#navbar.scrolled .lang-current { color: var(--deep); border-color: rgba(7,42,69,0.25); }

#mobileMenu.open { display: flex; }
.mobile-link { transition: color 0.3s; }
.mobile-link:hover { color: var(--gold); }

/* ============ LANGUAGE SWITCHER ============ */
.lang-switch { position: relative; }
.lang-current {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem; font-weight: 500;
  transition: all 0.3s;
}
.lang-current:hover { border-color: var(--gold); color: var(--gold); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff;
  border-radius: 0.9rem;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,0.3);
  padding: 0.4rem;
  min-width: 150px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s;
  z-index: 60;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  width: 100%; text-align: left;
  padding: 0.55rem 0.8rem;
  border-radius: 0.6rem;
  font-size: 0.9rem; color: var(--deep);
  transition: background 0.2s;
}
.lang-menu button:hover, .lang-menu button.active { background: var(--sand); color: var(--sea); }

/* ============ HERO ============ */
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; display: none; }
.hero-image.is-active { display: block; }
.hero-video.is-hidden { display: none; }
.hero-sound-btn {
  position: absolute;
  z-index: 12;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .9rem;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(4,34,58,.58);
  color: #fff;
  font-size: .82rem;
  backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease;
}
.hero-sound-btn:hover { background: rgba(4,34,58,.85); transform: translateY(-2px); }
.hero-sound-btn.is-hidden { display: none; }
html[dir="rtl"] .hero-sound-btn { right: auto; left: 1.25rem; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(7,42,69,0.55), rgba(7,42,69,0.8)),
              radial-gradient(circle at 50% 40%, rgba(0,0,0,0.1), rgba(0,0,0,0.55));
}
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; }
.mouse { display:block; width:26px; height:44px; border:2px solid rgba(255,255,255,0.7); border-radius:20px; position:relative; }
.wheel { position:absolute; top:8px; left:50%; transform:translateX(-50%); width:4px; height:8px; background:var(--gold); border-radius:2px; animation: scrollWheel 1.6s ease-in-out infinite; }
@keyframes scrollWheel { 0%{opacity:1;top:8px;} 100%{opacity:0;top:22px;} }

/* ============ GLASS ============ */
.glass-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,0.35);
}

/* ============ TRIP FILTER ============ */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.45rem; }
.filter-btn {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--deep);
  background: #fff;
  border: 1px solid rgba(7,42,69,0.12);
  transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--sea); color: var(--sea); }
.filter-btn.active { background: var(--sea); color: #fff; border-color: var(--sea); box-shadow: 0 8px 18px -8px rgba(15,157,184,0.7); }

/* ============ TRIP CARDS ============ */
.trip-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 14px 40px -22px rgba(7,42,69,0.4);
  border: 1px solid rgba(15,157,184,0.1);
  display: flex; flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  opacity: 0; transform: translateY(30px);
}
.trip-card.show { opacity: 1; transform: translateY(0); }
.trip-card:hover { transform: translateY(-10px); box-shadow: 0 28px 55px -24px rgba(7,42,69,0.5); }
.trip-img { position: relative; height: 220px; overflow: hidden; }
.trip-img img { width:100%; height:100%; object-fit: cover; transition: transform 0.7s; }
.trip-card:hover .trip-img img { transform: scale(1.1); }
.trip-cat {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(7,42,69,0.85); color: #fff;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.trip-duration {
  position: absolute; bottom: 1rem; right: 1rem;
  background: rgba(255,255,255,0.9); color: var(--deep);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.3rem 0.75rem; border-radius: 999px;
}
.trip-duration i { color: var(--sea); margin-right: 0.3rem; }
.trip-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.trip-title { font-family: "Playfair Display", serif; font-size: 1.3rem; font-weight: 600; color: var(--deep); margin-bottom: 0.5rem; }
.trip-desc {
  color: rgba(7,42,69,0.7); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.trip-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: auto; }
.trip-price small { font-size: 0.72rem; color: rgba(7,42,69,0.55); display: block; }
.trip-price b { font-family: "Playfair Display", serif; font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.trip-price span { font-size: 0.75rem; color: rgba(7,42,69,0.55); }
.trip-actions { display: flex; gap: 0.5rem; }
.trip-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; transition: all 0.3s;
}
.trip-btn.book { background: var(--sea); color: #fff; }
.trip-btn.book:hover { background: var(--deep); }
.trip-btn.details { background: transparent; border: 1.5px solid var(--sea); color: var(--sea); }
.trip-btn.details:hover { background: var(--sea); color: #fff; }
.trip-btn.wa { background: var(--wa); color: #fff; }
.trip-btn.wa:hover { background: #1eb857; }
.trip-empty { grid-column: 1 / -1; text-align: center; color: rgba(7,42,69,0.5); padding: 3rem 0; }

/* ============ GALLERY MASONRY ============ */
.masonry { column-count: 3; column-gap: 1.25rem; }
.masonry-item { margin-bottom: 1.25rem; break-inside: avoid; border-radius: 1rem; overflow: hidden; position: relative; box-shadow: 0 12px 30px -16px rgba(0,0,0,0.4); cursor: pointer; }
.masonry-item img { width: 100%; display: block; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.masonry-item::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(7,42,69,0.5), transparent 55%); opacity:0; transition: opacity 0.5s; }
.masonry-item:hover img { transform: scale(1.12); }
.masonry-item:hover::after { opacity: 1; }
.play-badge {
  position: absolute; inset: 0; margin: auto;
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.9); color: var(--sea);
  font-size: 1.3rem; z-index: 2;
  transition: transform 0.3s;
}
.video-item:hover .play-badge { transform: scale(1.12); }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }

/* Video modal */
.video-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(4,20,34,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.video-modal.open { display: flex; }
.video-modal video { max-width: 90vw; max-height: 82vh; border-radius: 1rem; box-shadow: 0 30px 60px -20px #000; }
.video-close { position: absolute; top: 1.5rem; right: 1.5rem; color: #fff; font-size: 2rem; }
.video-close:hover { color: var(--gold); }

/* ============ REVIEWS CAROUSEL ============ */
.carousel { overflow: hidden; direction: ltr; width: 100%; }
.carousel-track { display: flex; width: 100%; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); will-change: transform; }
.carousel-slide { flex: 0 0 100%; width: 100%; max-width: 100%; box-sizing: border-box; padding: 0 1rem; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1.5rem; letter-spacing: 0.2em; }
.quote { font-family: "Playfair Display", serif; font-style: italic; font-size: clamp(1.1rem, 2.4vw, 1.55rem); color: #fff; line-height: 1.6; margin-bottom: 2rem; }
.author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.author h4 { color: #fff; font-weight: 600; text-align: left; }
.author span { color: var(--gold); font-size: 0.85rem; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.carousel-controls button { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.3); color: #fff; transition: all 0.3s; }
.carousel-controls button:hover { background: var(--gold); color: var(--deep); border-color: var(--gold); }
.carousel-dots { display: flex; gap: 0.6rem; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); transition: all 0.3s; }
.carousel-dots button.active { background: var(--gold); width: 28px; border-radius: 999px; }

/* ============ FAQ ============ */
.faq-item { background:#fff; border-radius:1rem; border:1px solid rgba(15,157,184,0.18); overflow:hidden; transition: box-shadow 0.3s; }
.faq-item.active { box-shadow: 0 12px 30px -16px rgba(7,42,69,0.3); }
.faq-question { width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.4rem 1.6rem; font-weight:600; text-align:left; color:var(--deep); font-size:1.02rem; }
.faq-question i { color: var(--sea); transition: transform 0.4s; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(135deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease, padding 0.45s ease; padding: 0 1.6rem; }
.faq-answer p { color: rgba(7,42,69,0.7); line-height: 1.7; }
.faq-item.active .faq-answer { padding: 0 1.6rem 1.4rem; }

/* ============ CONTACT ============ */
.contact-card { display: flex; align-items: flex-start; gap: 1rem; background: #fff; border: 1px solid rgba(15,157,184,0.15); border-radius: 1rem; padding: 1.25rem 1.4rem; transition: transform 0.3s, box-shadow 0.3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -18px rgba(7,42,69,0.35); }
.contact-ic { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; background: rgba(15,157,184,0.12); color: var(--sea); font-size: 1.1rem; }
.contact-card h4 { color: var(--deep); font-weight: 600; margin-bottom: 0.15rem; }
.contact-card p, .contact-card a { color: rgba(7,42,69,0.7); font-size: 0.92rem; }
.contact-card a:hover { color: var(--sea); }

/* ============ FORM ============ */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { color: #fff; font-size: 0.82rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0.7rem; padding: 0.8rem 1rem;
  color: #fff; font-family: "Poppins", sans-serif; font-size: 0.92rem;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group select option { color: var(--deep); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.16); }
.form-group input.invalid, .form-group textarea.invalid { border-color: #e07a7a; }
.form-status { margin-top: 1rem; font-size: 0.9rem; text-align: center; min-height: 1.2rem; }
.form-status.success { color: var(--gold-light); }
.form-status.error { color: #f0a5a5; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); }

/* ============ FOOTER ============ */
.footer-title { color: #fff; font-family: "Playfair Display", serif; font-weight: 600; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.9rem; }
.footer-links a { transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.social { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; transition: all 0.3s; position: relative; }
.social:hover { background: var(--gold); color: var(--deep); transform: translateY(-4px); }
.social::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #072A45;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.35rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.social:hover::after { opacity: 1; }

/* ============ MAP ============ */
.map-wrap { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 20px 50px -22px rgba(7,42,69,0.4); border: 1px solid rgba(15,157,184,0.25); min-height: 420px; }
.map-wrap iframe { display: block; height: 100%; }

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 60;
  display: inline-flex; align-items: center; gap: 0;
  background: var(--wa); color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.7);
  overflow: hidden;
  transition: all 0.35s;
}
.wa-float i { width: 58px; height: 58px; display: grid; place-items: center; font-size: 1.7rem; flex-shrink: 0; }
.wa-tip { max-width: 0; white-space: nowrap; overflow: hidden; font-size: 0.9rem; font-weight: 600; transition: max-width 0.4s ease, padding 0.4s ease; }
.wa-float:hover { transform: translateY(-3px); }
.wa-float:hover .wa-tip { max-width: 200px; padding-right: 1.2rem; }
@keyframes waPulse { 0%,100%{ box-shadow:0 12px 30px -8px rgba(37,211,102,0.7);} 50%{ box-shadow:0 12px 40px 0 rgba(37,211,102,0.9);} }
.wa-float { animation: waPulse 2.5s ease-in-out infinite; }

/* ============ BACK TO TOP ============ */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--deep); display: grid; place-items: center; box-shadow: 0 10px 25px -8px rgba(200,169,106,0.7); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s; z-index: 55; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ============ SCROLL REVEAL ============ */
.reveal, .reveal-left, .reveal-right, .fade-up {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.fade-up { transform: translateY(30px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .fade-up.visible { opacity: 1; transform: translate(0,0); }
.hero-loaded .fade-up { animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) forwards; animation-delay: var(--delay, 0s); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-left, .reveal-right, .fade-up, .trip-card { opacity: 1 !important; transform: none !important; }
}

/* ===================================================
   ADMIN PANEL
   =================================================== */
.admin-body { background: var(--sand); min-height: 100vh; }
.admin-topbar { background: var(--deep); color: #fff; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 20; }
.admin-topbar .brand { display: flex; align-items: center; gap: 0.6rem; font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.2rem; }
.admin-topbar .brand i { color: var(--gold); }
.admin-wrap { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }

.login-box { max-width: 380px; margin: 12vh auto; background: #fff; border-radius: 1.25rem; padding: 2.5rem 2rem; box-shadow: 0 20px 50px -20px rgba(7,42,69,0.35); text-align: center; }
.login-box i.logo { font-size: 2.5rem; color: var(--sea); margin-bottom: 1rem; }
.login-box h1 { font-family: "Playfair Display", serif; font-size: 1.5rem; color: var(--deep); margin-bottom: 0.4rem; }
.login-box p { color: rgba(7,42,69,0.6); font-size: 0.9rem; margin-bottom: 1.5rem; }
.admin-input { width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(7,42,69,0.2); border-radius: 0.7rem; font-family: "Poppins", sans-serif; font-size: 0.95rem; color: var(--deep); transition: border-color 0.3s; }
.admin-input:focus { outline: none; border-color: var(--sea); }
.login-hint { font-size: 0.78rem; color: rgba(7,42,69,0.45); margin-top: 1rem; }
.login-err { color: #d05656; font-size: 0.85rem; min-height: 1.1rem; margin-top: 0.5rem; }

.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: #fff; border-radius: 1rem; padding: 1.3rem 1.5rem; box-shadow: 0 10px 26px -18px rgba(7,42,69,0.3); }
.stat-card b { font-family: "Playfair Display", serif; font-size: 1.8rem; color: var(--sea); display: block; }
.stat-card span { font-size: 0.82rem; color: rgba(7,42,69,0.6); }

.admin-section { background: #fff; border-radius: 1.25rem; padding: 1.75rem; box-shadow: 0 12px 30px -20px rgba(7,42,69,0.3); margin-bottom: 1.75rem; }
.admin-section h2 { font-family: "Playfair Display", serif; font-size: 1.3rem; color: var(--deep); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.admin-section h2 i { color: var(--gold); }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(7,42,69,0.5); padding: 0.6rem 0.75rem; border-bottom: 2px solid var(--sand); }
.admin-table td { padding: 0.75rem; border-bottom: 1px solid var(--sand); font-size: 0.9rem; vertical-align: middle; }
.admin-table tr:hover td { background: #fbfcfd; }
.admin-table img { width: 54px; height: 40px; object-fit: cover; border-radius: 0.4rem; }
.admin-cat { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; background: rgba(15,157,184,0.12); color: var(--sea); padding: 0.2rem 0.6rem; border-radius: 999px; }
.admin-actions { display: flex; gap: 0.4rem; }
.icon-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  transition: all 0.25s;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  text-decoration: none;
}
.icon-btn.edit { background: rgba(15,157,184,0.12); color: var(--sea); }
.icon-btn.edit:hover { background: var(--sea); color: #fff; }
.icon-btn.del { background: rgba(208,86,86,0.12); color: #d05656; }
.icon-btn.del:hover { background: #d05656; color: #fff; }
.table-scroll { overflow-x: auto; }

.admin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.admin-field { display: flex; flex-direction: column; gap: 0.35rem; }
.admin-field label { font-size: 0.8rem; font-weight: 500; color: var(--deep); }
.admin-field textarea { resize: vertical; min-height: 70px; }
.admin-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.5rem; border-radius: 0.7rem; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.3s; text-decoration: none; border: 0; font-family: inherit; }
.admin-btn.primary { background: var(--sea); color: #fff; }
.admin-btn.primary:hover { background: var(--deep); }
.admin-btn.ghost { background: var(--sand); color: var(--deep); }
.admin-btn.ghost:hover { background: #e9e1d2; }
.admin-btn.danger { background: transparent; color: #d05656; border: 1px solid #d05656; }
.admin-btn.danger:hover { background: #d05656; color: #fff; }
.admin-toast { position: fixed; bottom: 24px; right: 24px; background: var(--deep); color: #fff; padding: 0.9rem 1.4rem; border-radius: 0.8rem; box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4); opacity: 0; transform: translateY(20px); transition: all 0.35s; z-index: 90; }
.admin-toast.show { opacity: 1; transform: translateY(0); }
.admin-toast.err { background: #c0392b; }

@media (max-width: 640px) {
  .btn-gold, .btn-outline, .btn-sea, .btn-whatsapp { width: 100%; }
  .trip-foot { flex-direction: column; align-items: flex-start; }
  .trip-actions { width: 100%; }
  .trip-btn { flex: 1; justify-content: center; }
}

/* ===================================================
   SUB-PAGE BANNER (page hero)
   =================================================== */
.page-hero {
  position: relative;
  min-height: 36vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero .ph-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero .ph-content { position: relative; z-index: 2; padding: 5rem 1.5rem 2rem; max-width: 800px; }
.page-hero .ph-eyebrow { color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.78rem; font-weight: 600; margin-bottom: 0.8rem; }
.page-hero .ph-title { font-family: "Playfair Display", serif; color: #fff; font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; }
.page-hero .ph-sub { color: rgba(255,255,255,0.85); margin-top: 0.75rem; font-size: 1.02rem; }
.breadcrumb { margin-top: 0.9rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===================================================
   TRIP DETAILS PAGE
   =================================================== */
.detail-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start; }
.detail-media-col { display: flex; flex-direction: column; gap: 0.85rem; }
.detail-media { position: relative; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 24px 50px -24px rgba(7,42,69,0.5); }
.detail-media img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; display: block; }
.detail-media video { width: 100%; max-height: 520px; object-fit: cover; display: block; background: #000; }
.detail-thumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0; }
.detail-thumbs button {
  position: relative;
  width: 72px; height: 56px; padding: 0; border: 2px solid transparent; border-radius: 0.5rem; overflow: hidden; cursor: pointer; background: none;
}
.detail-thumbs button.active { border-color: var(--gold); }
.detail-thumbs img,
.detail-thumbs video { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-thumb-video { background: #04223a; }
.detail-thumb-video video { pointer-events: none; }
.detail-thumb-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,34,58,0.35);
  color: #fff;
  pointer-events: none;
}
.detail-thumb-play i {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,106,0.95);
  color: #04223a;
  font-size: 0.62rem;
  padding-inline-start: 0.12rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.detail-video-btn {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 4;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(200,169,106,0.95);
  color: #04223a;
  font-size: 0.78rem;
  padding-inline-start: 0.12rem;
  cursor: pointer;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,.5);
}
.detail-video-btn:hover { background: #fff; }
.detail-cat { position: absolute; top: 1rem; left: 1rem; background: rgba(7,42,69,0.85); color: #fff; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.4rem 0.9rem; border-radius: 999px; backdrop-filter: blur(4px); }
.detail-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--sea); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; transition: gap 0.3s; }
.detail-back:hover { gap: 0.8rem; }
.detail-title { font-family: "Playfair Display", serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--deep); line-height: 1.15; margin-bottom: 1rem; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 1.25rem; }
.detail-meta span { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(7,42,69,0.7); font-size: 0.92rem; }
.detail-meta i { color: var(--sea); }
.detail-desc { color: rgba(7,42,69,0.75); line-height: 1.8; margin-bottom: 1.75rem; }
.detail-sub { font-family: "Playfair Display", serif; font-size: 1.25rem; color: var(--deep); margin-bottom: 1rem; }
.detail-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 2rem; }
.detail-includes li { display: flex; align-items: center; gap: 0.65rem; color: rgba(7,42,69,0.8); font-size: 0.92rem; }
.detail-includes i { color: var(--sea); width: 20px; text-align: center; }
.detail-price-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; background: var(--sand); border-radius: 1rem; padding: 1.25rem 1.5rem; }
.detail-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

@media (max-width: 860px) {
  .detail-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}
@media (max-width: 480px) {
  .detail-includes { grid-template-columns: 1fr; }
}

/* ===================================================
   ABOUT PAGE — value cards & stats
   =================================================== */
.value-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(15,157,184,0.12);
  box-shadow: 0 14px 34px -22px rgba(7,42,69,0.35);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.value-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -26px rgba(7,42,69,0.45); }
.value-ic {
  width: 66px; height: 66px; margin: 0 auto 1.25rem;
  display: grid; place-items: center;
  border-radius: 1rem;
  font-size: 1.6rem; color: #fff;
  background: linear-gradient(135deg, var(--sea), var(--sea-light));
  transition: transform 0.4s;
}
.value-card:hover .value-ic { transform: rotate(-8deg) scale(1.08); }
a.value-card { text-decoration: none; color: inherit; display: block; }
.value-card h3 { font-family: "Playfair Display", serif; font-size: 1.2rem; font-weight: 600; color: var(--deep); margin-bottom: 0.5rem; }
.value-card p { color: rgba(7,42,69,0.68); font-size: 0.9rem; line-height: 1.6; }

.stat-num { display: block; font-family: "Playfair Display", serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--gold); }
.stat-lbl { display: block; margin-top: 0.35rem; font-size: 0.85rem; letter-spacing: 0.03em; color: rgba(255,255,255,0.75); }

/* Booking page perks */
.booking-perk {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1rem; padding: 1.25rem 1.4rem;
}
.booking-perk i { font-size: 1.5rem; color: var(--gold); width: 28px; text-align: center; flex-shrink: 0; margin-top: 0.15rem; }
.booking-perk h4 { color: #fff; font-weight: 600; margin-bottom: 0.25rem; }
.booking-perk p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.5; }

/* Review cards grid */
.review-card {
  background: #fff; border-radius: 1rem; padding: 1.5rem;
  border: 1px solid rgba(15,157,184,0.15);
  box-shadow: 0 12px 30px -20px rgba(7,42,69,0.3);
}
.review-card .stars { color: var(--gold); margin-bottom: 0.75rem; }
.review-card p { color: rgba(7,42,69,0.75); font-size: 0.92rem; line-height: 1.6; margin-bottom: 0.75rem; font-style: italic; }
.review-card span { font-size: 0.82rem; color: rgba(7,42,69,0.55); font-weight: 500; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--deep), #0a4a6e);
  border-radius: 1.5rem; padding: 2rem 1.5rem; text-align: center;
  box-shadow: 0 24px 50px -24px rgba(7,42,69,0.5);
}
.cta-banner h2 { font-family: "Playfair Display", serif; color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }

/* ============ RTL (Arabic) ============ */
html[dir="rtl"] body {
  font-family: "Cairo", "Poppins", sans-serif;
}
html[dir="rtl"] .section-title,
html[dir="rtl"] .footer-title,
html[dir="rtl"] .nav-brand,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .ph-title,
html[dir="rtl"] .trip-title,
html[dir="rtl"] .cta-banner h2 {
  font-family: "Cairo", "Playfair Display", serif;
}
html[dir="rtl"] .section-eyebrow,
html[dir="rtl"] .ph-eyebrow {
  letter-spacing: 0.08em;
}
html[dir="rtl"] .lang-menu {
  left: auto;
  right: 0;
}
html[dir="rtl"] .lang-menu button {
  text-align: right;
}
html[dir="rtl"] .wa-float {
  left: auto;
  right: 28px;
}
html[dir="rtl"] .wa-float:hover .wa-tip {
  padding-right: 0;
  padding-left: 1.2rem;
}
html[dir="rtl"] .back-to-top {
  right: auto;
  left: 28px;
}
html[dir="rtl"] .footer-links i.mr-2,
html[dir="rtl"] .footer-links .fa-solid {
  margin-right: 0;
  margin-left: 0.5rem;
}
html[dir="rtl"] #menuClose {
  right: auto;
  left: 1.5rem;
}
