body {
  background-color: #0b0b15;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.navbar {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #000;
}

.navbar-brand {
  letter-spacing: 1px;
}

.nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffcc00 !important;
}

/* Header */
.contact-header {
  background: radial-gradient(circle at center, #6228d7, #0b0b15 70%);
  text-align: center;
  padding: 100px 0 70px;
}
.contact-header h1 {
  font-weight: 700;
  font-size: 48px;
}
.contact-header p {
  color: #bbb;
}

/* Contact Info */
.contact-info h3 {
  color: #fff;
  margin-bottom: 20px;
}
.contact-info p {
  color: #bbb;
}
.contact-info i {
  color: #e33aff;
  font-size: 22px;
  margin-right: 10px;
}
.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #e33aff;
}

/* Form */
.contact-form {
  background: linear-gradient(145deg, #1a1a2e, #111121);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(97, 52, 234, 0.3);
}
.contact-form input,
.contact-form textarea {
  background-color: #0f0f1c;
  border: none;
  color: #fff;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}
.contact-form button {
  background: linear-gradient(to right, #e33aff, #6228d7);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}
.contact-form button:hover {
  opacity: 0.9;
}

/* Map */
.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  filter: grayscale(100%) invert(90%) contrast(90%);
}

/* Footer */
.footer-section {
  background: #111;
  color: #bbb;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff007f, #00e5ff, #6a11cb);
}

.footer-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff007f, #6a11cb);
  border-radius: 2px;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #00e5ff;
  text-decoration: underline;
}

.play-badge {
  width: 150px;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.play-badge:hover {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid #333;
  background-color: #0d0d0d;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom span {
  color: #00e5ff;
  font-weight: 600;
}