/* ===== SECTION — About (with porthole) ===== */
  .section-about {
    background: #0a1a35;
    padding: 60px 20px 80px;
  }

  /* Scroll hint for inner sections */
  .section-scroll {
    text-align: center;
    margin-top: 2em;
    padding-top: 1em;
  }
  .section-scroll span {
    display: block;
    color: rgba(212, 175, 55, 0.4);
    font-size: 1.4rem;
    animation: bounce 2s ease-in-out infinite;
  }
  .section-scroll p {
    color: rgba(200, 190, 175, 0.3);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ===== HOW IT WORKS ===== */
  .how-it-works {
    background: #0a1a35;
    padding: 70px 20px;
    text-align: center;
  }
  .how-it-works h3 {
    color: #D4AF37;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 40px;
  }
  .steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .step-item {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
  }
  .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 14px;
  }
  .step-item h4 {
    color: #e8d4b0;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 6px;
  }
  .step-item p {
    color: rgba(200,195,185,0.5);
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* ===== TRUSTED EXPERIENCE ===== */
  .trusted {
    background: #0a1a35;
    padding: 70px 20px;
    text-align: center;
  }
  .trusted h3 {
    color: #D4AF37;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 35px;
  }
  .trust-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e8d4b0;
    font-size: 1rem;
    min-width: 200px;
  }
  .trust-check {
    color: #D4AF37;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  /* ===== DEPARTURE LOCATION ===== */
  .location {
    background: #0a1a35;
    padding: 70px 20px;
    text-align: center;
  }
  .location h3 {
    color: #D4AF37;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 10px;
  }
  .location .loc-sub {
    color: rgba(200,195,185,0.5);
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  .location .loc-address {
    color: #e8d4b0;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .location .loc-address span {
    color: #D4AF37;
  }
  .location iframe {
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.2);
    max-width: 700px;
    width: 100%;
  }

  @media (max-width: 600px) {
    .steps-grid { flex-direction: column; align-items: center; gap: 30px; }
    .trust-grid { flex-direction: column; align-items: center; }
  }

  .section-about .section-title {
    text-align: center;
    color: #D4AF37;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
  }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(30px, 6vw, 80px);
  }

  .section-inner.reverse { flex-direction: row-reverse; }

  /* Porthole photo frame */
  .porthole-frame {
    flex-shrink: 0;
    width: clamp(200px, 30vw, 340px);
    height: clamp(200px, 30vw, 340px);
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
      from 0deg,
      #8B7340, #c4a85a, #6b5a30, #a8924a,
      #8B7340, #c4a85a, #6b5a30, #a8924a,
      #8B7340
    );
    padding: 14px;
    box-shadow:
      0 0 30px rgba(0,0,0,0.5),
      inset 0 0 20px rgba(0,0,0,0.3);
  }

  .porthole-glass {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.4);
  }

  .porthole-glass img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Glass reflection */
  .porthole-glass::after {
    content: '';
    position: absolute;
    top: 10%; left: 15%;
    width: 40%; height: 25%;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
    border-radius: 50%;
    transform: rotate(-15deg);
    pointer-events: none;
  }

  /* Brass bolts */
  .porthole-bolt {
    position: absolute;
    width: 14px; height: 14px;
    background: radial-gradient(circle at 35% 35%, #c4a85a, #5a4a28);
    border-radius: 50%;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), 0 1px 3px rgba(0,0,0,0.5);
  }

  .bolt-t  { top: 4px;    left: 50%;  transform: translateX(-50%); }
  .bolt-b  { bottom: 4px; left: 50%;  transform: translateX(-50%); }
  .bolt-l  { left: 4px;   top: 50%;   transform: translateY(-50%); }
  .bolt-r  { right: 4px;  top: 50%;   transform: translateY(-50%); }
  .bolt-tl { top: 22px;   left: 22px; }
  .bolt-tr { top: 22px;   right: 22px; }
  .bolt-bl { bottom: 22px; left: 22px; }
  .bolt-br { bottom: 22px; right: 22px; }

  .section-text h3 {
    color: #D4AF37;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 0.5em;
  }

  .section-text p {
    color: rgba(200, 195, 185, 0.75);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.8;
    letter-spacing: 0.01em;
  }

  /* ===== SECTION — Features ===== */
  .section-features {
    background: #0a1a35;
    padding: 80px 20px;
  }

  .section-features h3 {
    text-align: center;
    color: #D4AF37;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 50px;
  }

  .features-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .feature-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.03);
    transition: all 0.3s ease;
  }

  .feature-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.06);
    transform: translateY(-4px);
  }

  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .feature-card h4 {
    color: #e8d4b0;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
  }

  .feature-card p {
    color: rgba(200, 195, 185, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
  }
