/* ============================================================
   SECTIONS 1, 2, 3 — Content Sections
   ============================================================ */

.content-section {
  padding: 50px 60px 80px;
}

/* === INTRO === */
.content-intro {
  text-align: center;
  margin-bottom: 50px;
}

.content-intro .title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  color: white;
  margin-bottom: 16px;
}

.content-intro .title .gold {
  color: var(--gold-bright);
}

.content-intro .subtitle {
  font-size: 22px;
  color: var(--gold-bright);
  letter-spacing: 1px;
  opacity: 0.9;
  font-weight: 500;
}

.content-intro .divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  margin: 28px auto 0;
}

/* ============================================================
   EXPANDABLE CARDS (Sections 1 and 2)
   ============================================================ */
.cards-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.expand-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.expand-card.expanded {
  border-color: var(--gold-bright);
  background: rgba(201, 169, 97, 0.08);
}

.expand-card .card-header {
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}

.expand-card .card-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.expand-card .card-icon svg {
  width: 44px;
  height: 44px;
  fill: var(--navy-deep);
}

.expand-card .card-titles {
  flex: 1;
  min-width: 0;
}

.expand-card .card-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 6px;
}

.expand-card .card-tagline {
  font-size: 18px;
  color: var(--ice-blue);
  opacity: 0.75;
  font-style: italic;
}

.expand-card .card-chevron {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(201, 169, 97, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.expand-card.expanded .card-chevron {
  transform: rotate(180deg);
  background: var(--gold-bright);
}

.expand-card .card-chevron svg {
  width: 22px;
  height: 22px;
  fill: var(--gold-bright);
  transition: fill 0.3s;
}

.expand-card.expanded .card-chevron svg {
  fill: var(--navy-deep);
}

.expand-card .card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.expand-card.expanded .card-body {
  max-height: 3000px;
}

.expand-card .card-body-inner {
  padding: 0 36px 36px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  margin-top: 4px;
  padding-top: 28px;
}

.expand-card .body-paragraph {
  font-size: 22px;
  line-height: 1.55;
  color: var(--ice-blue);
  margin-bottom: 16px;
}

.expand-card .body-paragraph strong {
  color: var(--gold-soft);
  font-weight: 600;
}

/* ============================================================
   BULLET LISTS (proper dots, not dashes)
   ============================================================ */
.gold-bullets {
  list-style: none;
}

.gold-bullets li {
  padding: 14px 0 14px 40px;
  font-size: 21px;
  line-height: 1.5;
  color: var(--ice-blue);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gold-bullets li:last-child {
  border-bottom: none;
}

/* The "bullet" — solid gold circle */
.gold-bullets li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 26px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.gold-bullets li strong {
  color: var(--gold-soft);
  font-weight: 600;
}

/* ============================================================
   NESTED LIST WITH CHECKMARKS (Ship Registration options)
   ============================================================ */
.nested-list {
  margin: 8px 0 8px 40px;
  padding: 18px 24px;
  background: rgba(212, 175, 55, 0.06);
  border-left: 3px solid var(--gold-bright);
  border-radius: 0 12px 12px 0;
}

.nested-list .nested-title {
  font-size: 19px;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.nested-list .nested-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nested-list .nested-items li {
  font-size: 19px;
  color: var(--ice-blue);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 4px;
}

.nested-list .nested-items li::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ============================================================
   SECTION 2 — Lead bullets block (above sub-sections)
   ============================================================ */
.section2-lead {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 24px;
  padding: 30px 36px;
  margin-bottom: 28px;
}

.section2-lead .lead-title {
  font-size: 22px;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-align: center;
}

/* ============================================================
   SECTION 3 — Bullet list inside a card
   ============================================================ */
.section3-bullets-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 24px;
  padding: 30px 40px;
}
