 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', 'Poppins', sans-serif;
      background-color: #ffffff;
      color: #1A2C3E;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    /* Color variables */
    :root {
      --dark-blue: #0B1C3F;
      --gold: #D4AF37;
      --gold-light: #e6c65c;
      --white: #FFFFFF;
      --gray-light: #F8F9FC;
      --shadow-sm: 0 10px 30px -12px rgba(0, 0, 0, 0.1);
      --shadow-md: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
      --border-radius-card: 24px;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Typography */
    h1,
    h2,
    h3,
    h4 {
      font-family: 'Montserrat', 'Inter', sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      color: var(--dark-blue);
      border-bottom: 3px solid var(--gold);
      padding-bottom: 12px;
    }

    /* Buttons & UI */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: var(--gold);
      color: var(--dark-blue);
      font-weight: 700;
      padding: 12px 28px;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.25s ease;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .btn i {
      font-size: 1.1rem;
    }

    .btn:hover {
      background-color: #c9a53b;
      transform: translateY(-3px);
      box-shadow: 0 12px 20px -10px rgba(212, 175, 55, 0.4);
      color: #0B1C3F;
    }

    .btn-center {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 45px;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--gold);
      color: var(--gold);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: var(--gold);
      color: var(--dark-blue);
    }

    .btn-brochure {
      background-color: #2c3e66;
      color: white;
      border: none;
    }

    .btn-brochure:hover {
      background-color: #1a2a4a;
      color: white;
    }

    /* WeChat Button & Modal */
    .wechat-btn {
      background: #07C160;
      color: white;
    }

    .wechat-btn:hover {
      background: #06ad56;
      color: white;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 2000;
      justify-content: center;
      align-items: center;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      padding: 30px;
      border-radius: 24px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      position: relative;
      animation: modalFadeIn 0.3s ease;
    }

    @keyframes modalFadeIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .close-modal {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      cursor: pointer;
      color: #666;
      transition: 0.2s;
    }

    .close-modal:hover {
      color: #000;
    }

    .qr-code {
      width: 250px;
      height: 286px;
      margin: 20px auto;
      background: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      overflow: hidden;
    }

    .qr-code img {
      width: 100%;
      height: auto;
    }

    .wechat-id {
      font-size: 1.2rem;
      color: var(--dark-blue);
      margin-top: 15px;
      font-weight: 600;
    }

    /* Floating Action Button */
    .floating-wechat {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      background: #07C160;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(7, 193, 96, 0.4);
      transition: all 0.3s ease;
    }

    .floating-wechat:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(7, 193, 96, 0.6);
    }

    .floating-wechat i {
      font-size: 32px;
      color: white;
    }

    @media (max-width: 768px) {
      .floating-wechat {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
      }

      .floating-wechat i {
        font-size: 26px;
      }
    }

    /* Sticky Header */
    .sticky-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(11, 28, 63, 0.96);
      backdrop-filter: blur(10px);
      z-index: 1000;
      transition: all 0.3s ease;
      padding: 14px 0;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
      width: 70px;
      height: auto;
    }

    .logo span {
      color: var(--gold);
    }

    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .nav-links a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      transition: 0.2s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .header-cta {
      background: var(--gold);
      padding: 8px 20px;
      border-radius: 40px;
      color: var(--dark-blue) !important;
      font-weight: 700;
    }

    .header-cta:hover {
      background: #f5e09e;
      transform: scale(1.02);
    }

    .header-wechat {
      background: #07C160;
      padding: 8px 20px;
      border-radius: 40px;
      color: white !important;
      font-weight: 700;
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      color: white;
      cursor: pointer;
    }

    /* Hero */
    .hero {
      min-height: 90vh;
      background: linear-gradient(135deg, rgba(11, 28, 63, 0.8), rgba(0, 0, 0, 0.65)), url('../assets/main-bg.jpg') center/cover no-repeat;
      background-size: cover;
      display: flex;
      align-items: center;
      text-align: left;
      padding-top: 100px;
    }

    .hero-content {
      max-width: 700px;
      color: white;
    }

    .hero-content h1 {
      font-size: 3.2rem;
      margin-bottom: 1rem;
    }

    .hero-tagline {
      font-size: 1.3rem;
      font-weight: 500;
      margin: 1rem 0;
    }

    .hero-price {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
      margin: 1rem 0;
    }

    .hero .btn {
      margin-top: 0.8rem;
    }

    /* Cards & sections */
    .cards-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      justify-content: center;
    }

    .package-card {
      background: white;
      border-radius: var(--border-radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      flex: 1 1 320px;
      max-width: 380px;
      position: relative;
    }

    .package-card:hover {
      transform: translateY(-12px);
      box-shadow: var(--shadow-md);
    }

    .popular-badge {
      position: absolute;
      top: 18px;
      right: 18px;
      background: var(--gold);
      color: var(--dark-blue);
      font-weight: bold;
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 0.8rem;
      z-index: 2;
    }

    .card-img {
      height: 220px;
      background-size: cover;
      background-position: center;
    }

    .card-content {
      padding: 28px 24px;
    }

    .card-content h3 {
      font-size: 1.7rem;
      margin-bottom: 8px;
    }

    .price {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--gold);
      margin: 12px 0;
    }

    .includes-list {
      list-style: none;
      margin: 20px 0;
    }

    .includes-list li {
      padding: 5px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
    }

    .includes-list i {
      color: var(--gold);
      width: 20px;
    }

    .button-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 16px;
    }

    /* 3 columns itinerary */
    .itinerary-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .itin-card {
      background: var(--gray-light);
      border-radius: 28px;
      padding: 28px 20px;
      flex: 1;
      min-width: 250px;
      transition: all 0.2s;
      text-align: center;
    }

    .itin-card i {
      font-size: 2.4rem;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .itin-card h4 {
      font-size: 1.6rem;
      margin-bottom: 16px;
    }

    /* Icon list whats included */
    .included-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      margin: 30px 0;
    }

    .icon-item {
      text-align: center;
      flex: 1 0 140px;
    }

    .icon-item i {
      font-size: 2.5rem;
      background: rgba(212, 175, 55, 0.15);
      padding: 16px;
      border-radius: 60px;
      color: var(--gold);
      margin-bottom: 12px;
    }

    /* Testimonial slider */
    .testimonial-slider {
      background: var(--gray-light);
      border-radius: 40px;
      padding: 40px 20px;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }

    .testimonial-text {
      font-size: 1.4rem;
      font-style: italic;
      font-weight: 500;
      padding: 10px;
    }

    .slider-controls {
      margin-top: 24px;
    }

    .slider-controls button {
      background: var(--dark-blue);
      color: white;
      border: none;
      padding: 8px 16px;
      margin: 0 6px;
      border-radius: 40px;
      cursor: pointer;
      transition: 0.2s;
    }

    .slider-controls button:hover {
      background: var(--gold);
      color: var(--dark-blue);
    }

    /* Custom trip highlight */
    .custom-trip {
      background: linear-gradient(115deg, #0B1C3F 0%, #142c54 100%);
      color: white;
      padding: 48px 32px;
      text-align: center;
    }

    .custom-trip h3 {
      font-size: 2rem;
    }

    .highlight-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      margin: 32px 0;
    }

    .highlight-item {
      background: rgba(255, 255, 255, 0.1);
      padding: 12px 24px;
      border-radius: 80px;
      font-weight: 600;
    }

    /* Final CTA */
    .final-cta {
      background: var(--gold);
      text-align: center;
      padding: 60px 24px;
      color: var(--dark-blue);
    }

    .final-cta h2 {
      color: var(--dark-blue);
      border-bottom: none;
    }

    .final-cta .btn {
      background: var(--dark-blue);
      color: var(--gold);
      margin-top: 20px;
    }

    .final-cta .btn:hover {
      background: #ffffff;
      color: var(--dark-blue);
    }

    /* Blog / Articles Grid */
    .articles-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      margin-top: 20px;
    }

    .article-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
      width: 280px;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }

    .article-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.2);
    }

    .article-img {
      height: 180px;
      background-size: cover;
      background-position: center;
    }

    .article-content {
      padding: 20px;
    }

    .article-content h4 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--dark-blue);
    }

    .article-content p {
      font-size: 0.9rem;
      color: #4a5568;
    }

    .read-more {
      display: inline-block;
      margin-top: 12px;
      color: var(--gold);
      font-weight: 700;
      font-size: 0.85rem;
    }

    /* Footer */
    footer {
      background: var(--dark-blue);
      color: #ddd;
      padding: 48px 0 24px;
      margin-top: 60px;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
    }

    .social-links a {
      color: var(--gold);
      font-size: 1.6rem;
      margin: 0 12px;
      transition: 0.2s;
    }

    .social-links a:hover {
      opacity: 0.7;
    }

    /* fade-in animation */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 920px) {
      .menu-toggle {
        display: block;
      }

      .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        background: rgba(11, 28, 63, 0.98);
        backdrop-filter: blur(12px);
        width: 80%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        gap: 35px;
        font-size: 1.2rem;
      }

      .nav-links.active {
        left: 0;
      }

      .hero-content h1 {
        font-size: 2.3rem;
      }

      .hero-tagline {
        font-size: 1rem;
      }
    }

    @media (max-width: 560px) {
      .container {
        padding: 0 18px;
      }

      .package-card {
        max-width: 100%;
      }

      .btn {
        padding: 10px 22px;
      }
    }

    img {
      max-width: 100%;
    }

    section {
      padding: 70px 0;
    }

    .bg-light {
      background: var(--gray-light);
    }


    /* Article page hero spacing fix */
.hero-article {
  padding-top: 140px !important;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
  .hero-article {
    padding-top: 120px !important;
  }
}