/* ================== CONTACT PAGE STYLES (MODERNIZED) ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* NAVBAR */
.transparent-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color .3s ease, box-shadow .3s ease;
}

.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* logo left, toggle/nav right */
}

.logo {
  height: 60px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  color: #0d1c3f;
  transition: color .3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #00aaff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease-in-out;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

.nav-links li a:hover {
  color: #00aaff;
}

.nav-links li a.active {
  color: #00cfff;
}

/* ===== HAMBURGER (hidden on desktop) ===== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #003C8B;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  top: 50%;
  right: 10%;
  /* distance from right edge */
  transform: translateY(-50%);
  /* vertical center */
}


/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 2rem;
    color: #003C8B;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    /* full height drawer */
    width: 100%;
    /* not full screen */
    max-width: 280px;
    /* limit width */
    flex-direction: column;
    /* <<< force vertical */
    /* align to left */
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateX(0);
    margin-top: 70vw;
    padding-top: 70%;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    transition: transform 0.6s ease-in-out;
  }

  .nav-container {
    height: 10vh;

  }

  .nav-links li {
    width: 100%;
    /* make each link full width */
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #003C8B;
  }
  
}

/* HERO */
.hero {
  min-height: 60vh;
  padding: 6rem 2rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f4f4f4;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #0b54b3;
  animation: fadeUp 0.8s ease-out;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  animation: fadeUp 1s ease-out 0.3s both;
}

/* DIVIDER LINES */
.blue-lines {
  background-color: #f4f4f4;
  padding: 2rem 0 0.5rem;
  margin-bottom: 0;
}

.line {
  width: 100%;
  background-color: #0b54b3;
  margin: 0.6rem 0;
  border-radius: 2px;
}

.thin-line {
  height: 3px;
}

.medium-line {
  height: 7px;
}

.thick-line {
  height: 14px;
}

/* FLOATING STICKERS */
.floating-stickers {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.sticker {
  position: absolute;
  width: 40px;
  opacity: 0.5;
  animation: floatSticker 3s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes floatSticker {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-25px) rotate(10deg);
  }

  100% {
    transform: translateY(25px) rotate(-10deg);
  }
}

/* CONTACT INFO */
.contact-info {
  padding: 12rem 2rem 3rem;
  background-color: #0b54b3;
  color: white;
  text-align: center;
  animation: fadeUp 1s ease;
  min-height: 80vh;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.map-link {
  margin-left: 10px;
  background-color: #fff;
  color: #0b54b3;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: bold;
}

/* FORMS */
.form-section {
  padding: 4rem 2rem;
  text-align: center;
}

.form-section h2 {
  font-size: 1.8rem;
  color: #0b54b3;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeUp 1s ease;
}

form input,
form textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

form input:focus,
form textarea:focus {
  border-color: #0b54b3;
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 84, 179, 0.2);
}

form input[type="file"] {
  background-color: #f9f9f9;
}

form button {
  padding: 0.75rem;
  background: linear-gradient(to right, #0b54b3, #004080);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* DUAL FORM LAYOUT */
.dual-form-section {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
}

.form-row-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 5rem auto;
}

.form-box {
  flex: 1 1 48%;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  animation: fadeUp 1s ease;
}

/* FOOTER */
footer {
  background: #003C8B;
  color: white;
  padding: 2rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  border-top: 4px solid #ccc;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 50px;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d3e3f6;
}

.social-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

.contact-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.contact-inline .divider {
  color: #999;
  font-size: 18px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .form-section,
  .contact-info {
    padding: 3rem 1rem;
  }

  form {
    padding: 0 1rem;
  }

  .form-box {
    flex: 1 1 100%;
  }
}