/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(145deg, #eaeaea, #f5f5f5);
  color: #1a1a1a;
  line-height: 1.6;
  min-height: 100vh;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #ffffff;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  max-height: 75px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: bold;
  color: #1a1a1a;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0073e6;
}

/* Floating wrapper for depth effect */
.floating-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
}

/* Contact Section */
.contact-section {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 700px;
  width: 100%;
}

.contact-section h1 {
  text-align: center;
  margin-bottom: 30px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  margin-top: 20px;
  background-color: #0073e6;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover {
  background-color: #005bb5;
}

/* Footer */
footer {
  background: transparent;
  text-align: center;
  padding: 40px 0;
  font-size: 0.85rem;
  color: #999;
}

/* Mobile Nav Button */
.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

/* Mobile Styles */
@media (max-width: 600px) {
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    text-align: left;
  }

  .logo {
    max-height: 60px;
    margin-bottom: 0;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    background-color: #0073e6;
    color: white;
    padding: 8px 16px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background-color: white;
    border-top: 1px solid #eee;
    padding: 10px 15px;
  }

  .mobile-menu a {
    padding: 10px 0;
    text-decoration: none;
    font-weight: bold;
    color: #1a1a1a;
    border-bottom: 1px solid #eee;
  }

  .mobile-menu a:hover,
  .mobile-menu a.active {
    color: #0073e6;
  }

  .mobile-menu.active {
    display: flex;
  }

  .floating-wrapper {
    padding: 30px 10px;
  }

  .contact-section {
    padding: 20px;
    border-radius: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 8px;
  }

  .contact-form button {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}
