:root {
  --exp-navy: #0e1c33;
  --exp-navy-dark: #081121;
  --exp-navy-light: #16294a;
  --exp-gold: #c6a05f;
  --exp-gold-hover: #ab8848;
  --exp-cream: #f8f4ec;
  --exp-white: #ffffff;
  --exp-gray-200: #e9e4d8;
  --exp-gray-500: #6b6b6b;
  --exp-text: #22242b;
  --exp-font: 'Tajawal', sans-serif;
  --exp-serif: 'Playfair Display', serif;
  --exp-radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

body.exp-page {
  font-family: var(--exp-font);
  font-weight: 300;
  color: var(--exp-text);
  background: var(--exp-cream);
  overflow-x: hidden;
  margin: 0;
}

/* Header */
.exp-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--exp-navy);
  border-bottom: 1px solid rgba(198, 160, 95, 0.2);
}

.exp-header-inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

.exp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.exp-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  background: var(--exp-white);
  border-radius: 6px;
  padding: 4px 10px;
}

.exp-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

.exp-nav-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.35rem 0.55rem;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}

.exp-nav-link:hover,
.exp-nav-link.active {
  color: var(--exp-gold);
}

.exp-btn-gold {
  background: var(--exp-gold);
  color: var(--exp-navy-dark);
  border: none;
  border-radius: var(--exp-radius);
  padding: 0.6rem 1.5rem;
  font-family: var(--exp-font);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
  white-space: nowrap;
}

.exp-btn-gold:hover {
  background: var(--exp-gold-hover);
  color: var(--exp-white);
}

.exp-btn-navy {
  background: var(--exp-navy);
  color: var(--exp-white);
  border: none;
  border-radius: var(--exp-radius);
  padding: 0.65rem 1.75rem;
  font-family: var(--exp-font);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.exp-btn-navy:hover {
  background: var(--exp-navy-light);
}

.exp-nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--exp-white);
  font-size: 1.4rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Hero */
.exp-hero {
  position: relative;
  background: var(--exp-navy-dark) url('../assets/ChatGPT Image Jul 1, 2026, 06_27_10 PM.png') center/cover no-repeat;
}

.exp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(8, 17, 33, 0.9) 0%, rgba(8, 17, 33, 0.55) 45%, rgba(8, 17, 33, 0.2) 100%);
}

.exp-hero-content {
  position: relative;
  z-index: 2;
  padding: 8.5rem 0 3rem;
  max-width: 560px;
  margin-right: 0;
  margin-left: auto;
}

.exp-hero-eyebrow {
  color: var(--exp-gold);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.exp-hero-title {
  font-family: var(--exp-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.1rem);
  color: var(--exp-white);
  font-weight: 600;
  margin: 0 0 1.25rem;
  line-height: 1.3;
}

.exp-hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  margin: 0;
}

/* Hero bottom bar (badge + feature icons, docked to hero) */
.exp-hero-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(198, 160, 95, 0.3);
  background: rgba(8, 17, 33, 0.35);
  backdrop-filter: blur(2px);
}

.exp-hero-bottom-inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.exp-hero-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--exp-gold);
  border-radius: var(--exp-radius);
  padding: 0.75rem 1.1rem;
  flex-shrink: 0;
  background: rgba(198, 160, 95, 0.08);
}

.exp-hero-badge i {
  font-size: 1.5rem;
  color: var(--exp-gold);
  flex-shrink: 0;
}

.exp-hero-badge span {
  color: var(--exp-white);
  font-size: 0.75rem;
  line-height: 1.6;
}

.exp-hero-features {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
}

.exp-hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  min-width: 90px;
}

.exp-hero-feature i {
  font-size: 1.4rem;
  color: var(--exp-gold);
}

.exp-hero-feature span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  line-height: 1.5;
}

/* About Section */
.exp-about {
  background: var(--exp-cream);
  padding: 3.5rem 0;
}

.exp-about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr 0.85fr;
  gap: 1.75rem;
  align-items: stretch;
}

.exp-about-image {
  border-radius: var(--exp-radius);
  overflow: hidden;
}

.exp-about-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.exp-about-content h2 {
  font-family: var(--exp-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--exp-gold-hover);
  margin: 0 0 1rem;
    text-align: center;
}

.exp-about-content p {
  color: var(--exp-gray-500);
  line-height: 1.9;
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-align: center;
}

.exp-about-content p:last-of-type {
  margin-bottom: 1.4rem;
}

/* Timeline */
.exp-timeline-card {
  background: var(--exp-white);
  border: 1px solid var(--exp-gray-200);
  border-radius: var(--exp-radius);
  padding: 1.5rem;
  height: 100%;
}

.exp-timeline-card h3 {
  font-family: var(--exp-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: var(--exp-navy);
}

.exp-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.exp-timeline::before {
  content: '';
  position: absolute;
  right: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--exp-gold);
  opacity: 0.4;
}

.exp-timeline li {
  position: relative;
  padding-right: 2rem;
  padding-bottom: 1.1rem;
}

.exp-timeline li:last-child {
  padding-bottom: 0;
}

.exp-timeline li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--exp-gold);
  border: 3px solid var(--exp-white);
  box-shadow: 0 0 0 1px var(--exp-gray-200);
  z-index: 1;
}

.exp-timeline-year {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--exp-navy);
  margin-bottom: 0.1rem;
}

.exp-timeline-text {
  font-size: 0.78rem;
  color: var(--exp-gray-500);
  line-height: 1.5;
}

/* Section Titles */
.exp-section {
  padding: 3.5rem 0;
}

.exp-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--exp-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--exp-navy);
  margin: 0 0 2.25rem;
}

.exp-title-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--exp-gold);
  opacity: 0.7;
}

/* Why Explora */
.exp-why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.exp-why-item {
  text-align: center;
  padding: 0 0.5rem;
}

.exp-why-item i {
  font-size: 1.9rem;
  color: var(--exp-gold);
  margin-bottom: 0.85rem;
  display: block;
}

.exp-why-item h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--exp-navy);
  margin: 0 0 0.4rem;
}

.exp-why-item p {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--exp-gray-500);
  margin: 0;
  line-height: 1.55;
}

/* Fleet */
.exp-fleet {
  background: var(--exp-white);
}

.exp-fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.exp-fleet-card {
  background: var(--exp-cream);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--exp-gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}

.exp-fleet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(14, 28, 51, 0.12);
}

.exp-fleet-card-media {
  position: relative;
}

.exp-fleet-card-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.exp-fleet-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--exp-gold);
  color: var(--exp-navy-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  z-index: 2;
}

.exp-fleet-card-body {
  padding: 1.1rem 1.1rem 1.25rem;
}

.exp-fleet-card-body h4 {
  font-family: var(--exp-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--exp-navy);
  margin: 0 0 0.3rem;
}

.exp-fleet-card-body > p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--exp-gray-500);
  margin: 0 0 0.85rem;
  line-height: 1.5;
}

.exp-fleet-stats {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--exp-gray-200);
}

.exp-fleet-stats span {
  font-size: 0.74rem;
  color: var(--exp-navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.exp-fleet-stats i {
  color: var(--exp-gold);
}

.exp-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--exp-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.exp-card-link:hover {
  color: var(--exp-gold-hover);
}

/* Destinations */
.exp-destinations {
  background: var(--exp-cream);
}

.exp-dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.exp-dest-card {
  position: relative;
  border-radius: var(--exp-radius);
  overflow: hidden;
  height: 190px;
  cursor: pointer;
}

.exp-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.exp-dest-card:hover img {
  transform: scale(1.05);
}

.exp-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 17, 33, 0.88) 0%, transparent 65%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.5rem 0.9rem;
  text-align: center;
}

.exp-dest-title {
  color: var(--exp-white);
  font-weight: 700;
  font-size: 0.85rem;
}

.exp-dest-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.66rem;
  margin-top: 0.2rem;
}

/* Audience */
.exp-audience-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.exp-audience-item {
  text-align: center;
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.exp-audience-item i {
  font-size: 1.9rem;
  color: var(--exp-gold);
  margin-bottom: 0.65rem;
  display: block;
}

.exp-audience-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--exp-navy);
  margin: 0 0 0.4rem;
}

.exp-audience-item p {
  font-size: 0.74rem;
  font-weight: 300;
  color: var(--exp-gray-500);
  margin: 0;
  line-height: 1.55;
}

.exp-cta-box {
  position: relative;
  border-radius: var(--exp-radius);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
}

.exp-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 17, 33, 0.92) 30%, rgba(8, 17, 33, 0.55) 100%);
}

.exp-cta-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.5rem;
  color: var(--exp-white);
}

.exp-cta-content h3 {
  font-family: var(--exp-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.exp-cta-content p {
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.85;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

/* Footer */
.exp-footer-amenities {
  background: var(--exp-navy);
  padding: 1.5rem 0;
  border-top: 3px solid var(--exp-gold);
}

.exp-amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.exp-amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0 0.5rem;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
}

.exp-amenity-item:last-child {
  border-inline-end: none;
}

.exp-amenity-item i {
  font-size: 1.3rem;
  color: var(--exp-gold);
}

.exp-amenity-item span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.exp-footer-main {
  background: var(--exp-navy-dark);
  padding: 1.75rem 0;
}

.exp-footer-inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.exp-footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.exp-footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: var(--exp-white);
  border-radius: 6px;
  padding: 5px 12px;
}

.exp-footer-trust {
  flex: 1;
  min-width: 260px;
  text-align: center;
}

.exp-footer-trust > p {
  color: var(--exp-white);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0 0 0.65rem;
}

.exp-footer-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.exp-footer-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.exp-footer-trust-badges i {
  color: var(--exp-gold);
}

.exp-footer-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.exp-footer-social > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.exp-social-icons {
  display: flex;
  gap: 0.6rem;
}

.exp-social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(198, 160, 95, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--exp-gold);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.exp-social-icons a:hover {
  background: var(--exp-gold);
  color: var(--exp-navy-dark);
}

.exp-footer-copy-bar {
  background: var(--exp-navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
  text-align: center;
}

.exp-footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  margin: 0;
}

/* Mobile Nav */
.exp-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 17, 33, 0.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.exp-mobile-nav.open {
  display: flex;
}

.exp-mobile-nav .exp-nav-link {
  font-size: 1.2rem;
}

.exp-mobile-close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: none;
  border: none;
  color: var(--exp-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1199px) {
  .exp-why-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.75rem;
  }

  .exp-fleet-grid,
  .exp-dest-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.25rem;
  }

  .exp-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-cta-box {
    grid-column: 1 / -1;
  }

  .exp-amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.25rem;
  }

  .exp-amenity-item:nth-child(3n) {
    border-inline-end: none;
  }
}

@media (max-width: 991px) {
  .exp-nav {
    display: none;
  }

  .exp-nav-toggle {
    display: block;
  }

  .exp-about-grid {
    grid-template-columns: 1fr;
  }

  .exp-hero-bottom-inner {
    flex-direction: column;
  }

  .exp-hero-features {
    justify-content: flex-start;
  }

  .exp-footer-inner {
    justify-content: center;
    text-align: center;
  }

  .exp-footer-social {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .exp-hero-content {
    max-width: 100%;
    padding-top: 6.5rem;
  }

  .exp-why-grid,
  .exp-fleet-grid,
  .exp-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-audience-grid {
    grid-template-columns: 1fr;
  }

  .exp-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-amenity-item:nth-child(2n) {
    border-inline-end: none;
  }

  .exp-header .exp-btn-gold {
    display: none;
  }
}

@media (max-width: 480px) {
  .exp-why-grid,
  .exp-fleet-grid,
  .exp-dest-grid {
    grid-template-columns: 1fr;
  }

  .exp-amenities-grid {
    grid-template-columns: 1fr;
  }

  .exp-amenity-item {
    border-inline-end: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 1rem;
  }

  .exp-amenity-item:last-child {
    border-bottom: none;
  }
}
