* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
  }
  
  .destinations-section {
    padding: 80px 16px;
    background: white;
    position: relative;
    overflow: hidden;
  }
  
  .bg-decoration {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(96px);
    pointer-events: none;
  }
  
  .bg-decoration-top {
    top: 0;
    right: 0;
    background: rgba(239, 68, 68, 0.05);
  }
  
  .bg-decoration-bottom {
    bottom: 0;
    left: 0;
    background: rgba(249, 115, 22, 0.05);
  }
  
  .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    border: 1px solid rgba(217, 119, 6, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin: 0 auto 24px;
    font-size: 14px;
    font-weight: 500;
    max-width: fit-content;
    color: #b45309;
    letter-spacing: 0.5px;
  }
  
  .badge-dot {
    width: 8px;
    height: 8px;
    background: #d97706;
    transition: all 0.3s ease;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
    }
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 4px rgba(217, 119, 6, 0);
    }
    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
    }
  }
  
  .title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(to right, rgb(30, 41, 59), rgb(71, 85, 105));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  
  .description {
    color: rgb(71, 85, 105);
    max-width: 768px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
  }
  
  .destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    height: auto;
  }
  
  @media (min-width: 768px) {
    .destinations-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .destinations-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .destination-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    transform: translateY(0);
    will-change: transform, box-shadow;
  }
  
  .destination-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px);
  }
  
  .destination-card:active {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.2);
  }
  
  .destination-card-wide {
    grid-column: span 1;
  }
  
  @media (min-width: 768px) {
    .destination-card-wide {
      grid-column: span 2;
    }
  }
  
  .destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  
  .destination-card:hover .destination-image {
    transform: scale(1.1);
  }
  
  .destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
  }
  
  .destination-hover-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    z-index: 1;
  }
  
  .destination-card:hover .destination-hover-overlay {
    opacity: 1;
  }
  
  .destination-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
    z-index: 2;
    transition: transform 0.3s ease;
  }
  
  .destination-card:hover .destination-content {
    transform: translateY(-5px);
  }
  
  .destination-travelers {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    padding: 4px 8px;
    border-radius: 9999px;
    display: inline-block;
  }
  
  .destination-name {
    font-size: 24px;
    font-weight: 700;
  }
  
  .destination-card-wide .destination-name {
    font-size: 30px;
  }
  
  .destination-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .destination-card:hover .destination-arrow {
    opacity: 1;
  }
  
  /* Hover color overlays */
  .destination-card[data-hover-color="red"]:hover .destination-hover-overlay {
    background: rgba(239, 68, 68, 0.2);
  }
  
  .destination-card[data-hover-color="orange"]:hover .destination-hover-overlay {
    background: rgba(249, 115, 22, 0.2);
  }
  
  .destination-card[data-hover-color="blue"]:hover .destination-hover-overlay {
    background: rgba(59, 130, 246, 0.2);
  }
  
  .destination-card[data-hover-color="green"]:hover .destination-hover-overlay {
    background: rgba(34, 197, 94, 0.2);
  }
  
  .destination-card[data-hover-color="yellow"]:hover .destination-hover-overlay {
    background: rgba(234, 179, 8, 0.2);
  }
  
  .destination-card[data-hover-color="purple"]:hover .destination-hover-overlay {
    background: rgba(168, 85, 247, 0.2);
  }
  
  @media (max-width: 640px) {
    .destinations-section {
      padding: 60px 16px;
    }
  
    .header {
      margin-bottom: 48px;
    }
  
    .destination-card {
      height: 280px;
    }
  
    .destination-name {
      font-size: 20px;
    }
  
    .destination-card-wide .destination-name {
      font-size: 24px;
    }
  }
  