/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* LOGO */
.logo-transparent {
  height: 70px;
  max-width: 100%;
}

/* TOP BAR */
.top-bar {
  background-color: #003366;
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-bar span {
  margin: 3px 0;
}

.top-bar a {
  color: #ffcc00;
}

/* HEADER */
.horizontal-header {
  background: #fff;
  padding: 10px 20px;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* NAV */
.nav-menu {
  display: flex;
  gap: 15px;
}

.nav-menu a {
  color: #400080;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #0080ff;
}

/* BUTTON */
.quote-btn {
  background-color: #ffcc00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
}

.quote-btn:hover {
  background-color: #e6b800;
  color: #fff;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #1A237E;
}

/* SOCIAL */
.top-bar .social-icons a {
  color: #fff;
}

.footer .social-icons a {
  color: #fff;
}

/* BANNER */
.about-banner {
  height: 300px;
  background: linear-gradient(135deg, #0055a5, #003366);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hex-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/image/royalty.webp') repeat;
  opacity: 0.4;
}

.hex-bg h1 {
  font-size: 42px;
  color: #fff;
  position: relative;
  text-align: center;
}

/* CONTENT */
.center {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

h2 {
  color: #003366;
  margin-bottom: 20px;
}

ul {
  list-style: none;
}

.services li,
.why-choose li,
.who-needs li {
  background: #e6f0ff;
  padding: 12px;
  margin: 8px 0;
  border-radius: 6px;
}

/* COMMITMENT */
.commitment {
  background: #0080c0;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 40px 20px;
}

.cta-btn {
  background: #ffcc00;
  padding: 12px 25px;
  border-radius: 6px;
  color: #003366;
  font-weight: bold;
}

.cta-btn:hover {
  background: #e6b800;
}

/* FOOTER */
.footer {
  background: #003366;
  color: #fff;
  padding: 40px 20px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/image/footer-im.jpg') center/cover;
  opacity: 0.3;
}

.footer * {
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.footer-box h3 {
  color: #ffcc00;
}

.footer-box ul {
  list-style: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  /* TOP BAR */
  .top-bar {
    flex-direction: column;
    text-align: center;
  }

  /* NAV */
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    padding: 15px;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .nav-menu.active {
    display: flex;
  }

  .quote-btn {
    display: none;
  }

  /* TEXT */
  .hex-bg h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  li, p {
    font-size: 14px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* SMALL MOBILE */
@media (max-width: 500px) {
  .hex-bg h1 {
    font-size: 20px;
  }
}