:root {
  --navy: #0a1f44;
  --navy-dark: #061530;
  --navy-light: #1a3a6e;
  --gold: #e8a020;
  --gold-hover: #d4910f;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-500: #6c757d;
  --shadow: 0 4px 24px rgba(10, 31, 68, 0.12);
  --radius: 12px;
  --font: 'Tajawal', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* Bootstrap overrides */
.btn-primary {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold-hover);
  --bs-btn-hover-border-color: var(--gold-hover);
  --bs-btn-active-bg: var(--gold-hover);
  --bs-btn-active-border-color: var(--gold-hover);
  font-weight: 700;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
}

.btn-outline-primary {
  --bs-btn-color: var(--navy);
  --bs-btn-border-color: var(--navy);
  --bs-btn-hover-bg: var(--navy);
  --bs-btn-hover-border-color: var(--navy);
  font-weight: 600;
  border-radius: 8px;
}

.text-gold {
  color: var(--gold) !important;
}

/* Top Bar */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.top-bar-inner {
  gap: 1rem;
}

.top-bar-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-bar-link {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.top-bar-link:hover {
  color: var(--gold);
}

.top-bar-phone {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.top-bar-phone i {
  color: var(--gold);
  font-size: 1rem;
}

.top-bar-phone:hover {
  color: var(--gold);
}

.btn-book-now {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(232, 160, 32, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-book-now:hover {
  background: var(--gold-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(232, 160, 32, 0.45);
}

.btn-book-now i {
  font-size: 1rem;
}

/* Logo */
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-img-footer {
  height: 70px;
  background: var(--white);
  border-radius: 8px;
  padding: 4px 8px;
}

/* Navbar */
.main-nav {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 0;
  transition: box-shadow 0.2s ease;
}

.main-nav.main-nav--scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

#home,
#companies,
#destinations,
#offers,
#ships,
#saudi-trips,
#guide,
#contact {
  scroll-margin-top: 72px;
}

.main-nav .nav-link {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 1rem 0.85rem !important;
  position: relative;
  transition: color 0.2s;
}

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

.main-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0.85rem;
  left: 0.85rem;
  height: 3px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
}

.navbar-toggler {
  border-color: var(--navy);
}

.navbar-toggler-icon {
  filter: invert(12%) sepia(30%) saturate(2000%) hue-rotate(190deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  height: 520px;
}

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(6, 28, 58, 0.92) 0%,
    rgba(10, 45, 85, 0.72) 32%,
    rgba(15, 65, 110, 0.35) 52%,
    transparent 72%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.hero-content * {
  pointer-events: auto;
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.hero-highlight {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 0;
  font-weight: 500;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

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

.hero-control,
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(10, 31, 68, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  padding: 0;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(10, 31, 68, 0.12);
}

.hero-control {
  opacity: 1;
  background-image: none !important;
  z-index: 6;
}

.hero-control:hover,
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-50%);
}

.hero-control i,
.carousel-btn i {
  font-size: 1.6rem;
  font-weight: 300;
  color: inherit;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.carousel-control-prev.hero-control {
  right: 2rem;
  left: auto;
}

.carousel-control-next.hero-control {
  left: 2rem;
  right: auto;
}

/* Search Bar */
.search-section {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
}

.search-bar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
}

.search-field {
  flex: 1;
  min-width: 140px;
}

.search-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.search-field label i {
  color: var(--gold);
  margin-left: 0.25rem;
}

.search-field select {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--gray-100);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%230a1f44' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 0.75rem center;
  padding-left: 2rem;
}

.search-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.2);
}

.btn-search {
  padding: 0.65rem 1.75rem;
  font-size: 1rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.section-sub {
  color: var(--gray-500);
  font-size: 1rem;
  margin: -1rem auto 0;
  max-width: 560px;
}

/* Saudi Trips */
.saudi-section {
  background: var(--gray-100);
}

.saudi-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10, 31, 68, 0.08);
  text-decoration: none;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--gray-200);
}

.saudi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.saudi-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.saudi-card-body {
  padding: 1.25rem;
}

.saudi-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.saudi-card-body p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

/* Cruise Guide */
.guide-section {
  background: var(--white);
}

.guide-accordion {
  --bs-accordion-border-color: var(--gray-200);
  --bs-accordion-btn-bg: var(--gray-100);
  --bs-accordion-active-bg: var(--white);
  --bs-accordion-active-color: var(--navy);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(10, 31, 68, 0.15);
}

.guide-accordion .accordion-item {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 1px solid var(--gray-200);
}

.guide-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.guide-accordion .accordion-button {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  padding: 1.1rem 1.25rem;
  gap: 0.75rem;
}

.guide-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.guide-accordion-icon {
  font-size: 1.35rem;
  color: var(--gold);
  flex-shrink: 0;
}

.guide-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
  padding: 0 1.25rem 1.25rem;
}

.guide-intro {
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.guide-list {
  margin: 0;
  padding-right: 1.25rem;
}

.guide-list li {
  margin-bottom: 0.4rem;
}

.guide-list li:last-child {
  margin-bottom: 0;
}

.guide-note {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.85rem;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--navy);
}

.guide-faq-body {
  padding-top: 0.5rem;
}

.guide-faq-accordion {
  --bs-accordion-border-color: var(--gray-200);
  --bs-accordion-btn-bg: var(--white);
  --bs-accordion-active-bg: var(--gray-100);
  --bs-accordion-active-color: var(--navy);
}

.guide-faq-accordion .accordion-item {
  border-radius: 8px;
  margin-bottom: 0.5rem;
  border: 1px solid var(--gray-200);
}

.guide-faq-accordion .accordion-button {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
}

.guide-faq-accordion .accordion-body {
  font-size: 0.85rem;
  padding: 0 1rem 1rem;
}

/* Contact */
.contact-section {
  background: var(--gray-100);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 16px rgba(10, 31, 68, 0.08);
  border: 1px solid var(--gray-200);
}

.contact-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--gold);
}

.companies-section {
  background: var(--gray-100);
}

/* Carousel buttons */
.carousel-btn-prev {
  right: -20px;
}

.carousel-btn-next {
  left: -20px;
}

/* Companies */
.companies-track-wrapper,
.destinations-track-wrapper {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.destinations-track-wrapper {
  container-type: inline-size;
}

.companies-track-wrapper::-webkit-scrollbar,
.destinations-track-wrapper::-webkit-scrollbar {
  display: none;
}

.companies-track {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  width: max-content;
}

.company-logo {
  flex: 0 0 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.company-logo img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.company-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-align: center;
}

/* Destinations */
.destinations-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.destination-card {
  flex: 0 0 calc((100cqw - 3.75rem) / 4);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(transparent, rgba(10, 31, 68, 0.9));
  padding: 3rem 1rem 1.25rem;
  color: var(--white);
}

.destination-overlay h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.destination-overlay p {
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.9;
}

.destination-overlay i {
  color: var(--gold);
}

/* Offers */
.offers-section {
  background: var(--white);
}

.ships-panel-header {
  position: relative;
  margin-bottom: 1.5rem;
  min-height: 2.5rem;
}

.ships-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
}

.ships-title-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.ships-view-all {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.ships-view-all:hover {
  color: var(--gold);
}

.ships-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.ship-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10, 31, 68, 0.08);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 300px;
}

.ship-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.ship-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.ship-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  padding: 0.85rem 0.5rem 0.5rem;
}

.ship-card-logo {
  padding: 0 0.75rem 1rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.ship-card-logo img {
  max-height: 52px;
  max-width: 120px;
  object-fit: contain;
}

.offer-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 340px;
}

.offer-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/ChatGPT Image Jul 1, 2026, 06_21_07 PM.png') center/cover no-repeat;
}

.offer-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 31, 68, 0.88) 0%, rgba(10, 31, 68, 0.65) 100%);
}

.offer-banner-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.75rem;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.offer-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.offer-sub {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.offer-percent {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.btn-offer {
  padding: 0.6rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

/* Why Section */
.why-section {
  background: var(--gray-100);
}

.why-panel {
  display: flex;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(10, 31, 68, 0.08);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.why-item {
  flex: 1;
  text-align: center;
  padding: 2rem 1rem;
}

.why-item + .why-item {
  border-inline-start: 1px solid var(--gray-200);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: none;
}

.why-icon i {
  font-size: 2rem;
  color: var(--navy);
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

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

/* Newsletter */
.newsletter-section {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/newsletter-bg.jpg') center/cover no-repeat;
}

.newsletter-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.88);
}

.newsletter-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.newsletter-sub {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}

.newsletter-input {
  border-radius: 8px;
  border: none;
  padding: 0.75rem 1rem;
  font-family: var(--font);
}

.btn-newsletter {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 4rem;
}

.footer-main {
  padding-bottom: 2.5rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}

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

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 340px;
}

.footer-desc strong {
  color: var(--white);
  font-weight: 700;
}

.footer-brand {
  color: var(--gold);
  font-weight: 600;
}

.footer-license {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 340px;
}

.footer-license i {
  color: var(--gold);
  font-size: 1rem;
}

.footer-license span[dir="ltr"] {
  color: var(--gold);
  font-weight: 600;
}

.footer-license small {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
}

.footer-heading {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s, padding-inline-start 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-inline-start: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon i {
  color: var(--gold);
  font-size: 0.9rem;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding-top: 0.35rem;
}

.footer-contact a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.payment-icons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
}

.payment-icon {
  font-size: 1.5rem;
}

.payment-text {
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.btn-back-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.btn-back-top:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Toast notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 991.98px) {
  .carousel-btn-prev {
    right: 0;
  }

  .carousel-btn-next {
    left: 0;
  }

  .destination-card {
    flex: 0 0 calc((100cqw - 2.5rem) / 3);
  }

  .main-nav .nav-link.active::after {
    display: none;
  }

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

  .why-panel {
    flex-wrap: wrap;
  }

  .why-item {
    flex: 0 0 33.333%;
  }

  .why-item:nth-child(4) {
    border-inline-start: none;
  }
}

@media (max-width: 767.98px) {
  .hero,
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    min-height: 420px;
    height: 420px;
  }

  .search-bar {
    flex-direction: column;
  }

  .search-field {
    width: 100%;
  }

  .btn-search {
    width: 100%;
    justify-content: center;
  }

  .destination-card {
    flex: 0 0 calc((100cqw - 1.25rem) / 2);
    height: 260px;
  }

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

  .ships-view-all {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
  }

  .ships-panel-header {
    text-align: center;
  }

  .why-panel {
    flex-direction: column;
  }

  .why-item {
    flex: 1 1 100%;
    border-inline-start: none !important;
  }

  .why-item:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
  }

  .company-logo {
    flex: 0 0 120px;
  }

  .hero-control,
  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .hero-control i,
  .carousel-btn i {
    font-size: 1.4rem;
  }

  .carousel-control-prev.hero-control {
    right: 0.5rem;
  }

  .carousel-control-next.hero-control {
    left: 0.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .destination-card {
    flex: 0 0 100cqw;
  }

  .logo-img {
    height: 44px;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
  }

  .top-bar-actions {
    justify-content: center;
    gap: 0.75rem !important;
  }

  .top-bar-phone span {
    font-size: 0.85rem;
  }

  .btn-book-now {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
  }
}


/* =========================================================
   Luxury Home Refresh — 2026-08-21
   Keeps existing component classes/IDs and search behavior.
   ========================================================= */

.hero-luxury {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-dark);
}

.hero-luxury-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    url('../assets/0629b168-f8d9-496e-8d99-43f70d05fe4a.png')
    center 45% / cover no-repeat;
  transform: scale(1.015);
}

.hero-luxury-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(4, 15, 35, 0.15) 0%,
      rgba(4, 15, 35, 0.28) 42%,
      rgba(4, 15, 35, 0.78) 75%,
      rgba(4, 15, 35, 0.92) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 12, 28, 0.05) 0%,
      rgba(3, 12, 28, 0.15) 56%,
      rgba(3, 12, 28, 0.55) 100%
    );
}

.hero-content-luxury {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  transform: none;
  min-height: 640px;
  display: flex;
  align-items: center;
  z-index: 2;
  pointer-events: auto;
}

.min-vh-hero {
  min-height: 640px;
}

.hero-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.88rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-kicker i {
  color: var(--gold);
}

.hero-title-luxury {
  max-width: 760px;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.hero-title-luxury .hero-highlight {
  margin-top: 0.35rem;
  color: #f5bd51;
}

.hero-subtitle-luxury {
  max-width: 650px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.hero-features-luxury {
  align-items: center;
}

.hero-feature-pill {
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(7, 26, 54, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.search-section {
  margin-top: -88px;
  position: relative;
  z-index: 20;
  padding-bottom: 3rem;
}

.search-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 24px 70px rgba(6, 21, 48, 0.20),
    0 6px 20px rgba(6, 21, 48, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.search-shell::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.search-shell-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem 0.2rem;
}

.search-shell-heading h2 {
  margin: 0.12rem 0 0;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
}

.search-eyebrow {
  color: var(--gold-hover);
  font-size: 0.78rem;
  font-weight: 800;
}

.search-secure {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gray-500);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.search-secure i {
  color: var(--gold);
}

.search-bar {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 1rem 1.5rem 1.45rem;
  gap: 0.85rem;
}

.search-field {
  position: relative;
}

.search-field label {
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
}

.search-field select {
  min-height: 48px;
  border: 1px solid #dfe5ed;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  padding-left: 2.25rem;
  background-color: #fbfcfe;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-field select:hover {
  background-color: #ffffff;
  border-color: #cbd5e1;
}

.search-field select:focus {
  background-color: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 160, 32, 0.14);
}

.search-field select option {
  color: var(--navy);
  background: #fff;
}

.btn-search {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  padding-inline: 1.65rem;
  background: linear-gradient(135deg, #f0ae2f 0%, #d88a05 100%);
  box-shadow: 0 10px 22px rgba(216, 138, 5, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(216, 138, 5, 0.30);
  filter: saturate(1.08);
}

.companies-section {
  padding-top: 3.5rem;
}

.company-logo {
  border: 1px solid rgba(10, 31, 68, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.company-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 160, 32, 0.28);
  box-shadow: 0 14px 30px rgba(10, 31, 68, 0.10);
}

.destination-card {
  box-shadow: 0 12px 30px rgba(10, 31, 68, 0.10);
}

.ship-card {
  box-shadow: 0 10px 28px rgba(10, 31, 68, 0.09);
}

@media (max-width: 991.98px) {
  .hero-luxury,
  .hero-content-luxury,
  .min-vh-hero {
    min-height: 570px;
  }

  .hero-luxury-bg {
    background-position: 42% center;
  }

  .hero-luxury-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 15, 35, 0.20) 0%,
        rgba(4, 15, 35, 0.38) 48%,
        rgba(4, 15, 35, 0.86) 100%
      );
  }

  .search-section {
    margin-top: -70px;
  }
}

@media (max-width: 767.98px) {
  .hero-luxury,
  .hero-content-luxury,
  .min-vh-hero {
    min-height: 540px;
  }

  .hero-luxury-bg {
    background-position: 38% center;
  }

  .hero-luxury-overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 15, 35, 0.36) 0%,
      rgba(4, 15, 35, 0.68) 55%,
      rgba(4, 15, 35, 0.90) 100%
    );
  }

  .hero-content-luxury {
    align-items: flex-end;
    padding-bottom: 6.5rem;
  }

  .hero-title-luxury {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-subtitle-luxury {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .search-section {
    margin-top: -54px;
    padding-bottom: 2.2rem;
  }

  .search-shell {
    border-radius: 18px;
  }

  .search-shell-heading {
    align-items: flex-start;
    padding: 1rem 1.1rem 0.15rem;
  }

  .search-secure {
    display: none;
  }

  .search-bar {
    padding: 0.85rem 1.1rem 1.1rem;
  }

  .hero-feature-pill {
    font-size: 0.82rem;
  }
}


/* =========================================================
   HEADER OPTION 1 — FULL NAVY LUXURY
   ========================================================= */
.site-header {
  position: relative;
  z-index: 100;
  background: #061530;
  color: #fff;
  box-shadow: 0 16px 45px rgba(2, 12, 30, .22);
}

.trust-strip {
  background:
    radial-gradient(circle at 18% 0%, rgba(232,160,32,.14), transparent 25%),
    linear-gradient(90deg, #041126 0%, #08214a 50%, #041126 100%);
  border-bottom: 1px solid rgba(232,160,32,.18);
}

.premium-top {
  background:
    radial-gradient(circle at 88% 15%, rgba(232,160,32,.12), transparent 23%),
    radial-gradient(circle at 12% 100%, rgba(255,255,255,.035), transparent 28%),
    linear-gradient(110deg, #061530 0%, #092652 52%, #061530 100%);
}

.premium-top::before,
.premium-top::after {
  border-color: rgba(232,160,32,.10);
}

.premium-top-inner {
  min-height: 154px;
}

.premium-logo {
  position: relative;
  padding: 10px 12px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
  border: 1px solid rgba(232,160,32,.48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 34px rgba(0,0,0,.20),
    0 0 24px rgba(232,160,32,.07);
}

.premium-logo::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 25%, rgba(255,195,80,.18), transparent 72%);
}

.premium-logo img {
  height: 100px;
  max-width: 175px;
  border-radius: 16px;
  mix-blend-mode: normal !important;
  filter:
    contrast(1.08)
    saturate(1.06)
    drop-shadow(0 8px 18px rgba(0,0,0,.22));
}

.premium-benefits {
  border-right-color: rgba(255,255,255,.10);
  border-left-color: rgba(255,255,255,.10);
}

.premium-benefit:not(:last-child)::after {
  background: linear-gradient(transparent, rgba(232,160,32,.30), transparent);
}

.benefit-icon {
  color: #f3ad2e;
  background: rgba(255,255,255,.035);
  border-color: rgba(232,160,32,.34);
  box-shadow: inset 0 0 20px rgba(232,160,32,.035);
}

.premium-benefit strong {
  color: #fff;
}

.premium-benefit small {
  color: rgba(255,255,255,.64);
}

.phone-icon {
  color: #f3ad2e;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(232,160,32,.35);
  box-shadow: inset 0 0 18px rgba(232,160,32,.04);
}

.phone-copy small {
  color: rgba(255,255,255,.62);
}

.phone-copy strong,
.premium-phone {
  color: #fff;
}

.premium-phone:hover strong {
  color: #f5b437;
}

.premium-book {
  background: linear-gradient(135deg, #f5b437 0%, #d98905 100%);
  box-shadow:
    0 12px 28px rgba(216,138,5,.30),
    inset 0 1px 0 rgba(255,255,255,.32);
}

.nav-shell {
  background: linear-gradient(180deg, #061530 0%, #041126 100%);
  padding: 0 0 14px;
}

.nav-shell .main-nav {
  background: rgba(3, 15, 35, .62);
  border: 1px solid rgba(232,160,32,.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 12px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-shell .main-nav .nav-link {
  color: rgba(255,255,255,.88);
}

.nav-shell .main-nav .nav-link:hover,
.nav-shell .main-nav .nav-link.active {
  color: #f5b437;
}

@media (max-width: 991.98px) {
  .premium-logo {
    padding: 7px 9px;
    border-radius: 18px;
  }

  .premium-logo img {
    height: 70px;
    max-width: 120px;
    border-radius: 12px;
  }
}

@media (max-width: 575.98px) {
  .premium-logo {
    padding: 5px 6px;
    border-radius: 14px;
  }

  .premium-logo img {
    height: 55px;
    max-width: 74px;
  }
}
/* =========================================
   HEADER RESPONSIVE FIX
   ========================================= */

@media (max-width: 1199px) {

  .premium-top-inner {
    grid-template-columns: 130px 1fr !important;
    gap: 1rem !important;
    padding: 18px 0 !important;
  }

  .premium-logo {
    grid-row: 1 / 3;
    align-self: center;
  }

  .premium-logo img {
    height: 82px !important;
    max-width: 125px !important;
  }

  .premium-benefits {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    border: 0 !important;
  }

  .premium-benefit {
    justify-content: flex-start !important;
    padding: 8px 10px !important;
  }

  .premium-benefit::after {
    display: none !important;
  }

  .premium-benefit strong,
  .premium-benefit small {
    white-space: normal !important;
  }

  .premium-contact {
    grid-column: 2;
    justify-content: flex-start !important;
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

  .premium-top-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .premium-logo {
    order: 1;
  }

  .premium-logo img {
    height: 95px !important;
    max-width: 150px !important;
  }

  .premium-benefits {
    order: 2;
    width: 100%;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .premium-benefit {
    justify-content: center !important;
    text-align: right !important;
  }

  .premium-contact {
    order: 3;
    width: 100%;
    justify-content: center !important;
    margin-top: 12px;
  }

  .trust-strip-inner {
    display: flex !important;
    justify-content: center !important;
  }

  .trust-item {
    display: none !important;
  }

  .trust-item:first-child {
    display: flex !important;
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

  .premium-top {
    padding: 12px 0 15px !important;
  }

  .premium-logo img {
    height: 90px !important;
    max-width: 140px !important;
  }

  .premium-benefits {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .premium-benefit {
    flex-direction: column !important;
    text-align: center !important;
    padding: 10px 6px !important;
    gap: 5px !important;
  }

  .benefit-icon {
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
  }

  .premium-benefit strong {
    font-size: 0.82rem !important;
    line-height: 1.3 !important;
  }

  .premium-benefit small {
    font-size: 0.69rem !important;
    line-height: 1.4 !important;
  }

  .premium-contact {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .premium-phone {
    justify-content: center !important;
  }

  .premium-book {
    width: 100%;
    justify-content: center !important;
    max-width: 240px;
  }

  .nav-shell .main-nav {
    border-radius: 14px !important;
  }
}
.lux-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  margin-left:18px;

  border:1px solid rgba(232,160,32,.65);
  border-radius:24px;

  background:
    radial-gradient(circle at 50% 35%,
      rgba(255,255,255,.18) 0%,
      rgba(255,255,255,.08) 35%,
      rgba(10,31,68,.45) 72%,
      rgba(4,17,38,.80) 100%
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 12px 28px rgba(0,0,0,.22),
    0 0 22px rgba(232,160,32,.08);
}

.lux-logo img{
  width:155px;
  height:120px;
  object-fit:contain;

  mix-blend-mode:normal !important;

  filter:
    brightness(1.15)
    contrast(1.08)
    saturate(1.12)
    drop-shadow(0 4px 10px rgba(0,0,0,.18));
}
/* =========================================
   LOGO - OFF WHITE LUXURY
   ========================================= */

.lux-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 14px;
  margin-left: 18px;

  /* أوف وايت فاخر */
  background: linear-gradient(
    145deg,
    #fffdf8 0%,
    #f8f3e9 55%,
    #eee5d5 100%
  ) !important;

  /* الإطار الذهبي */
  border: 1.5px solid #d9a23a !important;
  border-radius: 24px;

  /* ظل ناعم */
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(217, 162, 58, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  overflow: hidden;
}


/* اللوقو نفسه */

.lux-logo img {
  width: 155px;
  height: 120px;

  object-fit: contain;

  mix-blend-mode: normal !important;

  filter:
    contrast(1.08)
    saturate(1.08)
    drop-shadow(0 3px 6px rgba(0,0,0,0.08));
}
/* =========================================
   LUXURY CRUISE COMPANIES
   ========================================= */

.lux-companies {
  position: relative;
  padding: 75px 0 65px;

  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(232,160,32,.07),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f7f4 100%
    );

  overflow: hidden;
}


/* العنوان */

.lux-companies-heading {
  text-align: center;
  margin-bottom: 38px;
}


.lux-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #c88208;

  font-size: 13px;
  font-weight: 800;

  margin-bottom: 8px;
}


.lux-companies-heading h2 {

  margin: 0;

  color: #071d43;

  font-size: 31px;
  font-weight: 900;

}


.lux-companies-heading p {

  color: #7b8493;

  margin: 8px 0 0;

  font-size: 14px;

}


.lux-title-line {

  margin-top: 15px;

  display: flex;
  justify-content: center;

}


.lux-title-line span {

  width: 70px;
  height: 3px;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #e8a020,
      transparent
    );

}


/* السلايدر */

.lux-companies-slider {

  position: relative;

  display: flex;

  align-items: center;

  gap: 14px;

}


.lux-companies-wrapper {

  flex: 1;

  overflow: hidden;

  padding: 12px 5px 20px;

}


.lux-companies-track {

  display: flex;

  gap: 18px;

  align-items: stretch;

}


/* البطاقة */

.lux-company-card {

  position: relative;

  flex: 0 0 175px;

  min-height: 145px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  background: #ffffff;

  border:
    1px solid
    rgba(7,29,67,.08);

  border-radius: 18px;

  padding: 18px 14px 13px;

  box-shadow:
    0 8px 24px
    rgba(7,29,67,.07);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;

}


/* الخط الذهبي */

.lux-company-card::before {

  content: '';

  position: absolute;

  top: 0;

  right: 28px;
  left: 28px;

  height: 3px;

  border-radius:
    0 0 8px 8px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #e8a020,
      transparent
    );

  opacity: 0;

  transition: opacity .25s ease;

}


/* Hover */

.lux-company-card:hover {

  transform:
    translateY(-7px);

  border-color:
    rgba(232,160,32,.35);

  box-shadow:
    0 18px 38px
    rgba(7,29,67,.13);

}


.lux-company-card:hover::before {

  opacity: 1;

}


/* صندوق اللوقو */

.lux-company-logo {

  width: 135px;
  height: 80px;

  display: flex;

  align-items: center;

  justify-content: center;

}


.lux-company-logo img {

  max-width: 100%;

  max-height: 68px;

  object-fit: contain;

  transition:
    transform .25s ease;

}


.lux-company-card:hover
.lux-company-logo img {

  transform:
    scale(1.06);

}


/* اسم الشركة */

.lux-company-card span {

  margin-top: 10px;

  color: #071d43;

  font-size: 12px;

  font-weight: 800;

  text-align: center;

}


/* الأسهم */

.lux-company-arrow {

  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  border-radius: 50%;

  border:
    1px solid
    rgba(7,29,67,.12);

  background: #ffffff;

  color: #071d43;

  display: grid;

  place-items: center;

  font-size: 20px;

  box-shadow:
    0 7px 20px
    rgba(7,29,67,.10);

  transition:
    all .2s ease;

}


.lux-company-arrow:hover {

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #f0ad2b,
      #d78906
    );

  border-color:
    #e8a020;

  transform:
    scale(1.06);

}


/* زر عرض جميع الشركات */

.lux-companies-footer {

  margin-top: 24px;

  text-align: center;

}


.lux-all-companies {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  min-height: 46px;

  padding:
    0 22px;

  border-radius: 12px;

  border:
    1px solid
    #0a1f44;

  color: #0a1f44;

  background: #ffffff;

  text-decoration: none;

  font-weight: 800;

  font-size: 14px;

  transition:
    all .2s ease;

}


.lux-all-companies:hover {

  color: #ffffff;

  background: #071d43;

  border-color: #071d43;

  transform:
    translateY(-2px);

}


/* =========================================
   Responsive
   ========================================= */

@media (max-width: 991px) {

  .lux-company-card {

    flex-basis: 155px;

  }


  .lux-company-arrow {

    width: 42px;

    height: 42px;

    flex-basis: 42px;

  }

}


@media (max-width: 575px) {

  .lux-companies {

    padding:
      55px 0 45px;

  }


  .lux-companies-heading h2 {

    font-size: 25px;

  }


  .lux-companies-heading p {

    font-size: 12px;

  }


  .lux-company-card {

    flex-basis: 145px;

    min-height: 132px;

  }


  .lux-company-logo {

    width: 115px;

    height: 70px;

  }


  .lux-company-arrow {

    width: 38px;

    height: 38px;

    flex-basis: 38px;

    font-size: 16px;

  }

}
/* =========================================================
   CRUISE COMPANIES GRID
   جميع الشركات بدون أسهم
   ========================================================= */

.lux-companies-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  margin-top: 10px;
}

.lux-companies-grid .lux-company-card {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 150px;
  flex: none !important;
}

@media (max-width: 1199px) {
  .lux-companies-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .lux-companies-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .lux-companies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 430px) {
  .lux-companies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .lux-companies-grid .lux-company-card {
    min-height: 125px;
    padding: 12px 8px;
  }
}
/* =========================================================
   CRUISE COMPANIES — 5 + 5
   ========================================================= */

.lux-companies-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 20px !important;

  width: 100% !important;
  max-width: 1200px;
  margin: 25px auto 0 !important;

  align-items: stretch;
}


/* بطاقة الشركة */

.lux-companies-grid .lux-company-card {
  display: flex !important;
  flex-direction: column !important;

  align-items: center !important;
  justify-content: center !important;

  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;

  height: 155px !important;
  min-height: 155px !important;

  margin: 0 !important;

  padding: 18px 12px !important;

  box-sizing: border-box !important;

  background: #ffffff !important;

  border: 1px solid rgba(7, 29, 67, 0.08) !important;
  border-radius: 18px !important;

  box-shadow:
    0 8px 25px
    rgba(7, 29, 67, 0.08) !important;

  text-decoration: none !important;
}


/* صندوق اللوقو */

.lux-companies-grid .lux-company-logo {
  width: 100% !important;
  height: 85px !important;

  display: flex !important;

  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
}


/* صورة اللوقو */

.lux-companies-grid .lux-company-logo img {
  display: block !important;

  width: auto !important;
  height: auto !important;

  max-width: 130px !important;
  max-height: 70px !important;

  object-fit: contain !important;

  margin: auto !important;
}


/* اسم الشركة */

.lux-companies-grid .lux-company-card span {
  display: block !important;

  width: 100% !important;

  margin-top: 10px !important;

  color: #071d43 !important;

  font-size: 13px !important;
  font-weight: 800 !important;

  line-height: 1.4 !important;

  text-align: center !important;

  white-space: normal !important;
}


/* تأثير عند مرور الماوس */

.lux-companies-grid .lux-company-card:hover {
  transform: translateY(-6px) !important;

  border-color:
    rgba(232, 160, 32, 0.45) !important;

  box-shadow:
    0 16px 35px
    rgba(7, 29, 67, 0.14) !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

  .lux-companies-grid {
    grid-template-columns:
      repeat(3, 1fr) !important;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .lux-companies-grid {
    grid-template-columns:
      repeat(2, 1fr) !important;

    gap: 12px !important;
  }


  .lux-companies-grid .lux-company-card {
    height: 135px !important;
    min-height: 135px !important;

    padding: 12px 8px !important;
  }


  .lux-companies-grid .lux-company-logo {
    height: 70px !important;
  }


  .lux-companies-grid .lux-company-logo img {
    max-width: 105px !important;
    max-height: 58px !important;
  }


  .lux-companies-grid .lux-company-card span {
    font-size: 11px !important;
  }

}
/* =========================================================
   FINAL FIX — CRUISE COMPANIES 5 + 5
   ========================================================= */

#companies .lux-companies-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  grid-template-rows: auto auto !important;

  gap: 20px !important;

  width: 100% !important;
  max-width: 1200px !important;

  margin: 25px auto 0 !important;
  padding: 0 !important;

  position: relative !important;

  float: none !important;
  overflow: visible !important;
}


/* كل بطاقة عنصر مستقل داخل الـ Grid */

#companies .lux-companies-grid > .lux-company-card {
  position: relative !important;

  display: flex !important;
  flex-direction: column !important;

  align-items: center !important;
  justify-content: center !important;

  float: none !important;

  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;

  height: 155px !important;
  min-height: 155px !important;

  margin: 0 !important;
  padding: 15px !important;

  transform: none;

  box-sizing: border-box !important;
}


/* اللوقو */

#companies .lux-companies-grid > .lux-company-card .lux-company-logo {

  display: flex !important;

  align-items: center !important;
  justify-content: center !important;

  width: 100% !important;
  height: 80px !important;

  margin: 0 !important;
  padding: 0 !important;
}


#companies .lux-companies-grid > .lux-company-card .lux-company-logo img {

  display: block !important;

  position: static !important;

  width: auto !important;
  height: auto !important;

  max-width: 130px !important;
  max-height: 65px !important;

  margin: auto !important;

  object-fit: contain !important;

  float: none !important;
}


/* اسم الشركة */

#companies .lux-companies-grid > .lux-company-card > span {

  display: block !important;

  position: static !important;

  width: 100% !important;

  margin: 10px 0 0 !important;

  text-align: center !important;

  white-space: normal !important;

  float: none !important;
}


/* التابلت */

@media (max-width: 991px) {

  #companies .lux-companies-grid {

    grid-template-columns:
      repeat(3, minmax(0, 1fr)) !important;

  }

}


/* الجوال */

@media (max-width: 600px) {

  #companies .lux-companies-grid {

    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;

    gap: 12px !important;

  }


  #companies .lux-companies-grid > .lux-company-card {

    height: 135px !important;
    min-height: 135px !important;

  }


  #companies .lux-companies-grid > .lux-company-card .lux-company-logo img {

    max-width: 105px !important;
    max-height: 55px !important;

  }

}
/* =========================================================
   POPULAR CRUISE ROUTES
========================================================= */

.popular-routes {

  position: relative;

  padding: 80px 0;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(232,160,32,.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #061530 0%,
      #092653 100%
    );

}


/* Heading */

.popular-routes-heading {

  text-align: center;

  margin-bottom: 42px;

}


.routes-badge {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: #f0ad2b;

  font-size: 13px;

  font-weight: 800;

  margin-bottom: 8px;

}


.popular-routes-heading h2 {

  margin: 0;

  color: #ffffff;

  font-size: 32px;

  font-weight: 900;

}


.popular-routes-heading p {

  margin: 9px 0 0;

  color: rgba(255,255,255,.65);

  font-size: 14px;

}


.routes-title-line {

  display: flex;

  justify-content: center;

  margin-top: 16px;

}


.routes-title-line span {

  width: 85px;

  height: 3px;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #f0ad2b,
      transparent
    );

}


/* Grid */

.popular-routes-grid {

  display: grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap: 24px;

}


/* Card */

.route-card {

  overflow: hidden;

  border-radius: 22px;

  background: #ffffff;

  border:
    1px solid
    rgba(240,173,43,.25);

  box-shadow:
    0 20px 45px
    rgba(0,0,0,.25);

  transition:
    transform .3s ease,
    box-shadow .3s ease;

}


.route-card:hover {

  transform:
    translateY(-8px);

  box-shadow:
    0 26px 55px
    rgba(0,0,0,.35);

}


/* Image */

.route-card-image {

  position: relative;

  height: 285px;

  overflow: hidden;

}


.route-card-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition:
    transform .5s ease;

}


.route-card:hover
.route-card-image img {

  transform:
    scale(1.07);

}


.route-card-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(6,21,48,.06) 15%,
      rgba(6,21,48,.20) 45%,
      rgba(6,21,48,.92) 100%
    );

}


/* Text */

.route-card-content {

  position: absolute;

  bottom: 0;

  right: 0;

  left: 0;

  padding: 25px;

  color: #fff;

}


.route-country {

  display: block;

  color: #f0ad2b;

  font-size: 13px;

  font-weight: 800;

  margin-bottom: 6px;

}


.route-card-content h3 {

  margin: 0 0 7px;

  font-size: 25px;

  font-weight: 900;

}


.route-card-content p {

  margin: 0;

  color:
    rgba(255,255,255,.78);

  font-size: 13px;

}


/* Badges */

.route-popular-badge,
.route-saudi-badge {

  position: absolute;

  top: 18px;

  right: 18px;

  display: inline-flex;

  align-items: center;

  gap: 6px;

  padding:
    7px 11px;

  border-radius: 999px;

  background:
    rgba(6,21,48,.85);

  color: #fff;

  border:
    1px solid
    rgba(240,173,43,.55);

  backdrop-filter:
    blur(10px);

  font-size:
    11px;

  font-weight:
    800;

}


.route-popular-badge i,
.route-saudi-badge i {

  color:
    #f0ad2b;

}


/* Footer */

.route-card-footer {

  min-height: 68px;

  display: flex;

  align-items: center;

  justify-content:
    space-between;

  gap: 10px;

  padding:
    12px 16px;

}


.route-map-btn {

  border: 0;

  background:
    transparent;

  color:
    #071d43;

  font-size:
    13px;

  font-weight:
    800;

}


.route-map-btn i {

  color:
    #d58a08;

  margin-left:
    4px;

}


.route-search-btn {

  display:
    inline-flex;

  align-items:
    center;

  gap: 6px;

  min-height:
    40px;

  padding:
    0 14px;

  border-radius:
    10px;

  background:
    #071d43;

  color:
    #ffffff;

  text-decoration:
    none;

  font-size:
    12px;

  font-weight:
    800;

}


.route-search-btn:hover {

  color: #ffffff;

  background:
    #d98c08;

}


.route-coming {

  color:
    #667085;

  font-size:
    12px;

  font-weight:
    700;

}


/* =========================================================
   Route Modal
========================================================= */

.route-modal .modal-content {

  overflow: hidden;

  border: 0;

  border-radius: 24px;

  box-shadow:
    0 25px 70px
    rgba(0,0,0,.35);

}


.route-modal .modal-header {

  padding:
    20px 24px;

  border-bottom:
    1px solid
    #ececec;

}


.route-modal-small {

  color:
    #d78b09;

  font-size:
    12px;

  font-weight:
    800;

}


.route-modal .modal-title {

  color:
    #071d43;

  margin-top:
    3px;

  font-weight:
    900;

}


.route-modal-map {

  overflow: hidden;

  border-radius:
    16px;

  background:
    #f3f4f6;

}


.route-modal-map img {

  display: block;

  width: 100%;

  max-height:
    480px;

  object-fit:
    contain;

}


.route-stops {

  display: flex;

  flex-wrap: wrap;

  justify-content:
    center;

  gap: 8px;

  margin-top:
    20px;

}


.route-stops span {

  padding:
    7px 12px;

  border-radius:
    999px;

  color:
    #071d43;

  background:
    #f7f3ea;

  border:
    1px solid
    rgba(216,143,10,.20);

  font-size:
    12px;

  font-weight:
    800;

}


.route-stops i {

  color:
    #d78b09;

}


.route-modal-note {

  margin:
    18px 0 0;

  color:
    #667085;

  text-align:
    center;

  font-size:
    13px;

  line-height:
    1.8;

}


.route-modal .modal-footer {

  justify-content:
    center;

  border-top:
    1px solid
    #ececec;

  padding:
    16px 20px;

}


.route-modal-search {

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  gap: 8px;

  min-height:
    46px;

  padding:
    0 22px;

  border-radius:
    12px;

  color:
    #ffffff;

  background:
    linear-gradient(
      135deg,
      #f0ad2b,
      #d78906
    );

  text-decoration:
    none;

  font-weight:
    800;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

  .popular-routes-grid {

    grid-template-columns:
      repeat(2,minmax(0,1fr));

  }

}


@media(max-width:600px) {

  .popular-routes {

    padding:
      55px 0;

  }


  .popular-routes-heading h2 {

    font-size:
      26px;

  }


  .popular-routes-grid {

    grid-template-columns:
      1fr;

  }


  .route-card-image {

    height:
      250px;

  }

}
/* =========================================================
   POPULAR CRUISE SHIPS
========================================================= */

.popular-ships {
  padding: 80px 0;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(232,160,32,.08),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f6f2 100%
    );
}


/* Heading */

.popular-ships-heading {
  text-align: center;
  margin-bottom: 42px;
}

.ships-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #c9850a;

  font-size: 13px;
  font-weight: 800;

  margin-bottom: 8px;
}

.popular-ships-heading h2 {
  margin: 0;

  color: #071d43;

  font-size: 32px;
  font-weight: 900;
}

.popular-ships-heading p {
  margin: 8px 0 0;

  color: #7b8493;

  font-size: 14px;
}

.ships-title-line {
  display: flex;
  justify-content: center;

  margin-top: 15px;
}

.ships-title-line span {
  width: 80px;
  height: 3px;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #e8a020,
      transparent
    );
}


/* Grid */

.popular-ships-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 22px;
}


/* Card */

.popular-ship-card {
  overflow: hidden;

  background: #ffffff;

  border:
    1px solid
    rgba(7,29,67,.08);

  border-radius: 20px;

  box-shadow:
    0 10px 28px
    rgba(7,29,67,.09);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.popular-ship-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 20px 42px
    rgba(7,29,67,.15);
}


/* Image */

.popular-ship-image {
  position: relative;

  height: 190px;

  overflow: hidden;

  background: #eef2f6;
}

.popular-ship-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .4s ease;
}

.popular-ship-card:hover
.popular-ship-image img {
  transform:
    scale(1.05);
}


/* Company badge */

.popular-ship-company {
  position: absolute;

  top: 14px;
  right: 14px;

  padding:
    6px 10px;

  border-radius:
    999px;

  background:
    rgba(6,21,48,.88);

  color: #fff;

  border:
    1px solid
    rgba(232,160,32,.45);

  font-size:
    10px;

  font-weight:
    800;

  backdrop-filter:
    blur(8px);
}


/* Body */

.popular-ship-body {
  padding: 20px;
  text-align: center;
}

.popular-ship-body h3 {
  margin: 0 0 8px;

  color: #071d43;

  font-size: 20px;

  font-weight: 900;
}

.popular-ship-body p {
  min-height: 48px;

  margin: 0 0 18px;

  color: #6d7684;

  font-size: 12px;

  line-height: 1.7;
}


/* Button */

.popular-ship-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  width: 100%;

  min-height: 44px;

  border-radius: 11px;

  background:
    linear-gradient(
      135deg,
      #071d43,
      #0b315f
    );

  color:
    #ffffff !important;

  text-decoration:
    none !important;

  font-size:
    13px;

  font-weight:
    800;

  transition:
    all .2s ease;
}

.popular-ship-btn:hover {
  background:
    linear-gradient(
      135deg,
      #f0ad2b,
      #d78906
    );

  transform:
    translateY(-2px);
}


/* Tablet */

@media (max-width: 991px) {

  .popular-ships-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* Mobile */

@media (max-width: 575px) {

  .popular-ships {
    padding: 55px 0;
  }

  .popular-ships-heading h2 {
    font-size: 26px;
  }

  .popular-ships-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 12px;
  }

  .popular-ship-image {
    height: 135px;
  }

  .popular-ship-body {
    padding: 14px 10px;
  }

  .popular-ship-body h3 {
    font-size: 15px;
  }

  .popular-ship-body p {
    font-size: 10px;
    min-height: 55px;
  }

  .popular-ship-btn {
    font-size: 11px;
    min-height: 40px;
  }

}