@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Raleway:wght@300;400;600&display=swap');

@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV0ewJER.woff2) format('woff2');
    unicode-range: U +0460 -052F, U +1C80 -1C8A, U +20B4, U +2DE0 -2DFF, U + A640-A69F, U + FE2E-FE2F;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: "Open Sans", Arial, Tahoma, sans-serif;
  overflow: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(18, 30, 48, 0.92);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  background: url(http://travel123.biz/new/wp-content/uploads/2015/03/home_safari_places_topbar_bg.png) repeat-x top center !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.navbar-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 32px;
  display: block;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar-links a {
  color: #e8e8e8;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.navbar-links a:hover {
  /* color: #ffffff; */
  color: #00c095;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 44px);
  background-image: url('https://travel123.biz/new/wp-content/uploads/2016/03/Cruise-1.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 35, 0.25) 0%,
    rgba(10, 20, 35, 0.08) 40%,
    rgba(10, 20, 35, 0.15) 100%
  );
}

/* ── CARD ── */
.card {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  padding: 32px 40px 36px;
  width: 340px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.card-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #444;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
  font-size: 18px;
  line-height: 23px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-weight: 400;
  color: #000;
  font-size: 16px;
  opacity: 1;
  margin: 0 0 6px;
}

.form-label .required {
  color: #c0392b;
  margin-left: 1px;
}

.form-input {
  width: 100%;
  height: 32px;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 0 10px;
  font-size: 13px;
  font-family: 'Lato', sans-serif;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  border-color: #5b9bd5;
  box-shadow: 0 0 0 2px rgba(91, 155, 213, 0.18);
}

.form-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.btn-send {
  height: 32px;
  padding: 0 20px;
  background-color: #5b9bd5;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.btn-send:hover {
  background-color: #4a87c0;
}

.btn-send:active {
  background-color: #3a72a8;
}

/* ── FORM MESSAGE ── */
.form-message {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 2px;
  min-height: 0;
  transition: all 0.2s;
}

.form-message--success {
  color: #1a7a4a;
  background: #eafaf1;
  border: 1px solid #a8dfc0;
  padding: 8px 12px;
}

.form-message--error {
  color: #922b21;
  background: #fdf3f2;
  border: 1px solid #f1a89e;
  padding: 8px 12px;
}

/* ── FOOTER ── */
.footer {
  background-color: #1a2332;
  color: #aaa;
  font-size: 12px;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.2px;
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e8e8e8;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar-inner {
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 58px;
    left: 0;
    width: 100%;
    background-color: rgba(18, 30, 48, 0.97);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
  }

  .navbar-links.open {
    max-height: 300px;
    padding: 8px 0 16px;
  }

  .navbar-links li {
    width: 100%;
  }

  .navbar-links a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar-links li:last-child a {
    border-bottom: none;
  }

  .card {
    width: 90%;
    padding: 24px 24px 28px;
  }

  .footer {
    padding: 14px 20px;
  }
}
