    :root {
      --sand: #E8DFD0;
      --pearl: #F7F4EF;
      --gulf-blue: #1B4965;
      --deep-sea: #0D2B3E;
      --gold: #C9A227;
      --gold-light: #E8D69B;
      --coral: #D4A574;
      --text-dark: #1A1A1A;
      --text-soft: #4A4A4A;
      --bg: #F7F4EF;
      --card: #ffffff;
      --border: #E8DFD0;
      --hover: rgba(27, 73, 101, 0.08);
      --brand: #1B4965;
      --shadow: 0 4px 20px rgba(0,0,0,0.06);
      --radius: 12px;
    }
    body.dark {
      --bg: #0a0a0a;
      --pearl: #121212;
      --sand: #1a1a1a;
      --text-dark: #e0e0e0;
      --text-soft: #aaaaaa;
      --border: #2a2a2a;
      --card: #1a1a1a;
      --hover: rgba(201, 162, 39, 0.1);
      --deep-sea: #0a1520;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
      font-size: 16px;
      line-height: 1.7;
      background: var(--bg);
      color: var(--text-dark);
      transition: background 0.3s, color 0.3s;
    }
    a { color: var(--brand); text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* ========== PAGE WRAPPER WITH SIDEBARS ========== */
    .page-wrapper {
      display: grid;
      grid-template-columns: 240px 1fr 240px;
      min-height: 100vh;
    }

    /* ========== SIDEBARS ========== */
    .sidebar {
      position: sticky;
      top: 0;
      height: 100vh;
      background: var(--deep-sea);
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 20px 16px;
      z-index: 50;
      overflow-y: auto;
      overflow-x: hidden;
    }
    .sidebar > * {
      flex-shrink: 0;
    }
    .sidebar::-webkit-scrollbar { width: 4px; }
    .sidebar::-webkit-scrollbar-track { background: transparent; }
    .sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
    .sidebar-left { }
    .sidebar-right { }

    .ad-slot {
      background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
      border: 1px dashed rgba(255,255,255,0.15);
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: rgba(255,255,255,0.3);
      font-size: 0.7rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      position: relative;
    }
    .ad-slot:hover { border-color: var(--gold); color: var(--gold); }
    .ad-slot-content { padding: 20px 12px; }
    .ad-slot-icon { font-size: 2.2rem; margin-bottom: 10px; opacity: 0.5; }
    .ad-slot-tall { height: 450px; flex-shrink: 0; }
    .ad-slot-medium { height: 250px; flex-shrink: 0; }
    .ad-slot-square { height: 200px; flex-shrink: 0; }
    .ad-slot-banner { height: 120px; flex-shrink: 0; }
    .ad-slot-flex { flex: 1; min-height: 180px; }
    .ad-label {
      position: absolute;
      top: 6px;
      right: 6px;
      font-size: 0.5rem;
      background: rgba(0,0,0,0.3);
      padding: 2px 6px;
      border-radius: 3px;
      color: rgba(255,255,255,0.4);
    }

    .sidebar-promo {
      background: linear-gradient(145deg, var(--gold), #A88620);
      border-radius: 10px;
      padding: 22px 16px;
      text-align: center;
      color: var(--deep-sea);
    }
    .sidebar-promo-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .sidebar-promo-text { font-size: 0.8rem; line-height: 1.5; opacity: 0.85; }
    .sidebar-promo-btn {
      display: inline-block;
      margin-top: 14px;
      padding: 10px 18px;
      background: var(--deep-sea);
      color: #fff;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.3s;
    }
    .sidebar-promo-btn:hover { background: #fff; color: var(--deep-sea); text-decoration: none; }

    .sidebar-title {
      color: var(--gold);
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 12px 0 8px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .sidebar-links { list-style: none; }
    .sidebar-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
    .sidebar-links a {
      display: block;
      padding: 12px 0;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.3s;
    }
    .sidebar-links a:hover { color: var(--gold); padding-left: 8px; text-decoration: none; }

    .sidebar-social {
      display: flex;
      justify-content: center;
      gap: 10px;
      padding: 14px 0;
    }
    .sidebar-social a {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 1rem;
      transition: all 0.3s;
    }
    .sidebar-social a:hover { background: var(--gold); color: var(--deep-sea); }

    .sidebar-weather {
      background: rgba(255,255,255,0.05);
      border-radius: 10px;
      padding: 18px;
      text-align: center;
    }
    .sidebar-weather-icon { font-size: 2.2rem; margin-bottom: 8px; }
    .sidebar-weather-temp { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; }
    .sidebar-weather-location { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-top: 4px; }

    /* ========== MAIN CONTENT AREA ========== */
    .main-wrapper {
      min-width: 0;
      overflow-x: hidden;
      background: var(--bg);
    }

    /* ========== HEADER ========== */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--deep-sea);
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 24px;
      flex-wrap: wrap;
    }
    .logo { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
    .logo:hover { text-decoration: none; }
    .logo .mark { font-size: 28px; }
    .logo .title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 400;
    }
    nav { display: flex; gap: 4px; flex-wrap: wrap; }
    nav a {
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      transition: all 0.3s;
      white-space: nowrap;
    }
    nav a:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }
    .grow { flex: 1; }
    .search-wrap { position: relative; max-width: 300px; flex: 1; min-width: 160px; }
    .search {
      width: 100%;
      padding: 10px 12px 10px 40px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 999px;
      background: rgba(255,255,255,0.1);
      color: #fff;
      outline: none;
      font-size: 0.9rem;
      transition: all 0.3s;
    }
    .search::placeholder { color: rgba(255,255,255,0.5); }
    .search:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }
    .search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.5); }
    .header-btn {
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      color: rgba(255,255,255,0.7);
      transition: all 0.3s;
    }
    .header-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
    .hamburger { display: none; font-size: 24px; }
    .mobile-search-btn { display: none; font-size: 20px; background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; padding: 8px; border-radius: 8px; transition: all 0.3s; }
    .mobile-search-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      height: 550px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--gulf-blue), var(--deep-sea));
    }
    .hero-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23fff' fill-opacity='1'/%3E%3C/svg%3E");
      background-size: 30px 30px;
    }
    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      transition: opacity 1s;
    }
    .hero-img.fade-out { opacity: 0; }
    .hero-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 50px 40px;
      background: linear-gradient(to top, rgba(13,43,62,0.95), transparent);
      color: #fff;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold);
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 16px;
      font-weight: 500;
    }
    .hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    #hero-rotating-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-style: italic;
      color: var(--gold-light);
      transition: opacity 0.3s;
    }
    .hero-subtitle {
      font-size: 0.95rem;
      opacity: 0.85;
      margin-top: 8px;
      max-width: 600px;
    }

    /* ========== MAIN LAYOUT ========== */
    .layout {
      display: grid;
      grid-template-columns: 240px 1fr 260px;
      gap: 24px;
      padding: 24px;
      max-width: none;
      margin: 0;
    }

    /* ========== LEFT SIDEBAR (NAVIGATION) ========== */
    .left-sidebar {
      position: sticky;
      top: 84px;
      max-height: calc(100vh - 108px);
      overflow-y: auto;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 20px;
      box-shadow: var(--shadow);
    }
    .left-sidebar::-webkit-scrollbar { width: 4px; }
    .left-sidebar::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 2px; }
    .left-sidebar h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 16px;
      color: var(--gulf-blue);
    }
    .continent-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      padding: 12px 14px;
      border: none;
      background: var(--hover);
      border-radius: 8px;
      cursor: pointer;
      font-size: 0.9rem;
      color: var(--text-dark);
      margin-bottom: 8px;
      transition: all 0.3s;
      font-family: 'Source Sans 3', sans-serif;
    }
    .continent-btn:hover { background: var(--gulf-blue); color: #fff; }
    .continent-btn .icon { font-size: 20px; }
    .country-list { display: none; padding-left: 20px; margin-bottom: 12px; }
    .country-list.expanded { display: block; }
    .country-list a { display: block; padding: 8px 0; font-size: 0.85rem; color: var(--text-soft); }
    .country-list a:hover { color: var(--brand); }
    .fact-box {
      background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(27,73,101,0.1));
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px;
      margin-top: 20px;
    }
    .fact-box h4 { font-size: 0.85rem; margin-bottom: 10px; color: var(--gulf-blue); }
    .fact-box p { font-size: 0.85rem; color: var(--text-soft); margin: 0; line-height: 1.6; }

    /* ========== MAIN CONTENT ========== */
    .main-content { 
      min-width: 0; 
    }

    /* ========== CARDS ========== */
    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      margin-bottom: 24px;
      box-shadow: var(--shadow);
      transition: all 0.3s;
    }
    .card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
    .card h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 16px;
      color: var(--gulf-blue);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      margin: 20px 0 12px;
      color: var(--gulf-blue);
    }
    .card p { margin-bottom: 14px; color: var(--text-soft); }
    .card ul { margin-left: 20px; margin-bottom: 14px; color: var(--text-soft); }
    .card li { margin-bottom: 8px; }

    /* ========== CHIPS ========== */
    .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      background: var(--hover);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 0.9rem;
      color: var(--text-dark);
      transition: all 0.3s;
    }
    .chip:hover { background: var(--gulf-blue); color: #fff; border-color: var(--gulf-blue); text-decoration: none; }

    /* ========== REGION GRID ========== */
    .region-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
      gap: 12px;
      margin-top: 16px;
    }
    .region-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 20px 14px;
      background: var(--hover);
      border: 1px solid var(--border);
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s;
      font-family: 'Source Sans 3', sans-serif;
    }
    .region-btn:hover { background: var(--gulf-blue); color: #fff; border-color: var(--gulf-blue); }
    .region-btn .icon { font-size: 32px; }
    .region-btn strong { font-size: 0.85rem; }

    /* ========== APP DOWNLOAD BANNER ========== */
    .app-download-banner {
      display: block;
      background: linear-gradient(135deg, var(--gulf-blue), var(--deep-sea));
      border-radius: var(--radius);
      padding: 28px;
      margin-bottom: 24px;
      color: #fff;
      text-decoration: none;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .app-download-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.2), transparent 50%);
    }
    .app-download-banner:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(27,73,101,0.4); text-decoration: none; }
    .app-banner-content { display: flex; align-items: center; gap: 24px; position: relative; z-index: 1; }
    .app-banner-icon { font-size: 56px; flex-shrink: 0; }
    .app-banner-text { flex: 1; }
    .app-banner-text h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      margin: 0 0 8px;
      color: #fff;
      font-weight: 500;
    }
    .app-banner-text p { font-size: 0.95rem; margin: 0 0 14px; opacity: 0.9; }
    .app-banner-platforms { display: flex; flex-wrap: wrap; gap: 8px; }
    .platform-tag {
      display: inline-block;
      padding: 5px 12px;
      background: rgba(255,255,255,0.15);
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 500;
    }
    .app-banner-cta {
      background: var(--gold);
      color: var(--deep-sea);
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.9rem;
      white-space: nowrap;
      flex-shrink: 0;
      transition: all 0.3s;
    }
    .app-download-banner:hover .app-banner-cta { background: #fff; }

    /* ========== FEATURED DESTINATION ========== */
    .featured-destination {
      display: grid;
      grid-template-columns: 1fr 220px;
      gap: 24px;
      align-items: center;
    }
    .featured-destination .badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold), #A88620);
      color: var(--deep-sea);
      padding: 5px 14px;
      border-radius: 999px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }
    .featured-destination .image img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
    }

    /* ========== TRENDING LIST ========== */
    .trending-list { list-style: none; margin: 0; padding: 0; }
    .trending-list li { padding: 14px 0; border-bottom: 1px solid var(--border); }
    .trending-list li:last-child { border-bottom: none; }
    .trending-list a { display: flex; align-items: center; gap: 12px; color: var(--text-dark); transition: all 0.3s; }
    .trending-list a:hover { color: var(--gulf-blue); padding-left: 6px; text-decoration: none; }
    .trending-list .flag { font-size: 24px; }

    /* ========== PHOTO OF THE WEEK ========== */
    .photo-week img {
      width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 10px;
      margin-bottom: 14px;
    }
    .photo-week .credit { font-size: 0.9rem; color: var(--text-soft); }

    /* ========== DONATE BUTTONS ========== */
    .donate-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
    .donate-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 14px 18px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 10px;
      font-size: 0.95rem;
      color: #fff;
      text-align: center;
      min-width: 80px;
      transition: all 0.3s;
    }
    .donate-btn:hover { background: var(--gold); color: var(--deep-sea); border-color: var(--gold); text-decoration: none; }
    .donate-btn small { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
    .donate-btn:hover small { color: var(--deep-sea); }

    /* Support Card Dark Style */
    .card.support-card {
      background: linear-gradient(135deg, var(--gulf-blue), var(--deep-sea));
      border: none;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .card.support-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.15), transparent 50%);
      pointer-events: none;
    }
    .card.support-card h2 {
      color: #fff;
    }
    .card.support-card p {
      color: rgba(255,255,255,0.85);
    }

    /* ========== NEWSLETTER ========== */
    .newsletter-inline { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
    .newsletter-inline h3 { font-size: 1rem; margin-bottom: 12px; }
    .newsletter-inline form { display: flex; gap: 10px; }
    .newsletter-inline input {
      flex: 1;
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--bg);
      color: var(--text-dark);
    }
    .newsletter-inline button {
      padding: 12px 24px;
      background: var(--gulf-blue);
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s;
    }
    .newsletter-inline button:hover { background: var(--gold); color: var(--deep-sea); }

    /* Newsletter in dark card */
    .card.support-card .newsletter-inline {
      border-top-color: rgba(255,255,255,0.2);
    }
    .card.support-card .newsletter-inline h3 {
      color: #fff;
    }
    .card.support-card .newsletter-inline input {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.2);
      color: #fff;
    }
    .card.support-card .newsletter-inline input::placeholder {
      color: rgba(255,255,255,0.5);
    }
    .card.support-card .newsletter-inline button {
      background: var(--gold);
      color: var(--deep-sea);
    }
    .card.support-card .newsletter-inline button:hover {
      background: #fff;
    }

    /* ========== RIGHT PANEL ========== */
    .right-panel {
      position: sticky;
      top: 84px;
      max-height: calc(100vh - 108px);
      overflow-y: auto;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 20px;
      box-shadow: var(--shadow);
    }
    .right-panel::-webkit-scrollbar { width: 4px; }
    .right-panel::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 2px; }
    .right-panel h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 500;
      margin: 0 0 14px;
      color: var(--gulf-blue);
    }

    .ai-chat-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px;
      background: linear-gradient(135deg, var(--gulf-blue), var(--deep-sea));
      border-radius: 10px;
      margin-bottom: 18px;
      color: #fff;
      transition: all 0.3s;
    }
    .ai-chat-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,73,101,0.3); text-decoration: none; }
    .ai-chat-card .icon { font-size: 36px; }
    .ai-chat-card strong { display: block; font-size: 0.95rem; }
    .ai-chat-card p { font-size: 0.8rem; margin: 4px 0 0; opacity: 0.85; }

    .app-banner {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px;
      background: linear-gradient(135deg, var(--gold), #A88620);
      border-radius: 10px;
      margin-bottom: 18px;
      color: var(--deep-sea);
      transition: all 0.3s;
    }
    .app-banner:hover { transform: translateY(-2px); text-decoration: none; }
    .app-banner .app-icon { font-size: 36px; }
    .app-banner strong { display: block; font-size: 0.95rem; }
    .app-banner p { font-size: 0.8rem; margin: 4px 0 0; opacity: 0.8; }
    .app-platforms { display: flex; gap: 6px; margin-top: 6px; }
    .app-platforms span { font-size: 18px; }

    .toolbox-list { list-style: none; margin-bottom: 18px; }
    .toolbox-list li { margin-bottom: 8px; }
    .toolbox-list a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      background: var(--hover);
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--text-dark);
      font-size: 0.9rem;
      transition: all 0.3s;
    }
    .toolbox-list a:hover { background: var(--gulf-blue); color: #fff; text-decoration: none; }

    .notes-list { list-style: none; margin-bottom: 18px; }
    .notes-list .note { padding: 14px 0; border-bottom: 1px solid var(--border); }
    .notes-list .note time { font-size: 0.7rem; color: var(--text-soft); }
    .notes-list .note strong { display: block; font-size: 0.9rem; margin: 4px 0; color: var(--text-dark); }
    .notes-list .note p { font-size: 0.85rem; margin: 0; color: var(--text-soft); }

    .note-form { margin-top: 18px; }
    .note-form label { display: block; font-size: 0.8rem; color: var(--text-soft); margin-bottom: 4px; }
    .note-form input, .note-form textarea {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid var(--border);
      border-radius: 8px;
      margin-bottom: 10px;
      background: var(--bg);
      color: var(--text-dark);
      font-family: inherit;
    }
    .note-form button {
      width: 100%;
      padding: 12px;
      background: var(--gulf-blue);
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s;
    }
    .note-form button:hover { background: var(--gold); color: var(--deep-sea); }

    .newsletter-widget {
      background: linear-gradient(135deg, var(--gulf-blue), var(--deep-sea));
      border-radius: 10px;
      padding: 18px;
      color: #fff;
      margin: 18px 0;
    }
    .newsletter-widget h3 { color: #fff; font-size: 0.95rem; margin-bottom: 8px; }
    .newsletter-widget p { font-size: 0.85rem; opacity: 0.9; margin-bottom: 12px; }
    .newsletter-widget input {
      width: 100%;
      padding: 10px 12px;
      border: none;
      border-radius: 6px;
      margin-bottom: 8px;
    }
    .newsletter-widget button {
      width: 100%;
      padding: 10px;
      background: var(--gold);
      color: var(--deep-sea);
      border: none;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    .newsletter-widget button:hover { background: #fff; }

    .updates-list { list-style: none; }
    .updates-list .update { padding: 12px 0; border-bottom: 1px solid var(--border); }
    .updates-list .update time { font-size: 0.7rem; color: var(--text-soft); }
    .updates-list .update strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
    .updates-list .update p { font-size: 0.8rem; margin: 0; color: var(--text-soft); }

    /* ========== MAP ========== */
    .map-container { border-radius: 10px; overflow: hidden; margin: 16px 0; }
    .map-recommendations {
      background: var(--hover);
      border-radius: 10px;
      padding: 18px;
      margin-top: 18px;
    }
    .map-recommendations h4 { margin: 0 0 12px; font-size: 1rem; color: var(--gulf-blue); }
    .map-recommendations ul { margin: 12px 0 0 20px; line-height: 1.9; }

    /* ========== BRAND LOGOS ========== */
    .brand-logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
    .brand-logos span {
      padding: 12px 24px;
      background: var(--hover);
      border-radius: 8px;
      font-size: 0.9rem;
      color: var(--text-soft);
    }

    /* ========== MOBILE PROMO ========== */
    .mobile-promo-section { display: none; }

    /* ========== FOOTER ========== */
    footer {
      background: var(--deep-sea);
      padding: 40px 30px;
      text-align: center;
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
    }
    footer a { color: rgba(255,255,255,0.6); margin: 0 10px; transition: color 0.3s; }
    footer a:hover { color: var(--gold); text-decoration: none; }
    .social-links { margin-top: 16px; }
    .social-links a { font-size: 22px; margin: 0 10px; text-decoration: none; }

    /* ========== MOBILE MENU ========== */
    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 999;
    }
    .mobile-overlay.active { display: block; }
    .mobile-slide-menu {
      position: fixed;
      top: 0;
      left: -300px;
      width: 280px;
      height: 100%;
      background: var(--bg);
      z-index: 1000;
      overflow-y: auto;
      transition: left 0.3s;
      padding: 24px;
    }
    .mobile-slide-menu.open { left: 0; }
    .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
    .mobile-close-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-dark); }
    .mobile-nav-links { display: block !important; visibility: visible !important; opacity: 1 !important; }
    .mobile-nav-links a { display: block !important; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--text-dark); font-size: 16px; text-decoration: none; }
    .mobile-search {
      width: 100%;
      padding: 14px;
      border: 1px solid var(--border);
      border-radius: 10px;
      margin-bottom: 18px;
      background: var(--card);
      color: var(--text-dark);
    }

    /* ========== MOBILE SEARCH OVERLAY ========== */
    .mobile-search-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.9);
      z-index: 2000;
      justify-content: center;
      align-items: flex-start;
      padding-top: 100px;
    }
    .mobile-search-overlay.active { display: flex; }
    .mobile-search-container {
      width: 90%;
      max-width: 500px;
      background: var(--card);
      border-radius: 16px;
      padding: 24px;
      position: relative;
    }
    .mobile-search-close {
      position: absolute;
      top: 12px;
      right: 12px;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--text-soft);
      transition: color 0.3s;
    }
    .mobile-search-close:hover { color: var(--text-dark); }
    .mobile-search-input {
      width: 100%;
      padding: 16px 20px;
      border: 2px solid var(--border);
      border-radius: 12px;
      font-size: 18px;
      margin-bottom: 16px;
      background: var(--bg);
      color: var(--text-dark);
    }
    .mobile-search-input:focus { 
      outline: none; 
      border-color: var(--gulf-blue); 
    }
    .mobile-search-submit {
      width: 100%;
      padding: 14px;
      background: var(--gulf-blue);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    .mobile-search-submit:hover { background: var(--gold); color: var(--deep-sea); }

    /* ========== TOAST ========== */
    .toast {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(100px);
      background: var(--deep-sea);
      color: #fff;
      padding: 14px 28px;
      border-radius: 10px;
      opacity: 0;
      transition: all 0.3s;
      z-index: 9999;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }
    .toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1600px) {
      .page-wrapper { grid-template-columns: 200px 1fr 200px; }
      .sidebar { padding: 20px 14px; }
    }

    @media (max-width: 1400px) {
      .page-wrapper { grid-template-columns: 160px 1fr 160px; }
      .sidebar { padding: 16px 10px; }
    }

    @media (max-width: 1200px) {
      .page-wrapper { grid-template-columns: 1fr; }
      .sidebar { display: none; }
      .layout { grid-template-columns: 1fr; padding: 20px; }
      .left-sidebar, .right-panel { display: none; }
      .hamburger { display: block; }
      .mobile-search-btn { display: block; }
      .search-wrap { display: none; }
      .mobile-promo-section { display: block; margin-top: 24px; }
      .mobile-promo-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 24px;
        margin-bottom: 18px;
      }
      .mobile-app-banner {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 24px;
        background: linear-gradient(135deg, var(--gulf-blue), var(--deep-sea));
        border-radius: var(--radius);
        color: #fff;
        margin-bottom: 18px;
      }
      .mobile-app-banner .app-emoji { font-size: 52px; }
      .mobile-app-banner h3 { margin-bottom: 6px; color: #fff; }
      .mobile-app-banner p { font-size: 0.9rem; opacity: 0.9; margin: 0; }
      .platform-badge {
        display: inline-block;
        padding: 4px 10px;
        background: rgba(255,255,255,0.2);
        border-radius: 6px;
        font-size: 0.8rem;
        margin-right: 6px;
        margin-top: 10px;
      }
      .mobile-sponsor-banner {
        background: linear-gradient(135deg, var(--gold), #A88620);
        border-radius: var(--radius);
        padding: 24px;
        color: var(--deep-sea);
        margin-bottom: 18px;
      }
      .mobile-sponsor-banner h3 { color: var(--deep-sea); margin-bottom: 10px; }
      .mobile-sponsor-banner a { color: var(--deep-sea); font-weight: 600; }
    }

    @media (max-width: 768px) {
      .app-banner-content { flex-direction: column; text-align: center; }
      .app-banner-icon { font-size: 48px; }
      .app-banner-platforms { justify-content: center; }
      .app-banner-cta { margin-top: 16px; }
      .featured-destination { grid-template-columns: 1fr; }
      .featured-destination .image { order: -1; }
      .hero { height: 350px; }
      .hero-content { padding: 30px 20px; }
      header { padding: 12px 16px; }
      .logo .title { font-size: 1rem; }
      header nav { display: none; }
      .mobile-nav-links { display: block !important; }
    }

    @media (max-width: 480px) {
      .hero-content h1 { font-size: 1.6rem; }
      .chips { gap: 8px; }
      .chip { padding: 10px 14px; font-size: 0.85rem; }
    }

/* Hugh Float Widget */
#hugh-float:hover img { filter: drop-shadow(0 8px 30px rgba(59,130,246,0.7)); transform: scale(1.05); }
@media (max-width: 768px) { #hugh-float { bottom: 20px; right: 20px; } #hugh-float img { width: 90px; } }
