.contact-section {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(to bottom, #000, #000);
  color: white;
  overflow: hidden;
  isolation: isolate;
}

/* Container */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Header */

.contact-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.contact-header h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.contact-header h2 span {
  background: linear-gradient(90deg, #b46aff, #48c7ff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-header p {
  color: #b7bed0;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* Grid layout for form + info cards */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form Styles */

.contact-form {
  background: linear-gradient(135deg, rgba(17,17,17,0.9), rgba(0,0,0,0.7));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  padding: 2.5rem;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 25px rgba(255,255,255,0.03);
  transition: all 0.35s ease;
  backdrop-filter: blur(14px) saturate(160%);
}

.contact-form:hover {
  border-color: rgba(180, 106, 255, 0.6);
  box-shadow: 
    0 14px 45px rgba(0, 0, 0, 0.75),
    0 0 30px rgba(180, 106, 255, 0.25);
}

.contact-form h3 {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: -0.3px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(34, 34, 34, 0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  color: white;
  padding: 0.9rem 1.2rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  transition: border-color 0.25s ease, background 0.35s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b46aff;
  outline: none;
  background: rgba(50, 40, 70, 0.4);
}

/* Submit Button */
.contact-form button {
  background: linear-gradient(90deg, #9b5de5, #f15bb5);
  color: white;
  font-weight: 700;
  padding: 0.85rem 2.5rem;
  border-radius: 3rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.contact-form button:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 0 25px rgba(155, 93, 229, 0.5);
}

/* Success Message */

#contact-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}

#contact-success h4 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

/* Info Cards */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(20,20,20,0.9), rgba(0,0,0,0.7));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.8rem;
  padding: 1.8rem;
  backdrop-filter: blur(14px) saturate(150%);
  transition: all 0.35s ease;
  box-shadow:
    0 12px 35px rgba(0,0,0,0.55),
    inset 0 0 20px rgba(255,255,255,0.03);
}

.info-card:hover {
  border-color: rgba(180, 106, 255, 0.45);
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.75),
    0 0 30px rgba(180, 106, 255, 0.25);
}

.info-card h4 {
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.info-card a,
.info-card p {
  color: #bfc4d6;
  line-height: 1.5;
}

.info-card a:hover {
  color: #c77fff;
  text-decoration: underline;
}

/* Icon styles */

.info-card .icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* orbit glow */
  background: radial-gradient(circle,
    rgba(255,255,255,0.18) 0%,
    rgba(20,20,20,0.95) 70%);
  box-shadow:
    0 0 20px rgba(180, 106, 255, 0.25),
    inset 0 0 20px rgba(255,255,255,0.05);

  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.35s ease;
}

.info-card:hover .icon {
  transform: scale(1.12);
  box-shadow:
    0 0 25px rgba(180, 106, 255, 0.4),
    inset 0 0 25px rgba(255,255,255,0.08);
}

.info-card .icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
  stroke: white;
  fill: none;
  opacity: 0.9;
}

/* Category color glows */
.icon.email { background: linear-gradient(135deg, #9b5de5, #8c4dd8); }
.icon.phone { background: linear-gradient(135deg, #f15bb5, #da45a5); }
.icon.location { background: linear-gradient(135deg, #00cfff, #00a8e0); }
.icon.press { background: linear-gradient(135deg, #ff6f91, #ff4f74); }

/* Animation Classes */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.animate-fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* Decorative Blobs */

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(14rem);
  opacity: 0.25;
  z-index: 0;
}

.blob-purple {
  top: 6rem;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  background: rgba(155, 93, 229, 0.22);
}

.blob-pink {
  bottom: -10rem;
  left: -9rem;
  width: 30rem;
  height: 30rem;
  background: rgba(241, 91, 181, 0.22);
}

/* Mobile Responsive */

@media (max-width: 768px) {
  .contact-section {
    padding: 6rem 1.5rem;
  }

  .info-card {
    padding: 1.4rem;
  }

  .info-card .icon {
    width: 60px;
    height: 60px;
  }

  .info-card .icon svg {
    width: 26px;
    height: 26px;
  }
}
