 /* === RESET & BASE === */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #f4f7fb;
      color: #1a2b3c;
      line-height: 1.5;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 32px;
    }

    h1, h2, h3 {
      font-weight: 700;
      line-height: 1.2;
    }

    /* === COLOR PALETTE === */
    :root {
      --primary-teal: #067F83;
      --primary-teal-dark: #055e61;
      --accent-orange: #E98446;
      --accent-orange-dark: #d16729;
      --bg-light: #f4f7fb;
      --white: #ffffff;
      --text-dark: #1a2b3c;
      --text-muted: #3f5468;
      --border-light: #cbe7e7;
    }

    /* === HEADER === */
    .site-header {
      background: var(--white);
      box-shadow: 0 6px 18px rgba(6,127,131,0.06);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 2px solid rgba(6,127,131,0.15);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 30px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .logo-large {
      font-size: 2rem;
      font-weight: 800;
      background: linear-gradient(145deg, var(--primary-teal), var(--primary-teal-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.02em;
      line-height: 1.2;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-large i {
      color: var(--accent-orange);
      -webkit-text-fill-color: var(--accent-orange);
      background: none;
      font-size: 1.8rem;
    }

    .logo-large span {
      font-size: 0.85rem;
      display: block;
      font-weight: 400;
      color: #4a5a72;
      -webkit-text-fill-color: #4a5a72;
      background: none;
      letter-spacing: 0.3px;
      margin-top: 2px;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      font-weight: 500;
      align-items: center;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: #1e293b;
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: var(--primary-teal);
    }

    .user-menu {
      display: flex;
      gap: 0.8rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-outline {
      border: 1px solid #cbd5e1;
      padding: 8px 20px;
      border-radius: 40px;
      font-weight: 500;
      background: white;
      transition: 0.2s;
      text-decoration: none;
      color: #1e293b;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }

    .btn-outline:hover {
      background: #f1f5f9;
      border-color: #94a3b8;
    }

    .btn-solid {
      background: var(--accent-orange);
      color: white;
      padding: 8px 22px;
      border-radius: 40px;
      font-weight: 600;
      border: none;
      transition: 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      box-shadow: 0 8px 14px -6px rgba(233,132,70,0.3);
    }

    .btn-solid:hover {
      background: var(--accent-orange-dark);
    }

    /* === HERO SEARCH === */
    .hero-search {
      background: linear-gradient(135deg, rgba(6,127,131,0.9) 0%, rgba(6,95,99,0.95) 100%), url('https://images.pexels.com/photos/912391/pexels-photo-912391.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
      background-size: cover;
      background-position: center;
      border-radius: 48px;
      margin: 2rem 0 1.5rem;
      padding: 3rem 2.5rem;
      color: white;
      box-shadow: 0 30px 40px -15px rgba(6,127,131,0.4);
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
    }

    .hero-sub {
      font-size: 1.3rem;
      opacity: 0.9;
      margin-bottom: 2rem;
    }

    .flight-tabs {
      display: flex;
      gap: 2rem;
      margin-bottom: 1.8rem;
      border-bottom: 1px solid rgba(255,255,255,0.2);
      padding-bottom: 0.8rem;
    }

    .flight-tabs span {
      font-weight: 600;
      font-size: 1.2rem;
      cursor: default;
      border-bottom: 3px solid var(--accent-orange);
      padding-bottom: 0.8rem;
    }

    .flight-tabs span.inactive {
      opacity: 0.7;
      border-bottom: 3px solid transparent;
    }

    /* Manual search field (hidden by default, but kept as fallback) */
    .search-grid {
      display: grid;
      grid-template-columns: 2fr 2fr 1.5fr 1fr auto;
      gap: 1rem;
      background: white;
      border-radius: 80px;
      padding: 0.6rem;
      margin-top: 0.5rem;
    }

    .search-field {
      display: flex;
      align-items: center;
      background: #f1f5f9;
      border-radius: 60px;
      padding: 0.8rem 1.5rem;
      color: #0b1e33;
    }

    .search-field i {
      color: var(--primary-teal);
      margin-right: 10px;
      font-size: 1.2rem;
    }

    .search-field input {
      border: none;
      background: transparent;
      font-weight: 500;
      width: 100%;
      outline: none;
      font-size: 1rem;
    }

    .search-field input::placeholder {
      color: #475569;
      font-weight: 400;
    }

    .search-btn {
      background: var(--accent-orange);
      border: none;
      border-radius: 60px;
      padding: 0 2.2rem;
      font-weight: 700;
      font-size: 1.1rem;
      color: white;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: 0.2s;
    }

    .search-btn:hover {
      background: var(--accent-orange-dark);
    }

    .widget-embed {
      margin-top: 2rem;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      border-radius: 40px;
      padding: 1.5rem;
      border: 1px solid rgba(255,255,255,0.15);
    }

    .pill-keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin: 1.5rem 0 0;
    }

    .pill-keywords span {
      background: rgba(255,255,255,0.12);
      padding: 0.4rem 1.2rem;
      border-radius: 60px;
      font-size: 0.95rem;
      border: 1px solid rgba(255,255,255,0.2);
    }

    /* === DEALS GRID === */
    .section-title {
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--primary-teal);
      margin: 2.5rem 0 1.5rem;
      letter-spacing: -0.02em;
    }

    .deals-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .deal-card {
      background: white;
      border-radius: 28px;
      padding: 1.5rem;
      box-shadow: 0 12px 24px -12px rgba(6,127,131,0.08);
      transition: 0.2s;
      border: 1px solid #e0f0f0;
      position: relative;
      overflow: hidden;
    }

    .deal-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 28px -10px rgba(6,127,131,0.2);
      border-color: var(--primary-teal);
    }

    .deal-card img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      border-radius: 20px;
      margin-bottom: 1rem;
    }

    .route {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
      color: #1a2b3c;
    }

    .route i {
      color: var(--accent-orange);
      font-size: 1.2rem;
      margin-right: 4px;
    }

    .price {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary-teal);
      margin: 0.5rem 0;
    }

    .price small {
      font-size: 1rem;
      font-weight: 400;
      color: #5f6c80;
    }

    .deal-meta {
      color: #3f5468;
      font-size: 0.95rem;
      border-top: 1px dashed #c2e0e0;
      padding-top: 0.8rem;
      margin-top: 0.5rem;
    }

    .btn-affiliate {
      display: inline-block;
      background: var(--accent-orange);
      color: white;
      padding: 8px 18px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      margin-top: 0.8rem;
      transition: background 0.2s;
      border: none;
      cursor: pointer;
      width: 100%;
      text-align: center;
    }

    .btn-affiliate:hover {
      background: var(--accent-orange-dark);
    }

    /* === ABOUT SECTION === */
    .about-premium {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      background: white;
      border-radius: 48px;
      padding: 2.5rem;
      margin: 3rem 0;
      align-items: center;
      border: 1px solid #cbe7e7;
    }

    .about-image {
      border-radius: 32px;
      overflow: hidden;
      height: 100%;
      min-height: 300px;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .feature-badge-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .feature-item i {
      color: var(--accent-orange);
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
    }

    .feature-item h4 {
      font-size: 1.3rem;
      color: var(--primary-teal);
    }

   /* === GALLERY === */

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.gallery-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 18px rgba(6,127,131,0.08);
  border: 2px solid transparent;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.gallery-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(6,127,131,0.15);
}

.gallery-label {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.deal-meta {
  font-size: 0.9rem;
  color: #6b6b6b;
}

.gallery-card .btn-affiliate {
  margin-top: auto;
  text-align: center;
}

    /* === POPULAR ROUTES === */
    .routes-panel {
      background: white;
      border-radius: 48px;
      padding: 2rem;
      margin: 3rem 0;
      box-shadow: 0 12px 28px rgba(6,127,131,0.04);
      border: 1px solid #d4f0f0;
    }

    .routes-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-teal);
      margin-bottom: 1.5rem;
    }

    .highlight-text {
      background: #e5f3f0;
      color: #067F83;
      padding: 0.3rem 1rem;
      border-radius: 40px;
      font-weight: 500;
      border: 1px solid #b6e0de;
    }

    /* === TESTIMONIALS === */
    .testimonial-section {
      background: #ffffff;
      border-radius: 48px;
      padding: 2.5rem;
      margin: 3rem 0;
      border: 1px solid #cbe7e7;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .testi-card {
      background: #f6fcfc;
      border-radius: 32px;
      padding: 1.8rem;
      border: 1px solid #d2f0f0;
    }

    .testi-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
      border: 3px solid var(--accent-orange);
    }

    .testi-text {
      font-size: 1.05rem;
      color: #1e2e44;
      margin-bottom: 1.5rem;
    }

    .stars i {
      color: var(--accent-orange);
      margin-right: 2px;
    }

    .testi-author {
      font-weight: 600;
      color: var(--primary-teal);
    }

    /* === FOOTER === */
    .site-footer {
      background: #054e51;
      color: #e1f3f3;
      padding: 4rem 0 2rem;
      border-radius: 48px 48px 0 0;
      margin-top: 4rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
    }

    .footer-col h4 {
      color: white;
      margin-bottom: 1.2rem;
      font-size: 1.2rem;
      border-left: 4px solid var(--accent-orange);
      padding-left: 0.8rem;
    }

    .footer-col a, .footer-col p {
      color: #c2e6e6;
      line-height: 2;
      display: block;
      text-decoration: none;
    }

    .footer-col a:hover {
      color: var(--accent-orange);
    }

    .social-icons i {
      font-size: 1.5rem;
      margin-right: 1rem;
      color: #c2e6e6;
      transition: color 0.2s;
    }

    .social-icons i:hover {
      color: var(--accent-orange);
    }

    .copyright {
      border-top: 1px solid #147a7e;
      margin-top: 3rem;
      padding-top: 2rem;
      text-align: center;
      color: #b2dfdf;
    }
    
    
    /*about*/
    .about-card { background:white; border-radius:48px; padding:3rem; box-shadow:0 20px 30px -10px rgba(6,127,131,0.1); border:1px solid #cbe7e7; margin:2rem 0; }
    .about-card p { font-size:1.2rem; line-height:1.6; margin:1.5rem 0; color:#2d3e55; }
        .btn-home { display:inline-block; background:#E98446; color:white; padding:10px 28px; border-radius:40px; font-weight:600; text-decoration:none; margin:1rem 0 2rem; }


/*testimonial-section*/

    .page-title { font-size:3rem; color:#067F83; margin:2rem 0 1rem; }
    .testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin:3rem 0; }
    .testi-card { background:white; border-radius:32px; padding:2rem; border:1px solid #d2f0f0; box-shadow:0 8px 18px rgba(6,127,131,0.05); }
    .testi-img { width:70px; height:70px; border-radius:50%; object-fit:cover; border:3px solid #E98446; margin-bottom:1rem; }
    .stars i { color:#E98446; }
    .testi-author { font-weight:600; color:#067F83; margin-top:1rem; }
    .btn-home { display:inline-block; background:#E98446; color:white; padding:10px 28px; border-radius:40px; font-weight:600; text-decoration:none; margin:1rem 0 2rem; }



/*contact*/
.page-title {
  font-size: 3rem;
  color: #067F83;
  margin: 2rem 0 1rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-info, .contact-form {
  background: #ffffff;
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid #cbe7e7;
  box-shadow: 0 6px 15px rgba(6,127,131,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info:hover, .contact-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(6,127,131,0.1);
}

.contact-info p {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
}

.contact-info i {
  color: #E98446;
  font-size: 16px;      /* Slightly larger for better visibility */
  min-width: 28px;        /* Fix width for alignment */
  margin: 5px;     /* Space between icon and text */
}
.contact-info h2, .contact-form h2 {
  color: #067F83;
  margin-bottom: 1rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e0f0f0;
  border-radius: 30px;
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
}

input:focus, textarea:focus {
  border-color: #067F83;
  box-shadow: 0 0 0 3px rgba(6,127,131,0.1);
  outline: none;
}

.btn-send {
  background: #E98446;
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 60px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s, transform 0.2s;
}

.btn-send:hover {
  background: #ffb86b;
  transform: translateY(-2px);
}

.btn-home {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #067F83;
  color: white;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.btn-home:hover {
  background: #0a9fae;
  transform: translateY(-2px);
}
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.gallery-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(6, 127, 131, 0.1);
  border: 2px solid transparent;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
}

.gallery-card:hover {
  border-color: #E98446;
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(6, 127, 131, 0.2);
}

.gallery-card a {
  text-decoration: none;
  color: #067F83;
  font-weight: 600;
  font-size: 1.3rem;
  display: block;
}

.gallery-card a:hover {
  color: #E98446;
}


@media (max-width: 768px) {
  .grid-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
}
    /* === RESPONSIVE === */
    @media (max-width: 1100px) {
      .search-grid {
        grid-template-columns: 1fr;
        border-radius: 40px;
      }
      .search-field {
        width: 100%;
      }
      .search-btn {
        justify-content: center;
        padding: 1.2rem;
      }
      .deals-grid, .testi-grid, .footer-grid, .grid-gallery {
        grid-template-columns: repeat(2, 1fr);
      }
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
      }
      .nav-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 700px) {
      .deals-grid, .testi-grid, .footer-grid, .grid-gallery {
        grid-template-columns: 1fr;
      }
      .hero-title {
        font-size: 2rem;
      }
      .about-premium {
        grid-template-columns: 1fr;
      }
    }