@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

  * {
    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;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  }

  body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-color);
  }

  /* ============================================
     HEADER & NAVIGATION
     ============================================ */
  header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
  }

  .logo i {
    margin-right: 10px;
    font-size: 2rem;
  }

  .logo:hover {
    transform: scale(1.05);
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .mobile-menu {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }

  /* ============================================
     BREADCRUMB
     ============================================ */
  .breadcrumb {
    background: white;
    padding: 100px 5% 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .breadcrumb-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
    flex-wrap: wrap;
  }

  .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
  }

  .breadcrumb a:hover {
    color: var(--secondary-color);
  }

  .breadcrumb i.fa-chevron-right {
    font-size: 0.7rem;
    color: var(--text-light);
  }

  .breadcrumb .current {
    color: var(--text-light);
    font-weight: 500;
  }

  /* ============================================
     PAGE HERO HEADER
     ============================================ */
  .page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 5% 60px;
    position: relative;
    overflow: hidden;
  }

  .page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: floatBubble 20s ease-in-out infinite;
  }

  .page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    animation: floatBubble 15s ease-in-out infinite reverse;
  }

  @keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
  }

  .page-header-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .country-flag {
    font-size: 4rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    animation: fadeInScale 0.5s ease;
  }

  @keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
  }

  .page-header-text h1 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
  }

  .page-header-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 600px;
  }

  .header-stats {
    display: flex;
    gap: 30px;
    margin-top: 15px;
  }

  .header-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
  }

  .header-stat i {
    color: var(--accent-color);
  }

  /* ============================================
     STATISTICS BAR
     ============================================ */
  .stats-bar {
    background: white;
    padding: 25px 5%;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
  }

  .stats-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }

  .stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 10px;
    background: var(--light-color);
    transition: var(--transition);
  }

  .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .stat-card .stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .stat-card .stat-text h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.2;
  }

  .stat-card .stat-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* ============================================
     CATEGORIES GRID (Country Overview)
     ============================================ */
  .content-section {
    padding: 50px 5%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .section-header h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    font-weight: 700;
  }

  .section-header p {
    color: var(--text-light);
    font-size: 0.95rem;
  }

  .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }

  .cat-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
  }

  .cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
  }

  .cat-card-header {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .cat-card-header i {
    font-size: 3.5rem;
    color: white;
    z-index: 1;
    transition: var(--transition);
  }

  .cat-card:hover .cat-card-header i {
    transform: scale(1.15) rotate(5deg);
  }

  .cat-card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
  }

  .cat-card-body {
    padding: 22px;
  }

  .cat-card-body h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 6px;
  }

  .cat-card-body .cat-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .cat-card-body .cat-count i {
    color: var(--primary-color);
    font-size: 0.85rem;
  }

  .cat-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
  }

  .cat-card-footer .explore-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
  }

  .cat-card:hover .explore-link {
    gap: 10px;
  }

  .cat-card-footer .cat-badge {
    padding: 4px 10px;
    background: var(--light-color);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
  }

  /* ============================================
     SEARCH & FILTER BAR (Location List)
     ============================================ */
  .search-filter-bar {
    background: white;
    padding: 20px 5%;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 73px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }

  .search-filter-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
  }

  .search-field {
    flex: 1;
    min-width: 280px;
    position: relative;
  }

  .search-field input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light-color);
  }

  .search-field input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: white;
  }

  .search-field i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
  }

  .search-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  }

  .location-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: var(--dark-color);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }

  .location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 233, 123, 0.3);
  }

  .location-btn.loading {
    opacity: 0.7;
    cursor: wait;
  }

  .location-btn .spinner {
    display: none;
    animation: spin 1s linear infinite;
  }

  .location-btn.loading .spinner {
    display: inline-block;
  }

  .location-btn.loading .loc-icon-default {
    display: none;
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .location-result {
    background: linear-gradient(135deg, #e0f7fa, #e8f5e9);
    border: 2px solid #43e97b;
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--dark-color);
    transition: var(--transition);
    width: 100%;
  }

  .location-result i {
    color: #43e97b;
    font-size: 1.2rem;
  }

  .location-result .coords {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 0.88rem;
  }

  .location-result .accuracy {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-left: auto;
  }

  .result-count {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
  }

  .result-count strong {
    color: var(--dark-color);
  }

  /* ============================================
     LOCATION TABLE / LIST
     ============================================ */
  .locations-section {
    padding: 30px 5%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .locations-table-wrapper {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 30px;
  }

  .locations-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
  }

  .locations-table thead {
    background: linear-gradient(135deg, var(--dark-color), #334155);
  }

  .locations-table thead th {
    color: white;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .locations-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
  }

  .locations-table tbody tr:last-child {
    border-bottom: none;
  }

  .locations-table tbody tr:hover {
    background: #f0f7ff;
  }

  .locations-table tbody tr.selected {
    background: #e0f0ff;
    box-shadow: inset 3px 0 0 var(--primary-color);
  }

  .locations-table tbody td {
    padding: 14px 20px;
    vertical-align: middle;
  }

  .location-name {
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .location-name .loc-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .location-address {
    color: var(--text-color);
    font-size: 0.88rem;
    max-width: 350px;
  }

  .location-coords {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: var(--text-light);
    white-space: nowrap;
  }

  .location-date {
    color: var(--text-light);
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .view-map-btn {
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: inherit;
    white-space: nowrap;
  }

  .view-map-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .hotel-around-btn {
    padding: 6px 14px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: inherit;
    white-space: nowrap;
    text-decoration: none;
  }

  .hotel-around-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    color: white;
  }

  .action-buttons {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  /* Mobile location cards */
  .locations-cards {
    display: none;
  }

  .loc-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
  }

  .loc-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
  }

  .loc-card.selected {
    border-color: var(--primary-color);
    background: #f0f7ff;
  }

  .loc-card h4 {
    color: var(--dark-color);
    font-size: 1rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .loc-card .loc-addr {
    color: var(--text-color);
    font-size: 0.88rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
  }

  .loc-card .loc-addr i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
  }

  .loc-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
  }

  .loc-card .loc-coords {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--text-light);
  }

  /* ============================================
     MAP SECTION
     ============================================ */
  .map-section {
    margin: 0 5% 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5%;
  }

  .map-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
  }

  .map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
  }

  .map-header h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .map-header h3 i {
    color: var(--primary-color);
  }

  .map-toggle {
    padding: 8px 16px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .map-toggle:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }

  #map {
    height: 450px;
    width: 100%;
  }

  /* ============================================
     PAGINATION
     ============================================ */
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .page-link {
    padding: 10px 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
  }

  .page-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .page-link.disabled {
    opacity: 0.4;
    pointer-events: none;
  }

  .page-info {
    color: var(--text-light);
    font-size: 0.88rem;
    margin: 0 10px;
  }

  /* ============================================
     NOT FOUND STATE
     ============================================ */
  .not-found {
    text-align: center;
    padding: 80px 20px;
  }

  .not-found i {
    font-size: 5rem;
    color: var(--border-color);
    margin-bottom: 20px;
  }

  .not-found h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
  }

  .not-found p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .not-found a {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .not-found a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  }

  /* ============================================
     EMPTY STATE (no search results)
     ============================================ */
  .empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
  }

  .empty-state i {
    font-size: 3.5rem;
    color: var(--border-color);
    margin-bottom: 15px;
  }

  .empty-state h3 {
    color: var(--dark-color);
    margin-bottom: 8px;
  }

  .empty-state p {
    color: var(--text-light);
  }

  /* Nominatim / OpenStreetMap badge */
  .osm-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: linear-gradient(135deg, #7ab648, #4a8a2a);
    color: white;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
  }

  .nominatim-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .nominatim-section-header .osm-powered {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #166534;
    font-weight: 500;
  }

  /* ============================================
     FOOTER
     ============================================ */
  footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 5% 20px;
    margin-top: 60px;
  }

  .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
  }

  .footer-section h3 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
  }

  .footer-section ul {
    list-style: none;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
  }

  .footer-section a:hover {
    color: var(--accent-color);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
  }

  /* ============================================
     ANIMATIONS
     ============================================ */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  .animate-in {
    animation: fadeInUp 0.5s ease both;
  }

  .animate-delay-1 { animation-delay: 0.1s; }
  .animate-delay-2 { animation-delay: 0.2s; }
  .animate-delay-3 { animation-delay: 0.3s; }
  .animate-delay-4 { animation-delay: 0.4s; }

  /* ============================================
     BACK TO TOP
     ============================================ */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
    border: none;
  }

  .back-to-top:hover {
    transform: scale(1.1);
  }

  /* ============================================
     RESPONSIVE
     ============================================ */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }

    .mobile-menu {
      display: block;
    }

    .page-header-content {
      flex-direction: column;
      text-align: center;
    }

    .page-header-text h1 {
      font-size: 2rem;
    }

    .header-stats {
      justify-content: center;
    }

    .categories-grid {
      grid-template-columns: 1fr;
    }

    .search-filter-inner {
      flex-direction: column;
    }

    .search-field {
      min-width: 100%;
    }

    .locations-table-wrapper {
      display: none;
    }

    .locations-cards {
      display: block;
    }

    #map {
      height: 300px;
    }

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

    .section-header {
      flex-direction: column;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .stats-bar-inner {
      grid-template-columns: 1fr;
    }

    .country-flag {
      font-size: 3rem;
    }

    .page-header-text h1 {
      font-size: 1.6rem;
    }
  }