/* ===============================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   BASE
================================ */
body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* ===============================
   HEADER / NAVBAR (DESKTOP FIRST)
================================ */
.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid #eee;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 42px;
}

.logo span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #004aad;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #004aad;
}

/* ===============================
   DROPDOWN (SMOOTH & STABLE)
================================ */
.dropdown {
  position: relative;
}

/* hidden state */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 9999;
}

/* hover state (desktop) */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* active state (mobile click) */
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* items */
.dropdown-menu li a {
  display: block;
  padding: 9px 16px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: #f1f1f1;
  color: #004aad;
}

/* CALL BUTTON */
.call-btn a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #004aad;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.call-btn a:hover {
  background: #002f6c;
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  background: #0b4db8;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: white;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero a {
  color: #ffeb3b;
  font-weight: bold;
  text-decoration: none;
}

.hero a:hover {
  text-decoration: underline;
}

/* HERO LINKS */
.hero-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-links a {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.hero-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ===============================
   CONTENT SECTIONS
================================ */
section {
  max-width: 1200px;
  margin: 30px auto;
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section h1 {
  color: #004aad;
  margin-bottom: 15px;
  font-size: 2rem;
}

section h2 {
  color: #004aad;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

section p {
  margin-bottom: 15px;
  line-height: 1.8;
}

section ul {
  list-style: disc inside;
  margin-left: 20px;
}

section ul li {
  margin-bottom: 10px;
}

section a {
  color: #004aad;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

section a:hover {
  text-decoration: underline;
  color: #002f6c;
}

/* ===============================
   CTA BUTTON
================================ */
.cta-button {
  display: inline-block;
  margin-top: 15px;
  margin-right: 10px;
  padding: 12px 24px;
  background: #004aad;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: #002f6c;
  text-decoration: none;
}

/* ===============================
   FOOTER
================================ */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
}

footer p {
  margin-bottom: 10px;
}

footer a {
  color: #ffdd57;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ===============================
   UTILITIES
================================ */
.mb-number {
  color: #ffeb3b;
  font-weight: bold;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 10px 16px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

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

  .nav-links a {
    display: block;
    padding: 8px 0;
  }

  .call-btn {
    width: 100%;
  }

  .call-btn a {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 50px 15px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-links ul {
    flex-direction: column;
    gap: 10px;
  }

  section {
    margin: 15px auto;
    padding: 20px 15px;
  }

  section h1 {
    font-size: 1.5rem;
  }

  section h2 {
    font-size: 1.3rem;
  }

  .cta-button {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .dropdown-menu {
    position: absolute;
    background: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    width: 100%;
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu li {
    padding: 0;
  }

  .dropdown-menu li a {
    padding: 10px 16px;
    font-size: 0.9rem;
    display: block;
    color: #333;
  }

  .dropdown-toggle::after {
    content: '';
  }
}

.contact-section {
  min-height: 70vh;
}
