/* INTRO */
.contact-intro {
  text-align: center;
  margin-bottom: 30px;
}

/* GRID LAYOUT */
.contact-grid {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px 70px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}

/* LEFT SIDE */
.contact-info {
  display: grid;
  gap: 18px;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all .25s ease;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.contact-card .emoji {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

/* WHATSAPP SPECIAL */
.whatsapp {
  border: 2px solid #25D366;
}

.whatsapp:hover {
  box-shadow: 0 0 25px rgba(37,211,102,0.35);
}

/* RIGHT SIDE */
.quote-box {
  background: linear-gradient(135deg,#0f172a,#020617);
  color: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.quote-box h2 {
  margin-bottom: 18px;
}

/* FORM */
.quote-form {
  display: grid;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 0.85rem;
  margin-bottom: 4px;
  opacity: 0.8;
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-family: Manrope;
  font-size: 0.95rem;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
p{
    color:black
}
h3{
    color:black
}
/* SUCCESS POPUP BACKDROP */
.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 9999;
}

/* SHOW STATE */
.success-popup.show {
  opacity: 1;
  pointer-events: all;
}

/* BOX */
.success-box {
  background: white;
  border-radius: 18px;
  padding: 30px 40px;
  text-align: center;
  transform: scale(0.8);
  opacity: 0;
  animation: popIn .4s cubic-bezier(.22,1,.36,1) forwards;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* CHECK ICON */
.checkmark {
  font-size: 2.5rem;
  color: #22c55e;
  margin-bottom: 10px;
}

/* ANIMATION */
@keyframes popIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}
