/* Modern Enhanced Styles */
    :root {
      --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      --accent-blue: #4f46e5;
      --accent-purple: #7c3aed;
      --neutral-50: #f9fafb;
      --neutral-100: #f3f4f6;
      --neutral-800: #1f2937;
      --neutral-900: #111827;
      --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
      --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.2);
      --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: linear-gradient(180deg, #ffffff 0%, var(--neutral-50) 100%);
      color: var(--neutral-800);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Enhanced Header */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 2rem;
    }

    .site-logo {
      height: 42px;
      width: auto;
      transition: var(--transition-smooth);
    }

    .site-logo:hover {
      transform: scale(1.05);
      filter: brightness(1.1);
    }

    .navlinks {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    .navlinks a {
      color: var(--neutral-800);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      position: relative;
      transition: var(--transition-smooth);
      letter-spacing: 0.3px;
    }

    .navlinks a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-gradient);
      transition: width 0.3s ease;
    }

    .navlinks a:hover {
      color: var(--accent-purple);
    }

    .navlinks a:hover::after {
      width: 100%;
    }

    /* Hero Section - Enhanced */
    .landing-hero {
      padding: 8rem 0 6rem;
      position: relative;
      overflow: hidden;
    }

    .landing-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 20s infinite ease-in-out;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-30px) rotate(5deg); }
    }

    .landing-hero .wrap {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .landing-hero h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 900;
      line-height: 1.1;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }

    .landing-hero p {
      font-size: clamp(1.1rem, 2vw, 1.25rem);
      color: var(--neutral-800);
      opacity: 0.85;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .hero-ctas {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
    }

    .primary-btn {
      background: var(--primary-gradient);
      color: white;
      font-weight: 700;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
      transition: var(--transition-smooth);
      font-size: 1rem;
      letter-spacing: 0.3px;
      position: relative;
      overflow: hidden;
    }

    .primary-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s;
    }

    .primary-btn:hover::before {
      left: 100%;
    }

    .primary-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    }

    .secondary-btn {
      background: white;
      color: var(--neutral-800);
      font-weight: 700;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      border: 2px solid var(--neutral-800);
      cursor: pointer;
      text-decoration: none;
      transition: var(--transition-smooth);
      font-size: 1rem;
    }

    .secondary-btn:hover {
      background: var(--neutral-800);
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    /* Hero Card - Modernized */
    .hero-card {
      background: white;
      border-radius: 30px;
      padding: 3rem;
      box-shadow: var(--shadow-xl);
      border: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 200px;
      height: 200px;
      background: var(--primary-gradient);
      opacity: 0.05;
      border-radius: 50%;
      transform: translate(50%, -50%);
    }

    .stat {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.25rem;
      align-items: start;
      margin: 2rem 0;
      position: relative;
    }

    .stat:first-child {
      margin-top: 0;
    }

    .stat .icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--primary-gradient);
      font-size: 1.75rem;
      box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
      transition: var(--transition-smooth);
    }

    .stat:hover .icon {
      transform: scale(1.1) rotate(5deg);
    }

    .stat .txt {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--neutral-900);
      margin-bottom: 0.25rem;
    }

    .stat .sub {
      color: var(--neutral-800);
      opacity: 0.7;
      font-size: 0.95rem;
    }

    /* Countries Section - Enhanced */
    .countries-section {
      padding: 6rem 0 8rem;
      background: white;
    }

    .countries-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 2rem;
      margin-bottom: 4rem;
      flex-wrap: wrap;
    }

    .countries-head h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      color: var(--neutral-900);
      margin: 0;
    }

    .countries-head p {
      color: var(--neutral-800);
      opacity: 0.7;
      margin: 0.5rem 0 0 0;
    }

    .search-box {
      position: relative;
      flex: 1;
      max-width: 450px;
      min-width: 280px;
    }

    .search-box input {
      width: 100%;
      padding: 1rem 3.5rem 1rem 1.5rem;
      border: 2px solid rgba(0, 0, 0, 0.1);
      border-radius: 50px;
      font-size: 0.95rem;
      outline: none;
      transition: var(--transition-smooth);
      background: var(--neutral-50);
    }

    .search-box input:focus {
      border-color: var(--accent-purple);
      background: white;
      box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
    }

    .search-box .magnifier {
      position: absolute;
      right: 1.5rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.25rem;
      opacity: 0.5;
      pointer-events: none;
    }

    /* Country Cards - Premium Design */
    .countries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 2rem;
    }

    .country-card {
      background: white;
      border-radius: 24px;
      padding: 2.5rem;
      cursor: pointer;
      transition: var(--transition-smooth);
      border: 2px solid rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
      min-height: 280px;
      display: flex;
      flex-direction: column;
    }

    .country-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--primary-gradient);
      opacity: 0;
      transition: var(--transition-smooth);
    }

    .country-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      border-color: transparent;
    }

    .country-card:hover::before {
      opacity: 0.05;
    }

    .country-flag {
      width: 80px;
      height: 60px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .country-flag img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .country-name {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--neutral-900);
      margin: 0.5rem 0;
      position: relative;
      z-index: 1;
    }

    .country-code {
      color: var(--accent-purple);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 1px;
      margin-bottom: auto;
      position: relative;
      z-index: 1;
    }

    .country-cta {
      margin-top: 1.5rem;
      align-self: flex-start;
      background: var(--primary-gradient);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 0.875rem 2rem;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition-smooth);
      position: relative;
      z-index: 1;
      font-size: 0.95rem;
    }

    .country-cta:hover {
      transform: translateX(5px);
      box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    }

    /* Footer - Enhanced */
    footer {
      background: var(--dark-gradient);
      color: white;
      padding: 5rem 0 2rem;
      margin-top: auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 3rem;
    }

    .footer-grid h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.9);
    }

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

    .footer-grid li {
      margin-bottom: 0.875rem;
    }

    .footer-grid a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: var(--transition-smooth);
      font-size: 0.95rem;
    }

    .footer-grid a:hover {
      color: white;
      padding-left: 5px;
    }

    .small {
      font-size: 0.875rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 1rem;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .landing-hero .wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

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

    @media (max-width: 768px) {
      .nav {
        padding: 1rem;
      }

      .navlinks {
        gap: 1.5rem;
      }

      .landing-hero {
        padding: 4rem 0 3rem;
      }

      .countries-section {
        padding: 3rem 0 4rem;
      }

      .countries-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .search-box {
        max-width: 100%;
      }
    }

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

    .country-card {
      animation: fadeInUp 0.6s ease forwards;
    }

    .country-card:nth-child(1) { animation-delay: 0.1s; }
    .country-card:nth-child(2) { animation-delay: 0.2s; }
    .country-card:nth-child(3) { animation-delay: 0.3s; }