/* ============================= */
/* ===== CONTACT HERO BANNER === */
/* ============================= */

.contact-hero {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

/* Image */
.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Gradient from Left Side */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Dark from left → transparent right */
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.45) 35%,
        rgba(0,0,0,0.2) 60%,
        rgba(0,0,0,0) 100%
    );

    z-index: 1;
}

/* Text Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ============================= */
/* ===== MOBILE RESPONSIVE ===== */
/* ============================= */

@media (max-width: 768px) {

    .contact-hero {
        height: 240px;
    }

    .hero-content {
        left: 5%;
    }

    .hero-content h1 {
        font-size: 30px;
    }
}

/* ===== CRUISE SECTION ===== */

.cruise-section {
  background: #f3f3f3;
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 40px;
  color: #333;
}

.breadcrumb a {
  text-decoration: none;
  color: #333;
}

.cruise-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */

.cruise-content {
  flex: 1;
}

.cruise-content h2 {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 20px;
  color: #222;
}

.title-line {
  display: block;
  width: 60px;
  height: 2px;
  background: #c6a24a;
  margin-bottom: 30px;
}

.cruise-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

/* GOLD BUTTON */

.gold-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #c6a24a;
  color: #fff;
  padding: 1px 0px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s ease;
}

.gold-btn span {
  background: #c6a24a;
  padding: 15px 18px;
}

.gold-btn:hover {
  background: #b28e35;
}

/* RIGHT IMAGE */

.cruise-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-frame {
  background: #ddd;
  padding: 30px;
}

.image-frame img {
  width: 100%;
  max-width: 450px;
  display: block;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .cruise-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cruise-content h2 {
    font-size: 36px;
  }

  .gold-btn {
    justify-content: center;
  }
}
/* ===== RIVER CRUISE SECTION ===== */

.river-cruise-section {
  background: #f3f3f3;
  padding: 80px 0;
}

.river-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.river-content {
  flex: 1;
}

.river-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #555;
}

.river-list {
  list-style: none;
  padding: 0;
}

.river-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #333;
}

/* Gold Check Icon */
.river-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid #c6a24a;
  border-radius: 50%;
  font-size: 12px;
  color: #c6a24a;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT IMAGE */

.river-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-frame {
  background: #ddd;
  padding: 30px;
}

.image-frame img {
  width: 100%;
  max-width: 450px;
  display: block;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .river-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .river-list li {
    text-align: left;
  }
}
/* ===== EXCLUSIVE DEALS SECTION ===== */

.exclusive-deals {
    background: #f4f4f4;
    padding: 100px 20px;
    text-align: center;
}

.exclusive-deals .container {
    max-width: 1200px;
    margin: auto;
}

/* Icon */
.section-icon img {
    width: 90px;
    margin-bottom: 25px;
}

/* Title */
.section-title {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #1d1d1d;
    margin-bottom: 20px;
}

/* Subtitle */
.section-subtitle {
    max-width: 850px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Gold Divider */
.title-divider {
    width: 60px;
    height: 3px;
    background: #c7a34a;
    margin: 30px auto 60px;
}

/* Grid Layout */
.cruise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
}

/* List Styling */
.cruise-grid ul {
    list-style: none;
    padding: 0;
}

.cruise-grid li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #222;
}

/* Gold Check Icon */
.cruise-grid li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #c7a34a;
    font-weight: bold;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .cruise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 32px;
    }

    .cruise-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
}
