/*
 * Quark 2 — user customizations
 *
 * This file is safe to edit. It is loaded last so anything here overrides
 * theme.css without having to mark rules !important.
 */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-cards-grid .card {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 1.5rem;
  border-radius: 10px;
  transition: 0.2s ease;
}

.service-cards-grid .card:hover {
  transform: translateY(-4px);
}
.hero {
  padding: 5rem 1rem;
  background: #0f172a;
  color: #fff;
}

.hero a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: #e5bd04;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}
.contact-section {
  padding: 4rem 1rem;
  background: #f8f9fb;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.contact-section button {
  background: #0f172a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.case-studies-section {
  padding: 4rem 1rem;
  background: #111827;
  color: #fff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.case-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: #e5bd04;
}

.case-card h3 {
  margin-top: 0;
  color: #e5bd04;
}

.case-card p {
  margin: 0.4rem 0;
  line-height: 1.5;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}