/* Global Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", sans-serif;
    }

    body {
      background: #fdfdfd;
      color: #333;
      overflow-x: hidden;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      z-index: 1000;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header h1 {
      font-size: 1.5rem;
      font-weight: bold;
      color: #444;
    }

    nav a {
      margin: 0 1rem;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #d35400;
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      background: url('https://picsum.photos/1920/1080?travel') center/cover fixed no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      position: relative;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
    }

    .hero-content h2 {
      font-size: 3rem;
      text-shadow: 0px 4px 10px rgba(0,0,0,0.6);
      margin-bottom: 1rem;
    }

    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }

    .btn {
      background: #e67e22;
      padding: 0.8rem 1.6rem;
      border-radius: 30px;
      border: none;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
    }

    .btn:hover {
      background: #d35400;
      transform: translateY(-2px);
    }

    .btn::after {
      content: "➜";
      margin-left: 10px;
      transition: margin-left 0.3s;
    }

    .btn:hover::after {
      margin-left: 18px;
    }

    /* Cards Section */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      padding: 4rem 2rem;
      background: #fafafa;
    }

    .card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .card:hover {
      transform: translateY(-10px);
      z-index: 10;
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-content {
      padding: 1.5rem;
    }

    .card-content h3 {
      margin-bottom: 0.8rem;
      font-size: 1.4rem;
    }

    .card-content p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Contact Section */
    .contact {
      padding: 4rem 2rem;
      background: url('https://picsum.photos/1920/1080?city') center/cover fixed no-repeat;
      position: relative;
      color: white;
    }

    .contact::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.6);
    }

    .contact form {
      max-width: 500px;
      margin: auto;
      position: relative;
      z-index: 2;
      background: rgba(255,255,255,0.1);
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .contact input, .contact textarea {
      width: 100%;
      margin: 0.8rem 0;
      padding: 0.8rem;
      border: none;
      border-radius: 12px;
      outline: none;
    }

    .contact button {
      width: 100%;
    }
    .nav-links { list-style: none; display: flex; gap: 20px; }
    .nav-links li { position: relative; cursor: pointer; }
    .nav-links .dropdown-content {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: white;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .nav-links li:hover .dropdown-content { display: block; }

    /* ENQUIRY */
    .enquiry { padding: 50px; background: #f9f9f9; text-align: center; }
    .tabs { display: flex; justify-content: center; margin-bottom: 20px; }
    .tab-btn { padding: 10px 20px; margin: 5px; cursor: pointer; background: #ddd; border: none; border-radius: 6px; }
    .tab-btn.active { background: goldenrod; color: #fff; }
    .tab-content { display: none; }
    .tab-content.active { display: block; }
    form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
    form input, form select, form textarea {
    padding: 10px; border: 1px solid #ccc; border-radius: 6px; 
    }
    form button { background: goldenrod; color: #fff; border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; } 

    /* PACKAGES */
    .packages { padding: 50px; text-align: center; }
    .packages h2 {margin-bottom: 10px;}
    .gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
    .gallery img { width: 100%; border-radius: 10px; transition: transform .3s; height: 200px; width: 300px;}
    .gallery img:hover { transform: scale(1.05); }

    /* ===== PACKAGE POPUP ===== */
    .package-popup {
      display: none;
      position: absolute;
      top: 70px; /* below header */
      left: 50%;
      transform: translateX(-50%);
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      z-index: 2000;
      width: 80%;
      max-width: 1000px;
    }

    .package-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 15px;
    }

    .package-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      transition: transform .3s;
    }
    .package-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
    }
    .package-card:hover {
      transform: translateY(-5px);
    }
    .package-card p {
      margin: 10px;
      font-weight: 500;
      font-size: 0.95rem;
    }

    /* ===== FEEDBACK FORM FIX ===== */
    #feedback form input,
    #feedback form select,
    #feedback form button {
      height: 36px;   /* compact */
      line-height: 1.2;
    }

    #feedback form textarea {
      resize: vertical; /* user can expand textarea only */
      min-height: 40px;
      max-height: 150px;
    }
    /* Dropdown arrow style */
    .dropdown {
      position: relative;
      cursor: pointer;
      padding: 0 10px;
      font-weight: 500;
    }

    .dropdown::after {
      content: "▼";
      font-size: 0.7rem;
      margin-left: 5px;
      transition: transform 0.2s;
    }

    .dropdown.active::after {
      content: "▲";
    }

    /* Show popup on hover */
    .dropdown:hover + .package-popup,
    .package-popup:hover {
      display: block;
    }


    footer {
        text-align: center;
        padding: 1rem;
        background: #222;
        color: #bbb;
    }