/* ----------------------------------------------------------
   GLOBAL BASE
---------------------------------------------------------- */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #f4f6f8, #e9eef2);
  color: #333;
  line-height: 1.75;
}

section {
  scroll-margin-top: 90px;
}

/* ----------------------------------------------------------
   HEADER (fixed)
---------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #002b5c;
  color: white;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

body {
  padding-top: 72px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 72px;
  width: auto;
}

.tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  margin: 0;
  line-height: 1.1;
}

/* ----------------------------------------------------------
   NAVIGATION
---------------------------------------------------------- */

nav {
  position: relative;
}

.hamburger {
  font-size: 30px;
  cursor: pointer;
  padding: 6px;
  user-select: none;
}

#menu-toggle {
  display: none;
}

.menu {
  display: none;
  flex-direction: column;
  background: #002b5c;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 14px;
  border-radius: 8px;
  list-style: none;
  width: 220px;
}

.menu li {
  margin: 10px 0;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

#menu-toggle:checked + .hamburger + .menu {
  display: flex;
}

/* ----------------------------------------------------------
   MAIN
---------------------------------------------------------- */

main {
  max-width: 850px;
  margin: 0 auto;
  padding: 28px 16px;
}

/* ----------------------------------------------------------
   CARDS
---------------------------------------------------------- */

.card {
  background: white;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  margin-bottom: 42px;
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
  transform: translateY(24px);
}

/* ----------------------------------------------------------
   HEADINGS
---------------------------------------------------------- */

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  color: #002b5c;
  text-align: center;
  margin-bottom: 18px;
}

.section-intro {
  font-size: 19px;
  margin-bottom: 16px;
}

/* ----------------------------------------------------------
   BULLETS (Option 1)
---------------------------------------------------------- */

ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 18px;
}

ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #c5cad1;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 7px;
}

/* ----------------------------------------------------------
   IMAGES
---------------------------------------------------------- */

.map-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 16px auto;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* ----------------------------------------------------------
   FORM
---------------------------------------------------------- */

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 17px;
  width: 100%;
}

button {
  padding: 14px;
  background: #002b5c;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

button:hover {
  background: #001f45;
}

button.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Success + error messages */
.form-message {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: 6px;
  font-size: 17px;
  animation: fadeIn 0.4s ease;
}

.form-message.success {
  background: #d4f4dd;
  color: #1b6b2a;
}

.form-message.error {
  background: #f8d7da;
  color: #842029;
}

/* ----------------------------------------------------------
   ANIMATIONS
---------------------------------------------------------- */

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */

.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 15px;
  color: #555;
}

