/* GLOBAL */
body {
  margin: 0;
  background: #0b1224;
  color: white;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(7px);
  position: sticky;
  top: 0;
}

.navbar nav a {
  margin-left: 20px;
  color: #9bb5ff;
  text-decoration: none;
  transition: 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: white;
}

/* HERO */
.hero {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #1e2a46, #0d1631);
}

.hero h1 {
  font-size: 3em;
  animation: fadeInDown 0.8s ease-in-out;
}

/* CONTACT SECTION */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  padding: 40px;
}

/* CARD STYLE */
.card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 12px;
  animation: fadeInUp 0.9s ease;
}

/* CONTACT DETAILS */
.social {
  margin-top: 10px;
}

.social-btn {
  margin-right: 10px;
  padding: 8px 14px;
  background: #3d5afe;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-btn:hover {
  opacity: 0.8;
}

.privacy {
  margin-top: 20px;
  font-size: 0.9em;
  opacity: 0.8;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: none;
}

.send-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #3d5afe;
  color: white;
  cursor: pointer;
}

.confirmation {
  margin-top: 15px;
  font-size: 1em;
  color: #9cffd1;
}

/* MAP */
.map-section {
  margin: 30px 40px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== Contact Form ====== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form label {
  font-weight: bold;
  color: #f2c94c;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 2px solid #f2c94c;
  border-radius: 6px;
  background-color: #f8f5e1;
  color: #0a1a3a;
  font-size: 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e0b84a;
  box-shadow: 0 0 6px rgba(242, 201, 76, 0.6);
}

.contact-form button {
  background-color: #f2c94c;
  color: #0a1a3a;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #e0b84a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}
