/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6366f1;
  --secondary: #14b8a6;
  --accent: #f97316;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav ul {
  display: flex;
  gap: 30px;
}

.nav a {
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  position: relative;
}

.nav a:hover {
  color: var(--primary);
  background: var(--light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  transition: all 0.3s;
  border-radius: 2px;
}

/* Privacy Popup */
.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #fff;
  padding: 24px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.privacy-content p {
  font-size: 14px;
  flex: 1;
  min-width: 250px;
  opacity: 0.9;
  line-height: 1.5;
}

.privacy-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.privacy-buttons a {
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
  opacity: 0.9;
}

.privacy-buttons a:hover {
  opacity: 1;
}

.privacy-buttons button {
  background: var(--secondary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.privacy-buttons button:hover {
  background: #0d9488;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.3), transparent 70%);
  pointer-events: none;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  top: -100px;
  right: -100px;
  animation: float 20s infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -80px;
  left: -80px;
  animation: float 15s infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: #fff;
  top: 50%;
  right: 10%;
  animation: float 25s infinite;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: #fff;
}

.hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 28px;
  font-weight: 800;
}

.highlight {
  background: linear-gradient(120deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 19px;
  margin-bottom: 36px;
  opacity: 0.95;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero-stats {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 6px;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #fff;
  color: var(--primary);
  padding: 18px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Section Base Styles */
.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

section {
  padding: 90px 0;
}

section h2 {
  font-size: 44px;
  margin-bottom: 24px;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.2;
}

.section-intro {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* About Section */
.about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-experience {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--primary);
  color: #fff;
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.exp-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 4px;
}

.about-text h2 {
  margin-bottom: 28px;
}

.about-text p {
  margin-bottom: 22px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
}

.about-signature {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 2px solid #e2e8f0;
}

.about-signature strong {
  color: var(--dark);
  font-size: 18px;
}

/* Services Section */
.services-preview {
  background: #fff;
  text-align: center;
}

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

.service-card {
  background: var(--light);
  padding: 44px 36px;
  border-radius: 20px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.service-icon {
  font-size: 52px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 26px;
  margin-bottom: 18px;
  color: var(--dark);
  font-weight: 700;
}

.service-card p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

.btn-secondary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

/* Approach Section */
.approach {
  background: var(--light);
}

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

.approach-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.approach-step {
  background: #fff;
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.approach-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.step-icon {
  font-size: 44px;
  margin-bottom: 20px;
}

.approach-step h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 700;
}

.approach-step p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
  background: #fff;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feature {
  background: var(--light);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 21px;
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 700;
}

.feature p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* Portfolio Section */
.portfolio-preview {
  background: var(--light);
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/5;
}

.portfolio-item img {
  transition: transform 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  padding: 32px;
  transform: translateY(100%);
  transition: transform 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 700;
}

.portfolio-overlay p {
  font-size: 15px;
  opacity: 0.9;
}

/* Investment/Pricing Section */
.investment {
  background: #fff;
  text-align: center;
}

.pricing-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.price-card {
  background: var(--light);
  padding: 44px 36px;
  border-radius: 20px;
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.price-card.featured {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 36px;
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
}

.price-card h3 {
  font-size: 26px;
  margin-bottom: 18px;
  color: var(--dark);
  font-weight: 700;
}

.price-amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  margin: 24px 0;
}

.price-card p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
  background: var(--light);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.testimonial {
  background: #fff;
  padding: 36px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 18px;
}

.testimonial p {
  font-size: 16px;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  border-top: 2px solid var(--light);
  padding-top: 18px;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-size: 17px;
  margin-bottom: 6px;
}

.testimonial-author span {
  font-size: 14px;
  color: var(--gray);
}

/* Locations Section */
.locations {
  background: #fff;
  text-align: center;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.location-item {
  background: var(--light);
  padding: 36px 28px;
  border-radius: 16px;
  transition: all 0.3s;
}

.location-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.location-item h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 700;
}

.location-item p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* CTA Section */
.cta-alt {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  text-align: center;
  padding: 90px 0;
}

.cta-content h2 {
  font-size: 44px;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 800;
}

.cta-content p {
  font-size: 19px;
  margin-bottom: 36px;
  opacity: 0.95;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ Section */
.faq {
  background: var(--light);
  text-align: center;
}

.faq-list {
  max-width: 920px;
  margin: 60px auto 0;
  text-align: left;
}

.faq-item {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  font-size: 19px;
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 700;
}

.faq-item p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
}

/* Footer */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 70px 0 24px;
}

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

.footer-col h4 {
  font-size: 19px;
  margin-bottom: 22px;
  color: #fff;
  font-weight: 700;
}

.footer-col p,
.footer-col li {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-col a {
  color: #94a3b8;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom p {
  font-size: 15px;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: #94a3b8;
}

.footer-links a:hover {
  color: #fff;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(249, 115, 22, 0.2), transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 50px;
  margin-bottom: 18px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 19px;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

/* Content Wrapper */
.content-wrapper {
  max-width: 920px;
  margin: 0 auto;
}

.content-wrapper h2 {
  text-align: left;
  margin-bottom: 24px;
  font-size: 38px;
  font-weight: 800;
}

.content-wrapper p {
  margin-bottom: 20px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
}

/* Contact Page */
.contact-section {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 24px;
  color: var(--dark);
  font-weight: 800;
}

.contact-info p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  margin-bottom: 32px;
}

.contact-item h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 700;
}

.contact-item p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
}

.contact-form-wrapper {
  background: #fff;
  padding: 44px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--dark);
  font-weight: 800;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.checkbox-group label {
  display: flex;
  align-items: start;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group span {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
}

.map-section {
  background: #fff;
}

.map-section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 44px;
  color: var(--dark);
  font-weight: 800;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  display: block;
}

/* Diensten Page */
.services-detail {
  background: var(--light);
}

.service-detail-item {
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.service-detail-content h2 {
  font-size: 34px;
  margin-bottom: 24px;
  color: var(--dark);
  font-weight: 800;
}

.service-detail-content p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail-content ul {
  list-style: none;
  margin-top: 28px;
}

.service-detail-content ul li {
  font-size: 16px;
  color: var(--gray);
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
}

.service-detail-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.pricing {
  background: #fff;
  text-align: center;
}

.pricing h2 {
  font-size: 38px;
  margin-bottom: 50px;
  color: var(--dark);
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--light);
  padding: 44px 36px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 700;
}

.pricing-card .price {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 28px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-card ul li {
  font-size: 16px;
  color: var(--gray);
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing-note {
  font-size: 15px;
  color: var(--gray);
  font-style: italic;
  margin-top: 32px;
}

.why-us {
  background: var(--light);
  text-align: center;
}

.why-us h2 {
  font-size: 38px;
  margin-bottom: 50px;
  color: var(--dark);
  font-weight: 800;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit {
  background: #fff;
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 700;
}

.benefit p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
}

.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  text-align: center;
  padding: 90px 0;
}

.cta .cta-content h2 {
  font-size: 38px;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 800;
}

.cta .cta-content p {
  font-size: 19px;
  margin-bottom: 36px;
  opacity: 0.95;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Tablet Responsive (1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 70px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-image {
    max-width: 550px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  section {
    padding: 70px 0;
  }

  section h2 {
    font-size: 38px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

/* Mobile Responsive (768px) */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 18px;
  }

  .header-content {
    padding: 14px 0;
  }

  .logo {
    font-size: 20px;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 90px 28px 28px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
    z-index: 999;
  }

  .nav.active {
    left: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav a {
    display: block;
    padding: 18px;
    border-bottom: 1px solid var(--light);
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 7px);
  }

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

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

  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 34px;
  }

  .section-intro {
    font-size: 17px;
    margin-bottom: 50px;
  }

  .hero {
    padding: 70px 0 60px;
  }

  .hero-text h1 {
    font-size: 40px;
    margin-bottom: 24px;
  }

  .hero-text p {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .hero-stats {
    gap: 35px;
  }

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

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

  .services-grid,
  .features-grid,
  .portfolio-grid,
  .pricing-preview,
  .testimonials-grid,
  .locations-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content p {
    font-size: 17px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero p {
    font-size: 17px;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  .logo {
    font-size: 18px;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .hero-text h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .hero-label {
    font-size: 13px;
    padding: 7px 16px;
  }

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

  .btn,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 14px 28px;
    font-size: 15px;
  }

  .hero-stats {
    gap: 24px;
    justify-content: space-between;
  }

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

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

  .hero-badge {
    bottom: 20px;
    right: 20px;
    padding: 14px 20px;
    font-size: 15px;
  }

  section {
    padding: 50px 0;
  }

  section h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .section-label {
    font-size: 11px;
  }

  .section-intro {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .about-experience {
    bottom: 20px;
    left: 20px;
    padding: 22px;
  }

  .exp-number {
    font-size: 34px;
  }

  .exp-text {
    font-size: 13px;
  }

  .service-card,
  .feature,
  .price-card,
  .testimonial,
  .location-item,
  .approach-step {
    padding: 32px 24px;
  }

  .service-icon,
  .step-icon {
    font-size: 44px;
  }

  .service-card h3,
  .feature h3,
  .approach-step h3 {
    font-size: 22px;
  }

  .service-card p,
  .feature p,
  .approach-step p {
    font-size: 15px;
  }

  .price-amount {
    font-size: 38px;
  }

  .price-card h3 {
    font-size: 24px;
  }

  .popular-badge {
    top: -12px;
    right: 24px;
    padding: 7px 18px;
    font-size: 12px;
  }

  .testimonial p {
    font-size: 15px;
  }

  .testimonial-stars {
    font-size: 18px;
  }

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

  .portfolio-item {
    min-height: 320px;
  }

  .portfolio-overlay {
    padding: 24px;
  }

  .portfolio-overlay h3 {
    font-size: 22px;
  }

  .cta-alt {
    padding: 70px 0;
  }

  .cta-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .cta-content p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .faq-item {
    padding: 26px 22px;
    margin-bottom: 18px;
  }

  .faq-item h3 {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .faq-item p {
    font-size: 15px;
  }

  .footer {
    padding: 60px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .footer-col p,
  .footer-col li,
  .footer-col a {
    font-size: 14px;
  }

  .footer-bottom {
    padding-top: 24px;
    gap: 14px;
  }

  .footer-bottom p,
  .footer-links a {
    font-size: 14px;
  }

  .page-hero {
    padding: 70px 0;
  }

  .page-hero h1 {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .content-wrapper h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .content-wrapper p {
    font-size: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .pricing-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-detail-item {
    padding: 32px 24px;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  .privacy-content h3 {
    font-size: 16px;
  }

  .privacy-content p {
    font-size: 13px;
    min-width: auto;
  }

  .privacy-buttons {
    width: 100%;
    justify-content: center;
  }

  .privacy-buttons button {
    padding: 11px 24px;
    font-size: 13px;
  }
}

/* Extra Small Mobile (320px) */
@media (max-width: 360px) {
  .container {
    padding: 0 14px;
  }

  .logo {
    font-size: 17px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .btn,
  .btn-outline {
    padding: 13px 24px;
    font-size: 14px;
  }

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

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

  section h2 {
    font-size: 26px;
  }

  .section-intro {
    font-size: 15px;
  }

  .service-card,
  .feature,
  .price-card,
  .testimonial,
  .location-item,
  .approach-step,
  .faq-item {
    padding: 28px 20px;
  }

  .service-card h3,
  .feature h3,
  .approach-step h3,
  .location-item h3 {
    font-size: 20px;
  }

  .price-amount {
    font-size: 34px;
  }

  .price-card h3 {
    font-size: 22px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .content-wrapper h2 {
    font-size: 26px;
  }

  .hero-badge {
    padding: 12px 18px;
    font-size: 14px;
  }

  .about-experience {
    padding: 20px;
  }

  .exp-number {
    font-size: 30px;
  }
}

@media (max-width: 320px) {
  .hero-text h1 {
    font-size: 26px;
  }

  section h2 {
    font-size: 24px;
  }

  .btn,
  .btn-outline,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }

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

  .service-icon,
  .step-icon {
    font-size: 40px;
  }

  .price-amount {
    font-size: 32px;
  }

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

  .page-hero h1 {
    font-size: 28px;
  }
}

/* Wedding/Bruiloft Page Styles */
.wedding-intro {
  background: #fff;
  padding: 80px 0;
}

.wedding-packages {
  background: var(--light);
  padding: 80px 0;
}

.wedding-packages h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: var(--dark);
  font-weight: 800;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: #fff;
  padding: 44px 36px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  position: relative;
}

.package-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.package-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 700;
}

.package-card .price {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 32px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  text-align: left;
}

.package-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--light);
  color: var(--gray);
  font-size: 16px;
  position: relative;
  padding-left: 28px;
}

.package-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.package-card ul li:last-child {
  border-bottom: none;
}

.wedding-process {
  background: #fff;
  padding: 80px 0;
}

.wedding-process h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: var(--dark);
  font-weight: 800;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
  padding-left: 0;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 4px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--light);
}

.timeline-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 700;
}

.timeline-item p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 16px;
}

.wedding-faq {
  background: var(--light);
  padding: 80px 0;
}

.wedding-faq h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: var(--dark);
  font-weight: 800;
}

.wedding-faq .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

/* Wedding Page Responsive */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .package-card.featured {
    transform: scale(1);
  }
  
  .package-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .timeline:before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
  }
  
  .timeline-item:before {
    left: 20px;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .package-card {
    padding: 36px 28px;
  }
  
  .wedding-packages h2,
  .wedding-process h2,
  .wedding-faq h2 {
    font-size: 34px;
    margin-bottom: 40px;
  }
  
  .timeline-item {
    padding-left: 50px;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 50px;
  }
}

@media (max-width: 480px) {
  .package-card {
    padding: 32px 24px;
  }
  
  .package-card h3 {
    font-size: 22px;
  }
  
  .package-card .price {
    font-size: 40px;
  }
  
  .wedding-packages h2,
  .wedding-process h2,
  .wedding-faq h2 {
    font-size: 30px;
  }
  
  .timeline-item {
    padding-left: 40px;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 40px;
  }
  
  .timeline:before {
    left: 15px;
  }
  
  .timeline-item:before {
    left: 15px;
    width: 16px;
    height: 16px;
  }
}
