/* ============================================================
   Travel2Rise — Main Stylesheet
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --bg:        #FAFAF8;
  --primary:   #075aae;
  --gold:      #C9A84C;
  --gold-light:#E8C96D;
  --navy:      #0D1B2A;
  --text:      #1A1A1A;
  --text-body: #4A4A4A;
  --card-bg:   #FFFFFF;
  --border:    rgba(201,168,76,0.2);
  --shadow:    0 4px 24px rgba(7,90,174,0.08);
  --shadow-hover: 0 12px 40px rgba(7,90,174,0.15);

  --font-ui:   'Montserrat', sans-serif;
  --font-serif:'Playfair Display', serif;

  --radius:    12px;
  --radius-sm: 6px;
  --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  --max-width: 1200px;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-ui); }

/* --- Utility ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.section-subtext {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.7;
}
.section-header-center {
  text-align: center;
  margin-bottom: 64px;
}
.section-header-center .section-subtext {
  margin: 0 auto;
}

/* Gold divider */
.gold-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 24px;
}
.gold-divider.center { margin: 0 auto 24px; }

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: #0550a0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7,90,174,0.3);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp-outline {
  background: #25D366;
  color: #fff;
  font-weight: 700;
}
.btn-whatsapp-outline:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(250,250,248,0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  padding: 14px 0;
  backdrop-filter: blur(12px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.4s;
  letter-spacing: -0.01em;
}
.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav.scrolled .nav__logo-main { color: var(--text); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--text-body); }
.nav.scrolled .nav__links a:hover { color: var(--primary); }

.nav__cta { flex-shrink: 0; }
.nav__cta .btn { padding: 10px 20px; font-size: 0.82rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__hamburger span { background: var(--text); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .btn { font-size: 1rem; padding: 16px 40px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-KbtfseYfgaE?w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.92) 0%,
    rgba(13,27,42,0.5) 40%,
    rgba(13,27,42,0.15) 100%
  );
}
/* Subtle geometric Islamic pattern overlay */
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='1'%3E%3Cpath d='M30 0l5.196 9L45 9l-5.196 9H30l-5.196-9H15l5.196-9zm0 42l5.196 9H45l-5.196 9H30l-5.196-9H15l5.196-9zM0 21l5.196 9L15 30l-5.196 9H0l-5.196-9H-15l5.196-9zm60 0l5.196 9L75 30l-5.196 9H60l-5.196-9H45l5.196-9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  width: 100%;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  margin-right: 0.2em;
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.5);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-body);
  text-transform: uppercase;
}
.trust-bar__dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.trust-bar__divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* ============================================================
   WHY READ2RISE
   ============================================================ */
.why-us { background: var(--bg); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(7,90,174,0.08), rgba(201,168,76,0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-card__icon svg {
  width: 24px; height: 24px;
  stroke: var(--primary);
}
.why-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.why-card__desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { background: #F5F5F2; }
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.package-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.package-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover .package-card__img img {
  transform: scale(1.04);
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.package-card--featured {
  border: 2px solid var(--gold);
  position: relative;
}
.package-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.package-card__header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.package-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.package-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.package-duration {
  font-size: 0.875rem;
  color: var(--text-body);
}
.package-card__body {
  padding: 24px 28px;
  flex: 1;
}
.package-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: var(--text-body);
}
.package-detail svg {
  width: 16px; height: 16px;
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.package-card__footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.package-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.package-price-note {
  font-size: 0.8rem;
  color: var(--text-body);
  margin-bottom: 16px;
}
.packages__footer {
  text-align: center;
  margin-top: 48px;
}
.packages__footer a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.packages__footer a:hover { gap: 10px; }

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

.hotel-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}
.hotel-intro--reverse { direction: rtl; }
.hotel-intro--reverse > * { direction: ltr; }

.hotel-intro__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hotel-intro__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hotel-intro__media:hover img { transform: scale(1.04); }
.hotel-intro__media-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(13,27,42,0.85);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.hotel-destination {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.hotel-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.hotel-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
}
.hotel-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hotel-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
  background: rgba(7,90,174,0.06);
  padding: 6px 12px;
  border-radius: 20px;
}
.hotel-feature svg {
  width: 14px; height: 14px;
  stroke: var(--primary);
}

.hotel-rooms__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 24px;
}
.room-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.room-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.room-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.room-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card__img img { transform: scale(1.06); }
.room-card__body { padding: 20px; }
.room-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
}
.room-card__features {
  list-style: none;
  margin-bottom: 16px;
}
.room-card__features li {
  font-size: 0.82rem;
  color: var(--text-body);
  padding: 4px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.room-card__features li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.room-card__price {
  font-size: 0.8rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 14px;
}
.hotel-section__link {
  text-align: right;
  margin-top: 32px;
}
.hotel-section__link a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.hotel-section__link a:hover { gap: 10px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--navy); }
.how-it-works .section-heading { color: #fff; }
.how-it-works .section-subtext { color: rgba(255,255,255,0.6); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.667% + 40px);
  right: calc(16.667% + 40px);
  height: 1px;
  background: rgba(201,168,76,0.25);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  opacity: 0;
  transform: translateY(20px);
}
.step__number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.step__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.3s;
}
.faq__question:hover { color: var(--primary); }
.faq__question svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s;
}
.faq__item.open .faq__question svg { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.faq__answer-inner {
  padding-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--navy);
  padding: 112px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M40 0l6 10.4L56 10.4l-6 10.4H40l-6-10.4H24l6-10.4zM40 59.2l6 10.4L56 69.6l-6 10.4H40l-6-10.4H24l6-10.4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.final-cta__content { position: relative; z-index: 1; }
.final-cta__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.final-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.final-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #070F18;
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer__brand .nav__logo-main { font-size: 1.4rem; }
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 280px;
}
.footer__academy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer__academy:hover { color: var(--gold); }
.footer__col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer__links a:hover { color: #fff; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.footer__contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-float__btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 4s infinite;
}
.wa-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  animation: none;
}
.wa-float__btn svg {
  width: 30px; height: 30px;
  fill: #fff;
}
.wa-float__label {
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.wa-float:hover .wa-float__label {
  opacity: 1;
  transform: translateX(0);
}
@keyframes waPulse {
  0%, 90%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  95% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.12); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,0.9), rgba(13,27,42,0.5));
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.page-hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
}

/* Page anchor nav */
.anchor-nav {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.anchor-nav__inner {
  display: flex;
  gap: 0;
}
.anchor-nav__link {
  padding: 18px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s, background 0.3s;
  border-bottom: 3px solid transparent;
}
.anchor-nav__link:hover,
.anchor-nav__link.active {
  color: #fff;
  border-bottom-color: var(--gold);
  background: rgba(255,255,255,0.03);
}

/* ============================================================
   PACKAGES PAGE — Full comparison
   ============================================================ */
.packages-full { background: var(--bg); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
}
.comparison-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  border-bottom: 2px solid var(--gold);
}
.comparison-table th:first-child { color: transparent; }
.comparison-table th.featured { color: var(--gold); }
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  color: var(--text-body);
  vertical-align: middle;
}
.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.comparison-table tr:hover td { background: rgba(7,90,174,0.02); }
.comparison-table .check { color: #25D366; font-size: 1.1rem; }
.comparison-table .cross { color: rgba(0,0,0,0.2); font-size: 1.1rem; }

.packages-cta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.package-cta-card {
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.package-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.package-cta-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.03), rgba(7,90,174,0.03));
}
.package-cta-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.package-cta-card__price {
  font-size: 2rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.package-cta-card__sub {
  font-size: 0.8rem;
  color: var(--text-body);
  margin-bottom: 24px;
}

/* Departure dates */
.departures { background: #F5F5F2; }
.departures__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.departure-card {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 16px;
}
.departure-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.departure-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
}
.departure-text { font-size: 0.875rem; color: var(--text-body); }
.departure-text strong { display: block; color: var(--text); margin-bottom: 2px; }

/* ============================================================
   HOTELS PAGE — Full detail
   ============================================================ */
.hotel-detail { padding: 80px 0; }
.hotel-detail__hero {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
  margin-bottom: 56px;
  position: relative;
}
.hotel-detail__hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hotel-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.hotel-detail__hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hotel-detail__hero-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}
.hotel-detail__hero-dist {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hotel-detail__hero-dist svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.amenity {
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.amenity svg {
  width: 22px; height: 22px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.rooms-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.room-card-full {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.room-card-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.room-card-full__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-card-full__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.room-card-full:hover .room-card-full__img img { transform: scale(1.06); }
.room-card-full__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-card-full__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.room-card-full__features {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}
.room-card-full__features li {
  font-size: 0.875rem;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.room-card-full__features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.room-card-full__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.room-price-tbc {
  font-size: 0.8rem;
  color: var(--text-body);
  font-style: italic;
}

/* ============================================================
   ANIMATIONS (triggered by JS adding .visible class)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .hotel-intro { grid-template-columns: 1fr; gap: 40px; }
  .hotel-intro--reverse { direction: ltr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .hero__actions { flex-direction: column; align-items: flex-start; }

  .trust-bar__inner {
    flex-direction: column;
    gap: 8px;
  }
  .trust-bar__divider { display: none; }

  .why-us__grid { grid-template-columns: 1fr; }
  .packages__grid { grid-template-columns: 1fr; }
  .room-cards { grid-template-columns: 1fr; }
  .rooms-full { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; gap: 48px; }
  .steps::before { display: none; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }

  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 48px 0; }

  .packages-cta-row { grid-template-columns: 1fr; }
  .departures__grid { grid-template-columns: 1fr; }
  .anchor-nav__link { padding: 14px 20px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__headline { font-size: 2.8rem; }
  .btn { padding: 12px 20px; }
  .hotel-detail__hero { aspect-ratio: 4/3; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
}
