/* =============================================
   CRUISE PLANNING / CONCIERGE SERVICE PAGE
   assets/css/planning.css
============================================= */

/* =============================================
   HERO
============================================= */
.planning-hero {
  background: #071a39;
  background-size: 100% auto;
  background-position: center 35%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.planning-hero-overlay {
  width: 100%;
  padding: 100px 0 80px;
  background: linear-gradient(
    to bottom,
    rgba(7, 26, 57, 0.45) 0%,
    rgba(7, 26, 57, 0.75) 50%,
    rgba(7, 26, 57, 0.95) 100%
  );
}

.planning-hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c8a96b;
  font-weight: 600;
  margin-bottom: 14px;
}

.planning-hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.planning-hero-sub {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.65;
}


/* =============================================
   SHARED SECTION TITLE
============================================= */
.planning-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a1d44;
}


/* =============================================
   HOW IT WORKS — STEPS
============================================= */
.planning-steps {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.planning-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 36px;
}

.planning-step:last-child {
  padding-bottom: 0;
}

/* connector line */
.planning-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: #dce3f0;
}

.planning-step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0a1d44;
  color: #c8a96b;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px #f8f9fc;
}

.planning-step-body {
  padding-top: 8px;
  flex: 1;
}

.planning-step-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1d44;
  margin-bottom: 8px;
}

.planning-step-body p {
  color: #444;
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 0;
}


/* =============================================
   WHAT WE TAKE CARE OF — LIST
============================================= */
.planning-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.planning-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #333;
  font-size: 0.97rem;
  line-height: 1.5;
  border-bottom: 1px solid #eef0f5;
}

.planning-list li:last-child {
  border-bottom: none;
}

.planning-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: #c8a96b;
  font-weight: 700;
  font-size: 1rem;
}


/* =============================================
   FEE SECTION
============================================= */
.planning-fee-section {
  background: #0a1d44;
  padding: 60px 0;
}

.planning-fee-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.planning-fee-left {
  flex-shrink: 0;
  width: 220px;
  background: rgba(200,169,107,0.12);
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  text-align: center;
}

.planning-fee-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(200,169,107,0.8);
  font-weight: 600;
  margin-bottom: 12px;
}

.planning-fee-price {
  font-size: 3.2rem;
  font-weight: 700;
  color: #c8a96b;
  line-height: 1;
  margin-bottom: 8px;
}

.planning-fee-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.planning-fee-divider {
  display: none;
}

.planning-fee-right {
  flex: 1;
  padding: 36px 40px;
  color: rgba(255,255,255,0.88);
}

.planning-fee-right h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.planning-fee-right p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.planning-fee-right strong {
  color: #fff;
}


/* =============================================
   HOW WE MEET — CARDS
============================================= */
.planning-meet-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  height: 100%;
  border-top: 3px solid #0a1d44;
  text-align: center;
}

.planning-meet-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.planning-meet-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1d44;
  margin-bottom: 10px;
}

.planning-meet-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}


/* =============================================
   WHO IT SUITS — CARDS
============================================= */
.planning-suit-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  height: 100%;
  border-top: 3px solid #c8a96b;
  text-align: center;
}

.planning-suit-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.planning-suit-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1d44;
  margin-bottom: 10px;
}

.planning-suit-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}


/* =============================================
   CTA SECTION
============================================= */
.planning-cta-section {
  background: #0a1d44;
  padding: 70px 0;
}

.planning-cta-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
}


/* =============================================
   TEAM PHOTO
============================================= */
.planning-team-photo {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.14);
  display: block;
  object-fit: cover;
  max-height: 460px;
}


/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 767px) {
  .planning-fee-card {
    flex-direction: column;
  }

  .planning-fee-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 32px 24px;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .planning-fee-price {
    font-size: 2.4rem;
  }

  .planning-fee-right {
    padding: 28px 24px;
  }

  .planning-hero {
    min-height: 50vh;
  }

  .planning-step {
    gap: 18px;
  }
}
