* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Merriweather", serif;
}

body {
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  color: white;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Header Section */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.98) 0%,
    rgba(30, 35, 70, 0.95) 100%
  );
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar .logo {
  font-size: 32px;
  font-weight: bold;
  color: #64d5ff;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.navbar .logo:hover {
  text-shadow: 0 0 20px rgba(100, 213, 255, 0.6);
  transform: scale(1.05);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #64d5ff, #0099ff);
  transition: width 0.3s ease;
}

.navbar a:hover {
  color: #64d5ff;
}

.navbar a:hover::before {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(
      135deg,
      rgba(10, 14, 39, 0.4) 0%,
      rgba(30, 35, 70, 0.6) 100%
    ),
    url("/Afbeeldingen/Home/background3.JPEG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px 60px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(100, 213, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 15s ease-in-out infinite;
  z-index: 0;
}

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

.hero-content {
  z-index: 2;
  animation: slideUp 0.8s ease-out;
  max-width: 900px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
  line-height: 1.2;
  background: linear-gradient(135deg, #64d5ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 28px;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  font-weight: 300;
  color: #b0d5ff;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA Button Styles */
.cta-button {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #64d5ff, #0099ff);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(100, 213, 255, 0.3);
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(100, 213, 255, 0.5);
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-button-secondary {
  background: transparent;
  border: 2px solid #64d5ff;
  color: #64d5ff;
}

.cta-button-secondary:hover {
  background: rgba(100, 213, 255, 0.1);
  border-color: #ffffff;
  color: white;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(
    135deg,
    rgba(100, 150, 255, 0.05) 0%,
    rgba(0, 150, 255, 0.05) 100%
  );
  padding: 80px 10%;
  border-top: 1px solid rgba(100, 213, 255, 0.1);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #64d5ff;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(100, 213, 255, 0.3);
}

.stat-label {
  font-size: 16px;
  color: #d0d0d0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services-section {
  padding: 100px 10%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeIn 0.8s ease-out;
}

.section-title h2 {
  font-size: 48px;
  color: #64d5ff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title p {
  font-size: 18px;
  color: #d0d0d0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(
    135deg,
    rgba(20, 30, 60, 0.8) 0%,
    rgba(10, 20, 50, 0.8) 100%
  );
  padding: 50px 40px;
  border-radius: 15px;
  border: 1px solid rgba(100, 213, 255, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s ease-out;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(100, 213, 255, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(100, 213, 255, 0.3);
  border-color: rgba(100, 213, 255, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
}

.service-card h3 {
  font-size: 24px;
  color: #64d5ff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Why Choose Us Section */
.why-section {
  background: linear-gradient(
    135deg,
    rgba(100, 150, 255, 0.05) 0%,
    rgba(0, 150, 255, 0.05) 100%
  );
  padding: 100px 10%;
  border-top: 1px solid rgba(100, 213, 255, 0.1);
  border-bottom: 1px solid rgba(100, 213, 255, 0.1);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-content h2 {
  font-size: 42px;
  color: #64d5ff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-item {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  animation: fadeIn 0.8s ease-out;
}

.why-item-icon {
  color: #64d5ff;
  font-size: 28px;
  min-width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.why-item h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 8px;
}

.why-item p {
  color: #d0d0d0;
  line-height: 1.6;
  font-size: 14px;
}

.why-image {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 15px;
  border: none;
  padding: 40px;
  box-shadow: none;
  animation: fadeIn 0.8s ease-out;
}

.why-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* Process Section */
.process-section {
  padding: 100px 10%;
  max-width: 1400px;
  margin: 0 auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #64d5ff, #0099ff, transparent);
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
  animation: fadeIn 0.8s ease-out;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #64d5ff, #0099ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(100, 213, 255, 0.3);
}

.timeline-item h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
}

.timeline-item p {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.6;
}

/* Portfolio Preview Section */
.portfolio-preview-section {
  background: linear-gradient(
    135deg,
    rgba(100, 150, 255, 0.05) 0%,
    rgba(0, 150, 255, 0.05) 100%
  );
  padding: 100px 10%;
  border-top: 1px solid rgba(100, 213, 255, 0.1);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(100, 150, 255, 0.2),
    rgba(0, 150, 255, 0.2)
  );
  border: 1px solid rgba(100, 213, 255, 0.2);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 70px rgba(100, 213, 255, 0.3);
  border-color: rgba(100, 213, 255, 0.4);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #64d5ff, #0099ff);
  padding: 80px 10%;
  text-align: center;
  margin: 0;
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #0a0e27;
}

.cta-section p {
  font-size: 18px;
  color: #0a0e27;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-button {
  background: #0a0e27;
  color: #64d5ff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-section .cta-button:hover {
  background: rgba(0, 0, 0, 0.3);
  color: white;
}

/* Footer */
footer {
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.95) 0%,
    rgba(20, 25, 60, 0.9) 100%
  );
  border-top: 2px solid rgba(100, 213, 255, 0.2);
  padding: 80px 10%;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}

.footer-section h3 {
  color: #64d5ff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 700;
}

.footer-section p {
  color: #b0d0e0;
  line-height: 1.8;
  font-size: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 15px;
}

.footer-section a {
  color: #b0d0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-block;
}

.footer-section a:hover {
  color: #64d5ff;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(100, 213, 255, 0.1);
  color: #888;
}

.footer-bottom p {
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-bottom p:first-child {
  color: #b0d0e0;
  font-weight: 500;
}

.footer-bottom p:last-child {
  color: #666;
  font-size: 12px;
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 30px;
  }

  .navbar ul {
    gap: 25px;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .hero-content p {
    font-size: 20px;
  }

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

  .why-container {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
  }

  .navbar .logo {
    font-size: 24px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    min-height: 80vh;
    padding: 80px 20px 50px;
    background-attachment: scroll;
  }

  .hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-button {
    min-width: 200px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    font-size: 16px;
  }

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

  .service-card {
    padding: 40px 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-item {
    gap: 15px;
  }

  .process-section {
    padding: 60px 5%;
  }

  .portfolio-preview-section {
    padding: 60px 5%;
  }

  .cta-section {
    padding: 60px 5%;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .navbar .logo {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .navbar ul {
    gap: 8px;
  }

  .navbar a {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .hero {
    min-height: 70vh;
    padding: 70px 15px 40px;
    background-attachment: scroll;
    justify-content: flex-start;
    padding-top: 120px;
  }

  .hero-content {
    margin-top: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 25px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 13px;
    width: 100%;
    max-width: 250px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .section-title p {
    font-size: 14px;
  }

  .services-section {
    padding: 40px 4%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .stats-section {
    padding: 50px 4%;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 14px;
  }

  .why-section {
    padding: 50px 4%;
  }

  .why-container {
    gap: 30px;
  }

  .why-content h2 {
    font-size: 24px;
  }

  .why-item {
    gap: 15px;
    margin-bottom: 12px;
  }

  .why-item-icon {
    font-size: 24px;
    min-width: 30px;
  }

  .why-item h3 {
    font-size: 16px;
  }

  .why-item p {
    font-size: 13px;
  }

  .why-image {
    padding: 20px;
  }

  .process-section {
    padding: 50px 4%;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 15px;
  }

  .timeline-item h3 {
    font-size: 16px;
  }

  .timeline-item p {
    font-size: 13px;
  }

  .portfolio-preview-section {
    padding: 50px 4%;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .portfolio-card {
    font-size: 40px;
    aspect-ratio: 1;
  }

  .cta-section {
    padding: 50px 4%;
  }

  .cta-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .cta-section p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .footer-content {
    gap: 40px;
  }

  .footer-section h3 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-section p {
    font-size: 13px;
  }

  .footer-section a {
    font-size: 13px;
  }
}
