/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  background: #f4f7f9;
  color: #1f2937;
  line-height: 1.7;
}

/* =========================
   HEADER
========================= */
.contact-header {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  position: relative;
}

.contact-header .logo {
  width: 180px;
  margin-bottom: 10px;
}

.contact-header .hero-email {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #fffb;
  text-align: center;
  animation: fadeUp 1.5s ease;
}

.contact-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  animation: fadeUp 1.5s ease 0.2s;
}

.contact-header p {
  font-size: 1.1rem;
  color: #e0e7ff;
  animation: fadeUp 1.5s ease 0.4s;
}

/* =========================
   CONTACT FORM
========================= */
.contact-section {
  max-width: 700px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #0f172a;
}

.contact-section form input,
.contact-section form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-section form input:focus,
.contact-section form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
  outline: none;
}

.contact-section form textarea {
  min-height: 140px;
  resize: vertical;
}

.send-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: #2563eb;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.send-btn:hover {
  background: #1e40af;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.3);
}

/* =========================
   SOCIAL LINKS
========================= */
.social-section {
  text-align: center;
  margin: 60px 20px 40px;
}

.social-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.social-links a {
  display: inline-block;
  margin: 0 15px;
  padding: 10px 18px;
  background: #38bdf8;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #2563eb;
  transform: translateY(-3px);
}

/* =========================
   FOOTER
========================= */
.contact-footer {
  text-align: center;
  padding: 25px;
  background: #0f172a;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-section {
    margin: 30px 15px;
    padding: 25px;
  }

  .social-links a {
    margin: 0 8px 12px;
  }
}