
    /* 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;
    }

    :root{
      --primary: #b8860b;      /* example: gold from your logo/menu accents */
      --primary-600:#a57a0a;
      --accent:  #e63946;      /* CTA / price highlight if used in indexa */
      --bg:      #f5f6fb;      /* page section soft background */
      --text:    #1f2937;      /* primary body text */
      --muted:   #6b7280;      /* secondary text */
      --card:    #ffffff;      /* card/section surface */
      --radius:  16px;
      --shadow:  0 8px 24px rgba(0,0,0,.08);
    }

    /* ===== Containers / Sections ===== */
    .container{width:min(1200px, 92%);margin-inline:auto;}
    .th-section{padding:56px 0;background:transparent;}
    .th-section--soft{background:var(--bg);}
    .th-section__head{margin-bottom:22px;}
    .th-h2{font-size:clamp(22px, 2.6vw, 28px);font-weight:700;line-height:1.2;}

    /* ===== Cards ===== */
    .th-card{background:var(--card);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;}
    .th-card--package{display:grid;grid-template-columns: 360px 1fr;gap:0;}
    @media (max-width: 900px){
      .th-card--package{grid-template-columns:1fr;}
    }
    .th-card__media{position:relative;isolation:isolate;overflow:hidden;}
    .th-card__media img{display:block;width:100%;height:100%;object-fit:cover;min-height:220px;transform:scale(1.02);transition:transform .5s ease;}
    .th-card:hover .th-card__media img{transform:scale(1.07);}
    .th-card__body{padding:22px;}
    .th-card__header{display:flex;flex-wrap:wrap;gap:16px 24px;align-items:center;justify-content:space-between;margin-bottom:10px;}
    .th-card__title{font-size:clamp(18px, 2.2vw, 22px);font-weight:700;margin:0;}
    .th-card__desc{color:var(--muted);margin:10px 0 16px;}

    .th-meta{list-style:none;padding:0;margin:8px 0 4px;display:grid;gap:6px;}
    .th-meta__icons span{display:inline-flex;align-items:center;gap:8px;margin-right:14px;color:var(--muted);}

    /* Price */
    .th-price{margin-left:auto;display:flex;align-items:baseline;gap:8px;white-space:nowrap;}
    .th-price__from{font-size:12px;color:var(--muted);}
    .th-price__val{font-weight:800;color:var(--accent);}
    .th-price__pp{font-size:12px;color:var(--muted);}

    /* Buttons */
    .th-btn{display:inline-flex;align-items:center;gap:8px;padding:10px 16px;border-radius:999px;text-decoration:none;font-weight:600;transition:.25s ease;border:1px solid transparent;user-select:none;}
    .th-btn--primary{background:var(--primary);color:#fff;border-color:var(--primary);}
    .th-btn--primary:hover{background:var(--primary-600);border-color:var(--primary-600);transform:translateY(-1px);}
    .th-btn--ghost{background:transparent;color:var(--primary);border-color:var(--primary);}
    .th-btn--ghost:hover{background:rgba(184,134,11,.08);}

    /* Days/Nights badge */
    .th-badge{position:absolute;left:14px;bottom:14px;display:inline-flex;align-items:center;gap:8px;background:rgba(0,0,0,.7);color:#fff;padding:8px 12px;border-radius:999px;font-size:13px;backdrop-filter: blur(6px);}
    .th-badge .i-clock{inline-size:16px;block-size:16px;display:inline-block;background:
      conic-gradient(from 90deg, currentColor 0 25%, transparent 0 100%);
      /* -webkit-mask:
      radial-gradient(circle at 50% 50%,#0000 9px,#000 9px) center/18px 18px no-repeat,
      radial-gradient(circle at 50% 50%,#000 100%) center/100% 100% no-repeat; */
    }

    /* ===== Overview (Read more) ===== */
    .th-overview__body{padding:22px;}
    .th-readmore{color:var(--text);line-height:1.7;margin:0;}
    .th-link{appearance:none;background:none;border:0;color:var(--primary);font-weight:700;cursor:pointer;padding:10px 0;}
    .th-link:hover{text-decoration:underline;}

    /* ===== Grid of cards ===== */
    .th-grid{display:grid;gap:22px;grid-template-columns:1fr;}
    /* you can switch to 2-up cards by wrapping in their own rows if desired */


    /* ===== Hero w/ parallax and diagonal edges ===== */
.th-hero{position:relative;isolation:isolate;min-block-size:54vh;display:grid;place-items:center;padding:64px 0 96px;overflow:hidden;background:var(--bg);}
.th-hero__parallax{position:absolute;inset:0;overflow:hidden;z-index:-1;}
.th-hero__layer{position:absolute;inset:-8% -8% 0 -8%;background-image:var(--img);background-size:cover;background-position:center;will-change:transform;transform:translateX(0);}
/* Diagonal cuts via clip-path */
.th-hero__layer--back{clip-path:polygon(0 0, 100% 0, 100% 68%, 0 85%);}
.th-hero__layer--front{clip-path:polygon(0 15%, 100% 0, 100% 80%, 0 98%);mix-blend-mode:multiply;opacity:.92;}
.th-hero__inner{text-align:center;color:#fff;position:relative;}
.th-hero__title{font-weight:800;font-size:clamp(28px, 5vw, 44px);letter-spacing:.2px;margin:0 0 8px;text-shadow:0 2px 20px rgba(0,0,0,.35);}
.th-hero__subtitle{font-size:clamp(14px, 2.2vw, 18px);opacity:.95;margin:0 auto;max-width:760px;text-shadow:0 2px 16px rgba(0,0,0,.3);}

/* Scroll indicator */
.th-scroll-indicator{position:absolute;left:50%;bottom:18px;translate:-50% 0;inline-size:28px;block-size:28px;border-radius:999px;border:2px solid rgba(255,255,255,.85);display:grid;place-items:center;opacity:.9;}
.th-scroll-indicator span{display:block;inline-size:4px;block-size:8px;border-radius:2px;background:#fff;animation:thScroll 1.6s infinite ease;}
@keyframes thScroll{
  0%{transform:translateY(-4px);opacity:.2}
  50%{transform:translateY(6px);opacity:1}
  100%{transform:translateY(-4px);opacity:.2}
}

/* ===== Subtle card entrance animation ===== */
@media (prefers-reduced-motion:no-preference){
  .th-card{opacity:0;transform:translateY(18px);animation:thRise .6s .06s both ease;}
  .th-card:nth-child(2){animation-delay:.16s}
  .th-card:nth-child(3){animation-delay:.26s}
}
@keyframes thRise{
  to{opacity:1;transform:translateY(0)}
}

/* ===== Simple inline icon glyphs (no external icon font required) ===== */
.i-breakfast,.i-lunch,.i-dinner,.i-brunch{
  display:inline-block;inline-size:16px;block-size:16px;vertical-align:-2px;background:currentColor;border-radius:2px;mask-size:16px 16px;mask-repeat:no-repeat;mask-position:center;
}
.i-breakfast{mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path fill="white" d="M3 20q-.425 0-.712-.288T2 19t.288-.712T3 18h14q.425 0 .713.288T18 19t-.288.713T17 20zm4-4q-1.65 0-2.825-1.175T3 12t1.175-2.825T7 8h10q.825 0 1.413.588T19 10t-.587 1.413T17 12h-1q0 .825-.588 1.413T14 14zm12-6V4h2v6z"/></svg>');}
.i-lunch{mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M4 21v-2h16v2zm2-4q-1.65 0-2.825-1.175T2 13V6h2v7q0 .825.588 1.413T6 15h12q.825 0 1.413-.587T20 13V6h2v7q0 1.65-1.175 2.825T18 17z"/></svg>');}
.i-dinner{mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M8 21v-7q0-1.65 1.175-2.825T12 10t2.825 1.175T16 14v7zm9 0v-7q0-2.9-2.05-4.95T10 7t-4.95 2.05T3 14v7z"/></svg>');}
.i-brunch{mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M7 21q-1.25 0-2.125-.875T4 18t.875-2.125T7 15t2.125.875T10 18t-.875 2.125T7 21zm10 0q-1.25 0-2.125-.875T14 18t.875-2.125T17 15t2.125.875T20 18t-.875 2.125T17 21zM7 13q-1.25 0-2.125-.875T4 10t.875-2.125T7 7t2.125.875T10 10t-.875 2.125T7 13zm10 0q-1.25 0-2.125-.875T14 10t.875-2.125T17 7t2.125.875T20 10t-.875 2.125T17 13z"/></svg>');}

    .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #222;
    }





    /* Banner */
    .banner {
      position: relative;
      height: 60vh; /* Taller height */
      /* background: url("https://picsum.photos/400/200?dubai") center/cover no-repeat fixed; */
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
    }

    .banner-overlay {
      position: relative;
      z-index: 2;
      color: #fff;
    }

    .banner-overlay h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    .banner-overlay p {
      font-size: 1.2rem;
    }

    /* Parallax Sliding Image with Diagonal Edge */
    .banner-slide {
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      /* background: url("https://picsum.photos/400/200?dubai") center/cover no-repeat; */
      z-index: 1;
      transition: left 0.8s ease-out;

      /* Diagonal left edge */
      clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    }

    .banner.scrolled .banner-slide {
      left: 0;
    }

    /* Overview button tweak */
    .overview .btn {
      margin-top: 10px; /* Closer to paragraph */
    }

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