
    /* Reset CSS */
    /* data faiz baru */
    
      /* data faiz baru */
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Navbar Styles */
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.4rem 0.5rem;
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    .nav__logo {
      display: flex;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      font-weight: 700;
      font-size: 1.2rem;
      color: #2c3e50;
      text-align: center;
      line-height: 1.2;
    }

    .logo-img {
      height: 80px;
      margin-right: 8px;
    }

    .nav__menu__btn {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #2c3e50;
    }

    .nav__links {
      display: flex;
      gap: 2rem;
    }

    .nav__links a {
      font-weight: 600;
      transition: color 0.3s;
    }

    .nav__links a:hover {
      color: #3498db;
    }

    .btn {
      background-color: #3498db;
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .btn:hover {
      background-color: #2980b9;
    }

    /* Header Styles */
    header {
  background-image: url("<?= base_url('assets/img/backgrounds/foto1.jpg') ?>");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  background-color: #fff;
  min-height: 400px;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

    /*faiz ganteng */

    .header__container {
      max-width: 800px;
      margin: 0 auto;
    }

    /* Section Styles */
    .section__container {
      padding: 4rem 2rem;
    }

    .section__header {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    /* Destination Grid */
    .destination__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .destination__card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .destination__card:hover {
      transform: translateY(-5px);
    }

    .destination__card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .destination__card__details {
      padding: 1.5rem;
    }

    .destination__card__details h4 {
      margin-bottom: 0.5rem;
      color: #2c3e50;
      text-align: center;
    }

    .destination__card__details p {
      color: #7f8c8d;
    }

    .daftar__wrapper {
      text-align: center;
      margin-top: 2rem;
    }

    /* Banner Styles */
    .banner__container {
      display: flex;
      justify-content: space-around;
      background-color: #f8f9fa;
      padding: 3rem 2rem;
      text-align: center;
    }

    .banner__card {
      padding: 1.5rem;
    }

    .banner__card h4 {
      font-size: 2.5rem;
      color: #3498db;
      margin-bottom: 0.5rem;
    }

    /* Discover Grid */
    .discover__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .discover__card {
      text-align: center;
      padding: 2rem;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .discover__card span {
      display: inline-block;
      font-size: 2.5rem;
      color: #3498db;
      margin-bottom: 1rem;
    }

    .discover__card h4 {
      margin-bottom: 1rem;
      color: #2c3e50;
    }

    /* Footer Styles */
    footer {
      background-color: #2c3e50;
      color: white;
      padding: 3rem 0 1rem;
    }

    .footer__container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      padding: 0 2rem;
    }

    .footer__col h4 {
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
    }

    .footer__socials {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .footer__socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transition: background 0.3s;
    }

    .footer__socials a:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .footer__links li {
      margin-bottom: 0.75rem;
    }

    .footer__links a {
      display: flex;
      align-items: center;
      transition: color 0.3s;
    }

    .footer__links a:hover {
      color: #3498db;
    }

    .footer__links span {
      margin-right: 0.5rem;
    }

    .footer__bar {
      text-align: center;
      padding: 1.5rem 0 0;
      margin-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Popup Styles */
    .popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1100;
      align-items: center;
      justify-content: center;
    }

    .popup-content {
      background: white;
      padding: 2rem;
      border-radius: 10px;
      max-width: 500px;
      width: 90%;
      position: relative;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Mobile Styles */
    @media screen and (max-width: 768px) {
      .navbar {
        padding: 1rem;
      }

      .nav__menu__btn {
        display: block;
      }

      .nav__links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transition: left 0.3s ease;
        gap: 0;
        font-size: 1.5rem;
      }

      .nav__links.open {
        left: 0;
      }

      .nav__links li {
        margin: 1rem 0;
        width: 100%;

      }

      .nav__links li a {
        font-size: 30 px;
        /* ubah angka sesuai kebutuhan, misalnya 16px, 18px, 20px */
      }

      .nav__links a {
        display: block;
        padding: 0.75rem;
        border-bottom: 1px solid #f0f0f0;
        font-size: 30 px;
      }

      .nav__btns {
        display: none;
      }

      .mobile-nav-btns {
        display: flex;
        margin-top: 2rem;
      }

    header {
    padding: 6rem 1rem 3rem;
        margin-top: 70px;
      }

      .section__container {
        padding: 3rem 1rem;
      }

      .destination__grid {
        grid-template-columns: 1fr;
      }

      .banner__container {
        flex-direction: column;
        gap: 1rem;
      }

      .footer__container {
        grid-template-columns: 1fr;
      }

      .footer__col iframe {
        height: 200px;
      }

      /* Tombol close hanya ditampilkan di mobile */
      .close-menu {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        background: none;
        border: none;
        color: #333;
        cursor: pointer;
      }
    }

    /* Overlay untuk menu mobile */
    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 998;
    }

    .overlay.active {
      display: block;
    }

    /* Tombol close disembunyikan di desktop */
    .close-menu {
      display: none;
    }
  