: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;
  }
}
