/* =====================================================================
   STYLE SHEET — Travel Connect (travelsconnect.in)
   Colour theme: Blue #0a58ca (primary) + Orange #ff6b00 (accent)
   Footer: Navy #14213d
   This file controls how the site LOOKS. All layout is responsive,
   meaning it automatically adjusts for phone, tablet, and desktop.
===================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }

/* ---------- NAVY UTILITY BAR ---------- */
.utility-bar {
  background: #14213d;
  color: #ffffff;
  font-size: 13px;
}
.utility-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-phone a { color: #ffb385; font-weight: bold; }

/* ---------- STICKY HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 22px;
  font-weight: bold;
  color: #0a58ca;
  white-space: nowrap;
}
.logo-accent { color: #ff6b00; }

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: #14213d;
}
.main-nav a:hover { color: #0a58ca; }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  font-weight: bold;
  color: #0a58ca;
  font-size: 15px;
  white-space: nowrap;
}
.btn-quote {
  background: #ff6b00;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  white-space: nowrap;
}
.btn-quote:hover { background: #e05f00; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #14213d;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #eee;
}
.mobile-nav a {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 600;
  color: #14213d;
}
.mobile-nav.open { display: flex; }

/* Hide the centre nav below 1080px width, show hamburger instead */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
}

/* ---------- ORANGE PROMO STRIP ---------- */
.promo-strip {
  background: #ff6b00;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 16px;
}

/* ---------- HERO SECTION ---------- */
.hero {
  background: linear-gradient(135deg, #0a58ca 0%, #063d94 100%);
  color: #ffffff;
  padding: 50px 20px 90px;
  text-align: center;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hero-kicker {
  font-size: 14px;
  color: #cfe0fb;
  margin-bottom: 10px;
}
.hero-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 17px;
  color: #e6f1fb;
  margin-bottom: 30px;
}

/* ---------- 4-TAB SEARCH WIDGET ---------- */
.search-widget {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 700px;
  margin: 0 auto;
}
.tab-buttons {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.tab-btn {
  flex: 1;
  min-width: 100px;
  background: #f0f4fa;
  border: none;
  padding: 12px 10px;
  font-weight: bold;
  font-size: 14px;
  color: #14213d;
  border-radius: 8px;
  cursor: pointer;
}
.tab-btn.active {
  background: #0a58ca;
  color: #ffffff;
}
.tab-panel { display: none; text-align: left; }
.tab-panel.active { display: block; }

.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.enquiry-form input {
  grid-column: span 1;
  padding: 12px;
  border: 1px solid #d5dce6;
  border-radius: 6px;
  font-size: 14px;
}
.enquiry-form input[name="name"],
.enquiry-form input[name="phone"] {
  grid-column: span 1;
}
.btn-search {
  grid-column: 1 / -1;
  background: #ff6b00;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 4px;
}
.btn-search:hover { background: #e05f00; }

@media (max-width: 600px) {
  .enquiry-form { grid-template-columns: 1fr; }
}

/* ---------- SECTION TITLES ---------- */
.section-title {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 16px;
  font-size: 26px;
  font-weight: bold;
  color: #14213d;
}

/* ---------- FLIGHT DEAL CARDS ---------- */
.deals-section { background: #f7f9fc; padding-bottom: 20px; }
.deals-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 20px 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.deal-card {
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  padding: 18px;
  flex-shrink: 0;
}
.deal-route { font-weight: bold; font-size: 16px; color: #14213d; margin-bottom: 6px; }
.deal-price { color: #0a58ca; font-weight: bold; font-size: 15px; margin-bottom: 12px; }
.deal-link {
  display: inline-block;
  background: #ff6b00;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 5px;
}
.deals-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 12px;
  color: #888;
}

/* ---------- HOLIDAY TILES ---------- */
.holidays-section { max-width: 1200px; margin: 0 auto; padding: 0 20px 40px; }
.holiday-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.holiday-tile {
  height: 180px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #ffffff;
}
.tile-name { font-size: 20px; font-weight: bold; }
.tile-tag { font-size: 13px; color: #f0f4fa; }

.tile-bali { background: linear-gradient(135deg, #0a58ca, #1d9e75); }
.tile-dubai { background: linear-gradient(135deg, #ff6b00, #faa14d); }
.tile-thailand { background: linear-gradient(135deg, #993c1d, #f0997b); }
.tile-kashmir { background: linear-gradient(135deg, #185fa5, #85b7eb); }

@media (max-width: 900px) {
  .holiday-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .holiday-grid { grid-template-columns: 1fr; }
}

/* ---------- PROMISE PILLARS ---------- */
.pillars-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.pillar-icon { font-size: 32px; margin-bottom: 10px; }
.pillar h3 { font-size: 17px; color: #14213d; margin-bottom: 8px; }
.pillar p { font-size: 14px; color: #555; }

@media (max-width: 900px) {
  .pillars-section { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pillars-section { grid-template-columns: 1fr; }
}

/* ---------- WHATSAPP BAND ---------- */
.whatsapp-band {
  background: #14213d;
  color: #ffffff;
  padding: 40px 20px;
}
.whatsapp-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.whatsapp-band-inner h2 { font-size: 22px; margin-bottom: 6px; }
.whatsapp-band-inner p { color: #cfd6e6; font-size: 14px; }
.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  font-weight: bold;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 15px;
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1ebc59; }

/* ---------- MEGA FOOTER ---------- */
.site-footer {
  background: #14213d;
  color: #cfd6e6;
  padding: 50px 20px 20px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-col h3, .footer-col h4 {
  color: #ffffff;
  margin-bottom: 14px;
}
.footer-logo { font-size: 20px; }
.footer-col p { margin-bottom: 8px; font-size: 14px; }
.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #cfd6e6;
}
.footer-col a:hover { color: #ff6b00; }
.footer-reg { font-size: 12px; color: #8f9bb8; margin-top: 10px; }

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #2a3655;
  text-align: center;
  font-size: 13px;
  color: #8f9bb8;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
}