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

:root {
  --white: #ffffff;
  --gold: #033371;
  --red:  #c00000;
  --gray: #898989;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 66px;
  background: var(--white);
  z-index: 100;
  border-bottom: 1px solid #e8e8e8;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  width: 170px;
  overflow: hidden;
  flex-shrink: 0;
}
.navbar-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.navbar-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.navbar-links a:hover {
  color: var(--gold);
}
/* ── HERO ── */
.hero {
  margin-top: 66px;
  position: relative;
  height: 420px;
  background-image: url(banner.png);
  background-size: cover;
  background-position: center 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 51, 113, 0.65);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 0 24px;
}
.hero-emblem {
  width: 120px;
  height: 120px;
}
.hero-emblem img {
  width: 100%;
}
.hero-title {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 3px;
}

/* ── ALERT BANNER ── */
.alert-banner {
  max-width: 1200px;
  margin: 20px auto;
  padding: 10px;
}
.alert-title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin-bottom: 24px;
}
.alert-box {
  background: rgba(255, 220, 220, 0.25);
  border-left: 4px solid var(--red);
  padding: 20px 30px;
  text-align: left;
}
.alert-box p {
  color: var(--red);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 28px;
}

/* ── CONTACT ── */
.contact {
  max-width: 1200px;
  margin: 20px auto;
  padding: 10px;
}
.contact-inner {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  border-radius: 45px;
  opacity: 0.32;
  background-image: url('');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fields {
  display: flex;
  flex-direction: column;
}
.field {
  display: flex;
  flex-direction: column;
}
.field label {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.field input,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px 25px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: var(--gray);
  outline: none;
}
.field textarea {
  height: 150px;
  resize: none;
}
.btn-send {
  width: 100%;
  background: var(--gold);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #fff;
}
