:root {
  --primary-color: #8b3dff;
  --secondary-color: #ff3d77;
  --dark-bg: #0a0a0a;
  --card-bg: rgba(255, 255, 255, 0.05);
}

/* Global Styles */
body {
  background-color: var(--dark-bg);
  color: white;
  font-family: Montserrat;
  overflow-x: hidden;
}

.contact-form .error{
  color: #ff3d77;
  font-size: 15px;
  margin-top: 2px;
  font-weight: 500;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Hero Section */
.hero-section {
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(to right, #fff, var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

/* Info Cards */
.info-card {
  background: var(--card-bg);
  border-radius: 15px;
  height: 100%;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(139, 61, 255, 0.1);
}

.info-icon {
  font-size: 2.5rem;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: Montserrat;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.8rem;
  border-radius: 10px;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  color: white;
  box-shadow: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 61, 255, 0.3);
}

/* Map Container */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  min-height: 400px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  font-size: 22px;
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .info-card {
    margin-bottom: 1rem;
  }
  .contact-form{
    padding: 2rem 1rem;
  }
}

@media(max-width: 576px){
  .hero-section{
    height: min-content;
    padding: 50px 0 30px 0;
  }
  .info-card{
    padding: 1rem;
  }
}

.footer-animated-container .footer-frame::after {
  display: none;
}

.footer-animated-container .footer-reflection{
  opacity: 0.1;
}