/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* BODY */
body {
  background: linear-gradient(135deg, #1d4152, #1e293b, #0c596d);
  color: #fff;
  overflow-x: hidden;
}

/* BACKGROUND GLOW */
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  z-index: -1;
}

body::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 171, 246, 0.35), transparent 70%);
  top: -150px;
  left: -150px;
}

body::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(185, 218, 110, 0.35), transparent 70%);
  bottom: -150px;
  right: -150px;
}

/* LOGO */
.contact-logo {
  text-align: center;
  padding-top: 40px;
}

.contact-logo img {
  width: 150px;
  animation: float 4s ease-in-out infinite;
}

/* FORM WRAPPER */
.contact-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FORM */
form {
  width: 100%;
  max-width: 420px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

label {
  font-size: 13px;
  opacity: 0.8;
}

.form-row {
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

input:focus,
textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 15px rgba(59,130,246,0.5);
}

/* BUTTON */
button {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #3b82f6, #9333ea);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-3px);
}

/* WHY CHOOSE US */
.why-choose-us {
  padding: 100px 8%;
}

.why-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-header h2 {
  font-size: 36px;
  background: linear-gradient(135deg,#38bdf8,#9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.why-card {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  text-align: center;
  transition: 0.4s;
}

.why-card img {
  width: 150px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.why-card:hover {
  transform: translateY(-10px);
}

.why-description{
    margin-top: 100px;
}

/* ANIMATION */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
