/* ============================= */
/* BUTTONS */
/* ============================= */

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(30, 64, 175, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #ffffff;
}


/* ============================= */
/* SERVICES */
/* ============================= */

.services-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.12);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card h3 {
  margin: 22px 22px 10px;
  font-size: 20px;
}

.service-card p {
  margin: 0 22px 26px;
  font-size: 15px;
  color: var(--muted);
}


/* ============================= */
/* INDUSTRIES */
/* ============================= */

.industries-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.industry-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.12);
}

.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.industry-content {
  padding: 22px;
}

.industry-content h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.industry-content p {
  font-size: 14px;
  color: var(--muted);
}


/* ============================= */
/* ABOUT SECTION IMAGE */
/* ============================= */

.about-grid img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.15);
}


/* ============================= */
/* CONTACT FORM – ENTERPRISE */
/* ============================= */

form {
  max-width: 640px;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.08);
}

form input,
form textarea {
  width: 100%;
  padding: 16px 18px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form input::placeholder,
form textarea::placeholder {
  color: #94a3b8;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.15);
}

form textarea {
  min-height: 150px;
  resize: vertical;
}

form button {
  margin-top: 12px;
}

/* Two-column layout on desktop */
@media (min-width: 768px) {
  form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  form textarea,
  form button {
    grid-column: span 2;
  }
}

/* ============================= */
/* MOBILE COMPONENT ADJUSTMENTS */
/* ============================= */

@media (max-width: 768px) {

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .services-grid,
  .industries-grid {
    gap: 24px;
  }

  .service-card h3,
  .industry-content h3 {
    font-size: 17px;
  }

  .service-card p,
  .industry-content p {
    font-size: 14px;
  }
}

