* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-color: #2563eb;
      --secondary-color: #0ea5e9;
      --accent-color: #f59e0b;
      --dark-color: #1e293b;
      --light-color: #f8fafc;
      --text-color: #475569;
      --border-radius: 12px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      overflow-x: hidden;
    }

    /* Hero Section */
    .hero {
      margin-top: 80px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 100px 5%;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
      background-size: cover;
    }

    .hero-content {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      color: white;
      font-size: 3.5rem;
      margin-bottom: 1rem;
      animation: fadeInUp 0.8s ease;
    }

    .hero p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.3rem;
      margin-bottom: 2rem;
      animation: fadeInUp 0.8s ease 0.2s both;
    }

    /* Search Box */
    .search-container {
      background: white;
      border-radius: var(--border-radius);
      padding: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      max-width: 800px;
      margin: 0 auto;
      animation: fadeInUp 0.8s ease 0.4s both;
    }

    .search-box {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
    }

    .search-input {
      flex: 1;
      padding: 15px 20px;
      border: 2px solid #e2e8f0;
      border-radius: 8px;
      font-size: 1rem;
      transition: var(--transition);
    }

    .search-input:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .search-btn {
      padding: 15px 30px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .search-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    }

    .country-select-wrapper {
      position: relative;
      min-width: 200px;
    }

    .country-select-wrapper i.fa-globe {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--primary-color);
      font-size: 1rem;
      pointer-events: none;
      z-index: 1;
    }

    .country-select {
      width: 100%;
      padding: 15px 16px 15px 40px;
      border: 2px solid #e2e8f0;
      border-radius: 8px;
      font-size: 0.95rem;
      font-family: inherit;
      background: var(--light-color);
      cursor: pointer;
      transition: var(--transition);
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
    }

    .country-select:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
      background-color: white;
    }

    .country-select option {
      padding: 8px;
      font-size: 0.95rem;
    }

    .quick-filters {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .filter-tag {
      padding: 8px 16px;
      background: var(--light-color);
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: var(--transition);
    }

    .filter-tag:hover {
      background: var(--primary-color);
      color: white;
      border-color: var(--primary-color);
      transform: translateY(-2px);
    }

    /* Categories Section */
    .categories {
      padding: 80px 5%;
      background: var(--light-color);
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: var(--dark-color);
      margin-bottom: 1rem;
    }

    .section-title p {
      font-size: 1.1rem;
      color: var(--text-color);
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .category-card {
      background: white;
      border-radius: var(--border-radius);
      padding: 2rem;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
      transition: var(--transition);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .category-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .category-card:hover::before {
      transform: scaleX(1);
    }

    .category-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .category-card h3 {
      color: var(--dark-color);
      margin-bottom: 0.5rem;
    }

    .category-card p {
      font-size: 0.9rem;
      color: var(--text-color);
    }

    /* Statistics Section */
    .stats {
      padding: 80px 5%;
      background: linear-gradient(135deg, var(--dark-color), #334155);
      color: white;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .stat-item {
      animation: fadeInUp 0.8s ease both;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, var(--accent-color), #fbbf24);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    /* Featured Locations */
    .featured {
      padding: 80px 5%;
      background: white;
    }

    .location-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .location-card {
      background: white;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
      transition: var(--transition);
      cursor: pointer;
    }

    .location-card:hover {
      transform: scale(1.05);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .location-image {
      height: 200px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      color: white;
    }

    .location-info {
      padding: 1.5rem;
    }

    .location-info h3 {
      color: var(--dark-color);
      margin-bottom: 0.5rem;
    }

    .location-info p {
      color: var(--text-color);
      margin-bottom: 1rem;
    }

    .location-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .location-type {
      display: inline-block;
      padding: 4px 12px;
      background: var(--light-color);
      border-radius: 20px;
      font-size: 0.85rem;
      color: var(--primary-color);
      font-weight: 600;
    }

    .location-rating {
      color: var(--accent-color);
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .search-box {
        flex-direction: column;
      }

      .country-select-wrapper {
        min-width: 100%;
      }

      .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    /* Loading Animation */
    .pulse {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
      }

      70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
      }
    }

/* Select2 custom styling matching HotelinMap */
    .select2-container--default .select2-selection--single {
        height: 54px;
        padding: 12px 16px 12px 40px; /* Padding left 40px leaves space for absolute fa-globe */
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        background-color: var(--light-color);
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 26px;
        padding-left: 0;
        color: var(--text-color);
        font-size: 0.95rem;
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 52px;
        right: 14px;
    }
    .select2-container--default.select2-container--open .select2-selection--single {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        background-color: white;
    }
    .country-select-wrapper .select2-container {
        width: 100% !important;
    }
    /* Fix globe icon z-index to appear above select2 */
    .country-select-wrapper i.fa-globe {
        z-index: 5;
    }