:root {
  --rc-navy: #0a2454;
  --rc-navy-dark: #051531;
  --rc-navy-light: #123166;
  --rc-gold: #f4b93e;
  --rc-gold-hover: #d9a12a;
  --rc-white: #ffffff;
  --rc-gray-100: #f4f6fa;
  --rc-gray-200: #e6e9f0;
  --rc-gray-500: #6b7280;
  --rc-text: #1a1a2e;
  --rc-font: 'Tajawal', sans-serif;
  --rc-serif: 'Playfair Display', serif;
  --rc-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.rc-page {
  font-family: var(--rc-font);
  color: var(--rc-text);
  background: var(--rc-white);
  overflow-x: hidden;
  margin: 0;
}

/* Header */
.rc-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--rc-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.rc-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: var(--rc-white);
  border-radius: 6px;
  padding: 3px 8px;
}

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

.rc-nav-link {
  color: var(--rc-white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.rc-btn-gold {
  background: var(--rc-gold);
  color: var(--rc-navy-dark);
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.6rem;
  font-family: var(--rc-font);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
  white-space: nowrap;
}

.rc-btn-gold:hover {
  background: var(--rc-gold-hover);
}

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

/* Hero */
.rc-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var(--rc-navy-dark) url('../assets/ChatGPT Image Jul 1, 2026, 06_21_07 PM.png') center/cover no-repeat;
}

.rc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(5, 21, 49, 0.88) 0%, rgba(5, 21, 49, 0.5) 45%, rgba(5, 21, 49, 0.18) 100%);
}

.rc-hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 3.5rem;
  max-width: 540px;
  margin-right: 0;
  margin-left: auto;
}

.rc-hero-eyebrow {
  color: var(--rc-white);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  opacity: 0.9;
}

.rc-hero-title {
  font-family: var(--rc-serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--rc-gold);
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.rc-hero-subtitle {
  color: var(--rc-white);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.rc-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.rc-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1.75rem;
}

.rc-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-inline-end: 1.75rem;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.25);
}

.rc-stat:last-child {
  border-inline-end: none;
  padding-inline-end: 0;
}

.rc-stat i {
  font-size: 1.5rem;
  color: var(--rc-gold);
}

.rc-stat-text {
  color: var(--rc-white);
  font-size: 0.78rem;
  line-height: 1.4;
}

.rc-stat-text strong {
  display: block;
  font-size: 0.95rem;
}

/* Feature Bar (floating card, docked into hero bottom) */
.rc-features-bar {
  position: relative;
  z-index: 3;
  margin-top: -55px;
  padding-bottom: 2rem;
}

.rc-features-card {
  background: var(--rc-white);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(10, 36, 84, 0.2);
  padding: 1.4rem 1rem;
}

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

.rc-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.55rem;
  padding: 0.25rem 0.75rem;
  border-inline-end: 1px solid var(--rc-gray-200);
}

.rc-feature-item:last-child {
  border-inline-end: none;
}

.rc-feature-item i {
  font-size: 1.55rem;
  color: var(--rc-gold-hover);
  line-height: 1;
}

.rc-feature-item span {
  font-size: 0.76rem;
  color: var(--rc-gray-500);
  font-weight: 500;
  line-height: 1.5;
}

/* About Section */
.rc-about {
  background: var(--rc-white);
  padding: 3rem 0;
}

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

.rc-about-image {
  border-radius: 8px;
  overflow: hidden;
}

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

.rc-about-content h2 {
  font-family: var(--rc-serif);
  font-size: 1.85rem;
  color: var(--rc-navy);
  margin: 0 0 0.85rem;
}

.rc-about-content p {
  color: var(--rc-gray-500);
  line-height: 1.85;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.rc-about-content p:last-of-type {
  margin-bottom: 1.25rem;
}

/* Timeline */
.rc-timeline-card {
  background: var(--rc-navy);
  border-radius: 8px;
  padding: 1.5rem;
  color: var(--rc-white);
  height: 100%;
}

.rc-timeline-card h3 {
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
  color: var(--rc-gold);
  font-weight: 800;
}

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

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

.rc-timeline li {
  position: relative;
  padding-right: 2rem;
  padding-bottom: 1.15rem;
}

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

.rc-timeline li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rc-gold);
  border: 3px solid var(--rc-navy);
  z-index: 1;
}

.rc-timeline-year {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--rc-gold);
  margin-bottom: 0.15rem;
}

.rc-timeline-text {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* Section Titles */
.rc-section {
  padding: 3rem 0;
}

.rc-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rc-navy);
  margin: 0 0 2rem;
}

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

/* Ships Grid */
.rc-ships-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

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

.rc-ship-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10, 36, 84, 0.12);
}

.rc-ship-card-media {
  position: relative;
}

.rc-ship-card-img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  display: block;
}

.rc-ship-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--rc-gold);
  color: var(--rc-navy-dark);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.28rem 0.6rem;
  border-radius: 20px;
  z-index: 2;
}

.rc-ship-card-body {
  padding: 0.85rem 0.75rem 1rem;
  text-align: center;
}

.rc-ship-card h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--rc-navy);
  margin: 0 0 0.3rem;
}

.rc-ship-card p {
  font-size: 0.72rem;
  color: var(--rc-gray-500);
  margin: 0;
  line-height: 1.45;
}

/* Destinations Grid */
.rc-destinations {
  background: var(--rc-gray-100);
}

.rc-dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.rc-dest-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 175px;
  cursor: pointer;
}

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

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

.rc-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 21, 49, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.5rem 0.9rem;
  text-align: center;
}

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

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

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

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

.rc-audience-item i {
  font-size: 2rem;
  color: var(--rc-gold-hover);
  margin-bottom: 0.6rem;
  display: block;
}

.rc-audience-item h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--rc-navy);
  margin: 0 0 0.4rem;
}

.rc-audience-item p {
  font-size: 0.75rem;
  color: var(--rc-gray-500);
  margin: 0;
  line-height: 1.55;
}

.rc-cta-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
}

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

.rc-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 21, 49, 0.92) 35%, rgba(5, 21, 49, 0.5) 100%);
}

.rc-cta-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.5rem;
  color: var(--rc-white);
  text-align: center;
  width: 100%;
}

.rc-cta-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

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

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

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

.rc-footer-badges-grid {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
  max-width: 620px;
  gap: 1.5rem;
}

.rc-footer-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--rc-white);
}

.rc-footer-badge i {
  font-size: 1.6rem;
  color: var(--rc-gold);
}

.rc-footer-badge-text strong {
  display: block;
  font-size: 0.9rem;
}

.rc-footer-badge-text span {
  font-size: 0.74rem;
  opacity: 0.75;
}

.rc-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

.rc-footer-tagline {
  font-family: var(--rc-serif);
  font-style: italic;
  color: var(--rc-gold);
  font-size: 0.95rem;
}

.rc-footer-copy-bar {
  background: var(--rc-navy-dark);
  padding: 0.85rem 0;
  text-align: center;
}

.rc-footer-copy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  margin: 0;
}

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

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

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

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

/* Responsive */
@media (max-width: 1199px) {
  .rc-ships-grid,
  .rc-dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .rc-feature-item {
    border-inline-end: none;
  }

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

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

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

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

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

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

  .rc-footer-badges-grid {
    justify-content: center;
    max-width: 100%;
    flex: none;
    width: 100%;
  }

  .rc-footer-logo {
    align-items: center;
  }
}

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

  .rc-ships-grid,
  .rc-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rc-features-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.25rem;
  }

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

  .rc-hero-stats {
    gap: 1rem;
  }

  .rc-stat {
    padding-inline-end: 1rem;
  }

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

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

  .rc-features-grid {
    grid-template-columns: 1fr;
  }
}
