/* Unique professional redesign for contact form and info in black and white */
.contact-section {
  display: flex;
  justify-content: center;
  padding: 4rem 3rem;
  position: relative;
  align-items: stretch;
  gap: 3rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.contact-form-wrapper {
  max-width: 600px;
  width: 100%;
  background: #fff;
  padding: 3rem 3.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  color: #000;
  position: relative;
  overflow: hidden;
}
.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #000 0%, #444 100%);
  opacity: 0.1;
  transform: rotate(25deg);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 0;
  border-radius: 40%;
}
.contact-form-wrapper:hover::before {
  opacity: 0.15;
}
.contact-form-wrapper h3 {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 3px solid #000;
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.contact-form-wrapper label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
  display: block;
  position: relative;
  z-index: 1;
}
.contact-form-wrapper input,
.contact-form-wrapper textarea {
  font-size: 1rem;
  color: #000;
  background: #fff;
  border: 1.8px solid #444;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  border-color: #000;
  box-shadow: 0 0 12px rgba(0,0,0,0.7);
  outline: none;
  background: #fff;
  color: #000;
}
.contact-form-wrapper button {
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 1rem 3rem;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  align-self: center;
  max-width: 280px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
}
.contact-form-wrapper button:hover {
  background-color: #222;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.contact-info {
  max-width: 400px;
  background: #fff;
  border-radius: 20px;
  padding: 3rem 3rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -40%;
  width: 180%;
  height: 180%;
  background: linear-gradient(135deg, #000 0%, #444 100%);
  opacity: 0.1;
  transform: rotate(-25deg);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 0;
  border-radius: 40%;
}
.contact-info h3 {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: #000;
  border-bottom: 3px solid #000;
  padding-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
  position: relative;
  z-index: 1;
}
.contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-info li i {
  font-size: 1.6rem;
  color: #000;
  min-width: 28px;
}
/* Subtle floating animation for balls */
.animation-balls {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.ball {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
  background: #000;
  filter: blur(8px);
  mix-blend-mode: screen;
  box-shadow: 0 0 30px #000;
}
.ball1 {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}
.ball2 {
  width: 70px;
  height: 70px;
  top: 40%;
  left: 75%;
  animation-delay: 3s;
}
.ball3 {
  width: 90px;
  height: 90px;
  top: 70%;
  left: 40%;
  animation-delay: 5s;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-25px) translateX(20px);
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  .contact-info {
    max-width: 100%;
    margin-left: 0;
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 12px;
  }
  .contact-form-wrapper {
    max-width: 100%;
    padding: 2rem 2.5rem;
    border-radius: 12px;
  }
}
