.contact-section {
  padding: 100px 20px;
  text-align: center;
  color: white;
  background:
    radial-gradient(1200px 600px at top left, #1e293b, transparent),
    radial-gradient(800px 400px at bottom right, #020617, transparent),
    linear-gradient(180deg, #020617, #020617);
}

/* PILL */
.pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  margin-bottom: 22px;
}
.still-bg h4{color:#525252;}
.our-team-text{color:#525252;}
/* TITLE */
.contact-section h1 {
  font-size: 60px;
  margin-bottom: 14px;
}

.ready-subtitle {
  font-size: 20px;
  color: #d4d4c9;
  margin-bottom: 60px;
}

/* CARDS */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1207px;
  margin: auto;
}

.ready-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 32px;
  text-align: left;
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ready-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  background-color:#2c303c;
}

/* ICON */
.ready-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  color:blue;
}

.blue { background: rgba(59,130,246,0.2); color:#60a5fa;}
.cyan { background: rgba(34,211,238,0.2); color:#60a5fa;}
.purple { background: rgba(168,85,247,0.25); color: #c084fc;}

/* TEXT */
.ready-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  font-weight: 400;
}

.muted {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 10px;
}

.link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}

.blue-text { color: #60a5fa; }
.cyan-text { color: #67e8f9; }
.purple-text { color: #c084fc; font-size: 15px;}
.two-hours {
      color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 32px 28px;
    font-size: 15px;
    margin-top: -87px;

}

.two-hours-top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.two-hours-star {
  color: #f5c518; /* Gold star color */
}
.form-area{width:1207px; margin: 0 auto; border:1px solid red; margin-top:40px;
background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 32px;
  text-align: left;
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.form-wrapper {
  width: 100%;
  max-width: 900px;
}

.inquiry-form {
  border-radius: 18px;
  padding: 32px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.formfield {
  display: flex;
  flex-direction: column;
}

.formfield label {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 8px;
}

.formfield input,
.formfield select,
.formfield textarea {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: #e5e7eb;
  outline: none;
}

.formfield input::placeholder,
.formfield textarea::placeholder {
  color: #64748b;
}

.formfield select {
  appearance: none;
  cursor: pointer;
}

.formfield textarea {
  resize: none;
  height: 120px;
}

.full {
  margin-top: 22px;
}

.formbutton {
  width: 100%;
  margin-top: 28px;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.formbutton:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
}

.secure {
  margin-top: 16px;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}
.sucess-msg{
  background:#d4edda; color:#155724; padding:12px 16px; border-radius:10px; margin-bottom:15px; font-weight:600;
  transition: all 0.8s ease;
}
.sucess-msg.hide {
  filter: blur(8px);
  opacity: 0;
  transform: scale(0.95);
  display:none;
}
.error-msg{
  background:#f8d7da; color:#721c24; padding:12px 16px; border-radius:10px; margin-bottom:15px; font-weight:600;
  transition: all 0.8s ease;
}
.error-msg.hide {
  filter: blur(8px);
  opacity: 0;
  transform: scale(0.95);
  display:none;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-section h1 {
    font-size: 30px;
  }
  .ready-subtitle {
    font-size: 16px;
    color: #d4d4c9;
    margin-bottom: 60px;
}
  .form-area{width:100%; margin: 0 auto; border:1px solid red; margin-top:40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 22px;
  text-align: left;
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.inquiry-form {
    background: #020617;
    border-radius: 18px;
    padding: 5px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
  .grid {
    grid-template-columns: 1fr;
  }
  .two-hours {
    flex-direction: column;
    gap: 8px;
    margin-top: -148px;
  }
  .contact-section {
        padding: 152px 20px;
  }
}