:root {
      --accent:#e5562d;
      --muted:#6b7280;
      --bg:#f7fafc;
      --card:#ffffff;
    }
    * { box-sizing: border-box; margin:0; padding:0; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color:#0f172a;
      line-height:1.5;
    }
    a { text-decoration:none; color:inherit; }














.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  list-style: none;
  padding: 5px 0;
  margin: 0;
  min-width: 150px;
  z-index: 10;
}

.dropdown-menu li {
  padding: 5px 15px;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.login-btn a {
  background: #ff6600;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
}

.login-btn a:hover {
  background: #e65500;
}



    /* Header */
    header {
      background:#fff;
      border-bottom:1px solid #e6edf3;
    }
    .topbar {
      max-width:1200px;
      margin:0 auto;
      padding:25px 0px;
      display:flex;
      align-items:center;
      justify-content:space-between;
    }
    .logo { display:flex; align-items:center; gap:12px; }
    .logo img { height:44px; }
    nav ul {
      display:flex; gap:20px; list-style:none;
    }
    nav a {
      font-weight:600;
      color:#0f172a;
      transition: color 0.2s;
    }
    nav a:hover { color:var(--accent); }
    .actions { display:flex; gap:12px; align-items:center; }
    .btn {
   background: #e5562d;
    color: #fff;
    padding: 17px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s;
    border: none;
        margin-top: 24px;
    cursor: pointer;
    width: 100%;
    }
    .btn:hover { background:#e97b5d; }
    .btn.outline {
      background:transparent;
      color:var(--accent);
      border:1px solid var(--accent);
    }
    .btn.outline:hover {
      background:var(--accent);
      color:#fff;
    }

    /* Hero */
 .hero {
  margin-top:0px;
  min-height:480px;
  display:flex;
  align-items:center;
  justify-content:center;
  background-size:cover;
  background-position:center;
  transition: background-image 1s ease-in-out;
}

    .hero-overlay {
      /* background:rgba(5,10,20,0.45); */
  
      padding:20px 20px;
    }
    .hero-grid {
      /* display:grid;
      grid-template-columns:1fr 420px; */
      gap:32px;
      align-items:center;
      max-width:1200px;
      margin:0 auto;
    }
    .headline h1 {
      font-size:36px;
      color:#fff;
      margin-bottom:12px;
    }
    .headline p {
      color:#e2e8f0;
      margin-bottom:18px;
    }
    .pill {
      display:inline-flex;
      align-items:center;
      gap:8px;
      background:#f1f5f9;
      border-radius:999px;
      padding:8px 14px;
      font-size:14px;
      font-weight:500;
    }
.trip-type {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trip-type .option {
  position: relative;
  cursor: pointer;
 padding: 10px 0px;
  border-radius:10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid #d1d5db;
  background: #fff;
  transition: all 0.2s ease;
  user-select: none;
}

/* Hide native radio */
.trip-type .option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}



.trip-type .option span {
     /* background: var(--accent); */
    color: #000000;
    border-color: var(--accent);
    padding: 5px;
    padding: 12px 14px;
    border-radius: 10px;
}
/* Checked state → styles applied to the whole label */
.trip-type .option input:checked ~ span {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
      padding: 13px 14px;
}


    /* Booking Card */
    .search-card {
        background: #e6e7e8;
    border-radius: 20px;
    margin-top: 20px;
    padding: 20px;
    }
    .row { display:flex; gap:12px; margin-bottom:14px; flex-wrap:wrap; }
    .field { flex:1; min-width:150px; }
    label {
      font-size:12px;
      color:var(--muted);
      margin-bottom:6px;
      display:block;
      font-weight:500;
    }
    input, select {
      /* width: 100%; */
  padding: 17px 14px;
  border: none;                 /* remove border */
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* soft shadow */
  transition: box-shadow 0.2s ease;
    }
input:focus, select:focus {
  outline: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* deeper shadow on focus */
}
    /* Travellers Popup */
    .travellers-popup {
      position:absolute;
      background:#fff;
      border:1px solid #e6edf3;
      border-radius:10px;
      box-shadow:0 8px 24px rgba(0,0,0,0.15);
      padding:18px;
      width:280px;
      z-index:1000;
    }
    .hidden { display:none; }
    .travellers-popup h4 {
      margin:0 0 10px;
      font-size:14px;
      font-weight:600;
      color:#0f172a;
    }
    .counter-row {
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin:10px 0;
    }
    .counter {
      display:flex;
      align-items:center;
      gap:8px;
    }
    .counter button {
      width:30px; height:30px;
      border:none;
      border-radius:6px;
      background:#f1f5f9;
      cursor:pointer;
      font-weight:bold;
      transition:background 0.2s;
    }
    .counter button:hover { background:#e2e8f0; }
    .counter span { font-weight:600; }

    /* Deals */
    .deals {
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
      gap:16px;
      margin-top:24px;
    }
    .deal {
      background:var(--card);
      padding:16px;
      border-radius:8px;
      border:1px solid #e6edf3;
      transition: box-shadow .2s;
    }
    .deal:hover { box-shadow:0 6px 16px rgba(0,0,0,0.08); }
    .deal h4 { margin-bottom:6px; font-size:16px; }
    .deal .price { font-weight:700; color:var(--accent); font-size:18px; }

/* =========================================subscription section======================== */
.subscribe-footer {
  background: #006981;
  color: #fff;
  padding: 40px 20px;
}

.subscribe-footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.service-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.col.service-left {
  margin: auto;
      margin-right: 0px;
}
.col.service-right
{
  margin: auto;
}
.service-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-box .icon {
  font-size: 22px;
  background: #fff;
  color: #0a1c3a;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-box h5 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.service-box p {
  margin: 0;
  font-size: 13px;
}

.service-right {
  margin-top: 20px;
}

.signfomup {
  display: flex;
  gap: 10px;
}

.signfomup input {
  padding: 10px;
  border-radius: 5px;
  border: none;
  flex: 1;
}

.signfomup button {
  padding: 10px 16px;
  border: none;
  background: #ff6600;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.signfomup button:hover {
  background: #e65500;
}

#newsletterMsg {
  font-size: 13px;
  margin-top: 6px;
}



    /* ================================footer= */
    .site-footer {
  background: #f8f8f8;
  color: #000000;
  padding: 30px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-left p {
  margin: 6px 0;
}

.footer-left a {
  color: #000000;
  text-decoration: none;
}

.payment-icons img {
  margin-top: 10px;
  max-height: 30px;
}

.footer-right {
  flex: 1;
  min-width: 250px;
  text-align: right;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;          /* 👈 make horizontal */
  justify-content: flex-end; /* 👈 align to the right */
  gap: 20px;              /* spacing between items */
}

.footer-links li {
  display: inline-block;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ff6600;
}


.social-icons a {
  color: #000000;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #000000;
}


.flight-search {
  max-width: 1200px;
  margin: 20px auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.summary {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
}

.trip-info {
  flex: 1;
}

.trip-type {
  font-size: 16px;
  color: #0077cc;
  margin-bottom: 5px;
}

.route {
  font-size: 20px;
  margin-bottom: 10px;
}

.dates {
  display: flex;
  gap: 20px;
}

.date-block .label {
  display: block;
  font-size: 12px;
  color: #666;
}

.date-block .value {
  font-weight: bold;
  font-size: 14px;
}

.pax-info {
  display: flex;
  gap: 15px;
  align-items: center;
}

.pax {
  text-align: center;
}

.pax .label {
  font-size: 12px;
  color: #666;
  display: block;
}

.pax .value {
  font-weight: bold;
  font-size: 16px;
}

.modify-btn {
  background: #0077cc;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.modify-btn:hover {
  background: #005fa3;
}

.search-form form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
}

.field-group label {
  font-size: 13px;
  margin-bottom: 5px;
  color: #333;
}

.field-group input,
.field-group select {
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.btn-search {
  grid-column: span 2;
  background: #28a745;
  border: none;
  color: white;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.btn-search:hover {
  background: #218838;
}
/* ============================================= */




 .flight-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin-bottom: 20px;
      overflow: hidden;
    }

    /* --- Summary --- */
    .flight-summary {
    
      align-items: center;
      padding: 16px;
      border-bottom: 1px solid #eee;
      flex-wrap: wrap;
    }

    .flight-info {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 10px;
    }

    .flight-info img {
      width: 50px;
      height: 50px;
    }

    .flight-times {
      text-align: center;
    }

    .flight-times h3 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
    }

    .flight-times p {
      margin: 4px 0;
      color: #555;
      font-size: 14px;
    }

    .price-section {
      text-align: right;
      min-width: 120px;
    }

    .price-section h3 {
      margin: 0;
      color: #d32f2f;
      text-align: center;
    }

    .book-btn {
      background: #ee6426;
      color: #fff;
      border: none;
      padding: 15px 14px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 5px;
    }
.book-btn:hover {
  background: #ea7777;
}



.brand-icons a { width:44px; height:44px; display:inline-grid; place-items:center; border-radius:50%; color:white; margin-right:8px; text-decoration:none; }
.brand-icons .fb { background:#1877F2 }    /* Facebook */
.brand-icons .tw { background:#1DA1F2 }    /* Twitter */
.brand-icons .yt { background:#FF0000 }    /* YouTube */
.brand-icons .pt { background:#E60023 }    /* Pinterest */
.brand-icons .tt { background:#000000 }    /* TikTok (black) */
.brand-icons i { font-size:18px; }
.brand-icons a:hover { transform:scale(1.06); }


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .social-icons {
    margin-top: 10px;
  }
}


    /* Responsive */
    @media(max-width:900px) {
      .hero-grid { grid-template-columns:1fr; }
      nav ul { display:none; }
    }