/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8fafc;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Top Bar ===== */
.top-bar {
  background: #003366;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar a { color: #ffd700; font-weight: 600; }

/* ===== Header / Nav ===== */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  color: #003366;
  letter-spacing: -0.5px;
}
.logo span { color: #ff6b00; }

nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}
nav ul li { position: relative; }
nav ul li a {
  padding: 10px 16px;
  color: #003366;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
  display: block;
}
nav ul li a:hover { background: #f0f4f8; color: #ff6b00; }

/* Dropdown */
.dropdown > a::after { content: " ▾"; font-size: 12px; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 6px;
  display: none;
  list-style: none;
  padding: 8px 0;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { padding: 10px 18px; }

.call-btn {
  background: #ff6b00;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 30px;
  font-weight: 700;
}
.call-btn:hover { background: #e55c00 !important; color: #fff !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #003366;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(rgba(0,30,60,0.65), rgba(0,30,60,0.65)),
              url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=1600') center/cover;
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Query Form ===== */
.query-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: 1000px;
  margin: -50px auto 50px;
  position: relative;
  z-index: 5;
}
.query-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #003366;
  font-size: 26px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
  font-weight: 600;
}
.form-group input,
.form-group select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff6b00;
}
.btn-submit {
  background: #ff6b00;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  transition: background 0.3s;
}
.btn-submit:hover { background: #e55c00; }
.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 12px;
}

/* ===== Sections ===== */
section { padding: 60px 0; }
.section-title {
  text-align: center;
  font-size: 34px;
  color: #003366;
  margin-bottom: 12px;
  font-weight: 800;
}
.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Deal Cards ===== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.deal-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.deal-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.deal-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff6b00;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}
.deal-content { padding: 20px; }
.deal-content h3 {
  color: #003366;
  font-size: 20px;
  margin-bottom: 8px;
}
.deal-meta {
  color: #777;
  font-size: 14px;
  margin-bottom: 12px;
}
.deal-content p {
  color: #555;
  font-size: 15px;
  margin-bottom: 15px;
}
.deal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
.deal-price { color: #ff6b00; font-weight: 800; font-size: 18px; }
.deal-price small { color: #999; font-size: 12px; font-weight: 400; display: block; }
.deal-btn {
  background: #003366;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}
.deal-btn:hover { background: #ff6b00; color: #fff; }

/* ===== Exclusive Deals Banner ===== */
.exclusive {
  background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.exclusive h2 { font-size: 36px; margin-bottom: 15px; }
.exclusive p { font-size: 18px; margin-bottom: 25px; max-width: 700px; margin-left: auto; margin-right: auto; }
.btn-call {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 17px;
  transition: background 0.3s;
}
.btn-call:hover { background: #e55c00; }

/* ===== Destinations Grid ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dest-card {
  position: relative;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.dest-card:hover { transform: scale(1.03); }
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.85));
}
.dest-card .dest-name {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #fff;
  z-index: 2;
}
.dest-card .dest-name h3 { font-size: 22px; margin-bottom: 4px; }
.dest-card .dest-name span { font-size: 14px; opacity: 0.9; }

/* ===== Why Choose Us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.why-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.why-icon {
  width: 70px;
  height: 70px;
  background: #003366;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.why-card h3 { color: #003366; margin-bottom: 10px; font-size: 19px; }
.why-card p { color: #666; font-size: 15px; }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  background: linear-gradient(rgba(0,30,60,0.7), rgba(0,30,60,0.7)),
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600') center/cover;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.page-hero h1 { font-size: 42px; margin-bottom: 10px; font-weight: 800; }
.page-hero p { font-size: 17px; max-width: 700px; margin: 0 auto; }

/* ===== Content Pages ===== */
.content-page {
  background: #fff;
  padding: 50px 0;
}
.content-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.content-wrap h2 {
  color: #003366;
  margin: 30px 0 15px;
  font-size: 26px;
  border-bottom: 2px solid #ff6b00;
  padding-bottom: 8px;
}
.content-wrap h3 { color: #003366; margin: 22px 0 10px; font-size: 20px; }
.content-wrap p { margin-bottom: 15px; color: #444; line-height: 1.8; }
.content-wrap ul, .content-wrap ol {
  margin: 0 0 18px 25px;
  color: #444;
}
.content-wrap ul li, .content-wrap ol li { margin-bottom: 8px; line-height: 1.7; }
.content-wrap strong { color: #003366; }

.info-box {
  background: #fff8f0;
  border-left: 4px solid #ff6b00;
  padding: 18px 22px;
  margin: 22px 0;
  border-radius: 4px;
}
.info-box p { margin: 0; }

/* ===== Footer ===== */
footer {
  background: #001f3f;
  color: #c0d0e0;
  padding: 50px 0 20px;
  margin-top: 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 17px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #c0d0e0; font-size: 14px; transition: color 0.3s; }
.footer-col ul li a:hover { color: #ff6b00; }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-col .phone {
  color: #ffd700;
  font-size: 22px;
  font-weight: 800;
  margin-top: 10px;
}
.disclaimer {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.7;
  color: #a0b0c0;
  margin-bottom: 20px;
}
.disclaimer strong { color: #fff; }
.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}

/* ===== Floating Call Button ===== */
.float-call {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #ff6b00;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255,107,0,0.4);
  z-index: 999;
  transition: transform 0.3s;
}
.float-call:hover { transform: scale(1.05); color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .deals-grid, .dest-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 34px; }
  .section-title { font-size: 26px; }

  .menu-toggle { display: block; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  nav ul.active { display: flex; }
  nav ul li { width: 100%; }
  .dropdown-menu { position: static; box-shadow: none; padding-left: 15px; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block; }
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .deals-grid, .dest-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
  .content-wrap { padding: 25px; }
  .top-bar .container { justify-content: center; text-align: center; }
}
