/* Color Variables */
:root {
  --primary-black: #000000;
  --secondary-black: #1a1a1a;
  --dark-gray: #2d2d2d;
  --gold: #D4AF37;
  --gold-dark: #B8860B;
  --gold-light: #F5E6A8;
  --gold-metallic: #CFB53B;
}
:root :where(.is-layout-flow) > * {
    margin-block-start: 0rem;
    margin-block-end: 0;
}
/* Global Styles */
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: none;
    margin-left: auto !important;
    margin-right: auto !important;
}
.has-global-padding {
    padding-right: 0;
    padding-left: 0;
}
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Utility Classes */
.text-gold {
  color: #D4AF37 !important;
}

.bg-gold {
  background-color: #D4AF37 !important;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-dark {
  background-color: #1a1a1a !important;
}

/* Custom Buttons */
.btn-gold {
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #000000;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #B8860B;
  border-color: #B8860B;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-gold:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-outline-gold {
  border-color: #D4AF37;
  color: #D4AF37;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.btn-outline-gold:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Navigation */
.navbar {
  background-color: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  z-index: 9999;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  min-height: 70px;
  display: flex !important;
  visibility: visible !important;
}

/* Fallback for navbar visibility */
#mainNavbar {
  opacity: 1 !important;
  display: flex !important;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.98) !important;
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    position: relative !important;
    z-index: 10001 !important;
    font-weight: bold;
    font-size: 1.5rem;
    display: inline-block !important;
    transform: translateZ(0); /* Force GPU acceleration */
}

.navbar-brand:hover {
    transform: translateY(-2px) translateZ(0) !important;
    color: var(--gold-light) !important;
    transition: all 0.3s ease !important;
}

.navbar .navbar-brand:hover {
  transform: scale(1.05);
  color: #D4AF37 !important;
}

.navbar .navbar-brand i {
  color: #D4AF37 !important;
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative !important;
  transition: all 0.3s ease !important;
  transform-origin: center !important;
  will-change: transform !important;
  padding: 0.5rem 1rem !important;
  border-radius: 5px !important;
  display: inline-block !important;
  z-index: 1000 !important;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #D4AF37;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar .nav-link:hover {
  color: #D4AF37 !important;
  transform: scale(1.05) translateZ(0) !important;
  background-color: rgba(212, 175, 55, 0.1) !important;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

/* Additional animation fallbacks */
.nav-link.no-js:hover {
  transform: scale(1.05) !important;
  transition: transform 0.3s ease !important;
}

.navbar-brand.no-js:hover {
  transform: translateY(-2px) !important;
  transition: transform 0.3s ease !important;
}

/* Force hardware acceleration for better performance */
.navbar-brand,
.nav-link {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Navbar toggler styling */
.navbar-toggler {
  border-color: #D4AF37 !important;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Navbar collapse */
.navbar-collapse {
  z-index: 1051;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  position: relative;
}

.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.hero-section .hero-title {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2.5rem;
  }
}

.hero-section .hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  margin-bottom: 3rem;
}

.hero-section .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero-section .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.hero-section .floating-elements {
  position: relative;
  height: 500px;
}

.hero-section .floating-elements .floating-element {
  position: absolute;
  font-size: 3rem;
  color: #D4AF37;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.hero-section .floating-elements .floating-element:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-section .floating-elements .floating-element:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 1s;
}

.hero-section .floating-elements .floating-element:nth-child(3) {
  top: 30%;
  left: 70%;
  animation-delay: 2s;
}

.hero-section .floating-elements .floating-element:nth-child(4) {
  top: 80%;
  left: 20%;
  animation-delay: 3s;
}

.hero-section .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #D4AF37;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Titles */
.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.bg-dark .section-title {
  color: #fff;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.bg-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-image {
  position: relative;
}

.about-image img {
  border-radius: 15px;
  transition: transform 0.3s ease;
}

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

.about-image .about-stats {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #D4AF37;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .about-image .about-stats {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }
}

.about-image .about-stats .stat-item {
  text-align: center;
}

.about-image .about-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #000000;
}

.about-image .about-stats .stat-item .stat-label {
  font-size: 0.9rem;
  margin: 0;
  color: #000000;
  font-weight: 500;
}

.about-content {
  padding-left: 2rem;
}

@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.about-content .feature-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.about-content .feature-item i {
  font-size: 1.2rem;
}

/* Service Cards */
.service-card {
  background: #2d2d2d;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* Initial state for service cards animation */
#diensten .service-card {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #D4AF37;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.service-card:hover .service-icon i {
  transform: scale(1.1);
  color: #D4AF37;
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-card .service-icon i {
  font-size: 2rem;
  color: #000000;
  transition: all 0.3s ease;
}

.service-card .service-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card .service-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card .service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card .service-features li {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.service-card .service-features li::before {
  content: '✓';
  color: #D4AF37;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Portfolio */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Initial state for portfolio items animation */
#portfolio .portfolio-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item .portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-item .portfolio-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(212, 175, 55, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-item .portfolio-overlay .portfolio-content {
  text-align: center;
  color: #fff;
}

.portfolio-item .portfolio-overlay .portfolio-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.portfolio-item .portfolio-overlay .portfolio-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Contact Form */
.contact-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 1rem;
}

.contact-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #D4AF37;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-floating > label {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form .form-floating > .form-control:focus ~ label {
  color: #D4AF37;
}

.contact-info .contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-info .contact-icon i {
  font-size: 1.5rem;
  color: #000000;
}

.contact-info h5 {
  color: #D4AF37;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Footer */
footer .social-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #D4AF37;
  color: #000000;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer .social-links .social-link:hover {
  background-color: #B8860B;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 2rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Contact Page Specific Styles */
.contact-page {
  background-color: #f8f9fa;
}

.contact-hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: white;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(60px) scale(0.8);
}

.contact-info-card.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-card .contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-info-card .contact-icon i {
  font-size: 2rem;
  color: #000000;
}

.contact-info-card h4 {
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info-card a {
  color: #D4AF37;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #B8860B;
}

/* FAQ Styling */
.accordion-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: transparent;
  color: #D4AF37;
  border: none;
  font-weight: 600;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.accordion-body {
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
  
  .contact-info-card {
    padding: 2rem;
  }
}

/* Wijchen Landing Page Styling */
.wijchen-page {
  padding-top: 70px;
}

.wijchen-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.wijchen-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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="%23D4AF37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.1;
}

.location-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: #D4AF37;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-features {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.trust-indicators {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.stats {
  display: flex;
  gap: 1rem;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* USP Cards */
.usp-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.usp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #D4AF37;
}

.usp-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.usp-icon i {
  font-size: 2rem;
  color: #000000;
}

/* Service Cards for Wijchen page */
.wijchen-page .service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.wijchen-page .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #D4AF37, #B8860B);
}

.wijchen-page .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #D4AF37;
}

.wijchen-page .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.wijchen-page .service-icon i {
  font-size: 1.8rem;
  color: #000000;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  margin-bottom: 0.8rem;
}

.price-indication {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  text-align: center;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #D4AF37;
}

/* Local Area Section */
.area-list {
  list-style: none;
  padding: 0;
}

.area-list li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.map-placeholder {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.location-pin {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-author {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

/* CTA Form */
.cta-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-form .form-control {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
}

.cta-form .form-control:focus {
  background: white;
  border-color: #D4AF37;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Contact Section */
.contact-wijchen {
  background: #f8f9fa;
}

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

.contact-item i {
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

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

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

.bg-gold {
  background: #D4AF37 !important;
}

/* Responsive Design for Wijchen page */
@media (max-width: 768px) {
  .wijchen-hero {
    text-align: center;
  }
  
  .floating-card {
    position: static;
    margin-top: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .wijchen-page .service-card,
  .usp-card,
  .testimonial-card {
    margin-bottom: 2rem;
  }

  .cta-form {
    padding: 1.5rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .contact-item i {
    margin-bottom: 0.5rem;
  }
}

/* Over Ons Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Mission Section */
.mission-section {
    background: #f8f9fa;
}

.mission-points {
    list-style: none;
    padding: 0;
}

.mission-points li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.mission-points li i {
    color: var(--gold);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Service Cards */
.over-ons-page .service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.over-ons-page .service-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.over-ons-page .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.over-ons-page.service-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.over-ons-page .service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Technology Section */
.technology-section {
    background: #f8f9fa;
}

.tech-category {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.tech-title {
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

.tech-item:hover i {
    color: #fff;
}

.tech-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    z-index: -1;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.value-card h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Over Ons Responsive Design */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero .service-card,
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon,
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Process Section with Horizontal Scroll */
.process-section {
    background: #1a1a1a !important;
    overflow: hidden;
}

.process-scroll-container {
    position: relative;
    padding: 2rem 0;
}

.process-steps {
    display: flex;
    gap: 3rem;
    padding: 2rem 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #333;
}

.process-steps::-webkit-scrollbar {
    height: 8px;
}

.process-steps::-webkit-scrollbar-track {
    background: #333;
    border-radius: 4px;
}

.process-steps::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.process-steps::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

.process-step {
    min-width: 320px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    flex-shrink: 0;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    font-size: 2rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--gold);
    color: #000;
    transform: scale(1.1);
}

.process-step h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-image {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.process-step:hover .step-image {
    opacity: 1;
    transform: scale(1.2);
}

.scroll-indicators {
    text-align: center;
    margin-top: 2rem;
}

.scroll-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Mobile Process Steps */
@media (max-width: 768px) {
    .process-step {
        min-width: 280px;
        max-width: 280px;
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step h4 {
        font-size: 1.1rem;
    }
    
    .process-steps {
        gap: 2rem;
        padding: 1.5rem 0.5rem;
    }
}

/* Diensten Page Specific Styles */
.diensten-page .hero-section, .page-id-1073 .hero-section  {
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(212,175,55,0.3)), 
              url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.diensten-page .highlight-item, .page-id-1073 .highlight-item {
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.diensten-page .highlight-item:hover, .page-id-1073 .highlight-item:hover {
  transform: translateY(-5px);
  background: rgba(212, 175, 55, 0.2);
}

.diensten-page .highlight-item i, .page-id-1073 .highlight-item i{
  font-size: 2rem;
  color: var(--gold);
}

/* Additional 404 Specific Styles */
.error404{
	background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
	min-height: 100vh;
}

.error-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 80px; /* Account for fixed navbar */
	padding-bottom: 2rem;
}

.error-content {
	text-align: center;
	color: white;
}

.error-number {
	font-size: 12rem;
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(45deg, #D4AF37, #FFD700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 2rem;
	text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.error-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.error-subtitle {
	font-size: 1.2rem;
	margin-bottom: 3rem;
	opacity: 0.9;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.error-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 4rem;
}

.btn-404-primary {
	background: linear-gradient(45deg, #D4AF37, #FFD700);
	border: none;
	color: #000;
	font-weight: 600;
	padding: 0.8rem 2rem;
	border-radius: 50px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-404-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
	color: #000;
}

.btn-404-outline {
	border: 2px solid white;
	color: white;
	background: transparent;
	font-weight: 600;
	padding: 0.8rem 2rem;
	border-radius: 50px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-404-outline:hover {
	background: white;
	color: #667eea;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.error-suggestions {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	margin-top: 3rem;
	border: 1px solid rgba(255,255,255,0.2);
}

.suggestion-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.suggestion-list li {
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
}

.suggestion-list li:last-child {
	margin-bottom: 0;
}

.suggestion-list i {
	color: #D4AF37;
	margin-right: 0.75rem;
	font-size: 1.1rem;
}

.suggestion-list a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

.suggestion-list a:hover {
	color: #D4AF37;
}

.floating-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1;
}

.floating-shape {
	position: absolute;
	opacity: 0.1;
	animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.floating-shape:nth-child(2) {
	top: 60%;
	right: 15%;
	animation-delay: 2s;
}

.floating-shape:nth-child(3) {
	bottom: 20%;
	left: 20%;
	animation-delay: 4s;
}

.floating-shape:nth-child(4) {
	top: 40%;
	right: 25%;
	animation-delay: 1s;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(10deg);
	}
}

.search-box {
	max-width: 400px;
	margin: 0 auto 2rem auto;
	position: relative;
}

.search-input {
	width: 100%;
	padding: 1rem 1rem 1rem 3rem;
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 50px;
	background: rgba(255,255,255,0.1);
	color: white;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.search-input:focus {
	outline: none;
	border-color: #D4AF37;
	background: rgba(255,255,255,0.2);
}

.search-input::placeholder {
	color: rgba(255,255,255,0.7);
}

.search-icon {
	position: absolute;
	left: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255,255,255,0.7);
	font-size: 1.1rem;
}

@media (max-width: 768px) {
	.error-number {
		font-size: 8rem;
	}

	.error-title {
		font-size: 2rem;
	}

	.error-subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.error-actions {
		flex-direction: column;
		align-items: center;
	}

	.btn-404-primary,
	.btn-404-outline {
		width: 200px;
	}
}

/* Service Feature Cards */
.service-feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.service-feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-feature-icon i {
  font-size: 2.5rem;
  color: #000;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.service-features i {
  color: var(--gold);
  margin-right: 10px;
  width: 16px;
}

/* Additional Service Cards */
.additional-service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  backdrop-filter: blur(10px);
}

.additional-service-card:hover {
  transform: translateY(-10px);
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

.additional-service-card .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.additional-service-card .service-icon i {
  font-size: 2rem;
  color: #000;
}

.additional-service-card h4 {
  color: #fff;
  margin-bottom: 15px;
}

.additional-service-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-list li {
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
  font-size: 0.9rem;
}

.service-list li:before {
  content: "•";
  color: var(--gold);
  margin-right: 10px;
}

/* Technology Stack Cards */
.tech-category-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.tech-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.tech-category-title {
  color: var(--primary-black);
  margin-bottom: 20px;
  font-weight: 600;
}

.tech-category-title i {
  color: var(--gold);
}

.tech-items .tech-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.tech-items .tech-item:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.tech-items .tech-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  width: 30px;
  color: var(--gold);
}

/* Pricing Cards */
.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  backdrop-filter: blur(10px);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header h4 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.price {
  margin-bottom: 30px;
}

.price-from {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: block;
}

.price-amount {
  color: var(--gold);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-features li {
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--gold);
  margin-right: 10px;
}

/* Process Teaser */
.process-highlights {
  margin-top: 30px;
}

.process-highlight {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.process-highlight:hover {
  transform: translateX(10px);
  background: rgba(212, 175, 55, 0.15);
}

.process-number {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.process-text h5 {
  margin-bottom: 5px;
  color: var(--primary-black);
  font-weight: 600;
}

.process-text p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
}

.process-image img {
  border-radius: 20px;
  border: 4px solid var(--gold);
}
