
.cruises-hero {
  position: relative;
  height: 45vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0077cc 0%, #005599 100%);
  overflow: hidden;
  padding: 180px 0 120px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 204, 0.85) 0%, rgba(0, 102, 179, 0.75) 100%);
  z-index: 2;
}

.cruises-hero .container {
  position: relative;
  z-index: 3;
}

.cruises-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex; /* Changed from inline-block to inline-flex to align icon */
  align-items: center; /* Added for icon alignment */
  gap: 8px; /* Added for space between icon and text */
  padding: 8px 20px;
  background: rgba(255, 193, 7, 0.2);
  border: 2px solid var(--color-secondary);
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--color-secondary);
}

.cruises-hero h1 {
  font-family: var(--font-heading);
  font-size: 64px; /* Changed from 56px */
  font-weight: 700;
  margin: 0 0 24px 0; /* Changed from 20px */
  line-height: 1.1; /* Changed from 1.2 */
}

.cruises-hero p {
  font-family: var(--font-main);
  font-size: 20px;
  margin: 0 0 48px 0; /* Changed from 0 */
  opacity: 0.95;
  line-height: 1.6;
}

.cruise-intro {
  background: white;
}

.intro-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}


.cruise-provider {
  position: relative;
}

.cruise-provider.bg-light {
  background: #f8f9fa;
}

.provider-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.provider-layout.reverse {
  direction: rtl;
}

.provider-layout.reverse > * {
  direction: ltr;
}

.provider-image {
  position: relative;
  border-radius: 16px;
  overflow: visible; /* Changed from hidden to visible */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.provider-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 5px solid var(--color-primary);
  border-radius: 16px;
  transform: translate(20px, 20px); /* Reversed offset */
  z-index: 0;
  opacity: 1; /* Always visible */
  /* Removed transition */
}

/* Removed hover effects for ::before */


.provider-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  position: relative; /* Added for z-index to take effect */
  z-index: 3;      /* Explicitly keep z-index to ensure it's above ::before */
  border-radius: 14px;
}

.provider-layout:hover .provider-image img {
  transform: scale(1.05);
}

.provider-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 10px 24px;
  background: var(--color-secondary);
  color: #1a1a1a;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.provider-content {
  position: relative;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.provider-content::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(135deg, #01388b5b 0%, #e9ecef 100%);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.6;
  transform: rotate(-2deg);
  transition: all 0.4s ease;
}

.provider-layout:hover .provider-content::before {
  transform: rotate(0deg) scale(1.02);
  opacity: 1;
}

.provider-logo {
  margin-bottom: 24px;
  max-width: 200px;
  z-index: 5;
}

.provider-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.provider-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.provider-tagline {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  font-style: italic;
}

.provider-content > p {
  font-family: var(--font-main);
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.provider-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.highlight-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.provider-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: var(--color-primary);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 119, 204, 0.3);
}

.provider-cta:hover {
  background: #005599;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 119, 204, 0.4);
}

.why-cruise {
  background: white;
}

.why-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  padding: 40px 32px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
}

.why-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 119, 204, 0.15);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--color-primary), #005599);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.why-card p {
  font-family: var(--font-main);
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.why-us-cruise {
  background: #f8f9fa;
}

.why-us-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.feature-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--color-secondary);
  color: #1a1a1a;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.feature-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.feature-content p {
  font-family: var(--font-main);
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.why-us-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-us-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.image-stats {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 4px 0;
}

.stat-label {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.cruise-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/cruise-cta-bg.jpg') center/cover no-repeat;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 204, 0.92) 0%, rgba(0, 102, 179, 0.88) 100%);
  z-index: 2;
}

.cruise-cta .container {
  position: relative;
  z-index: 3;
}

.cruise-cta .cta-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.cruise-cta h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.cruise-cta p {
  font-family: var(--font-main);
  font-size: 18px;
  margin: 0 0 40px 0;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-light:hover {
  background: white;
  color: var(--color-primary);
}


@media (max-width: 1024px) {
  .cruises-hero {
    min-height: 500px;
  }

  .cruises-hero h1 {
    font-size: 42px;
  }

  .provider-layout,
  .provider-layout.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
    direction: ltr;
  }

  .provider-image img {
    height: 400px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-content {
    grid-template-columns: 1fr;
  }

  .why-us-image {
    order: -1;
  }

  .why-us-image img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .cruises-hero {
    height: 60vh;
    min-height: 450px;
  }

  .cruises-hero h1 {
    font-size: 32px;
  }

  .cruises-hero p {
    font-size: 16px;
  }

  .provider-content h2 {
    font-size: 28px;
  }

  .provider-image img {
    height: 300px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .feature-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .image-stats {
    position: static;
    margin-top: 16px;
  }

  .cruise-cta h2 {
    font-size: 36px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cruises-hero h1 {
    font-size: 28px;
  }

  .provider-content h2 {
    font-size: 24px;
  }

  .provider-badge {
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    font-size: 12px;
  }

  .why-card {
    padding: 32px 24px;
  }

  .feature-box {
    padding: 24px;
  }
}