/* ===== BOOKING ===== */
  .booking {
    background: #0a1a35;
    padding: 80px 20px;
  }

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

  .booking > p {
    text-align: center;
    color: rgba(200, 195, 185, 0.55);
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .booking-form {
    max-width: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .booking-form .full-width {
    grid-column: 1 / -1;
  }

  .booking-form label {
    display: block;
    color: rgba(200, 195, 185, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .booking-form input,
  .booking-form select {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    color: #e8d4b0;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
  }

  .booking-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
  }

  .booking-form select option {
    background: #0a1a35;
    color: #e8d4b0;
  }

  .booking-form input::placeholder {
    color: rgba(200, 195, 185, 0.3);
  }

  .booking-form input:focus,
  .booking-form select:focus {
    border-color: rgba(212, 175, 55, 0.5);
  }

  .booking-form .btn-book {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding: 16px 36px;
    border: none;
    border-radius: 40px;
    background: #D4AF37;
    color: #0B1D3A;
    font-family: 'Georgia', serif;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(200, 160, 80, 0.3);
  }

  .booking-form .btn-book:hover {
    background: #E6C55A;
    transform: translateY(-2px) scale(1.02);
  }

  @media (max-width: 480px) {
    .booking-form {
      grid-template-columns: 1fr;
    }
  }

  /* ===== SUBSCRIBE ===== */
  .subscribe {
    background: #0a1a35;
    padding: 70px 20px;
    text-align: center;
  }

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

  .subscribe p {
    color: rgba(200, 195, 185, 0.55);
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .subscribe-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    gap: 0;
  }

  .subscribe-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-right: none;
    border-radius: 40px 0 0 40px;
    background: rgba(255,255,255,0.05);
    color: #e8d4b0;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
  }

  .subscribe-form input::placeholder {
    color: rgba(200, 195, 185, 0.35);
  }

  .subscribe-form input:focus {
    border-color: rgba(212, 175, 55, 0.5);
  }

  .subscribe-form button {
    padding: 14px 28px;
    border: none;
    border-radius: 0 40px 40px 0;
    background: #D4AF37;
    color: #0B1D3A;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .subscribe-form button:hover {
    background: #E6C55A;
  }

  @media (max-width: 480px) {
    .subscribe-form {
      flex-direction: column;
      gap: 12px;
    }

    .subscribe-form input {
      border-right: 1px solid rgba(212, 175, 55, 0.25);
      border-radius: 40px;
    }

    .subscribe-form button {
      border-radius: 40px;
    }
  }

  @media (max-width: 600px) {
    .footer-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-brand, .footer-contact {
      text-align: center;
    }
  }

  /* ===== PRICING ===== */
  .pricing {
    background: #0a1a35;
    padding: 80px 20px;
  }

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

  .pricing > p {
    text-align: center;
    color: rgba(200, 195, 185, 0.55);
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .price-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 16px;
    padding: 36px 28px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .price-card:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 24px rgba(212, 175, 55, 0.15);
  }

  .price-card:hover::before {
    opacity: 1;
  }

  .price-card.popular {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.04);
  }

  .price-card.popular::before {
    opacity: 1;
  }

  .popular-badge {
    position: absolute;
    top: 14px;
    right: -32px;
    background: #D4AF37;
    color: #0a1a35;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 36px;
    transform: rotate(45deg);
  }

  .price-card .price-icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
    display: block;
    transition: transform 0.4s ease;
  }

  .price-card:hover .price-icon {
    transform: scale(1.25);
  }

  .price-card:hover .price-btn {
    background: #E6C55A;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  }

  .price-card h4 {
    color: #e8d4b0;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }

  .price-card .price-meta {
    color: rgba(200, 195, 185, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .price-card .price-desc {
    color: rgba(200, 195, 185, 0.6);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .price-card .price-amount {
    color: #D4AF37;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
  }

  .price-card .price-btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    background: #D4AF37;
    color: #0B1D3A;
    font-family: 'Georgia', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .price-card .price-btn:hover {
    background: #E6C55A;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
  }
