/* ============================================================
   DUBAI HOLIDAY — COMPONENTS (City of Gold Redesign)
   ============================================================ */

/* ===== TOP MARQUEE BAR ===== */
.trust-bar {
  background: linear-gradient(90deg, var(--trustbar-bg-from), var(--trustbar-bg-mid), var(--trustbar-bg-to));
  border-bottom: 1px solid var(--border-gold);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.trust-bar-inner {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--trustbar-text);
  white-space: nowrap;
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.trust-item-dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.trust-item svg { width: 12px; height: 12px; fill: var(--trustbar-icon); flex-shrink: 0; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--trans);
}
.nav-row-main {
  background: transparent;
  transition: background 0.45s ease, backdrop-filter 0.45s ease;
}
.navbar.scrolled .nav-row-main {
  background: var(--nav-bg-scrolled);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border-gold), 0 8px 48px rgba(80,50,20,0.14);
}

/* Transparent navbar (on hero) — links white for visibility over dark photo */
/* .navbar:not(.scrolled) .nav-links a { */
  /* color: rgba(255,250,242,0.90); */
/* } */
/* .navbar:not(.scrolled) .nav-links a:hover, */
/* .navbar:not(.scrolled) .nav-links a.active { */
  /* color: var(--gold-bright); */
/* }
.navbar:not(.scrolled) .logo-brand,
.navbar:not(.scrolled) .logo-brand span { */
  /* color: rgba(255,250,242,0.95); */
/* }
.navbar:not(.scrolled) .logo-tagline { */
  /* color: rgba(255,250,242,0.65); */
/* } */
.navbar:not(.scrolled) .nav-cta {
  color: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
}
.navbar:not(.scrolled) .nav-cta:hover {
  background: rgba(255,250,242,0.12) !important;
  border-color:  #2A1F14 !important;
  color: #2A1F14 !important;
}
.navbar:not(.scrolled) .hamburger span {
  background: var(--gold-light);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px;
  border: 1px solid var(--border-gold2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--logo-mark-bg-from), var(--logo-mark-bg-to));
  position: relative;
  overflow: hidden;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent);
}
.logo-mark svg { width: 22px; height: 22px; fill: var(--gold-light); position: relative; z-index: 1; }
.logo-brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--logo-brand-color);
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-brand span { color: var(--gold); }
.logo-tagline {
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: var(--logo-brand-color);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.28s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: transparent !important;
  color: var(--gold-light) !important;
  padding: 10px 24px !important;
  border: 1px solid var(--border-gold2) !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  transition: var(--trans) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-glow) !important;
  border-color: var(--gold) !important;
  color: var(--gold-bright) !important;
  box-shadow: 0 0 24px rgba(201,168,76,0.2) !important;
}

/* Sub nav — Package categories */
.nav-row-pkg {
  background: var(--nav-bg-subnav);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--nav-subnav-border);
}
.nav-pkg-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  height: 44px;
  gap: 0;
}
.nav-pkg-inner::-webkit-scrollbar { display: none; }
.nav-pkg-inner a {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--logo-brand-color);
  padding: 0 50px;
  height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: color 0.25s, background 0.25s;
  border-right: 1px solid var(--border-gold);
  flex-shrink: 0;
  position: relative;
}
/* .nav-pkg-inner a:first-child { padding-left: 0; } */
.nav-pkg-inner a:last-child { border-right: none; }
.nav-pkg-inner a:hover,
.nav-pkg-inner a.active { color: var(--gold-light); }
.nav-pkg-inner a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 22px; right: 22px;
  height: 2px;
  background: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  /* color: black; */
  /* background-color: var(--gold-light); */
}
.hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  /* background: var(--ivory); */
  border-radius: 2px;
  transition: var(--trans-fast);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--mobilemenu-bg);
  border-top: 1px solid var(--border-gold);
  padding: 24px 28px;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--mobilemenu-text);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--nav-subnav-border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu a.nav-cta {
  margin-top: 16px;
  text-align: center;
  border: 1px solid var(--border-gold2) !important;
  border-radius: var(--radius-sm) !important;
  padding: 14px 0 !important;
  color: var(--gold-light) !important;
  border-bottom: 1px solid var(--border-gold2) !important;
}
.mobile-pkg-link { color: var(--ivory-muted) !important; padding-left: 14px !important; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-row-pkg { display: none; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0;
  background: var(--ink2);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border-gold);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.stat-item:hover::before { opacity: 1; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin-top: 6px;
}
@media (max-width: 600px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border-gold); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border-gold); border-right: none; }
}

/* ===== EXPERIENCE SECTION ===== */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.experience-imgs {
  position: relative;
  padding-bottom: 60px;
  padding-right: 40px;
}
.experience-img-main {
  width: 100%; height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-gold);
}
.experience-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hover);
  outline: 1px solid var(--border-gold);
}
.experience-badge {
  position: absolute;
  top: 32px; left: -24px;
  background: var(--ink2);
  border: 1px solid var(--border-gold2);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.experience-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.experience-badge-txt {
  font-size: 0.66rem;
  color: var(--ivory-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.5;
}
.experience-points { margin: 36px 0 44px; display: flex; flex-direction: column; gap: 22px; }
.experience-point { display: flex; gap: 18px; align-items: flex-start; }
.experience-point-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-glow);
  transition: var(--trans);
}
.experience-point:hover .experience-point-icon {
  background: var(--gold-glow-hard);
  border-color: var(--gold);
}
.experience-point-icon svg { width: 18px; height: 18px; fill: var(--gold-light); }
.experience-point-title { font-size: 0.92rem; font-weight: 600; color: var(--ivory); margin-bottom: 4px; }
.experience-point-desc { font-size: 0.84rem; color: #2A1F14; line-height: 1.7; font-weight: 300; }
@media (max-width: 900px) {
  .experience-grid { grid-template-columns: 1fr; gap: 48px; }
  .experience-imgs { padding-right: 0; }
  .experience-badge { left: 16px; top: 16px; }
}

/* ===== WHY-US GRID ===== */
.why-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 56px;
}
.why-highlight-card {
  background: var(--ink2);
  padding: 40px 32px;
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
.why-highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-highlight-card:hover { background: var(--ink3); }
.why-highlight-card:hover::before { opacity: 1; }
.why-highlight-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 200;
  color: var(--gold-line);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.05em;
}
.why-highlight-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: var(--gold-glow);
}
.why-highlight-icon svg { width: 20px; height: 20px; fill: var(--gold-light); }
.why-highlight-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--logo-brand-color);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.why-highlight-desc { font-size: 0.85rem; color: #2A1F14; line-height: 1.8; font-weight: 300; }
@media (max-width: 900px) {
  .why-highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-highlights-grid { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--ink3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold-glow-hard);
  line-height: 1;
}
.testimonial-card:hover {
  border-color: var(--border-gold2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1.85;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--ivory); }
.testimonial-from { font-size: 0.74rem; color: var(--ivory-muted); font-weight: 400; margin-top: 2px; letter-spacing: 0.06em; }
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--ink3) 0%, var(--ink4) 50%, var(--ink3) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--logo-brand-color);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.cta-banner h2 em { color: var(--gold-light); font-style: italic; }
.cta-banner p {
  font-size: 1rem;
  color: var(--ivory-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 700px) {
  .cta-banner { padding: 48px 28px; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 64px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-mark {
  width: 40px; height: 40px;
  border: 1px solid var(--border-gold2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-glow);
}
.footer-logo-mark svg { width: 20px; height: 20px; fill: var(--gold-light); }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--logo-brand-color);
}
.footer-logo-text span { color: var(--gold-light); }
.footer-desc {
  font-size: 0.88rem;
  color: #2A1F14;
  line-height: 1.85;
  margin-bottom: 28px;
  font-weight: 300;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--trans-fast);
  color: #2A1F14;
  background: transparent;
}
.social-btn:hover { border-color: var(--gold); background: var(--gold-glow); color: var(--gold-light); }

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.86rem;
  color: #2A1F14;
  font-weight: 300;
  transition: color 0.22s;
  letter-spacing: 0.02em;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.footer-contact-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-glow);
}
.footer-contact-icon svg { width: 15px; height: 15px; fill: var(--gold-light); }
.footer-contact-label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory-muted); margin-bottom: 2px; }
.footer-contact-val { font-size: 0.86rem; color: var(--ivory-dim); font-weight: 400; }
.footer-contact-val a { color: var(--ivory-dim); transition: color 0.2s; }
.footer-contact-val a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.76rem; color: var(--ivory-muted); letter-spacing: 0.06em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.76rem; color: var(--ivory-muted); transition: color 0.2s; letter-spacing: 0.04em; }
.footer-legal a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  transition: var(--trans);
}
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--ink2);
  color: var(--logo-brand-color);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  box-shadow: var(--shadow-soft);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 98px; right: 28px;
  width: 44px; height: 44px;
  background: var(--ink3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  z-index: 998;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-glow); border-color: var(--gold); }

/* ===== FIXED BUTTONS — right: 20px, same 44×44 size ===== */
.whatsapp-btn {
    bottom: 24px !important;
    right: 20px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35) !important;
}
.whatsapp-btn svg {
    width: 22px !important;
    height: 22px !important;
}
.whatsapp-btn:hover {
    transform: scale(1.06) !important;
}
.back-to-top {
    bottom: 78px !important;
    right: 20px !important;
    width: 44px !important;
    height: 44px !important;
}
.whatsapp-tooltip {
    right: 52px !important;
}
