:root {
      --bg-light: #ffffff;
      --accent-green: #16a085; 
      --text-main: #1a1a1a;
      --text-dim: #666666;
      --border: rgba(0, 0, 0, 0.08);
      --font-montserrat: 'Montserrat', sans-serif;
      --font-poppins: 'Poppins', sans-serif;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { background-color: var(--bg-light); color: var(--text-main); font-family: var(--font-poppins); line-height: 1.6; }

    /* --- HEADER: Transparent with white text for visibility --- */
    .header { 
      position: absolute; 
      top: 0; left: 0; width: 100%; z-index: 10; 
      background: transparent !important; 
      border: none !important;
    }
    .header-top { background: transparent !important; border: none !important; color: white; }
    .helpline-box { color: white !important; }
    .helpline-title { color: rgba(255,255,255,0.7) !important; }
    .navbar-link {
    color: white;
    }

    .navbar-link:is(:hover, :focus) {
    color: #17a7ba;
    }
    .social-link { color: white !important; }
    .nav-open-btn { color: white !important; }

    /* --- HERO: Background image starts from the top --- */
    /* --- HERO SECTION: Left Aligned --- */
    /* --- HERO SECTION: Left Aligned --- */
    .hero {
      height: 90vh;
      /* We remove the background image from here */
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
      padding: 0 8% 50px;
    }
    .hero-title {
    font-family: var(--font-montserrat);
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.8;
    margin-bottom: 40px;
    letter-spacing: -2px;
    color: #ffffff;
    text-align: left; /* Ensures text lines wrap to the left */
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .hero {
      position: relative;
    }

    .hero-title-wrapper{
      position: relative;
      display: inline-block;
    }

    .hero-title{
        font-family: var(--font-montserrat);
        font-size: clamp(3rem, 7vw, 8rem);
        font-weight: 800;
        text-transform: uppercase;
        line-height: 0.9;
        letter-spacing: -2px;
        color: #fff;
    }

    .title-line{
    display:block;
    }

    .last-line{
    display: flex;          /* change from inline-flex */
    flex-wrap: wrap;        /* allow wrapping */
    align-items: flex-end;
    gap: 15px;
    }


    /* 2N 3D text */

    .trip-duration{
    display: flex;
    flex-direction: column;
    font-weight: 800;
    font-size: clamp(18px, 3vw, 40px);
    line-height: 1;
    white-space: nowrap;    /* keeps 4N 5D together */
    }
    /* IMPORTANT: allow text to wrap properly */
    .last-line span:first-child{
    min-width: 0;
    word-break: break-word;
    display: inline; /* IMPORTANT: behave like text */
    }


    .trip-duration span{
      display:block;
    }

    .badge-grid { 
    display: flex; 
    gap: 15px; 
    overflow-x: auto; 
    padding-bottom: 20px;
    width: 100%; /* Ensures grid starts from the far left */
    justify-content: flex-start;
    }
    .badge {
      min-width: 140px; height: 180px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.2);
      background-size: cover; padding: 15px; display: flex; flex-direction: column; justify-content: flex-end;
      position: relative; flex-shrink: 0;
    }
    .badge::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); border-radius: 12px; }
    .badge p { position: relative; z-index: 2; font-size: 0.75rem; font-weight: bold; color: white; }

    .hero-description{
    text-align: justify;
    text-justify: inter-word;
    }

    .hero-description p{
    text-align: justify;
    line-height: 1.7;
    }

    

    /* --- Content Sections --- */
    .section-container { padding: 40px 8% 80px; max-width: 1300px; margin: auto; }
    .divider { display: flex; align-items: center; gap: 20px; text-transform: uppercase; letter-spacing: 5px; margin: 60px 0; font-size: 0.85rem; color: var(--accent-green); font-family: var(--font-montserrat); font-weight: 700; }
    .divider::after { content: ""; height: 2px; background: #eee; flex: 1; }

    .itinerary-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
    .timeline { border-left: 2px solid #eee; padding-left: 40px; position: relative; }
    .day-card { margin-bottom: 50px; position: relative; }
    .day-title { font-family: var(--font-montserrat); font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; color: #1a1a1a; }
    .day-desc { font-size: 0.95rem; color: var(--text-dim); margin-bottom: 15px; }
    .img-stack { display: flex; gap: 10px; }
    .img-stack img { width: 120px; height: 120px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); transition: 0.3s; }

    .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
    .info-card { background: #f9f9f9; padding: 35px; border-radius: 15px; border: 1px solid var(--border); }
    .info-card h4 { font-family: var(--font-montserrat); margin-bottom: 20px; color: var(--accent-green); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 2px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
    .info-card li { font-size: 0.9rem; color: #444; margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; list-style: none; }
    .info-card li::before { content: "●"; color: var(--accent-green); font-size: 0.7rem; margin-top: 5px; }
    .read-more-btn {
      display: none; /* Hide on desktop */
    }

    .contact-footer { background: #1a1a1a; color: white; padding: 60px; border-radius: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .form-input { width: 100%; background: none; border: none; border-bottom: 1px solid #444; padding: 15px 0; color: white; margin-bottom: 20px; outline: none; font-size: 1rem; }
    .btn-submit { background: var(--accent-green); color: white; font-family: var(--font-montserrat); font-weight: 800; padding: 18px; border: none; border-radius: 5px; cursor: pointer; text-transform: uppercase; width: 100%; }

    @media (max-width: 768px) {

  /* --- GLOBAL --- */
  body {
    overflow-x: hidden;
  }

  /* --- HERO --- */
  .hero {
    height: 60vh;
    padding: 0 18px 28px;
    justify-content: flex-end;
  }

  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    width: 100%;
  }

  .title-line {
    display: block;
    margin-bottom: 4px;
  }

  .last-line {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .trip-duration {
    display: flex;
    flex-direction: row;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
  }

  .trip-duration span {
    display: inline-block;
  }

  /* --- HERO DESCRIPTION --- */
  .hero-description {
    grid-template-columns: 1fr !important;
    padding: 18px !important;
    margin: 15px !important;
    gap: 18px !important;
    width: calc(100% - 30px) !important;
    text-align: justify;
  }

  .hero-description h1 {
    font-size: 1.6rem !important;
  }

  .content-right {
    order: -1;
    margin-bottom: 12px;
  }

  .content-right div:first-child {
    height: 200px !important;
    width: 100%;
  }

  .content-right div[style*="position: absolute"] {
    width: 75px !important;
    height: 75px !important;
    padding: 12px !important;
    font-size: 0.6rem !important;
    bottom: -8px !important;
    right: -8px !important;
  }

  /* --- ITINERARY --- */
  .itinerary-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .map-container {
    position: static !important;
    padding: 18px !important;
    border-radius: 15px !important;
    width: 100% !important;
  }

  /* --- TIMELINE --- */
  .timeline {
    padding-left: 18px !important;
    margin-left: 10px !important;
    border-left: 2px dashed #136F7C !important;
  }

  .day-card {
    margin-bottom: 35px !important;
  }

  .day-card div[style*="position: absolute"] {
    left: -30px !important;
    width: 16px !important;
    height: 16px !important;
  }

  .day-title {
    font-size: 1rem;
  }

  .day-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* --- IMAGE SCROLL --- */
  .img-stack {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .img-stack::-webkit-scrollbar {
    display: none;
  }

  .img-stack img {
    width: 170px !important;
    height: 110px !important;
    flex: 0 0 auto;
    border-radius: 8px;
  }

  /* --- INFO CARDS --- */
  .info-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 14px !important;
    padding: 0 5px 18px !important;
    scrollbar-width: none;
  }

  .info-grid::-webkit-scrollbar {
    display: none;
  }

  .info-card {
    min-width: 85vw !important;
    padding: 18px !important;
    border-radius: 12px;
  }

  .info-card h4 {
    font-size: 0.85rem;
  }

  .info-card li {
    font-size: 0.85rem;
  }

  .mobile-hide-text {
    display: none; /* Hide 3rd para on mobile initially */
  }

  .read-more-btn {
    display: block; /* Show button only on mobile */
    background: none;
    border: none;
    color: #136F7C;
    font-weight: bold;
    text-decoration: underline;
    margin: -20px 0 30px 0;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
  }

  /* --- CONTACT --- */
  .contact-footer {
    grid-template-columns: 1fr !important;
    padding: 28px 18px !important;
    border-radius: 18px !important;
    text-align: center;
    gap: 25px;
  }

  .contact-footer h3 {
    font-size: 1.6rem !important;
  }

  .form-input {
    padding: 12px 0;
    font-size: 0.9rem;
  }

  .btn-submit {
    padding: 14px;
    font-size: 0.9rem;
  }

  .info-grid {
  position: relative;
  }

    /* RIGHT ARROW */
    .info-grid::after {
    content: "➜";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: rgba(0,0,0,0.4);
    pointer-events: none;
    animation: arrowMove 1.5s infinite;
    }

    .info-grid::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, transparent, white);
    pointer-events: none;
    }

    /* Animation */
    @keyframes arrowMove {
    0% { transform: translateY(-50%) translateX(0); opacity: 0.4; }
    50% { transform: translateY(-50%) translateX(6px); opacity: 1; }
    100% { transform: translateY(-50%) translateX(0); opacity: 0.4; }
    }
}