:root {
  --primary-blue: #2486BB;
  --dark-blue: #002C5B;
  --orange: #FF8C00;
  --light-blue: #E8F4F8;
  --light-orange: #FFF3E0;
  --success-green: #4CAF50;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

.navbar {
  background-color: white !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  color: var(--dark-blue) !important;
  font-weight: 500;
}

.btn-warning {
  background-color: var(--orange);
  border-color: var(--orange);
  color: black;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #FFB74C;
  border-color: #FFB74C;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.btn-outline-primary {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 25px;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: white;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.company-header {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  margin: -80px auto 20px auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
  max-width: 1000px;
}

.company-logo {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(36, 134, 187, 0.3);
  padding: 10px;
}

.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.verified-badge {
  background: linear-gradient(45deg, var(--success-green), #66BB6A);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.info-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  border-left: 5px solid var(--primary-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.section-title {
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.star-rating {
  color: #ffd700;
  font-size: 1.3rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--orange), #FFB74C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.subsidie-highlight {
  background: linear-gradient(135deg, var(--light-orange), #FFF8E1);
  border: 2px solid var(--orange);
  border-radius: 15px;
  padding: 25px;
  margin: 0px 0px 30px 0px;
}

.subsidie-highlight h4 {
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.contact-form {
  background: linear-gradient(135deg, var(--light-blue), #F0F8FF);
  border-radius: 15px;
  padding: 30px;
  margin-bottom:30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-color: var(--primary-blue);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--primary-blue);
  font-size: 1.3rem;
}

.gemeente-badge {
  background-color: var(--light-blue);
  color: var(--primary-blue);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  margin: 3px;
  display: inline-block;
  border: 1px solid rgba(36, 134, 187, 0.2);
}

.gemeente-list {
  /*max-height: 100px;*/
  overflow-y: auto;
  padding: 10px;
  background: rgba(232, 244, 248, 0.3);
  border-radius: 8px;
}

.landelijk-badge {
  background: linear-gradient(45deg, var(--success-green), #66BB6A);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: white;
  padding: 80px 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-10px);
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-left: 4px solid var(--success-green);
}

.quote-icon {
  color: var(--primary-blue);
  font-size: 2.5rem;
  opacity: 0.3;
}

.ai-content {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
  font-style: italic;
  color: #6c757d;
}

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

.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.feature-list i {
  color: var(--success-green);
  margin-right: 12px;
  font-size: 1.2rem;
}

.simpel-subsidie-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--orange), #FFB74C);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.simpel-subsidie-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 40px;
  }

  .company-header {
    margin: 40px 15px 0;
    padding: 25px;
  }

  .company-logo {
    width: 80px;
    height: 80px;
  }

  .gemeente-list {
    max-height: 80px;
  }
}