:root {
    --gold: #D4A017;
    --gold-light: #F5C842;
    --gold-pale: #FFF8E7;
    --green: #1A6B3C;
    --green-mid: #2E9D5E;
    --green-light: #E8F5EE;
    --blue: #38BDF8;
    --blue-mid: #7DD3FC;
    --blue-light: #E0F2FE;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --text-dark: #1A1A2E;
    --text-mid: #4A4A6A;
    --text-light: #8A8AA0;
    --shadow: 0 8px 32px rgba(13,76,122,0.10);
    --shadow-lg: 0 20px 60px rgba(13,76,122,0.15);
    --radius: 16px;
    --radius-lg: 24px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212,160,23,0.15);
    padding: 0 max(5%, calc((100% - 1200px) / 2));
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    height: 90px;
    box-shadow: 0 2px 20px rgba(13,76,122,0.08);
    transition: all 0.3s;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
    flex: 0 0 auto;
  }
  
  
  .logo-globe {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--white), var(--off-white));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    animation: glow-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(26,107,60,0.4);
  }
  .logo-globe img {
    width: 74px; height: 64px;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
  }

  @keyframes glow-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(26,107,60,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(26,107,60,0); }
  }
  .nav-brand-wrap {
    display: flex; flex-direction: column; line-height: 1;
  }

  .nav-brand { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--blue); }
  .nav-brand span { color: var(--gold); }
  .nav-brand small { display: block; color: #000; font-size: 0.78rem; line-height: 1; }

  .nav-brand-small {
    font-size: 0.7rem; color: var(--text-dark); font-weight: 500;
  }
  .nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 32px); list-style: none; min-width: 0; }
  .nav-links a {
    text-decoration: none; color: var(--text-mid); font-size: 0.9rem; font-weight: 500;
    position: relative; padding-bottom: 4px; transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold); transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-links a:hover::after { width: 100%; }

  .nav-dropdown { position: relative; }
  .dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    display: none; min-width: 190px; padding: 12px;
    background: white; border-radius: 14px; box-shadow: var(--shadow);
    list-style: none; z-index: 1001;
  }
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu a {
    display: block; padding: 10px 12px; white-space: nowrap;
    border-radius: 10px;
  }
  .dropdown-menu a:hover { background: var(--gold-pale); }

  .nav-cta {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white !important; padding: 12px 22px !important;
    border-radius: 50px; font-size: 0.85rem !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 42px; line-height: 1;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { transform: translateY(-2px) !important; box-shadow: var(--shadow) !important; color: white !important; }

  .lang-selector select {
    width: 104px;
    min-height: 38px;
    padding: 8px 30px 8px 10px;
    border-radius: 8px;
    border: 1.5px solid rgba(13,76,122,0.15);
    background: var(--off-white);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .lang-selector select:hover {
    border-color: var(--blue-mid);
    background: white;
  }
  .lang-selector select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(56,189,248,0.12);
  }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
  .hamburger span { width: 25px; height: 2px; background: var(--blue); border-radius: 2px; transition: all 0.3s; }

  /* ===== PAGES ===== */
  .page { display: none; min-height: 100vh; padding-top: 70px; }
  .page.active { display: block; }

  /* ===== HERO ===== */
  .hero {
    min-height: calc(100vh - 70px);
    background: linear-gradient(135deg, #0D1B2A 0%, #0D4C7A 40%, #1A6B3C 80%, #D4A017 100%);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
  }

  .hero-bg {
    position: absolute; inset: 0; opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cellipse cx='400' cy='300' rx='380' ry='270' fill='none' stroke='white' stroke-width='1'/%3E%3Cellipse cx='400' cy='300' rx='280' ry='190' fill='none' stroke='white' stroke-width='1'/%3E%3Cellipse cx='400' cy='300' rx='180' ry='120' fill='none' stroke='white' stroke-width='1'/%3E%3Cline x1='20' y1='300' x2='780' y2='300' stroke='white' stroke-width='1'/%3E%3Cline x1='400' y1='30' x2='400' y2='570' stroke='white' stroke-width='1'/%3E%3Cellipse cx='400' cy='300' rx='380' ry='100' fill='none' stroke='white' stroke-width='0.5'/%3E%3Cellipse cx='400' cy='300' rx='380' ry='200' fill='none' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: cover; background-position: center;
    animation: slow-spin 30s linear infinite;
  }

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

  .hero-particles {
    position: absolute; inset: 0; overflow: hidden;
  }
  .particle {
    position: absolute; width: 4px; height: 4px;
    background: var(--gold-light); border-radius: 50%; opacity: 0.6;
    animation: float-up linear infinite;
  }

  @keyframes float-up {
    from { transform: translateY(100vh) translateX(0); opacity: 0.6; }
    to { transform: translateY(-100px) translateX(40px); opacity: 0; }
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 60px 5%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }

  .hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white; line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease both;
  }

  .hero-text h1 span { color: var(--gold-light); }

  .hero-text p {
    color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s 0.2s ease both;
  }

  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.4s ease both;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark); padding: 14px 30px; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 20px rgba(212,160,23,0.4);
    cursor: pointer; border: none;
    position: relative; z-index: 1;
  }
  .btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px rgba(212,160,23,0.5); }

  .btn-secondary {
    background: transparent; color: white; padding: 14px 30px; border-radius: 50px;
    font-weight: 500; font-size: 0.95rem; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.2s; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

  .hero-globe-wrap {
    display: flex; align-items: center; justify-content: center;
    animation: fadeInRight 1s 0.3s ease both;
  }

  .globe-visual {
    width: 320px; height: 320px;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.3), rgba(13,76,122,0.8), rgba(26,107,60,0.6));
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(212,160,23,0.3), inset -20px -20px 60px rgba(0,0,0,0.3);
    position: relative;
    animation: globe-rotate 8s linear infinite;
    overflow: hidden;
  }

  @keyframes globe-rotate {
    0%,100% { box-shadow: 0 0 60px rgba(212,160,23,0.2), inset -20px -20px 60px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 0 100px rgba(212,160,23,0.5), inset -20px -20px 60px rgba(0,0,0,0.3); }
  }

  .globe-visual::before {
    content: '🌍'; position: absolute; font-size: 160px;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.5));
  }

  .hero-badges {
    display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.6s ease both;
  }

  .badge {
    background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 12px;
    padding: 12px 18px; color: white; font-size: 0.85rem;
    display: flex; align-items: center; gap: 8px;
  }

  @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
    }
    .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    /* LEFT SIDE */
    .hero-text {
      flex: 1;
    }

    /* RIGHT SIDE WRAPPER */
    .hero-media-wrap {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;

      /* THIS CONTROLS THE HEIGHT RELATIVE TO HERO */
      height: 80%;
    }

    /* VIDEO ITSELF */
    
    .hero-video {
      width: 100%;
      height: 80vh;
      object-fit: cover;

      border-radius: 18px;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);

      display: block;
    }

  /* ===== SECTION COMMONS ===== */
  section { padding: 80px 5%; max-width: 1200px; margin: 0 auto; }

  .section-label {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--green-mid); margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--blue);
    margin-bottom: 16px; line-height: 1.2;
  }

  .section-title span { color: var(--gold); }

  .section-sub {
    color: var(--text-mid); font-size: 1.05rem; line-height: 1.7;
    max-width: 600px; margin-bottom: 48px;
  }

  /* ===== STATS STRIP ===== */
  .stats-strip {
    background: linear-gradient(135deg, var(--blue), var(--green));
    padding: 48px 5%;
  }

  .stats-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  }

  .stat-item { text-align: center; color: white; }
  .stat-num {
    font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900;
    color: var(--gold-light); line-height: 1;
  }
  .stat-label { font-size: 0.85rem; opacity: 0.8; margin-top: 6px; }

  /* ===== SERVICES ===== */
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
  }

  .service-card {
    background: white; border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow); border: 1px solid rgba(13,76,122,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
  }

  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--green-mid));
  }

  .service-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-lg); }

  .service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--green-light), var(--blue-light));
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 20px;
  }

  .service-card h3 { font-size: 1.2rem; color: var(--blue); margin-bottom: 12px; }
  .service-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; }

  .tourism-hero {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    background: url('../images/tourism-beach.svg') center/cover no-repeat;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .tourism-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,27,42,0.82), rgba(13,76,122,0.48), rgba(26,107,60,0.18));
  }

  .tourism-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 90px 5%;
  }

  .tourism-hero-content h1 {
    color: white;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.08;
    margin-bottom: 22px;
  }

  .tourism-hero-content p {
    color: rgba(255,255,255,0.86);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 34px;
  }

  .tourism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }

  .tourism-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(13,76,122,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .tourism-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }

  .tourism-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
  }

  .tourism-card div {
    padding: 28px;
  }

  .tourism-card h3 {
    color: var(--blue);
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .tourism-card p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.65;
  }

  /* ===== ABOUT ===== */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

  .about-visual {
    background: linear-gradient(135deg, var(--blue-light), var(--green-light));
    border-radius: var(--radius-lg); padding: 48px; text-align: center;
    position: relative; overflow: hidden;
  }

  .about-visual-emoji { font-size: 100px; display: block; margin-bottom: 20px; }

  .why-item {
    display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px;
  }

  .why-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  }

  .why-text h4 { color: var(--blue); font-size: 1rem; margin-bottom: 4px; }
  .why-text p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.5; }

  /* ===== PARTNERS ===== */
  .partners-bg { background: var(--off-white); padding: 80px 0; }
  .partners-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

  .partner-group { margin-bottom: 48px; }
  .partner-group-title {
    font-size: 1rem; font-weight: 600; color: var(--text-mid); 
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 20px; padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-pale);
  }

  .partners-grid { display: flex; flex-wrap: wrap; gap: 12px; }

  .partner-tag {
    background: white; border: 1.5px solid rgba(13,76,122,0.12);
    border-radius: 50px; padding: 10px 20px;
    font-size: 0.85rem; color: var(--text-mid); font-weight: 500;
    transition: all 0.2s; cursor: default;
    display: flex; align-items: center; gap: 8px;
  }

  .partner-tag:hover {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: white; border-color: transparent;
    transform: translateY(-2px); box-shadow: var(--shadow);
  }

  /* ===== TESTIMONIALS ===== */
  .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

  .testi-card {
    background: white; border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow); position: relative;
    transition: transform 0.3s;
  }

  .testi-card:hover { transform: translateY(-6px); }

  .testi-quote {
    font-size: 3rem; color: var(--gold); line-height: 1;
    font-family: 'Playfair Display', serif; margin-bottom: 16px;
  }

  .testi-text { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }

  .testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }

  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1.1rem;
  }
  .testi-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
  .testi-role { font-size: 0.8rem; color: var(--text-light); }

  /* ===== CONTACT ===== */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

  .contact-form {
    background: white; border-radius: var(--radius-lg); padding: 40px;
    box-shadow: var(--shadow);
  }

  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }

  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 16px;
    border: 1.5px solid rgba(13,76,122,0.15); border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text-dark);
    background: var(--off-white); transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }

  .form-group input:focus, .form-group textarea:focus {
    border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(26,124,184,0.12);
  }

  .form-group textarea { resize: vertical; min-height: 120px; }

  .form-error {
    display: block; font-size: 0.8rem; color: #f44336; margin-top: 6px;
    font-weight: 500;
  }

  .form-group input.error, .form-group textarea.error, .form-group select.error {
    border-color: #f44336 !important; background: rgba(244,67,54,0.05) !important;
  }

  .form-group input.error:focus, .form-group textarea.error:focus, .form-group select.error:focus {
    box-shadow: 0 0 0 3px rgba(244,67,54,0.12) !important;
  }

  .contact-info { display: flex; flex-direction: column; gap: 24px; }

  .info-card {
    background: white; border-radius: var(--radius); padding: 24px;
    box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start;
    transition: transform 0.2s;
  }

  .info-card:hover { transform: translateY(-3px); }

  .info-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-light), var(--green-light));
    border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px;
  }

  .info-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
  .info-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; margin-top: 4px; }
  .info-value a { color: var(--blue); text-decoration: none; }

  .map-placeholder {
    background: linear-gradient(135deg, var(--blue-light), var(--green-light));
    border-radius: var(--radius); height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; flex-direction: column; gap: 8px;
    color: var(--blue); font-size: 1rem; text-align: center;
  }

  .wa-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white; padding: 14px 28px; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    margin-top: 12px;
    position: relative; z-index: 1;
  }
  .wa-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
  .whatsapp-icon {
    width: 1.18em;
    height: 1.18em;
    display: inline-block;
    flex: 0 0 auto;
    fill: currentColor;
  }
  .whatsapp-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
  }
  .wa-btn .whatsapp-icon,
  .btn-secondary .whatsapp-icon,
  .footer-links .whatsapp-icon {
    margin-right: 2px;
  }

  /* ===== TERMS ===== */
  .terms-content {
    background: white; border-radius: var(--radius-lg); padding: 48px;
    box-shadow: var(--shadow); max-width: 800px; margin: 0 auto;
  }

  .terms-section { margin-bottom: 36px; }
  .terms-section h3 {
    font-size: 1.15rem; color: var(--blue); margin-bottom: 12px;
    padding-bottom: 8px; border-bottom: 2px solid var(--gold-pale);
    display: flex; align-items: center; gap: 10px;
  }
  .terms-section p, .terms-section li {
    color: var(--text-mid); font-size: 0.9rem; line-height: 1.8;
  }
  .terms-section ul { padding-left: 20px; }
  .terms-section li { margin-bottom: 6px; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 5% 32px;
  }

  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand { margin-bottom: 16px; }
  .footer-brand .nav-brand { color: white; font-size: 1.2rem; }
  .footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }

  .social-links { display: flex; gap: 12px; align-items: center; }
  .social-link {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.1); display: inline-flex; align-items: center;
    justify-content: center; color: white; text-decoration: none;
    transition: filter 0.2s, transform 0.2s;
  }
  .social-link svg { width: 20px; height: 20px; display: block; fill: currentColor; }
  .social-link[aria-label="WhatsApp"] { background: #25D366; }
  .social-link[aria-label="Email"] { background: #EA4335; }
  .social-link[aria-label="Instagram"] {
    background: radial-gradient(circle at 30% 110%, #FEDA75 0 22%, #FA7E1E 35%, #D62976 58%, #962FBF 78%, #4F5BD5 100%);
  }
  .social-link[aria-label="Facebook"] { background: #1877F2; }
  .social-link[aria-label="Telegram"] { background: #229ED9; }
  .social-link[aria-label="X"] { background: #000000; }
  .social-link[aria-label="TikTok"] { background: #010101; }
  .social-link:hover { filter: brightness(1.12); transform: translateY(-2px); }

  .footer-col h4 { color: white; font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; letter-spacing: 1px; text-transform: uppercase; }

  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    text-decoration: none; color: rgba(255,255,255,0.6); font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold-light); }

  /* ===== FAQ ===== */
  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 0; cursor: pointer;
  }

  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 500;
    gap: 12px;
  }

  .faq-toggle { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }

  .faq-a {
    font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6;
    max-height: 0; overflow: hidden; transition: max-height 0.4s, padding 0.3s;
    padding-top: 0;
  }

  .faq-item.open .faq-a { max-height: 120px; padding-top: 10px; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }

  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
  }

  .footer-bottom p { font-size: 0.82rem; }
  .footer-bottom a { color: var(--gold-light); text-decoration: none; }

  /* ===== FLOATING WHATSAPP ===== */
  .float-wa {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none;
    box-shadow: 0 4px 24px rgba(37,211,102,0.5);
    animation: bounce-wa 2s ease-in-out infinite;
    transition: transform 0.2s;
  }
  .float-wa .whatsapp-icon { width: 30px; height: 30px; }
  .float-wa:hover { transform: scale(1.15); animation: none; }

  @keyframes bounce-wa {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  /* ===== CTA BANNER ===== */
  .cta-banner {
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: var(--radius-lg); padding: 56px; text-align: center;
    position: relative; overflow: hidden; margin: 0 5% 80px;
    max-width: 1100px; margin-left: auto; margin-right: auto;
  }

  .cta-banner::before {
    content: '🌍'; position: absolute; font-size: 300px; opacity: 0.05;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none;
  }

  .cta-banner h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
  .cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1rem; }
  .cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ===== SCROLL ANIMATIONS ===== */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }


  @media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-media-wrap {
    width: 100%;
    height: auto;
  }

  .hero-video {
    width: 100%;
    height: auto;
    max-height: 400px;
  }
}

  /* ===== MOBILE ===== */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
      display: flex; flex-direction: column;
      position: absolute; top: 70px; right: 0;
      width: min(82vw, 320px);
      align-items: flex-end;
      text-align: right;
      background: white; padding: 24px 5%;
      box-shadow: var(--shadow); gap: 20px;
      z-index: 999;
      border-radius: 0 0 0 22px;
    }
    .lang-selector,
    .lang-selector select {
      width: 100%;
    }
    .dropdown-menu {
      position: static; transform: none; display: block;
      box-shadow: none; padding: 6px 0 0; background: transparent;
      text-align: right;
    }
    .hamburger { display: flex; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-globe-wrap { order: -1; }
    .globe-visual { width: 200px; height: 200px; }
    .globe-visual::before { font-size: 100px; }
    .hero-btns { justify-content: center; }
    .hero-badges { justify-content: center; }
    .tourism-hero-content { text-align: center; margin: 0 auto; }
    .stats-inner { grid-template-columns: repeat(2,1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-text h1 { font-size: 2.2rem; }
  }


  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2,1fr); }
    section { padding: 60px 4%; }
    .terms-content { padding: 28px; }
    .cta-banner { padding: 40px 24px; }
  }

  /* ============================================================
   PARTNERS PRODUCT CATALOG — APPEND TO styles.css
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.pp-hero {
  position: relative;
  background: linear-gradient(135deg, #0D1B2A 0%, #0D4C7A 50%, #1A6B3C 100%);
  padding: 80px 5% 60px;
  overflow: hidden;
  text-align: center;
}

.pp-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 400'%3E%3Cellipse cx='300' cy='200' rx='280' ry='180' fill='none' stroke='white' stroke-width='1'/%3E%3Cellipse cx='300' cy='200' rx='180' ry='110' fill='none' stroke='white' stroke-width='1'/%3E%3Cline x1='20' y1='200' x2='580' y2='200' stroke='white' stroke-width='0.8'/%3E%3Cline x1='300' y1='20' x2='300' y2='380' stroke='white' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: cover;
}

.pp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.pp-hero .section-label { color: var(--gold-light); }
.pp-hero .section-title { color: white; margin-bottom: 16px; }
.pp-hero .section-sub { color: rgba(255,255,255,0.78); max-width: 100%; margin-bottom: 0; }

/* ── Controls Wrapper ──────────────────────────────────────── */
.pp-controls-wrap {
  background: white;
  border-bottom: 1.5px solid rgba(13,76,122,0.08);
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(13,76,122,0.07);
}

.pp-controls {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 5%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Search Bar ─────────────────────────────────────────────── */
.pp-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.pp-search-icon {
  position: absolute;
  left: 16px;
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 1;
}

.pp-search {
  width: 100%;
  padding: 14px 48px 14px 46px;
  border: 2px solid rgba(13,76,122,0.15);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.pp-search:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 4px rgba(46,157,94,0.12);
  background: white;
}

.pp-search-clear {
  position: absolute;
  right: 16px;
  background: rgba(13,76,122,0.1);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.75rem;
  cursor: pointer;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.pp-search-clear:hover { background: rgba(13,76,122,0.2); }

/* ── Filters Row ───────────────────────────────────────────── */
.pp-filters-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Tabs ───────────────────────────────────────────────────── */
.pp-tabs {
  display: flex;
  gap: 6px;
  background: var(--off-white);
  border-radius: 50px;
  padding: 4px;
  border: 1.5px solid rgba(13,76,122,0.1);
  flex-shrink: 0;
}

.pp-tab {
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.pp-tab:hover { color: var(--green); }

.pp-tab.active {
  background: linear-gradient(135deg, var(--green), #25A062);
  color: white;
  box-shadow: 0 3px 12px rgba(26,107,60,0.3);
}

/* ── Category Dropdown ─────────────────────────────────────── */
.pp-category-wrap {
  margin-left: auto;
}

.pp-category {
  padding: 9px 36px 9px 16px;
  border: 1.5px solid rgba(13,76,122,0.15);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--off-white);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234A4A6A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 200px;
}

.pp-category:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,157,94,0.12);
}

/* ── Product Grid ───────────────────────────────────────────── */
.pp-grid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 5%;
  min-height: 300px;
}

.pp-more-partners {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 30px;
  text-align: center;
}

.pp-more-partners p {
  color: var(--text-mid);
  font-size: 1rem;
  font-style: italic;
  margin: 0;
  font-weight: 500;
}

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

/* ── Product Card ───────────────────────────────────────────── */
.pp-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,76,122,0.08);
  border: 1.5px solid rgba(13,76,122,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 485px;
}

.pp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,76,122,0.14);
  border-color: rgba(26,107,60,0.2);
}

.pp-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 285px;
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  flex-shrink: 0;
}

.pp-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.pp-card:hover .pp-card-img-wrap img {
  transform: scale(1.06);
}

.pp-card-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.pp-card-type-badge.import {
  background: rgba(56,189,248,0.18);
  color: #0369a1;
  border: 1px solid rgba(56,189,248,0.4);
}

.pp-card-type-badge.export {
  background: rgba(26,107,60,0.18);
  color: var(--green);
  border: 1px solid rgba(26,107,60,0.3);
}

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

.pp-card-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.pp-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pp-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pp-card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.pp-card-meta-item {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pp-card-meta-item strong {
  color: var(--text-mid);
  font-weight: 600;
}

.pp-card-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), #25A062);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: auto;
  letter-spacing: 0.3px;
}

.pp-card-btn:hover {
  background: linear-gradient(135deg, #155b32, var(--green));
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,107,60,0.3);
}

/* ── Empty State ────────────────────────────────────────────── */
.pp-empty {
  text-align: center;
  padding: 80px 20px;
}

.pp-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.pp-empty p {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* ── Footer CTA ─────────────────────────────────────────────── */
.pp-cta-wrap {
  padding: 0 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.pp-cta {
  background: linear-gradient(135deg, #0D1B2A, #0D4C7A 50%, #1A6B3C);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pp-cta::before {
  content: '🌍';
  position: absolute;
  font-size: 240px;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pp-cta-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.pp-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 28px;
}

/* ── Modal ──────────────────────────────────────────────────── */
.partners-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.partners-modal[hidden] { display: none; }

.partners-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.72);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.partners-modal-content {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(13,27,42,0.4);
  animation: modal-in 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.partners-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: white;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.partners-modal-close:hover {
  background: rgba(0,0,0,0.6);
  transform: scale(1.1);
}

.partners-modal-img-wrap {
  position: relative;
  height: 260px;
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.partners-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partners-modal-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.partners-modal-badge.import {
  background: rgba(56,189,248,0.2);
  color: #0369a1;
  border: 1px solid rgba(56,189,248,0.5);
}

.partners-modal-badge.export {
  background: rgba(26,107,60,0.2);
  color: var(--green);
  border: 1px solid rgba(26,107,60,0.4);
}

.partners-modal-body {
  padding: 28px 32px 32px;
}

.partners-modal-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.partners-modal-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.partners-modal-body > p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.partners-modal-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(13,76,122,0.08);
}

.partners-modal-meta li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}

.pm-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.partners-modal-meta li strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 2px;
}

.partners-modal-meta li span {
  color: var(--text-dark);
  font-weight: 500;
}

/* ── Card entrance animation ────────────────────────────────── */
.pp-card {
  animation: card-appear 0.4s ease both;
}

@keyframes card-appear {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pp-filters-row { flex-direction: column; align-items: stretch; }
  .pp-category-wrap { margin-left: 0; }
  .pp-category { width: 100%; min-width: unset; }
  .pp-tabs { justify-content: center; }
  .pp-cta { padding: 40px 24px; }
}

@media (max-width: 600px) {
  .pp-tab { padding: 7px 14px; font-size: 0.8rem; }
  .partners-modal-content { border-radius: 20px 20px 0 0; max-height: 92vh; }
  .partners-modal { align-items: flex-end; padding: 0; }
  .partners-modal-body { padding: 24px; }
  .pp-grid { grid-template-columns: 1fr; }
  .pp-card { min-height: 455px; }
  .pp-card-img-wrap { height: 260px; }
  .pp-card-body { padding: 18px; }
}
