@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: #2563eb;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --text: #475569;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --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, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
  }

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

  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);
    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);
  }

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

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

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

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

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

  /* PAGE HERO */
  .page-hero {
    padding: 50px 5% 60px;
    position: relative;
    overflow: hidden;
  }

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

  .page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    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-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .hero-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: white;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    animation: fadeInScale 0.5s ease;
  }

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

  .hero-text h1 {
    color: white;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
  }

  .hero-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 15px;
  }

  .hero-stats {
    display: flex;
    gap: 30px;
  }

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

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

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

  .search-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    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);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light);
  }

  .search-field input:focus {
    outline: none;
    border-color: var(--primary);
    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), var(--secondary));
    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);
  }

  .result-count {
    padding: 8px 18px;
    background: var(--light);
    border-radius: 20px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
  }

  .result-count span { color: var(--primary); }

  .clear-search {
    padding: 8px 16px;
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .clear-search:hover {
    background: #fecaca;
  }

  /* STATS BAR */
  .stats-bar {
    background: white;
    padding: 20px 5%;
    border-bottom: 1px solid var(--border);
  }

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

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

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

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

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

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

  /* LOCATIONS GRID */
  .locations-section {
    padding: 40px 5% 60px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .locations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
  }

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

  .locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
  }

  /* LOCATION CARD */
  .loc-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

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

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

  .loc-card-header i {
    font-size: 2rem;
    color: white;
    z-index: 1;
  }

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

  .loc-card-header .country-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 10px;
    border-radius: 15px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .loc-card-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .loc-card-body h3 {
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .loc-card-body .loc-address {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.84rem;
    margin-bottom: 12px;
    flex: 1;
  }

  .loc-card-body .loc-address i {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
  }

  .loc-card-body .loc-address span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

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

  .loc-country {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
  }

  .loc-country .flag { font-size: 1.1rem; }

  .loc-action {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
  }

  .loc-card:hover .loc-action { gap: 10px; }

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

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

  .page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }

  .page-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: var(--primary);
  }

  .page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
  }

  .page-info {
    padding: 8px 16px;
    color: var(--text-light);
    font-size: 0.88rem;
  }

  /* EMPTY STATE */
  .empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    grid-column: 1 / -1;
  }

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

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

  .empty-state p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
  }

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

  .empty-state a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37,99,235,0.35);
  }

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

  .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; }
  .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); }

  .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);
  }

  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu { display: block; }
    .page-hero-content { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2rem; }
    .hero-stats { justify-content: center; }
    .search-bar-inner { flex-direction: column; }
    .search-field { min-width: 100%; }
    .locations-grid { grid-template-columns: 1fr; }
    .stats-bar-inner { grid-template-columns: 1fr 1fr; }
    .hero-icon { width: 70px; height: 70px; font-size: 2rem; }
  }

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

  .loc-card {
    animation: fadeInUp 0.4s ease both;
  }

  .loc-card:nth-child(1) { animation-delay: 0.05s; }
  .loc-card:nth-child(2) { animation-delay: 0.1s; }
  .loc-card:nth-child(3) { animation-delay: 0.15s; }
  .loc-card:nth-child(4) { animation-delay: 0.2s; }
  .loc-card:nth-child(5) { animation-delay: 0.25s; }
  .loc-card:nth-child(6) { animation-delay: 0.3s; }