/* Banden Service Op Locatie - Modern Responsive Design */
:root {
  --primary: #c8102e;
  --secondary: #d32f2f;
  --accent: #b71c1c;
  --white: #ffffff;
  --black: #000000;
  --text: #333333;
  --light-bg: #f8f9fa;
  --border: #e0e0e0;
  --success: #28a745;
  --danger: #d32f2f;
  --container: 1200px;
  --radius: 8px;
  --gap: 1rem;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== GENERAL STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light-bg);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.highlight-link {
  color: var(--danger);
  font-weight: 600;
}

.lead {
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 500;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 2rem;
  text-align: center;
}

.small {
  font-size: 0.9rem;
  color: #666;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translateY(0);
}

.text-center {
  text-align: center;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 64px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-nav {
  display: none;
  gap: 0;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  background: var(--primary);
  flex-direction: column;
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.main-nav.active {
  display: flex;
}

.main-nav a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--white);
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--secondary);
  background: rgba(200, 16, 46, 0.1);
  border-left-color: var(--secondary);
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  padding: 0.25rem;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 600;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  transform: scale(1.1);
}

.call-now {
  background: var(--danger);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.call-now:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 767px) {
  .header-inner {
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  
  .call-now {
    padding: 0.5rem 0.6rem;
    font-size: 0.85rem;
  }
  
  .whatsapp-btn {
    padding: 0.5rem 0.6rem;
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    gap: 0.5rem;
  }
  
  .main-nav a {
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 0.5rem 1rem;
  }
  
  .main-nav a:hover,
  .main-nav a.active {
    background: transparent;
    border-bottom-color: var(--secondary);
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: url('Images/autoband3.png') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--text);
  padding: 3rem 1rem;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--primary);
}

@media (max-width: 767px) {
  .hero {
    padding: 2rem 1rem;
    min-height: 250px;
  }
}

.hero h1 {
  color: #ffffff !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero p,
.hero .lead {
  color: #ffffff !important;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.hero-about {
  background: url('Images/band4.png') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

@media (max-width: 767px) {
  .hero-about {
    min-height: 250px;
  }
}

.hero-diensten {
  background: url('Images/band3.png') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

@media (max-width: 767px) {
  .hero-diensten {
    min-height: 250px;
  }
}

.hero-diensten h1,
.hero-diensten p {
  color: #ffffff !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* ===== VISUAL HERO SECTION ===== */
.visual-hero {
  background: url('Images/band3.png') center/cover no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  position: relative;
  margin: 3rem 0;
}

.visual-hero-content {
  padding: 2rem;
  max-width: 800px;
}

.visual-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.visual-hero p {
  font-size: 1.3rem;
  color: #ffffff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .visual-hero {
    min-height: 250px;
    background-attachment: scroll;
  }
  
  .visual-hero h2 {
    font-size: 1.8rem;
  }
  
  .visual-hero p {
    font-size: 1.1rem;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.01) 10px,
    rgba(0, 0, 0, 0.01) 20px
  );
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero .container {
  text-align: center;
}

.hero-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== SECTIONS ===== */
.section {
  padding: 3rem 1rem;
}

.section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== CARDS GRID ===== */
.cards,
.services-grid,
.stats-grid,
.testimonials-grid,
.pricing-grid,
.team-grid,
.values-grid,
.faq-grid,
.about-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.card,
.service-card,
.stat-card,
.testimonial,
.testimonial-card,
.price-card,
.team-member,
.value-card,
.faq-card,
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.card:hover,
.service-card:hover,
.stat-card:hover,
.price-card:hover,
.team-member:hover,
.value-card:hover,
.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card h3,
.team-member h3 {
  margin-top: 1rem;
}

.card-icon,
.service-icon,
.member-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.card ul,
.service-card ul {
  list-style: none;
  padding-left: 0;
}

.card li,
.service-card li,
.benefits-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.card li:before,
.service-card li:before,
.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ===== STATS SECTION ===== */
.stats-grid,
.stats-large {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat-card,
.stat-large-card {
  text-align: center;
  background: var(--light-bg);
  padding: 2rem;
}

.stat-card h3,
.stat-large-card h3 {
  color: var(--primary);
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  border-left: 4px solid var(--secondary);
  background: var(--light-bg);
  font-style: italic;
}

.testimonial-card .quote {
  color: var(--text);
  margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 1rem 1rem;
  margin-top: auto;
}

.footer-inner {
  padding: 0 1rem;
}

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

.footer-section h4,
footer h4 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: var(--secondary);
  text-decoration: none;
}

.footer-content p a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.footer-content p a:hover {
  color: var(--secondary);
}

.site-footer hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 1rem 0;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
  color: var(--secondary);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.contact-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ===== FORMS ===== */
.contact-form {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-form label {
  display: block;
  margin-bottom: 1.5rem;
}

.contact-form label strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 23, 60, 0.1);
}

.contact-form .checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-form .checkbox input {
  width: auto;
  margin: 0;
}

.form-msg {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  text-align: center;
}

.form-msg.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-msg.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ===== CONTACT BUTTONS ===== */
.contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.price-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price-card .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.note {
  text-align: center;
  background: #fff3cd;
  color: #856404;
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid #ffc107;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  padding: 3rem 1rem;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* ===== STEPS & FAQ ===== */
.steps-list {
  list-style: none;
  counter-reset: step-counter;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.steps-list li {
  counter-increment: step-counter;
  margin-bottom: 2rem;
  padding-left: 3rem;
  position: relative;
  text-align: left;
}

.steps-list li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--secondary);
  color: var(--primary);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.about-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.value-card h3 {
  color: var(--primary);
}

/* ===== FAQ ===== */
.faq-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.faq-card ul {
  padding-left: 1.5rem;
}

/* ===== UTILITIES ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .contact-buttons {
    flex-direction: column;
  }
  
  .contact-buttons .btn {
    width: 100%;
  }
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  background: linear-gradient(to bottom, #f8f8f8 0%, #ffffff 100%);
  padding: 3rem 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
}

.badge {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(200, 16, 46, 0.15);
}

.badge-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.badge h3 {
  color: var(--primary);
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.badge p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ENHANCED CARD STYLES ===== */
.card {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 35px rgba(200, 16, 46, 0.2);
}

/* ===== PULSING CTA ANIMATION ===== */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(200, 16, 46, 0);
  }
}

.btn-primary {
  animation: pulse-glow 2s infinite;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.btn-primary:hover {
  animation: none;
  box-shadow: 0 6px 25px rgba(200, 16, 46, 0.4);
}

/* ===== ALTERNATING SECTION BACKGROUNDS ===== */
.section:not(.hero):nth-child(even) {
  background: linear-gradient(to bottom, #fafafa 0%, #f5f5f5 100%);
}

.section:not(.hero):nth-child(odd) {
  background: white;
}

/* ===== COUNTER ANIMATION ===== */
.counter {
  display: inline-block;
  font-weight: bold;
  color: var(--primary);
}

@media(max-width:680px){
  .cards,
  .services-grid,
  .stats-grid,
  .testimonials-grid,
  .pricing-grid,
  .team-grid,
  .values-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
}

