/* =========================
   HIRE US PAGE
   Multimedia Ads
========================= */

* {
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  margin: 0;
  background: #f4f7fb;
  color: #0b1c2d;
}

/* HERO */
.hire-hero {
  background: linear-gradient(135deg, #00c897, #0b1c2d);
  color: #ffffff;
  padding: 90px 20px;
  text-align: center;
}

.hire-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.hire-hero p {
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.btn-primary {
  background: #ffffff;
  color: #00c897;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* SECTIONS */
section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* TWO COL */
.two-col {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* WHY US */
.why-us ul {
  list-style: none;
  padding: 0;
}

.why-us ul li {
  margin-bottom: 12px;
}

.highlight-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.step {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  font-weight: 500;
}

/* FORM */
.hire-form-section {
  background: #ffffff;
}

.hire-form {
  max-width: 520px;
  margin: 40px auto 0;
}

.hire-form input,
.hire-form select,
.hire-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.hire-form button {
  width: 100%;
  padding: 14px;
  background: #00c897;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 10px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col {
    flex-direction: column;
  }

  .hire-hero h1 {
    font-size: 2.1rem;
  }
}
