/* ============ home.css ============ */
/* Hero, itinerary, pricing, gallery, etc. — homepage-only styles */

  /* HERO */
  .hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-img {
    position: absolute; inset: 0;
    background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(26,43,74,0.55) 0%, rgba(26,43,74,0.75) 100%);
  }
  .hero-content {
    position: relative; text-align: center; color: white; padding: 0 24px; max-width: 800px;
  }
  .hero-eyebrow {
    font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 600; line-height: 1.1; margin-bottom: 8px;
  }
  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-style: italic; color: rgba(255,255,255,0.85); margin-bottom: 28px;
  }
  .hero-meta {
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 36px; font-size: 0.85rem; color: rgba(255,255,255,0.9);
  }
  .hero-meta span { display: flex; align-items: center; gap: 6px; }
  .seats-badge {
    display: inline-block;
    background: rgba(200,98,26,0.9); color: white;
    padding: 4px 14px; border-radius: 20px;
    font-size: 0.78rem; letter-spacing: 0.05em; margin-bottom: 24px;
  }
  .hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--saffron); color: white; border: none;
    padding: 14px 32px; border-radius: 4px; cursor: pointer;
    font-size: 0.95rem; font-family: 'DM Sans',sans-serif; font-weight: 500;
    text-decoration: none; display: inline-block; transition: background 0.2s;
  }
  .btn-primary:hover { background: #a84e12; }
  .btn-outline {
    background: transparent; color: white;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 14px 32px; border-radius: 4px; cursor: pointer;
    font-size: 0.95rem; font-family: 'DM Sans',sans-serif;
    text-decoration: none; display: inline-block; transition: border-color 0.2s;
  }
  .btn-outline:hover { border-color: white; }

  /* SECTIONS */
  section { padding: 72px 24px; }
  .container { max-width: 900px; margin: 0 auto; }
  .section-label {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--saffron); margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600;
    color: var(--deep-blue); margin-bottom: 20px; line-height: 1.2;
  }

  /* STATS STRIP */
  .stats-strip {
    background: var(--deep-blue); padding: 36px 24px;
  }
  .stats-grid {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px; text-align: center;
  }
  .stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--gold); font-weight: 600;
  }
  .stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

  /* PRICING */
  .pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; margin-top: 32px;
  }
  .price-card {
    border: 1px solid rgba(26,43,74,0.15); border-radius: 8px;
    padding: 28px 24px; text-align: center; background: white;
    transition: box-shadow 0.2s;
  }
  .price-card:hover { box-shadow: 0 8px 32px rgba(26,43,74,0.12); }
  .price-card.featured { border-color: var(--saffron); background: #fff8f4; }
  .price-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 600; color: var(--saffron);
  }
  .price-who { font-size: 0.85rem; color: var(--slate); margin: 8px 0 4px; }
  .price-original { font-size: 0.8rem; color: #999; text-decoration: line-through; }

  /* ITINERARY */
  .itinerary-list { margin-top: 32px; }
  .itin-item {
    display: grid; grid-template-columns: 80px 1fr;
    gap: 20px; margin-bottom: 0; position: relative;
  }
  .itin-item:not(:last-child)::after {
    content: ''; position: absolute;
    left: 39px; top: 52px; bottom: -8px; width: 1px;
    background: rgba(26,43,74,0.12);
  }
  .itin-day {
    text-align: center; padding-top: 6px;
  }
  .day-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--deep-blue); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1rem;
    margin: 0 auto 4px;
  }
  .day-label { font-size: 0.65rem; color: var(--slate); text-align: center; }
  .itin-body { padding: 0 0 32px; }
  .itin-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 600; color: var(--deep-blue); margin-bottom: 6px;
  }
  .itin-desc { font-size: 0.9rem; color: var(--slate); line-height: 1.6; }
  .itin-tag {
    display: inline-block; margin-top: 8px;
    background: rgba(200,98,26,0.1); color: var(--saffron);
    font-size: 0.72rem; padding: 3px 10px; border-radius: 12px;
  }

  /* INCLUDES */
  .inc-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 28px;
  }
  .inc-list li {
    list-style: none; padding: 6px 0; font-size: 0.9rem;
    border-bottom: 1px solid rgba(26,43,74,0.07); display: flex; gap: 10px;
  }
  .inc-list li span:first-child { color: var(--pine); font-size: 1rem; }
  .exc-list li span:first-child { color: #c0392b; }

  /* GALLERY */
  .gallery-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px;
  }
  .gallery-grid img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px;
    display: block;
  }
  .gallery-grid img:first-child {
    grid-column: span 2; aspect-ratio: 16/7;
  }

  /* FAQ */
  .faq-list { margin-top: 28px; }
  .faq-item {
    border-bottom: 1px solid rgba(26,43,74,0.12);
  }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none;
    padding: 18px 0; cursor: pointer; display: flex; justify-content: space-between;
    font-size: 0.95rem; font-family: 'DM Sans',sans-serif;
    color: var(--deep-blue); font-weight: 500;
  }
  .faq-a {
    font-size: 0.88rem; color: var(--slate); padding-bottom: 16px; display: none;
    line-height: 1.7;
  }
  .faq-a.open { display: block; }

  /* REGISTER SECTION */
  .register-section { background: var(--deep-blue); }
  .register-section .section-title { color: white; }
  .register-section .section-label { color: var(--gold); }
  .register-form {
    background: white; border-radius: 8px; padding: 36px;
    margin-top: 32px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
  .form-group label { font-size: 0.82rem; font-weight: 500; color: var(--deep-blue); }
  .form-group input, .form-group select, .form-group textarea {
    border: 1px solid rgba(26,43,74,0.2); border-radius: 4px;
    padding: 10px 14px; font-size: 0.9rem; font-family: 'DM Sans',sans-serif;
    color: var(--deep-blue); background: var(--snow); outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--saffron);
  }
  .disclaimer {
    font-size: 0.78rem; color: var(--slate); margin-bottom: 20px;
    background: rgba(200,98,26,0.07); padding: 12px 16px; border-radius: 4px;
    border-left: 3px solid var(--saffron);
  }
  .whatsapp-note {
    background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3);
    border-radius: 6px; padding: 16px 20px; margin-top: 20px; text-align: center;
    font-size: 0.88rem; color: #1a6b3c;
  }
  .whatsapp-note a { color: #1a6b3c; font-weight: 600; }

  /* TEAM */
  .team-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px; margin-top: 8px;
  }
  .team-card {
    border: 1px solid rgba(26,43,74,0.1); border-radius: 8px;
    padding: 28px 24px; background: var(--snow);
  }
  .team-avatar {
    font-size: 2.2rem; margin-bottom: 12px;
  }
  .team-role {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 600;
    color: var(--deep-blue); margin-bottom: 10px;
  }
  .team-desc {
    font-size: 0.86rem; color: var(--slate);
    line-height: 1.7; margin-bottom: 14px;
  }
  .team-credential {
    font-size: 0.76rem; color: var(--saffron);
    font-weight: 500; letter-spacing: 0.03em;
  }

  /* GALLERY SLIDER */
  .slider-wrap {
    position: relative; margin-top: 28px; border-radius: 8px; overflow: hidden;
    background: #111;
  }
  .slider-track .slide { display: none; position: relative; }
  .slider-track .slide.active { display: block; }
  .slider-track .slide img {
    width: 100%; max-height: 520px; object-fit: cover; display: block;
  }
  .slide-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: white; padding: 20px 16px 14px;
    font-size: 0.82rem; letter-spacing: 0.04em;
  }
  .slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    color: white; width: 42px; height: 42px; border-radius: 50%;
    font-size: 1.1rem; cursor: pointer; backdrop-filter: blur(4px);
    transition: background 0.2s; display: flex; align-items: center; justify-content: center;
    z-index: 10;
  }
  .slider-btn:hover { background: rgba(255,255,255,0.3); }
  .slider-prev { left: 14px; }
  .slider-next { right: 14px; }
  .slider-dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 10;
  }
  .slider-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s;
    border: none;
  }
  .slider-dot.active { background: white; }

  /* DOWNLOAD */
  .download-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px; margin-top: 28px;
  }
  .download-card {
    border: 1px solid rgba(26,43,74,0.15); border-radius: 8px;
    padding: 24px; background: white; display: flex;
    flex-direction: column; gap: 10px;
  }
  .download-card .dl-icon { font-size: 2rem; }
  .download-card .dl-title { font-weight: 600; font-size: 0.95rem; color: var(--deep-blue); }
  .download-card .dl-desc { font-size: 0.82rem; color: var(--slate); flex: 1; }
  .dl-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--deep-blue); color: white; border: none;
    padding: 10px 18px; border-radius: 4px; font-size: 0.82rem;
    cursor: pointer; text-decoration: none; font-family: 'DM Sans', sans-serif;
    transition: background 0.2s; width: fit-content;
  }
  .dl-btn:hover { background: var(--saffron); }

  /* POLICY TABS */
  .policy-tab {
    background: white; border: 1px solid rgba(26,43,74,0.2);
    color: var(--slate); padding: 8px 16px; border-radius: 4px;
    cursor: pointer; font-size: 0.82rem; font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
  }
  .policy-tab.active {
    background: var(--deep-blue); color: white; border-color: var(--deep-blue);
  }
  .policy-tab:hover:not(.active) { border-color: var(--saffron); color: var(--saffron); }
  .policy-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; color: var(--deep-blue); margin-bottom: 16px;
  }
  .policy-sub {
    font-size: 0.9rem; font-weight: 600; color: var(--deep-blue);
    margin: 20px 0 8px;
  }
  .policy-text {
    font-size: 0.88rem; color: var(--slate); line-height: 1.8; margin-bottom: 8px;
  }
  .policy-list {
    font-size: 0.88rem; color: var(--slate); line-height: 1.8;
    padding-left: 20px; margin-bottom: 8px;
  }
  .policy-list li { margin-bottom: 6px; }

  /* MOBILE (home) */
  @media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .inc-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid img:first-child { grid-column: span 1; aspect-ratio: 4/3; }
    .register-form { padding: 24px 16px; }
    section { padding: 52px 16px; }
  }

