/* RESET & GLOBAL */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #fefcf5;
      font-family: system-ui, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
      color: #1e2a32;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    /* TYPOGRAPHY & LINKS */
    h1, h2, h3 {
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: clamp(2.2rem, 8vw, 4rem);
      margin-bottom: 1rem;
    }

    h2 {
      font-size: clamp(1.8rem, 6vw, 2.6rem);
      margin-bottom: 1rem;
      border-left: 6px solid #e67e22;
      padding-left: 1rem;
    }

    h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    a {
      text-decoration: none;
      color: #e67e22;
      transition: color 0.2s ease;
    }

    a:hover {
      color: #b85e0a;
      text-decoration: underline;
    }

    /* LAYOUT UTILITIES */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    section {
      padding: 64px 0;
    }

    /* HEADER / NAVIGATION (modern, clean, semantic) */
    .site-header {
      background: #ffffffdd;
      backdrop-filter: blur(10px);
      background-color: rgba(255, 255, 245, 0.95);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    }

    .nav-bar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #1e6f5c, #289672);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .logo span {
      color: #e67e22;
      background: none;
      -webkit-background-clip: unset;
      background-clip: unset;
    }

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

    .nav-links a {
      font-weight: 500;
      color: #2c3e2f;
      font-size: 1rem;
      transition: all 0.2s;
    }

    .nav-links a:hover {
      color: #e67e22;
      text-decoration: none;
      border-bottom: 2px solid #e67e22;
      padding-bottom: 4px;
    }

    
    .hero {
      
      background-size: cover;
      min-height: 25vh;
      display: flex;
      align-items: center;
      text-align: center;
      color: white;
      border-bottom: 1px solid rgba(255,255,240,0.2);
  
    }

    .hero-content {
      max-width: 880px;
      margin: 0 auto;
      background: rgba(0, 0, 0, 0.35);
      backdrop-filter: brightness(1) blur(2px);
      padding: 2rem;
      border-radius: 48px;
    }

    .hero p {
      font-size: clamp(1.1rem, 4vw, 1.4rem);
      margin-bottom: 2rem;
      font-weight: 400;
    }

    .btn {
      display: inline-block;
      background-color: #e67e22;
      color: white;
      font-weight: 600;
      padding: 0.9rem 2.2rem;
      border-radius: 60px;
      transition: all 0.25s;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    }

    .btn:hover {
      background-color: #cf711f;
      transform: scale(1.02);
      text-decoration: none;
      color: white;
      box-shadow: 0 12px 22px rgba(0,0,0,0.15);
    }

    /* INTRO TEXT */
    .intro-text {
      text-align: center;
      max-width: 860px;
      margin: 0 auto 2rem auto;
      font-size: 1.2rem;
      color: #2c3e2f;
    }

    /* CARD GRID (modern, fully responsive) */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .destination-card {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      height: 100%;
      border: 1px solid #f0e7db;
    }

    .destination-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 36px rgba(0, 0, 0, 0.12);
    }

    .card-img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .destination-card:hover .card-img {
      transform: scale(1.02);
    }

    .card-content {
      padding: 1.5rem;
      flex: 1;
    }

    .location-badge {
      display: inline-block;
      background: #e67e2210;
      color: #b85e0a;
      border-radius: 40px;
      padding: 0.2rem 0.9rem;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 0.8rem;
      letter-spacing: 0.5px;
    }

    .card-content p {
      margin: 0.75rem 0 1rem;
      color: #3e5a5f;
    }

    .read-more {
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* STATS / HIGHLIGHT SECTION */
    .highlights {
      background: linear-gradient(115deg, #f9f3e7 0%, #fef9ef 100%);
      border-radius: 48px;
      margin: 2rem 0;
    }

    .stats-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      text-align: center;
      padding: 2rem 1rem;
    }

    .stat-item {
      flex: 1;
      min-width: 140px;
    }

    .stat-number {
      font-size: 2.8rem;
      font-weight: 800;
      color: #e67e22;
      line-height: 1;
    }

    /* FOOTER (semantic, SEO friendly) */
    .site-footer {
      background-color: #162b2c;
      color: #d9e2e1;
      padding: 48px 0 24px;
      margin-top: 2rem;
    }

    .footer-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
    }

    .footer-col {
      flex: 1;
      min-width: 180px;
    }

    .footer-col h4 {
      color: #f0bc7a;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .footer-col p, .footer-col a {
      color: #cbdcd9;
      font-size: 0.9rem;
    }

    .footer-col a:hover {
      color: #f0bc7a;
    }

    .copyright {
      text-align: center;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid #2f4b4b;
      font-size: 0.8rem;
    }

    /* RESPONSIVE UTILITIES */
    @media (max-width: 768px) {
      section {
        padding: 48px 0;
      }
      .nav-bar {
        flex-direction: column;
        gap: 1rem;
      }
      .nav-links {
        gap: 1rem;
        justify-content: center;
      }
      .hero-content {
        padding: 1.2rem;
      }
      .btn {
        padding: 0.7rem 1.6rem;
      }
      .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 16px;
      }
      .card-content {
        padding: 1.25rem;
      }
      h2 {
        border-left-width: 4px;
      }
    }

    /* skip link for accessibility & SEO */
    .skip-link {
      position: absolute;
      top: -40px;
      left: 0;
      background: #e67e22;
      color: white;
      padding: 8px;
      z-index: 1000;
    }
    .skip-link:focus {
      top: 0;
    }