
/* RESET & BAZĂ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #e6f2ff;
  color: #0a0f1e;
}

/* HEADER */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #1e2a3a;
}
.main-header .container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #42aaff;
  text-shadow: 0 0 10px #42aaff;
}
.main-nav a {
  color: #cfe8ff;
  text-decoration: none;
  margin-left: 25px;
  font-size: 1rem;
  transition: 0.3s;
}
.main-nav a:hover, .main-nav .active {
  color: #42aaff;
  text-shadow: 0 0 6px #42aaff;
}

/* CONTACT HERO */
.contact-hero {
  padding: 120px 20px 60px;
  text-align: center;
}
.contact-hero h1 {
  font-size: 2.8rem;
  color: #0a0f1e;
  margin-bottom: 15px;
}
.contact-hero p {
  font-size: 1.1rem;
  color: #374151;
}

/* CONTACT SECTION */
.contact-section {
  padding: 60px 20px;
}
.contact-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.contact-form {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
}
.contact-form button {
  background: #42aaff;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #0078ff;
}

.contact-info {
  flex: 1 1 40%;
}
.contact-info h3 {
  font-size: 1.3rem;
  color: #0078ff;
  margin-bottom: 15px;
}
.contact-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

/* SOCIAL CTA */
.contact-cta {
  background: #0a0f1e;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.contact-cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.contact-cta p {
  font-size: 1.1rem;
}
.social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.social-links a {
  color: #42aaff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s;
}
.social-links a:hover {
  text-shadow: 0 0 10px #42aaff;
}

/* FOOTER */
.milval-footer {
  background: #f2f6fa;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #666;
}
