 :root {
      --primary: #0B5D3B;
      --primary-dark: #08462d;
      --black: #111;
      --white: #fff;
      --gray: #666;
      --light: #f8f8f8;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    /* Contact Form Loader CSS */
    .loader {
      width: 18px;
      height: 18px;
      border: 3px solid #fff;
      border-top: 3px solid transparent;
      border-radius: 50%;
      display: inline-block;
      animation: spin 0.8s linear infinite;
      vertical-align: middle;
    }

    @keyframes spin {
      100% {
        transform: rotate(360deg);
      }
    }

    #statusMsg {
      font-size: 14px;
      font-weight: 500;
    }

    .success {
      color: green;
    }

    .error {
      color: red;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #fff;
      color: #111;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    /* HEADER */

    header {
      position: sticky;
      top: 0;
      background: #fff;
      z-index: 999;
      box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }

    .logo img {
      height: 35px;
    }

    .nav-links {
      display: flex;
      gap: 25px;
    }

    .nav-links a {
      text-decoration: none;
      color: #111;
      font-weight: 600;
      transition: .3s;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    /* HERO */

    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      padding: 80px 0;
    }

    .hero h1 {
      font-size: 55px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      color: #666;
      margin-bottom: 25px;
      font-size: 17px;
    }

    .btn {
      display: inline-block;
      padding: 14px 30px;
      background: var(--primary);
      color: #fff;
      text-decoration: none;
      border-radius: 10px;
      font-weight: 600;
      transition: .3s;
    }

    .btn:hover {
      background: var(--primary-dark);
    }

    .hero img {
      width: 100%;
      border-radius: 20px;
    }

    /* SECTION */

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h2 {
      font-size: 38px;
      margin-bottom: 10px;
    }

    .section-title p {
      color: #666;
    }

    section {
      padding: 80px 0;
    }

    /* SERVICES */

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .card {
      background: #fff;
      padding: 25px;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
      font-weight: 600;
      transition: .3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    /* DESTINATIONS */

    .dest-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .dest-card {
      overflow: hidden;
      border-radius: 18px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
      background: #fff;
    }

    .dest-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .dest-card h3 {
      padding: 15px;
      text-align: center;
    }

    /* ABOUT */

    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about img {
      width: 100%;
      border-radius: 20px;
    }

    .about h2 {
      margin-bottom: 15px;
      font-size: 35px;
    }

    .about p {
      color: #666;
      line-height: 1.8;
    }

    /* CONTACT */

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .contact-form,
    .contact-info {
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
      background: #fff;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 14px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 10px;
      outline: none;
    }

    .contact-form button {
      border: none;
      cursor: pointer;
    }

    .contact-info h3 {
      margin-bottom: 15px;
    }

    .contact-info p {
      margin-bottom: 10px;
      color: #555;
    }

    /* FOOTER */

    footer {
      background: #111;
      color: #fff;
      text-align: center;
      padding: 25px;
    }

    /* WHATSAPP */

    .whatsapp {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    }

    /* MENU TOGGLE */
    .menu-toggle {
      display: none;
      font-size: 30px;
      font-weight: 700;
      cursor: pointer;
      color: var(--primary);
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
    }

    .testimonial-card {
      background: #fff;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
      transition: .3s;
      border-top: 4px solid var(--primary);
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
    }

    .stars {
      font-size: 20px;
      margin-bottom: 15px;
    }

    .testimonial-card p {
      color: #666;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .testimonial-card h4 {
      color: var(--primary);
      margin-bottom: 5px;
      font-size: 18px;
    }

    .testimonial-card span {
      font-size: 14px;
      color: #888;
    }

    /* MOBILE */
    @media(max-width:768px) {

      .hero,
      .about,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        text-align: center;
      }

      .hero h1 {
        font-size: 34px;
      }

      .logo img {
        height: 30px;
      }

      .menu-toggle {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
      }

      .section-title h2 {
        font-size: 30px;
      }
    }

    /* MOBILE */

    @media(max-width:768px) {

      .hero,
      .about,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        text-align: center;
      }

      .hero h1 {
        font-size: 34px;
      }

      .logo img {
        height: 30px;
      }

      .nav-links {
        display: none;
      }

      .section-title h2 {
        font-size: 30px;
      }

    }