* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #07111f;
  color: white;
  line-height: 1.6;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 8%;
  background: #06101d;
  border-bottom: 1px solid #12395c;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  width: 210px;
  height: 58px;
  text-decoration: none;
  overflow: hidden;
}

.nav-logo img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.35));
}

/* HAMBURGER HIDDEN ON DESKTOP */
.menu-toggle {
  display: none;
  background: #38bdf8;
  color: #06101d;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.2s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #38bdf8;
  transition: width 0.2s ease;
}

nav ul li a:hover {
  color: #38bdf8;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a.active {
  color: #38bdf8;
}

nav ul li a.active::after {
  width: 100%;
}

/* HERO */
.hero {
  min-height: 85vh;
  padding: 70px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  background: linear-gradient(135deg, #07111f, #0b2a45, #0f172a);
}

.hero-text {
  max-width: 650px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 19px;
  color: #d6e6f5;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  box-shadow: 0 8px 22px rgba(56, 189, 248, 0.22);
}

.btn-primary {
  background: #38bdf8;
  color: #06101d;
}

.btn-secondary {
  border: 1px solid #38bdf8;
  color: white;
}

/* HOME LOGO IMAGE */
.hero-logo {
  max-width: 430px;
  width: 100%;
}

.hero-logo img {
  width: 100%;
  display: block;
  border-radius: 22px;
  filter: drop-shadow(0 15px 35px rgba(56, 189, 248, 0.28));
}

/* OLD HERO CARD */
.hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid #24577d;
  border-radius: 20px;
  padding: 30px;
  max-width: 370px;
}

.hero-card h3 {
  color: #38bdf8;
  margin-bottom: 15px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  margin-bottom: 10px;
  color: #d6e6f5;
}

/* PAGE HEADER */
.page-header {
  padding: 70px 8%;
  text-align: center;
  background: linear-gradient(135deg, #07111f, #0b2a45);
}

.page-header h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

.page-header p {
  color: #d6e6f5;
  font-size: 18px;
}

/* SECTIONS */
.section {
  padding: 70px 8%;
}

.dark-section {
  background: #081827;
}

.section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: #b9c9d8;
  margin: 0 auto 45px auto;
  max-width: 700px;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 35px;
}

.card {
  background: #0d1b2d;
  border: 1px solid #1f486b;
  border-radius: 18px;
  padding: 25px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: #38bdf8;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.12);
}

.card h3 {
  color: #38bdf8;
  margin-bottom: 10px;
}

.card p {
  color: #d6e6f5;
}

/* CONTACT PAGE */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  margin-top: 35px;
}

.contact-card {
  background: #0d1b2d;
  border: 1px solid #1f486b;
  border-radius: 18px;
  padding: 25px;
}

.contact-card h3 {
  color: #38bdf8;
  margin-bottom: 15px;
}

.contact-card p {
  color: #d6e6f5;
  margin-bottom: 12px;
}

.contact-form {
  background: #0d1b2d;
  border: 1px solid #1f486b;
  border-radius: 18px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-weight: bold;
  color: #d6e6f5;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  margin-top: 10px;
  padding: 13px;
  border: none;
  border-radius: 10px;
  background: #38bdf8;
  color: #06101d;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  opacity: 0.85;
}

.honeypot {
  display: none;
}

/* SUCCESS POPUP */
.success-popup {
  display: none;
  position: fixed;
  top: 90px;
  right: 30px;
  background: #38bdf8;
  color: #06101d;
  padding: 16px 22px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
  z-index: 999;
}

.success-popup.show {
  display: block;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  background: #06101d;
  border-top: 1px solid #12395c;
  color: #b9c9d8;
}

/* MOBILE */
@media (max-width: 800px) {
  nav {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 12px 5%;
  }

  .nav-logo {
    width: 180px;
    height: 50px;
  }

  .nav-logo img {
    height: 50px;
    width: auto;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 14px;
    padding: 15px 0;
    background: #06101d;
    border-top: 1px solid #12395c;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 45px 6%;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .hero-logo {
    max-width: 310px;
  }

  .section,
  .page-header {
    padding: 45px 6%;
  }

  .page-header h1 {
    font-size: 34px;
  }

  .section h2 {
    font-size: 30px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-card,
  .card {
    padding: 20px;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .success-popup {
    top: 80px;
    right: 15px;
    left: 15px;
    text-align: center;
  }
}
