/* ===== GLOBAL ===== */
.container-contact {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== LEFT SIDE (INFO) ===== */
.closing-title {
  font-size: 42px;
  font-weight: 700;
  color: #202124;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease forwards;
}

.closing-subtitle {
  font-size: 16px;
  color: #5f6368;
  margin-bottom: 35px;
  line-height: 1.6;
  animation: fadeUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.closing-contacts {
  display: flex;
  gap: 40px;
}

.closing-contacts-head {
  margin-bottom: 25px;
}

.closing-contacts-head strong {
  display: block;
  font-size: 14px;
  color: #4285F4;
  margin-bottom: 6px;
}

.closing-contacts-head div {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.5;
}

/* SOCIAL ICONS */
.closing-contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f3f4;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.closing-contact-links a i {
  color: #202124;
}

.closing-contact-links a:hover {
  background: #4285F4;
  transform: translateY(-4px);
}

.closing-contact-links a:hover i {
  color: white;
}

/* ===== RIGHT SIDE (FORM) ===== */
.contact-overlay {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  animation: scaleIn 0.6s ease forwards;
}

.contact-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #202124;
}

.contact-content {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 25px;
}

/* INPUTS */
.input,
.textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  margin-bottom: 15px;
  font-size: 14px;
  transition: all 0.25s ease;
  background: #fafafa;
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: #4285F4;
  background: white;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

/* BUTTON */
.btn-primary-strong {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-strong:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

/* BUTTON SHINE */
.btn-primary-strong::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shine {
  0% {
    left: -60%;
  }
  40% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .closing-title {
    font-size: 32px;
  }

  .contact-overlay {
    padding: 25px;
  }
}