/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #F4F7FB;
  color: #1A1A1A;
  line-height: 1.6;
}

/* HEADER */
.site-header {
  background: #0A2540;
  color: #fff;
  padding: 16px 20px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.menu-btn {
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.dropdown {
  display: none;
  position: absolute;
  right: 20px;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 999;
}

.dropdown a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #1A1A1A;
  font-weight: 500;
}

.dropdown a:hover {
  background: #F4F7FB;
}

.header-contact a {
  color: #F5A623;
  font-weight: bold;
  text-decoration: none;
}

.header-disclaimer {
  text-align: center;
  font-size: 12px;
  margin-top: 10px;
  color: #E5E7EB;
}

/* MAIN CONTAINER */
.container {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* FORM */
.trip {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.trip label {
  font-weight: 600;
  color: #0A2540;
}

.segment {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

input, select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  width: 100%;
  font-size: 15px;
}

input:focus, select:focus {
  outline: none;
  border-color: #1F6AE1;
}

/* BUTTONS */
button {
  background: #1F6AE1;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

button:hover {
  background: #174DB3;
}

button[type="button"] {
  background: #F5A623;
  color: #0A2540;
}

button[type="button"]:hover {
  background: #E29419;
}

/* FOOTER */
.site-footer {
  background: #0A2540;
  color: #E5E7EB;
  padding: 40px 20px 90px;
  text-align: center;
}

.footer-logo {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.site-footer a {
  color: #F5A623;
  text-decoration: none;
}

.footer-links {
  margin: 15px 0;
}

/* FIXED CALL BAR */
.fixed-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #1F6AE1, #0A2540);
  text-align: center;
  padding: 15px;
  z-index: 9999;
}

.fixed-call-bar a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-contact {
    display: none;
  }

  .container {
    margin: 20px;
    padding: 20px;
  }

  .segment {
    flex-direction: column;
  }

  .fixed-call-bar a {
    font-size: 16px;
  }
}
