/* Rinnovations Components CSS */
/* Component-specific styles */

/* Certifications Component */
.certifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.certification-item {
  padding: 1rem;
}

.certification-icon {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.certification-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* Werkwijze (Process) Component */
.werkwijze {
  background: var(--primary-red);
}

.werkwijze-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.werkwijze-step {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 0.5rem;
}

.werkwijze-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.werkwijze-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.werkwijze-description {
  color: var(--gray-600);
  line-height: 1.6;
}

.werkwijze-icon{
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;

  /* primary-red/50, replace with your real primary red if needed */
  background: color-mix(in srgb, var(--primary-red) 10%, transparent);

}

.werkwijze-icon svg{
  width: 24px;
  height: 24px;

  fill: none;
  stroke: #22c55e;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* Eco-Friendly Component */
.eco-friendly {
  background-color: var(--gray-50);
}

.eco-list {
  list-style: none;
  padding: 0;
}

.eco-list-item {
  display: flex;
  align-items: start;
  margin-bottom: 1rem;
}

.eco-list-icon {
  color: #059669;
  font-size: 1.5rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.eco-list-text {
  color: var(--gray-700);
  line-height: 1.6;
}

/* Gratis Proef (Free Trial) Component */
.gratis-proef {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: white;
  padding: 4rem 0;
}

.gratis-proef-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.gratis-proef-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.gratis-proef-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.gratis-proef-list-icon {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* Service Page Content */
.service-content {
  max-width: 1000px;
  margin: 0 auto;
}

.service-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-800);
}

.service-content p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-content ul {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-content ul li {
  margin-bottom: 0.5rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.benefit-item {
  padding: 1.5rem;
  background: white;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-200);
}

.benefit-icon {
  color: var(--primary-red);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.benefit-text {
  color: var(--gray-600);
  line-height: 1.6;
}

/* FAQ Section */
.faq {
  margin-top: 3rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary-red);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.faq-answer {
  color: var(--gray-700);
  line-height: 1.6;
}

/* Contact Info Boxes */
.contact-info-box {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: start;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1rem;
}

.contact-icon svg,
.contact-icon i {
  color: var(--primary-red);
  font-size: 1.5rem;
}

.contact-details h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.contact-details a {
  color: var(--primary-red);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--primary-red-dark);
}

.contact-details p {
  color: var(--gray-600);
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
}

/* Contact Form Box */
.contact-form-box {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 0.5rem;
}

.contact-form-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.contact-form-box p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* Opening Hours Table */
.opening-hours {
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.opening-hours h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 500;
}

.hours-time {
  font-weight: 600;
}

/* About Page Sections */
.about-section {
  margin-bottom: 3rem;
}

.about-section img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.core-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.core-value-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-200);
}

.core-value-icon {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.core-value-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.core-value-text {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Loading State */
.btn-loading {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-loading::after {
  content: "...";
  animation: dots 1s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% { content: "."; }
  40% { content: ".."; }
  60%, 100% { content: "..."; }
}

/* Responsive Images */
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scroll to Top Button (if needed) */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  background: var(--primary-red-dark);
  transform: translateY(-3px);
}

.scroll-to-top.show {
  display: flex;
}
