* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #0a66c2;
  --primary-dark: #064c95;
  --accent: #ff7a00;
  --accent-dark: #e56a00;
  --dark: #0b1d39;
  --gray: #5b6b80;
  --light: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(11,29,57,0.08);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top bar */
.topbar {
  background: var(--dark);
  color: #cfd8e6;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar a { color: #cfd8e6; margin-left: 15px; }
.topbar a:hover { color: var(--accent); }
.topbar i { margin-right: 6px; color: var(--accent); }

/* Header */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--accent); }
.logo i { transform: rotate(-30deg); }
.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav ul a {
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s;
}
.nav ul a:hover, .nav ul a.active { color: var(--primary); }
.call-btn {
  background: var(--accent);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(255,122,0,0.35);
  transition: 0.3s;
}
.call-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; }

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(10,102,194,0.85), rgba(11,29,57,0.85)),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: white;
  padding: 80px 0 120px;
  text-align: center;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}
.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

/* Page banner (inner pages) */
.page-banner {
  background: linear-gradient(135deg, rgba(10,102,194,0.9), rgba(11,29,57,0.9)),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: white;
  padding: 80px 0 100px;
  text-align: center;
}
.page-banner h1 { font-size: 42px; margin-bottom: 10px; font-weight: 700; }
.page-banner p { font-size: 17px; opacity: 0.95; max-width: 700px; margin: 0 auto; }

/* Booking Form */
.booking-form {
  background: white;
  color: var(--dark);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  max-width: 1100px;
  margin: -60px auto 60px;
  position: relative;
  z-index: 10;
}
.trip-tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.trip-tabs label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 500;
}
.trip-tabs input { accent-color: var(--primary); }
.form-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}
.form-group {
  background: var(--light);
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #e1e7ef;
}
.form-group label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}
.form-group input, .form-group select, .form-group textarea {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  outline: none;
  font-family: inherit;
}
.search-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}
.search-btn:hover { background: var(--accent-dark); }

/* Sections */
section { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 36px; font-weight: 700; margin-bottom: 10px; }
.section-title p { color: var(--gray); font-size: 16px; }
.section-title h2 span { color: var(--primary); }

/* Service info row */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.info-row img { border-radius: 14px; box-shadow: var(--shadow); width: 100%; height: 400px; object-fit: cover; }
.info-row h2 { font-size: 32px; margin-bottom: 18px; }
.info-row h2 span { color: var(--primary); }
.info-row p { color: var(--gray); margin-bottom: 14px; }
.info-row .tick-list { list-style: none; margin: 18px 0; }
.info-row .tick-list li {
  padding: 8px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--dark);
  font-weight: 500;
}
.info-row .tick-list i { color: var(--accent); margin-top: 5px; }

/* Features */
.features { background: var(--light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.feature-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 14px; }

/* Destinations */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.dest-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.dest-card:hover { transform: translateY(-6px); }
.dest-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.4s;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: white;
}
.dest-info h3 { font-size: 20px; margin-bottom: 4px; }
.dest-info .price { color: var(--accent); font-weight: 700; font-size: 18px; }
.dest-info .from { font-size: 13px; opacity: 0.85; }

/* Route cards (flights page) */
.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.route-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: 0.3s;
}
.route-card:hover { transform: translateY(-4px); }
.route-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
}
.route-header i { color: var(--primary); margin: 0 8px; }
.route-badge {
  background: var(--light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}
.route-body {
  color: var(--gray);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.route-price strong { color: var(--primary); font-size: 18px; }
.book-now {
  background: var(--primary);
  color: white;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}
.book-now:hover { background: var(--primary-dark); }

/* CTA Banner */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
  padding: 60px 0;
}
.cta h2 { font-size: 34px; margin-bottom: 15px; }
.cta p { font-size: 18px; margin-bottom: 25px; opacity: 0.95; }
.cta-btn {
  background: var(--accent);
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(255,122,0,0.4);
}
.cta-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }
.cta-btn i { margin-right: 8px; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.testimonial {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}
.stars { color: #f5b301; margin-bottom: 12px; }
.testimonial p { color: var(--gray); font-style: italic; margin-bottom: 18px; }
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.testimonial-user strong { display: block; }
.testimonial-user small { color: var(--gray); }

/* FAQ */
.faq-wrap { max-width: 850px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.faq-question:hover { background: var(--light); }
.faq-question i { color: var(--primary); transition: 0.3s; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--gray);
}
.faq-answer-inner { padding: 0 24px 20px; }
.faq-item.open .faq-answer { max-height: 300px; }

/* Footer */
footer {
  background: var(--dark);
  color: #cfd8e6;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer h4 { color: white; margin-bottom: 18px; font-size: 17px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; font-size: 14px; }
footer ul a:hover { color: var(--accent); }
.footer-about p { font-size: 14px; line-height: 1.7; margin: 15px 0; }
.social-icons { display: flex; gap: 12px; margin-top: 15px; }
.social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.social-icons a:hover { background: var(--accent); color: white; }
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-info i { color: var(--accent); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}
.disclaimer {
  background: rgba(0,0,0,0.3);
  padding: 18px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #9aa8bd;
}

/* Floating Call Button */
.float-call {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--accent);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(255,122,0,0.5);
  z-index: 99;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,122,0,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(255,122,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,0,0); }
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-left: 4px solid var(--primary);
}
.contact-method-icon {
  width: 54px;
  height: 54px;
  background: var(--light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-method h3 { margin-bottom: 5px; font-size: 18px; }
.contact-method p { color: var(--gray); font-size: 14px; margin-bottom: 6px; }
.contact-method a { color: var(--primary); font-weight: 600; }
.contact-form-card {
  background: white;
  padding: 35px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { margin-bottom: 8px; font-size: 24px; }
.contact-form-card > p { color: var(--gray); margin-bottom: 22px; font-size: 14px; }
.contact-form-card .form-row { grid-template-columns: 1fr 1fr; }
.contact-form-card textarea { resize: vertical; min-height: 100px; }
.contact-form-card .full-width { grid-column: 1 / -1; }

/* Policy/Legal pages */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.policy-content h2 {
  font-size: 24px;
  color: var(--primary);
  margin: 30px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li {
  color: var(--gray);
  margin-bottom: 12px;
  font-size: 15px;
}
.policy-content ul { padding-left: 25px; }
.policy-content .updated {
  background: var(--light);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 25px;
  border-left: 3px solid var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
  .nav ul { display: none; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 32px; }
  .page-banner h1 { font-size: 30px; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta h2 { font-size: 26px; }
  .section-title h2 { font-size: 28px; }
  .info-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .policy-content { padding: 30px 22px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { font-size: 12px; }
  .topbar a { margin-left: 8px; }
  .contact-form-card .form-row { grid-template-columns: 1fr; }
}
