:root {
  --ss-navy: #0c1f3d;
  --ss-navy-dark: #071428;
  --ss-navy-light: #16325a;
  --ss-gold: #c9a46a;
  --ss-gold-hover: #b08c52;
  --ss-cream: #f7f5f1;
  --ss-white: #ffffff;
  --ss-gray-200: #e5e0d6;
  --ss-gray-500: #6b6b6b;
  --ss-text: #1e2230;
  --ss-font: 'Tajawal', sans-serif;
  --ss-serif: 'Cormorant Garamond', 'Playfair Display', serif;
  --ss-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.ss-page {
  font-family: var(--ss-font);
  font-weight: 400;
  color: var(--ss-text);
  background: var(--ss-cream);
  overflow-x: hidden;
  margin: 0;
}

/* Header */
.ss-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ss-navy);
  border-bottom: 1px solid rgba(201, 164, 106, 0.25);
}

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

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

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

.ss-logo-tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  text-transform: uppercase;
  padding-right: 2px;
}

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

.ss-nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.ss-btn-gold {
  background: var(--ss-gold);
  color: var(--ss-navy-dark);
  border: none;
  border-radius: var(--ss-radius);
  padding: 0.55rem 1.4rem;
  font-family: var(--ss-font);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
}

.ss-btn-gold:hover {
  background: var(--ss-gold-hover);
  color: var(--ss-white);
  transform: translateY(-1px);
}

.ss-btn-navy {
  background: var(--ss-navy);
  color: var(--ss-white);
  border: none;
  border-radius: var(--ss-radius);
  padding: 0.65rem 1.75rem;
  font-family: var(--ss-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;
}

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

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

/* Hero */
.ss-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ss-navy-dark);
  animation: ss-hero-fade 1.2s ease-out;
}

.ss-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

.ss-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to left, rgba(0, 23, 45, 0.78) 0%, rgba(0, 23, 45, 0.35) 38%, rgba(0, 23, 45, 0.08) 68%, transparent 100%),
    linear-gradient(to top, rgba(0, 23, 45, 0.72) 0%, rgba(0, 23, 45, 0.2) 35%, transparent 55%);
  pointer-events: none;
}

.ss-hero-content {
  position: relative;
  z-index: 2;
  padding: 7.5rem 0 3rem;
  max-width: 560px;
  margin-right: 0;
  margin-left: auto;
  text-align: right;
  animation: ss-slide-up 0.9s ease-out 0.2s both;
}

.ss-hero-eyebrow {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 0.85rem;
  letter-spacing: 0.01em;
}

.ss-hero-title {
  font-family: var(--ss-font);
  font-size: clamp(2.35rem, 4.8vw, 3.35rem);
  color: var(--ss-white);
  font-weight: 800;
  margin: 0 0 1.15rem;
  line-height: 1.3;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.ss-hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.95;
  margin: 0;
  max-width: 460px;
  margin-right: 0;
  margin-left: auto;
}

.ss-hero-bottom {
  position: relative;
  z-index: 2;
  background: rgba(0, 23, 45, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(166, 137, 83, 0.35);
  animation: ss-slide-up 0.9s ease-out 0.45s both;
}

.ss-hero-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 1.5rem 0 1.65rem;
}

.ss-hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

.ss-hero-feature i {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--ss-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--ss-gold);
}

.ss-hero-feature span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  line-height: 1.55;
}

/* About */
.ss-about {
  background: var(--ss-cream);
  padding: 4rem 0;
}

.ss-about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: stretch;
}

.ss-about-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ss-about-image {
  border-radius: var(--ss-radius);
  overflow: hidden;
  flex: 1;
  min-height: 280px;
}

.ss-about-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ss-about-image:hover img {
  transform: scale(1.04);
}

.ss-about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 0;
}

.ss-about-content h2 {
  font-family: var(--ss-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ss-gold-hover);
  margin: 0 0 1.1rem;
}

.ss-about-content p {
  color: var(--ss-gray-500);
  line-height: 1.9;
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

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

.ss-timeline-card h3 {
  font-family: var(--ss-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 1.4rem;
  color: var(--ss-navy);
}

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

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

.ss-timeline li {
  position: relative;
  padding-right: 2rem;
  padding-bottom: 1rem;
}

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

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

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

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

/* Sections */
.ss-section {
  padding: 3.75rem 0;
}

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

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

/* Why */
.ss-why-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
}

.ss-why-item {
  text-align: center;
  padding: 1.25rem 0.6rem;
  background: var(--ss-white);
  border-radius: var(--ss-radius);
  border: 1px solid var(--ss-gray-200);
  transition: transform 0.25s, box-shadow 0.25s;
}

.ss-why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(12, 31, 61, 0.1);
}

.ss-why-item i {
  font-size: 1.75rem;
  color: var(--ss-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.ss-why-item h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ss-navy);
  margin: 0 0 0.35rem;
  line-height: 1.4;
}

.ss-why-item p {
  font-size: 0.7rem;
  color: var(--ss-gray-500);
  margin: 0;
  line-height: 1.5;
}

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

.ss-fleet-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
}

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

.ss-fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(12, 31, 61, 0.12);
}

.ss-fleet-card-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.ss-fleet-card:hover .ss-fleet-card-media img {
  transform: scale(1.05);
}

.ss-fleet-card-media {
  overflow: hidden;
}

.ss-fleet-card-body {
  padding: 1.05rem 1.05rem 1.2rem;
}

.ss-fleet-card-body h4 {
  font-family: var(--ss-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ss-navy);
  margin: 0 0 0.3rem;
}

.ss-fleet-card-body > p {
  font-size: 0.76rem;
  color: var(--ss-gray-500);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.ss-fleet-stats {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ss-gray-200);
}

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

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

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

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

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

.ss-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

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

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

.ss-dest-card:hover img {
  transform: scale(1.06);
}

.ss-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 20, 40, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.15rem;
  text-align: right;
}

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

.ss-dest-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

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

.ss-audience-item {
  text-align: center;
  padding: 1.35rem 0.7rem;
  background: var(--ss-white);
  border-radius: var(--ss-radius);
  border: 1px solid var(--ss-gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.ss-audience-item:hover {
  transform: translateY(-3px);
}

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

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

.ss-audience-item p {
  font-size: 0.72rem;
  color: var(--ss-gray-500);
  margin: 0;
  line-height: 1.5;
}

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

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

.ss-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 20, 40, 0.94) 25%, rgba(7, 20, 40, 0.6) 100%);
}

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

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

.ss-cta-content p {
  font-size: 0.8rem;
  opacity: 0.85;
  margin: 0 0 1.2rem;
  line-height: 1.6;
}

.ss-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.ss-cta-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--ss-gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.ss-cta-link:hover {
  color: var(--ss-gold);
}

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

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

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

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

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

.ss-amenity-item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.5;
}

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

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

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

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

.ss-footer-member {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

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

.ss-footer-trust > p {
  color: var(--ss-white);
  font-size: 0.88rem;
  margin: 0 0 0.65rem;
}

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

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

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

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

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

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

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

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

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

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

/* Mobile Nav */
.ss-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 40, 0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

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

.ss-mobile-nav .ss-nav-link {
  font-size: 1.15rem;
}

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

@keyframes ss-hero-fade {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

@keyframes ss-slide-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .ss-fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .ss-hero {
    min-height: 78vh;
  }

  .ss-hero-bg {
    object-position: 65% center;
  }

  .ss-hero::before {
    background:
      linear-gradient(to top, rgba(0, 23, 45, 0.88) 0%, rgba(0, 23, 45, 0.45) 45%, rgba(0, 23, 45, 0.25) 100%);
  }

  .ss-hero-content {
    max-width: 100%;
    padding: 6.5rem 0 2rem;
  }

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

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

  .ss-hero-features {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

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