* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f5f7ff;
  color: #111;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 56px;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  padding: 0 14px;
  border-right: 1px solid #ddd;
}

.nav-links a:last-child {
  border-right: none;
}

.booking-btn {
  background: #0a1d4d;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  margin-left: 16px;
}

/* ================= HERO ================= */
.register-hero {
  padding-top: 130px;
  padding-bottom: 90px;
  background: linear-gradient(rgba(10, 29, 77, 0.75), rgba(10, 29, 77, 0.75)),
    url("https://images.unsplash.com/photo-1529070538774-1843cb3265df");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.register-hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.register-hero p {
  font-size: 15px;
  opacity: 0.9;
}

/* ================= CONTENT ================= */
.register-container {
  max-width: 1100px;
  margin: -60px auto 90px;
  padding: 0 20px;
}

.register-box {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ================= FORM ================= */
.register-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.register-form input,
.register-form textarea {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  width: 100%;
}

.register-form textarea {
  grid-column: span 2;
  resize: none;
  height: 90px;
}

.register-form button {
  grid-column: span 2;
  padding: 14px;
  background: #0a1d4d;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}

/* ================= INFO ================= */
.register-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.register-text h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0a1d4d;
}

.register-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.register-image {
  border-radius: 16px;
  overflow: hidden;
}

.register-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .register-form {
    grid-template-columns: 1fr;
  }

  .register-form textarea,
  .register-form button {
    grid-column: span 1;
  }

  .register-info {
    grid-template-columns: 1fr;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #0a1d4d;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #dcdcdc;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e5e5e5;
}

.footer-col ul li i {
  color: #5b5df5;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #5b5df5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
  background: #4547c2;
  transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  color: #ccc;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .social-icons {
    justify-content: flex-start;
  }
}

/* =========================
   MOBILE NAV FIX (TRACK PAGE)
========================= */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #000; /* black icon */
}

/* Mobile view */
@media (max-width: 768px) {
  .nav-container {
    display: flex;
    align-items: center;
  }

  /* Push toggle + login to the far right */
  .nav-toggle {
    margin-left: auto;
  }

  .booking-btn {
    margin-left: 12px;
  }

  /* Dropdown menu */
  .nav-links {
    position: fixed;
    top: 70px; /* below navbar */
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 20px 0;
    z-index: 99999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: #000;
    padding: 14px 20px;
    width: 100%;
    text-align: left;
  }

  /* Show toggle on mobile */
  .nav-toggle {
    display: block;
  }
}

/* Keep navbar above page content */
.navbar {
  position: relative;
  z-index: 100000;
}
