:root {
    --ocean:       #0B4F6C;
    --ocean-light: #1A6E92;
    --ocean-dark:  #062E3F;
    --coral:       #E8642C;
    --coral-dark:  #C9521E;
    --sand:        #FAF6F0;
    --gold-trim:   #D4A843;
    --charcoal:    #1E2D35;
    --slate:       #4A6572;
    --white:       #ffffff;
    --border:      rgba(11,79,108,0.13);
    --shadow-card: 0 4px 28px rgba(11,79,108,0.11);
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--sand); color: var(--charcoal); line-height: 1.65; overflow-x: hidden; }

  .hero { background: var(--ocean-dark); position: relative; min-height: 92vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 60px 20px 80px; }
  .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 90% 60% at 50% 115%, rgba(232,100,44,0.12) 0%, transparent 65%), radial-gradient(ellipse 70% 55% at 15% 0%, rgba(26,110,146,0.5) 0%, transparent 60%), radial-gradient(ellipse 55% 50% at 85% 0%, rgba(11,79,108,0.7) 0%, transparent 60%); z-index: 0; }
  .hero::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='80' height='40' viewBox='0 0 80 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q20 5 40 20 Q60 35 80 20' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1.5'/%3E%3C/svg%3E"); background-size: 80px 40px; z-index: 0; }
  .hero-content { position: relative; z-index: 1; max-width: 780px; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,100,44,0.18); border: 1px solid rgba(232,100,44,0.4); color: #ff9a70; font-size: 0.77rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; padding: 7px 18px; border-radius: 50px; margin-bottom: 28px; animation: fadeUp 0.6s ease both; }
  .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 6.5vw, 5rem); font-weight: 700; color: var(--white); line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 20px; animation: fadeUp 0.7s 0.1s ease both; }
  .hero-title span { color: var(--coral); }
  .hero-sub { font-size: clamp(1rem, 2vw, 1.16rem); color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 40px; font-weight: 300; animation: fadeUp 0.7s 0.2s ease both; }
  .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
  
  .btn-primary { background: var(--coral); color: var(--white); font-weight: 700; font-size: 0.94rem; padding: 14px 32px; border-radius: 8px; border: none; cursor: pointer; text-decoration: none; display: inline-block; letter-spacing: 0.02em; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(232,100,44,0.38); }
  .btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,100,44,0.48); }
  .btn-outline { background: transparent; color: var(--white); font-weight: 600; font-size: 0.94rem; padding: 13px 30px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.35); cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, background 0.2s, transform 0.15s; }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
  
  .hero-stats { display: flex; gap: 44px; justify-content: center; margin-top: 58px; flex-wrap: wrap; animation: fadeUp 0.7s 0.45s ease both; }
  .stat { text-align: center; }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--coral); line-height: 1; }
  .stat-label { font-size: 0.74rem; color: rgba(255,255,255,0.48); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
  .hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.38); font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; animation: fadeUp 1s 0.8s ease both; }
  .scroll-dot { width: 1px; height: 38px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 2s infinite; }

  .vehicle-strip { background: var(--ocean); padding: 18px 24px; display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
  .vehicle-strip span { color: rgba(255,255,255,0.68); font-size: 0.81rem; letter-spacing: 0.08em; text-transform: uppercase; }
  .vehicle-strip strong { color: #ff9a70; font-size: 0.84rem; }
  .v-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 50%; }

  .section { padding: 88px 20px; }
  .section-inner { max-width: 1140px; margin: 0 auto; }
  .section-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ocean); background: rgba(11,79,108,0.08); padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--ocean-dark); line-height: 1.15; margin-bottom: 16px; }
  .section-desc { font-size: 1.01rem; color: var(--slate); max-width: 580px; line-height: 1.7; }

  .tabs-wrap { margin-bottom: 48px; }
  .tabs { display: flex; gap: 8px; flex-wrap: wrap; background: rgba(11,79,108,0.07); padding: 6px; border-radius: 12px; width: fit-content; }
  .tab { padding: 10px 22px; border-radius: 8px; border: none; background: transparent; color: var(--slate); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.87rem; cursor: pointer; transition: all 0.22s; white-space: nowrap; }
  .tab.active, .tab:hover { background: var(--ocean); color: var(--white); }
  .tab.active { box-shadow: 0 2px 12px rgba(11,79,108,0.28); }

  .pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 28px; }
  .pkg-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; border: 1px solid var(--border); animation: fadeUp 0.5s ease both; }
  .pkg-card:hover { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(11,79,108,0.18); }

  .pkg-img-frame { position: relative; height: 218px; background: var(--ocean-dark); overflow: hidden; display: block; text-decoration: none; cursor: pointer; }
  .pkg-img-frame img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.4s, opacity 0.3s; }
  .pkg-card:hover .pkg-img-frame img { transform: scale(1.05); opacity: 0.95; }
  .pkg-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(140deg, var(--ocean) 0%, var(--ocean-dark) 100%); }
  .pkg-img-placeholder .alt-text { font-size: 0.73rem; color: rgba(255,255,255,0.46); text-align: center; padding: 0 26px; font-style: italic; line-height: 1.55; }
  .pkg-img-placeholder .img-icon { width: 48px; height: 48px; border: 1.5px dashed rgba(255,255,255,0.26); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.36); }
  .pkg-badge { position: absolute; top: 16px; left: 16px; background: var(--coral); color: var(--white); font-weight: 700; font-size: 0.71rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 6px; z-index: 2; }
  .pkg-price-badge { position: absolute; top: 16px; right: 16px; background: rgba(6,46,63,0.88); color: var(--white); font-weight: 700; font-size: 1.1rem; padding: 7px 14px; border-radius: 10px; z-index: 2; border: 1px solid rgba(255,255,255,0.1); line-height: 1.2; text-align: right; backdrop-filter: blur(4px); }
  .pkg-price-badge small { display: block; font-size: 0.64rem; font-weight: 400; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }

  .pkg-body { padding: 26px 26px 18px; flex: 1; display: flex; flex-direction: column; }
  .pkg-name { font-family: 'Cormorant Garamond', serif; font-size: 1.38rem; font-weight: 700; color: var(--ocean-dark); margin-bottom: 5px; line-height: 1.22; }
  .pkg-tagline { font-size: 0.83rem; color: var(--slate); margin-bottom: 20px; }
  .pkg-meta { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 20px; }
  .meta-pill { display: flex; align-items: center; gap: 5px; font-size: 0.77rem; font-weight: 600; color: var(--ocean); background: rgba(11,79,108,0.08); padding: 5px 12px; border-radius: 50px; }

  .stops-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--slate); margin-bottom: 12px; }
  .stops-list { list-style: none; margin-bottom: 20px; }
  .stops-list li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(11,79,108,0.07); font-size: 0.85rem; color: var(--charcoal); cursor: pointer; user-select: none; }
  .stops-list li:last-child { border-bottom: none; }
  .stop-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ocean); flex-shrink: 0; margin-top: 5px; transition: background 0.2s; }
  .stops-list li:hover .stop-dot { background: var(--coral); }
  .stop-info { flex: 1; }
  .stop-name { font-weight: 600; color: var(--ocean-dark); line-height: 1.3; }
  .stop-time { font-size: 0.76rem; color: var(--slate); margin-top: 2px; }
  .stop-detail { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
  .stop-detail.open { max-height: 320px; }
  .stop-detail-inner { padding: 8px 0 4px 10px; border-left: 2px solid rgba(11,79,108,0.15); margin-top: 6px; }
  .detail-row { display: flex; gap: 6px; margin-bottom: 4px; align-items: flex-start; font-size: 0.79rem; }
  .detail-key { font-weight: 700; color: var(--ocean); white-space: nowrap; flex-shrink: 0; }
  .detail-val { color: var(--slate); line-height: 1.55; }

  .extras-block { background: rgba(11,79,108,0.045); border-radius: 10px; padding: 13px 15px; margin-bottom: 18px; font-size: 0.79rem; color: var(--slate); border: 1px dashed rgba(11,79,108,0.15); line-height: 1.6; }
  .extras-block strong { color: var(--ocean); }
  .gem-note { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,168,67,0.12); border: 1px solid rgba(212,168,67,0.3); color: #7a5c00; font-size: 0.77rem; font-weight: 600; padding: 5px 12px; border-radius: 6px; margin-bottom: 16px; }
  .dropoff-block { font-size: 0.78rem; color: var(--slate); margin-bottom: 18px; }
  .dropoff-block strong { color: var(--charcoal); }

  .pkg-footer { padding: 0 26px 24px; }
  .book-btn { display: block; width: 100%; background: var(--coral); color: var(--white); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.92rem; padding: 14px; border-radius: 10px; border: none; cursor: pointer; text-align: center; text-decoration: none; letter-spacing: 0.03em; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 3px 14px rgba(232,100,44,0.3); }
  .book-btn:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,100,44,0.4); }

  .info-section { background: var(--ocean); padding: 72px 20px; }
  .info-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
  .info-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px 24px; transition: background 0.2s; }
  .info-card:hover { background: rgba(255,255,255,0.11); }
  .info-icon { width: 46px; height: 46px; background: rgba(232,100,44,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
  .info-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
  .info-card p { font-size: 0.83rem; color: rgba(255,255,255,0.58); line-height: 1.65; }

  .pricing-section { background: var(--sand); padding: 88px 20px; }
  .pricing-inner { max-width: 860px; margin: 0 auto; }
  /* New wrapper to handle the scrolling */
  .table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Ensures smooth scrolling on iPhones */
    margin-top: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    background: var(--white);
  }

  /* Updated table class */
  .price-table { 
    width: 100%; 
    min-width: 650px; /* Forces the table to scroll on screens smaller than 650px */
    border-collapse: separate; 
    border-spacing: 0; 
  }
  
  .price-table thead tr { background: var(--ocean); }
  .price-table thead th { color: var(--white); font-size: 0.77rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 16px 20px; text-align: left; }
  .price-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
  .price-table tbody tr:hover { background: rgba(11,79,108,0.04); }
  .price-table tbody tr:last-child { border-bottom: none; }
  .price-table td { padding: 15px 20px; font-size: 0.87rem; color: var(--charcoal); vertical-align: middle; }
  .price-tag { display: inline-block; background: var(--coral); color: var(--white); font-weight: 700; padding: 4px 12px; border-radius: 6px; font-size: 0.9rem; white-space: nowrap; }

  .notice { background: rgba(11,79,108,0.07); border: 1px solid rgba(11,79,108,0.2); border-radius: 10px; padding: 13px 18px; font-size: 0.81rem; color: var(--ocean-dark); margin-bottom: 36px; display: flex; gap: 10px; align-items: flex-start; line-height: 1.6; }


  @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes scrollPulse { 0%, 100% { opacity: 0.38; } 50% { opacity: 0.85; } }

  /* Expanded Media Queries to guarantee layout across PC and Tablet screen sizes */
  @media (max-width: 1024px) {
    .section { padding: 75px 20px; }
    .hero-stats { gap: 30px; }
  }

  @media (max-width: 768px) {
    .hero { min-height: 85vh; padding-top: 80px; }
    .hero-stats { margin-top: 40px; }
    .section { padding: 60px 15px; }
    .tabs-wrap { margin-bottom: 36px; }
  }

  @media (max-width: 680px) { 
    .hero-stats { gap: 20px; } 
    .pkg-grid { grid-template-columns: 1fr; } 
    .tabs { width: 100%; } 
    .tab { flex: 1; text-align: center; font-size: 0.8rem; } 
    .vehicle-strip { gap: 14px; } 
    .v-dot { display: none; } 
  }