:root {
  --bg: #0b0b0b;
  --panel: #0f0f0f;
  --muted: #9b9b9b;
  --accent: #26D07A; /* green */
  --white: #fff;
  --glass: rgba(255,255,255,0.04);
  --transition: 400ms cubic-bezier(.2,.9,.2,1);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Services-specific styles */
.section {
  padding: 80px 6vw;
  position: relative;
  min-height: 420px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.services-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.section-title {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 14px;
  border-radius: 14px;
  min-height: 240px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  transition: transform 350ms ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 10px;
  transition: transform 350ms ease;
}

.service-card:hover img {
  transform: scale(1.06) translateY(-6px);
}

.service-card h3 {
  font-size: 18px;
  margin: 8px 0;
  color: var(--white);
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

/* Search Container */
.search-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 6vw;
  display: flex;
  justify-content: center;
}

#search-box {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  width: 100%;
  max-width: 400px;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

#search-box:focus {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(38,208,122,0.06);
}

#search-box::placeholder {
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 40px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.03);
  color: var(--muted);
  max-width: 1200px;
  margin: 0 auto;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px) scale(.995);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 4vw;
  }

  .search-container {
    padding: 20px 4vw;
  }

  #search-box {
    max-width: 100%;
  }
}