/* PRO-Ландшафт demo — component styles. Flat colors only. */

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background-color 0.2s, opacity 0.2s;
}

.btn-primary {
  background-color: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--green-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  opacity: 0.85;
}

.btn-outline-green {
  background-color: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 8px 18px;
  font-size: 14px;
}

.btn-outline-green:hover {
  background-color: var(--green);
  color: var(--white);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

/* Cards */
.card {
  background-color: var(--white);
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Icons */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: var(--green);
  color: var(--white);
  flex-shrink: 0;
}

.icon-outlined {
  background-color: var(--lighter);
  color: var(--green);
}

.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.icon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}

.icon-item img { width: 24px; height: 24px; }

/* Tag cloud / badges */
.tag {
  display: inline-block;
  background-color: var(--lighter);
  color: var(--dark);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.tag-popular {
  background-color: var(--green);
  color: var(--white);
}

/* Stats counters */
.counter {
  text-align: center;
  padding: 12px 0;
}

.counter-num {
  font-size: 32px;
  font-weight: 600;
  color: var(--green);
}

.counter-label {
  font-size: 12px;
  color: var(--text);
}

/* Contact info */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-item p,
.contact-item a {
  font-size: 14px;
  color: var(--text);
}

/* Social links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #333;
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  transition: background-color 0.2s;
}

.social-links a:hover {
  background-color: var(--green);
}

/* Back to top button */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  z-index: 200;
  border: none;
  font-size: 16px;
}

.back-top.show { display: flex; }

/* Table styles */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid #eaeaea;
}

.data-table th {
  background-color: var(--lighter);
  color: var(--dark-2);
  font-weight: 600;
}

/* Text styles */
.text-green { color: var(--green); }
.text-dark { color: var(--dark-2); }
.font-umedium { font-weight: 500; }
.text-center { text-align: center; }

/* Divider */
.divider {
  height: 1px;
  background-color: #eaeaea;
  margin: 24px 0;
}

/* Service detail block */
.service-detail {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.service-detail .sd-img {
  flex: 0 0 160px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eaeaea;
}

.service-detail .sd-img img { object-fit: cover; width: 100%; height: 160px; }
.service-detail .sd-content { flex: 1; }
.service-detail h3 { margin-bottom: 8px; }
.service-detail ul { margin-top: 8px; }
.service-detail li {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
  padding-left: 16px;
  position: relative;
}
.service-detail li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}

/* FAQ detail */
.faq-detail { margin-bottom: 12px; }
.faq-detail h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-2);
  margin-bottom: 4px;
}
.faq-detail p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}

/* Process steps */
.process-steps {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 12px;
}

.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step .step-label {
  font-size: 13px;
  color: var(--text);
}
