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

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

.headline {
  font-size: 44px;
  margin: 0 0 12px;
  line-height: 1.02;
  color: #fff;
  font-weight: 800;
}

.lead {
  color: var(--muted);
  margin: 16px 0 22px;
  max-width: 48ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.thumb {
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 8px 26px rgba(0,0,0,0.6);
  transition: transform 350ms ease;
}

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

.thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 350ms ease;
}

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

.thumb figcaption {
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.about-wrap {
  max-width: 900px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.01));
  padding: 20px;
  border-radius: 12px;
  margin: 40px 0;
}

.about-wrap h2 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 12px;
}

.about-wrap ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.about-wrap li {
  margin-bottom: 8px;
}

.about-wrap p {
  font-weight: bold;
  color: var(--accent);
}

.form {
  max-width: 720px;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

.form h2 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.form-row label {
  font-size: 13px;
  color: var(--muted);
}

.form-row input,
.form-row textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(38,208,122,0.9);
  box-shadow: 0 8px 30px rgba(38,208,122,0.06);
}

.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-primary {
  background: linear-gradient(180deg, var(--accent), #0fbf5f);
  color: #06110a;
  box-shadow: 0 10px 30px rgba(38,208,122,0.12);
}

.btn-primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(38,208,122,0.16);
}

/* 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) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .section {
    padding: 40px 4vw;
  }

  .form {
    padding: 12px;
  }
}