/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* Reset en basis styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color); /* Pure white background */
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  font-weight: var(--font-weight-normal);
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header en Navigatie - Light & Clean */
header {
  background-color: var(--header-bg); /* Pure white */
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  height: 160px;
  min-height: 160px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-image {
  height: 150px;
  width: auto;
  object-fit: contain;
  max-width: 480px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: var(--transition);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
  background-color: var(--section-bg); /* Light grey hover */
  transform: translateY(-1px);
}

/* Dropdown menu voor diensten */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background-color: var(--bg-color); /* White background */
  min-width: 220px;
  box-shadow: var(--shadow-medium);
  border-radius: var(--radius);
  padding: 0.75rem 0;
  z-index: 1000;
  border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  margin: 0;
}

.dropdown-content a:hover {
  background-color: var(--section-bg);
  color: var(--primary-color);
}

/* Hamburger menu voor mobiel */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* Hamburger menu animatie */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero sectie - Light & Airy */
.hero {
  background: var(--bg-color); /* Pure white background */
  padding: 0 0 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, rgba(245, 245, 245, 0.3) 50%, transparent 51%);
}

.hero .container {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-image-placeholder {
  max-width: 600px;
  height: 350px;
  margin: 3rem auto 2rem;
  background: var(--section-bg);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-large);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: var(--font-weight-semibold);
}

.cta-button {
  background-color: var(--accent-color);
  color: var(--bg-color);
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-light);
  letter-spacing: 0.3px;
}

.cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Content blocks styling */
.content-block {
  background-color: var(--content-block-bg);
  border: var(--content-block-border);
  border-radius: var(--radius);
  padding: var(--content-block-padding);
  margin: var(--content-block-margin) 0;
  box-shadow: var(--shadow-light);
}

/* Diensten sectie - Professional & Symmetrical */
.services-section {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 4rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  align-items: stretch; /* Ensure equal heights */
}

.service-card {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  min-height: 400px; /* Consistent minimum height */
}

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

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Takes available space to push image and link down */
}



.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: auto; /* Pushes link to bottom of card */
  display: inline-block;
}

.service-link:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Contact formulier - Light Design */
.contact-section {
  background-color: var(--section-bg); /* Light grey for subtle distinction */
  padding: 5rem 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info {
  background: var(--bg-color); /* White background */
  padding: 2.5rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: var(--font-weight-semibold);
}

.contact-info p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.contact-details {
  margin-top: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.contact-label {
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  min-width: 120px;
}

.contact-item span:last-child {
  color: var(--text-secondary);
}

.info-box {
  margin-top: 2.5rem;
  padding: 2rem;
  background-color: var(--section-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.info-box h4 {
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  font-weight: var(--font-weight-semibold);
}

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

.info-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.info-list li:last-child {
  border-bottom: none;
}

.check-mark {
  color: var(--success-color);
  font-weight: var(--font-weight-bold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.form-container {
  background-color: var(--bg-color); /* White background */
  padding: 2.5rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.form-container h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: var(--font-weight-semibold);
}

.form-container p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  font-size: 1rem;
}

/* Checkbox Group Styling */
.checkbox-group {
  margin-top: 1rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: var(--font-weight-normal);
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.privacy-link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: var(--transition);
}

.privacy-link:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.form-error {
  margin-top: 0.25rem;
  color: var(--error-color);
  font-size: 0.9rem;
  display: none;
  font-weight: var(--font-weight-semibold);
}

.form-error.show {
  display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-color);
  color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(102, 102, 102, 0.1);
  background-color: var(--bg-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.error-message {
  color: var(--error-color);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
  font-weight: var(--font-weight-semibold);
}

.error-message.show {
  display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--error-color);
  background-color: rgba(196, 76, 76, 0.05);
}

.submit-button {
  background-color: var(--accent-color);
  color: var(--bg-color);
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  box-shadow: var(--shadow-light);
}

.submit-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.submit-button:disabled {
  background-color: var(--border-color);
  cursor: not-allowed;
  transform: none;
  color: var(--text-light);
}

/* Success en error meldingen */
.form-message {
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: none;
  font-weight: var(--font-weight-semibold);
}

.form-message.success {
  background-color: #e8f5e8;
  color: var(--success-color);
  border: 1px solid #c3e6c3;
}

.form-message.error {
  background-color: #fdeaea;
  color: var(--error-color);
  border: 1px solid #f5c6cb;
}

.form-message.show {
  display: block;
}

/* Modern Select Styling */
.modern-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  cursor: pointer;
  position: relative;
}

.modern-select:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(102, 102, 102, 0.1);
}

.modern-select option {
  padding: 0.75rem;
  font-size: 1rem;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.modern-select option:hover {
  background-color: var(--section-bg);
}

/* Service Images Styling */
.service-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
}

.service-image:hover img {
  transform: scale(1.05);
}

/* About Image Styling */
.about-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
}

.about-image:hover img {
  transform: scale(1.02);
}

/* Hero Banner Styling */
.hero-banner {
  width: 100vw;
  height: 450px;
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive Image Adjustments */
@media (max-width: 768px) {
  .service-image {
    height: 300px;
  }
  
  .about-image {
    height: 400px;
  }
  
  .hero-banner {
    height: 300px;
  }
}

/* Over ons sectie - Clean White */
.about-section {
  padding: 5rem 0;
  background-color: var(--bg-color); /* Pure white */
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
}

.about-text p {
  margin-bottom: 1.75rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

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

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--section-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.feature-check {
  color: var(--success-color);
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.about-image-container {
  position: relative;
}



/* Footer - Light Design */
footer {
  background-color: var(--footer-bg); /* Light grey instead of dark */
  color: var(--footer-text); /* Dark text instead of white */
  padding: 3rem 0 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
}

.footer-section p,
.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 1.7;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 2rem;
  color: var(--text-light);
}

/* Breadcrumbs */
.breadcrumb {
  background-color: var(--section-bg);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb nav {
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-secondary);
  margin: 0 0.75rem;
}

/* Service detail pagina's - Light Hero */
.service-hero {
  background: var(--bg-color); /* Pure white instead of gradient */
  padding: 4rem 0;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.service-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
}

.service-hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.service-content {
  padding: 4rem 0;
  background-color: var(--bg-color); /* Pure white */
}

.service-details {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.service-description h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: var(--font-weight-semibold);
}

.service-description h3 {
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
  font-size: 1.6rem;
  font-weight: var(--font-weight-semibold);
}

.service-description p {
  margin-bottom: 1.75rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.service-image-placeholder {
  width: 100%;
  height: 300px;
  background: var(--section-bg);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: var(--font-weight-semibold);
}

.service-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  background: var(--section-bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.service-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li:before {
  content: "✓";
  color: var(--success-color);
  font-weight: var(--font-weight-bold);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Service process styling - Light */
.process-steps {
  background-color: var(--section-bg);
  padding: 2.5rem;
  border-radius: var(--radius-large);
  margin: 3rem 0;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  background: var(--bg-color); /* White step cards */
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  background-color: var(--accent-color);
  color: var(--bg-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 1.4rem;
  margin: 0 auto 1.5rem;
}

.process-step h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: var(--font-weight-semibold);
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Price table styling - Light */
.price-table {
  background: var(--bg-color);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  margin: 2rem 0 3rem 0;
  border: 1px solid var(--border-color);
}

.price-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4;
}

.price-row:last-of-type {
  border-bottom: none;
}

.price {
  font-weight: var(--font-weight-semibold);
  color: var(--accent-color);
  font-size: 1.1rem;
}

.price-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  line-height: 1.5;
}

/* Service types styling - Light */
.stuc-types,
.coating-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stuc-type,
.coating-type {
  background: var(--bg-color); /* White cards */
  padding: 2rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.stuc-type:hover,
.coating-type:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.stuc-type h4,
.coating-type h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: var(--font-weight-semibold);
}

.stuc-type .price,
.coating-type .price {
  display: block;
  margin-top: 1.5rem;
  font-weight: var(--font-weight-semibold);
  color: var(--accent-color);
  font-size: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* Brands grid styling - Light */
.brands-grid {
  background-color: var(--section-bg);
  padding: 2rem;
  border-radius: var(--radius-large);
  margin: 2rem 0;
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.brand-item {
  padding: 1.5rem;
  background: var(--bg-color); /* White brand items */
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.brand-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

/* FAQ styling - Light */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

.faq-section {
  background: var(--bg-color); /* White background */
  padding: 2.5rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  margin: 3rem 0;
  border: 1px solid var(--border-color);
}

.faq-item {
  background: var(--bg-color); /* White FAQ items */
  padding: 2.5rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

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

.faq-item h4 {
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  font-weight: var(--font-weight-semibold);
  font-size: 1.2rem;
}

.faq-item p {
  flex-grow: 1;
  margin: 0;
}

/* Privacy pagina styling */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--bg-color);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
}

.privacy-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.privacy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Sidebar styling - Light */
.service-sidebar {
  background-color: var(--section-bg);
  padding: 2.5rem;
  border-radius: var(--radius);
  height: fit-content;
  border: 1px solid var(--border-color);
  min-width: 300px;
}

.sidebar-cta {
  background-color: var(--bg-color);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  margin-bottom: 2rem;
  text-align: center;
  border: 1px solid var(--border-color);
}

.sidebar-cta h3 {
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  font-weight: var(--font-weight-semibold);
}

.sidebar-info {
  background-color: var(--bg-color); /* White info boxes */
  padding: 2rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

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

.sidebar-info h4 {
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  font-weight: var(--font-weight-semibold);
}

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

.advantage-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.advantage-list li:last-child {
  border-bottom: none;
}

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

.specialties-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.specialties-list li:last-child {
  border-bottom: none;
}

.specialty-icon {
  background-color: var(--accent-color);
  color: var(--bg-color);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-small);
  font-size: 0.8rem;
  font-weight: var(--font-weight-semibold);
  flex-shrink: 0;
}

.service-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.service-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: 1.1rem;
}

.service-item a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

.service-item p {
  margin: 0.75rem 0 0 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Benefits list styling - Light */
.benefits-list {
  background: var(--bg-color); /* White background */
  padding: 2.5rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  margin: 3rem 0;
  border: 1px solid var(--border-color);
}

.benefit-item {
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item .check-mark {
  margin-top: 0.2rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .logo-image {
    height: 135px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color); /* White mobile menu */
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    border-top: 1px solid var(--border-color);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .service-details {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-sidebar {
    min-width: unset;
    width: 100%;
    padding: 2rem;
  }
  
  .sidebar-cta {
    padding: 2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .stuc-types,
  .coating-types {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 45px;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .service-card {
    padding: 2rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .form-container,
  .contact-info {
    padding: 2rem;
  }
}


