/* =======================
   RESPONSIVE.CSS
======================= */

@media (max-width: 900px) {
  .nav-actions { display: none; }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
}
/* MOBILE FIXES */
@media (max-width: 480px) {
  .latest-card {
    border-radius: 14px;
  }

  .latest-card img {
    height: 160px;
  }

  h1 {
    font-size: 1.9rem;
  }

  .hero p {
    padding: 0 1rem;
  }
}

/* =============================
   CONTACT SECTION – PROFESSIONAL
============================= */

.contact-section {
  background: #f8fafc;
  padding: 5rem 1.5rem;
  text-align: center;
}

.contact-container {
  max-width: 720px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* FORM */
.contact-form {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row {
  display: flex;
  gap: 1.2rem;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  background: #fdfdfd;
  transition: 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30,58,138,0.15);
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* BUTTON */
.btn-submit {
  width: 100%;
  padding: 1.1rem;
  background: #1e3a8a;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-submit:hover {
  background: #0f1f53;
}

/* Mobile */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 7rem !important;
  }

  .hero h1 {
    font-size: 2rem !important;
    line-height: 1.3;
  }

  .contact-section {
    padding-top: 6rem !important;
  }
}
