:root {
  --primary:#5ECA86;
  --bg: #f6f7fb;
  --card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;

  opacity: 0;
  transform: translateY(40px); 
  animation: appearSlow 1.6s ease-out forwards;
}

@keyframes appearSlow {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* LEFT SIDE */
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(91,90,246,0.1);
  color:#f373c5 ;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.left h1 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.left h1 span {
  color: var(--primary);
}

.left p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
}

.info-cards {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.info-card {
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  min-width: 200px;
}

.info-card strong {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.info-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

/* SOCIALS */
.socials {
  margin-top: 36px;
  display: flex;
  gap: 14px;
}

.socials span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, white,white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.socials span:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(91,90,246,0.4);
}

/* FORM CARD */
.card {
  background: var(--card);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

  
}

label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input, textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 14px;
}

input:focus, textarea:focus {
  border-color: var(--primary);
}

textarea {
  resize: none;
  height: 140px;
}

.full {
  grid-column: span 2;
}

button {
  margin-top: 20px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background-color: #f373c5;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(185, 185, 185, 0.35);
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  animation: pop 0.4s ease;
}

@keyframes pop {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }

  .left {
    text-align: center;
  }

  .left p {
    margin: 0 auto;
  }

  .info-cards {
    justify-content: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: span 1;
  }

  button {
    width: 100%;
    padding: 16px;
  }


  .socials {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

}
