/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #13aff0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header */
.site-header {
  background: #fff;
  padding: 20px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  max-height: 60px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #000;
  padding: 5px 0 8px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover {
  color: #000;
  border-bottom-color: #fc9d37;
}

.main-nav a.active {
  color: #000;
  border-bottom-color: #4054b2;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  padding: 5px;
}

/* Splash Page */
.splash-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  background: #fff;
}

.splash-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.splash-logo {
  max-width: 269px;
}

.splash-enter {
  font-size: 14px;
  color: #777;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.splash-enter:hover {
  color: #13aff0;
  border-color: #13aff0;
}

/* Page Content */
.page-header {
  padding: 40px 0 20px;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #333;
  line-height: 1.4;
  padding-bottom: 12px;
  position: relative;
}

.page-header h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fc9d37;
  margin-top: 10px;
  margin-left: 5px;
}

.page-body {
  padding-bottom: 60px;
}

.page-body p {
  margin-bottom: 1.4em;
}

.page-body strong {
  font-weight: 600;
}

/* Contact page */
.contact-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.contact-info p {
  margin-bottom: 0.8em;
}

.contact-info a {
  color: #13aff0;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info a.text-link {
  color: #333;
}

.contact-info a.text-link:hover {
  color: #333;
}

/* Footer */
.site-footer {
  background: #7a7a7a;
  color: #999;
  padding: 0;
  font-size: 13px;
  line-height: 1.8;
}

.footer-links {
  padding: 25px 0;
}

.footer-links > ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.footer-links li {
  color: #fc9d37;
  position: relative;
}

.footer-dropdown-toggle {
  cursor: pointer;
}

.footer-dropdown-toggle::after {
  content: ' \25BE';
  font-size: 10px;
}

.footer-dropdown {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #666;
  min-width: 180px;
  padding: 8px 0 0;
  list-style: none;
  margin: 0;
  z-index: 10;
  flex-direction: column;
  gap: 0;
}

.footer-dropdown li {
  padding: 0;
}

.footer-dropdown a {
  display: block;
  padding: 6px 16px;
  color: #fc9d37;
  white-space: nowrap;
  font-size: 12px;
}

.footer-dropdown a:hover {
  background: #555;
  color: #fff;
}

.footer-links li:hover > .footer-dropdown {
  display: flex;
}

.footer-links a {
  color: #fc9d37;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px 0;
  gap: 10px;
}

.footer-contact p {
  margin-bottom: 0;
  color: #fff;
}

.footer-contact a {
  color: #fff;
}

.footer-contact a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
    padding: 20px 30px;
    z-index: 100;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .site-header .header-inner {
    position: relative;
  }

  .footer-links ul {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .footer-contact {
    flex-direction: column;
    text-align: center;
  }

  .page-header h1 {
    font-size: 24px;
  }

  .container {
    padding: 0 20px;
  }
}
