/* 
====================================
CSS STYLESHEET VOOR OPKOPER Aalter WEBSITE
====================================
Mobiele-first responsive design
Professionele, betrouwbare en moderne stijl
Alle Aalter placeholders zijn duidelijk gemarkeerd in de comments
====================================
*/

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Container & Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

/* Highlight styling voor Aalter placeholder */
.city-highlight,
.city-name {
  color: #2563eb;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover {
  background-color: #e5e7eb;
}

.btn-outline {
  background-color: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background-color: #2563eb;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-emergency {
  background-color: #dc2626;
  color: white;
  animation: pulse 2s infinite;
}

.btn-emergency:hover {
  background-color: #b91c1c;
}

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

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

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

.logo h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.5rem;
}

/* Navigation */
.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #2563eb;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  position: relative;
}

.dropdown-toggle::after {
  content: "▼"; /* Unicode down arrow as main fallback */
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  font-size: 0.8em;
  display: inline-block;
}

/* Font Awesome icon when available */
.dropdown-toggle.fa-available::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
}

.dropdown.active .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 9999;
  margin-top: 5px;
}

.dropdown.active .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: block;
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-bottom: 1px solid #f3f4f6;
}

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

.dropdown-item:hover,
.dropdown-item.active {
  background-color: #f8fafc;
  color: #2563eb;
}

.dropdown-item.active {
  background-color: #eff6ff;
  font-weight: 600;
}

.dropdown-item i {
  margin-right: 8px;
  width: 16px;
  color: #2563eb;
}

/* Mobile/Desktop Navigation Visibility */
.mobile-only {
  display: none;
}

.desktop-dropdown {
  display: block;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-weight: 500;
}

.phone-number i {
  color: #2563eb;
}

.mobile-cta {
  display: none;
}

.desktop-cta {
  display: inline-flex;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #374151;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Page Header */
.page-header {
  background-color: #f8fafc;
  padding: 3rem 0;
  text-align: center;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Overview */
.services-overview {
  padding: 4rem 0;
  background-color: #fff;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.service-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

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

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

/* How We Work Section */
.how-we-work {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.how-we-work h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.step h3 {
  margin-bottom: 1rem;
  color: #1a1a1a;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

.why-choose-us .container {
  position: relative;
  z-index: 1;
}

.why-choose-us h3 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  position: relative;
}

.why-choose-us h3::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #2563eb;
}

.benefit:hover::before {
  transform: scaleX(1);
}

.benefit i {
  color: #2563eb;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit:hover i {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  transform: scale(1.1);
}

.benefit span {
  font-weight: 500;
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.benefit:hover span {
  color: #1e293b;
}

/* Services Details (voor diensten pagina) */
.services-details {
  padding: 2rem 0;
}

.service-detail {
  margin-bottom: 4rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 4rem;
}

.service-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-detail.reverse .service-detail-content {
  grid-template-columns: 1fr 2fr;
}

.service-detail.reverse .service-detail-text {
  order: 2;
}

.service-detail.reverse .service-detail-image {
  order: 1;
}

.service-detail h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.service-benefits {
  list-style: none;
  margin-top: 1.5rem;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.service-benefits i {
  color: #16a34a;
  font-size: 1rem;
}

.service-detail-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #64748b;
  border: 2px dashed #cbd5e1;
}

.image-placeholder i {
  font-size: 3rem;
}

.image-placeholder span {
  font-weight: 500;
  text-align: center;
}

/* Process Timeline */
.process-section {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.process-icon i {
  font-size: 2rem;
  color: white;
}

/* Contact Styles */
.contact-content {
  padding: 3rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

/* Contact Form */
.contact-form-section h2 {
  margin-bottom: 1rem;
}

.contact-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 16px;
  border: 2px dashed #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #2563eb;
  font-weight: 500;
}

.file-upload-label:hover {
  border-color: #2563eb;
  background-color: #f8fafc;
}

.file-input {
  display: none;
}

.form-group small {
  display: block;
  margin-top: 0.25rem;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Checkbox Styling */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  margin-top: 1px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: #2563eb;
  border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Contact Information */
.contact-info-section h3 {
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.25rem;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.contact-details p {
  margin: 0;
  color: #374151;
}

.contact-details a {
  color: #2563eb;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-details small {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Quick Contact */
.quick-contact h4 {
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.quick-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 16px;
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  transition: all 0.3s ease;
  font-weight: 500;
}

.quick-btn:hover {
  background-color: #f9fafb;
  border-color: #2563eb;
  color: #2563eb;
}

.quick-btn i {
  font-size: 1.1rem;
}

/* Simplified Contact Page Styles */
.contact-grid-simple {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.direct-contact-section {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.direct-contact-section h2 {
  margin-bottom: 1rem;
  color: #1e293b;
  font-size: 2.25rem;
}

.direct-contact-section > p {
  margin-bottom: 3rem;
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(59, 130, 246, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-method:hover::before {
  opacity: 1;
}

.contact-method.phone {
  border-color: #2563eb;
}

.contact-method.phone:hover {
  border-color: #1d4ed8;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.contact-method.whatsapp {
  border-color: #16a34a;
}

.contact-method.whatsapp:hover {
  border-color: #15803d;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.contact-method.email {
  border-color: #d97706;
}

.contact-method.email:hover {
  border-color: #b45309;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.method-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-method.phone .method-icon {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.contact-method.whatsapp .method-icon {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.contact-method.email .method-icon {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.method-icon i {
  font-size: 2rem;
  color: white;
}

.contact-method:hover .method-icon {
  transform: scale(1.1);
}

.method-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.method-content h3 {
  margin: 0 0 0.5rem 0;
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 600;
}

.method-value {
  margin: 0 0 0.5rem 0;
  color: #374151;
  font-size: 1.125rem;
  font-weight: 500;
}

.method-description {
  margin: 0 0 1rem 0;
  color: #64748b;
  font-size: 0.95rem;
}

.method-cta {
  display: inline-block;
  color: #2563eb;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-method:hover .method-cta {
  background: rgba(37, 99, 235, 0.2);
  transform: translateX(4px);
}

.service-promise {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 12px;
}

.promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.promise-item i {
  font-size: 1.5rem;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.promise-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}

@media (max-width: 1024px) {
  .contact-grid-simple {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .direct-contact-section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .method-content h3 {
    font-size: 1.25rem;
  }

  .service-promise {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }

  .direct-contact-section {
    padding: 1.5rem;
  }

  .direct-contact-section h2 {
    font-size: 1.875rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.faq-item {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.faq-item p {
  color: #555;
  margin: 0;
}

/* Emergency Contact */
.emergency-contact {
  padding: 3rem 0;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.emergency-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}

.emergency-icon i {
  font-size: 3rem;
  color: #dc2626;
}

.emergency-text h3 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.emergency-text p {
  margin: 0;
  color: #555;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.cta-content p {
  color: #cbd5e1;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #d1d5db;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #d1d5db;
}

.footer-contact i {
  color: #2563eb;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design - Mobile First */

/* Tablet Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
  }

  .benefit {
    padding: 1.75rem;
  }

  .why-choose-us h3 {
    font-size: 2.25rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail.reverse .service-detail-content {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse .service-detail-text,
  .service-detail.reverse .service-detail-image {
    order: unset;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
  }

  .logo h2 {
    font-size: 1.25rem;
  }

  .nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    margin: 0;
  }

  .nav-list li {
    border-bottom: 1px solid #e5e7eb;
  }

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

  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }

  /* Hide desktop dropdown in mobile */
  .desktop-dropdown {
    display: none;
  }

  /* Show mobile-only links */
  .mobile-only {
    display: block;
  }

  /* Mobile-only nav links styling */
  .mobile-only .nav-link {
    padding-left: 1rem;
    background-color: #f8fafc;
    margin: 0 -1rem;
    border-left: 3px solid #2563eb;
  }

  .mobile-only .nav-link i {
    color: #2563eb;
    margin-right: 0.5rem;
  }

  /* Mobile Dropdown Styles */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #f8fafc;
    margin-top: 0;
    transform: none;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-item {
    padding: 12px 20px;
    font-size: 1rem;
    border-bottom: 1px solid #e5e7eb;
  }

  .dropdown-item:hover {
    background-color: #e5e7eb;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 3;
  }

  .header-cta {
    order: 2;
    gap: 0;
  }

  .phone-number {
    display: none;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .header-cta .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .header-cta .btn-primary {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .header-cta .btn-primary:hover {
    background: #1d4ed8;
  }

  .hero {
    padding: 2.5rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

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

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

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit {
    padding: 1.5rem;
    gap: 1rem;
  }

  .benefit i {
    font-size: 1.25rem;
    padding: 0.625rem;
  }

  .benefit span {
    font-size: 0.95rem;
  }

  .why-choose-us {
    padding: 3rem 0;
  }

  .why-choose-us h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .page-header {
    padding: 2rem 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .services-overview h2,
  .how-we-work h2,
  .why-choose-us h3,
  .process-section h2,
  .faq-section h2 {
    font-size: 2rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .service-card,
  .process-step,
  .faq-item {
    padding: 1.5rem;
  }

  .contact-item {
    padding: 1.25rem;
  }

  .services-overview,
  .how-we-work,
  .why-choose-us,
  .process-section,
  .cta-section {
    padding: 3rem 0;
  }

  .page-header {
    padding: 1.5rem 0;
  }

  .services-details {
    padding: 1rem 0;
  }

  .service-detail {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cta-section,
  .emergency-contact {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none;
    padding: 0;
  }

  .page-header,
  .hero {
    background: none !important;
    color: #000 !important;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .service-card,
  .process-step,
  .faq-item {
    border: 2px solid #000;
  }

  .btn-primary {
    border: 2px solid #000;
  }
}

/* Dark Mode Support (optioneel) */
@media (prefers-color-scheme: dark) {
  /* Dark mode styles kunnen hier toegevoegd worden indien gewenst */
  /* Voor nu behouden we de lichte theme voor professionaliteit */
}

/* ====================================
   GALLERY & PROJECTS SECTION
   ==================================== */

.our-projects {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.our-projects h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.projects-gallery {
  max-width: 1200px;
  margin: 0 auto;
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: #fff;
  border: 2px solid #e2e8f0;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 280px;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-content {
  padding: 1.5rem;
  color: white;
  width: 100%;
}

.gallery-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.gallery-content p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.gallery-category {
  display: inline-block;
  background: rgba(37, 99, 235, 0.9);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Gallery Animation States */
.gallery-item.fade-out {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.gallery-item.fade-in {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .our-projects {
    padding: 60px 0;
  }

  .our-projects h2 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-item {
    height: 250px;
  }

  .gallery-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .gallery-content {
    padding: 1rem;
  }

  .gallery-content h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .filter-btn {
    flex-shrink: 0;
  }
}

/* ====================================
   IMAGE SLIDER SECTION
   ==================================== */

.image-slider-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.image-slider-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.image-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 600%; /* 6 slides * 100% */
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 16.666%; /* 100% / 6 slides */
  height: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.slider-btn-prev {
  left: 20px;
}

.slider-btn-next {
  right: 20px;
}

/* Dots Indicator */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover,
.dot.active {
  background: white;
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .image-slider-section {
    padding: 60px 0;
  }

  .image-slider-section h2 {
    font-size: 2rem;
  }

  .slider-wrapper {
    height: 350px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-btn-prev {
    left: 10px;
  }

  .slider-btn-next {
    right: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .slider-wrapper {
    height: 280px;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .slider-dots {
    bottom: 15px;
    gap: 8px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #1e293b;
}

.testimonials-section .section-subtitle {
  text-align: center;
  margin-bottom: 4rem;
  color: #64748b;
  font-size: 1.1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #2563eb;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars i {
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-content p {
  font-style: italic;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  margin: 0;
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
}

.author-info span {
  color: #64748b;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-section h2 {
    font-size: 2rem;
  }
}

/* Trust Badges Section */
.trust-badges {
  padding: 4rem 0;
  background-color: #ffffff;
}

.trust-badges h3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
  color: #1e293b;
}

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

.trust-badge {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-5px);
}

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

.badge-icon i {
  font-size: 1.5rem;
  color: white;
}

.trust-badge h4 {
  margin-bottom: 0.5rem;
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .trust-badges {
    padding: 3rem 0;
  }

  .badges-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .trust-badge {
    padding: 1.5rem 1rem;
  }

  .trust-badges h3 {
    font-size: 1.875rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-float .whatsapp-text {
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

@media (min-width: 768px) {
  .whatsapp-float .whatsapp-text {
    display: block;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 12px;
    font-size: 1.25rem;
  }
}

/* Enhanced FAQ Section */
.enhanced-faq {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.enhanced-faq h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #1e293b;
}

.enhanced-faq .section-subtitle {
  text-align: center;
  margin-bottom: 4rem;
  color: #64748b;
  font-size: 1.1rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item.collapsible {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.collapsible:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.125rem;
  color: #1e293b;
  font-weight: 600;
}

.faq-question i {
  color: #2563eb;
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fafbfc;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .enhanced-faq {
    padding: 3rem 0;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }

  .enhanced-faq h2 {
    font-size: 2rem;
  }
}

/* Quick Contact Sidebar */
.quick-contact-sidebar {
  position: fixed;
  right: -350px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  background: white;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 12px 0 0 12px;
  z-index: 1001;
  transition: right 0.3s ease;
  max-height: 80vh;
  overflow-y: auto;
}

.quick-contact-sidebar.open {
  right: 0;
}

.quick-contact-header {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quick-contact-header h4 {
  margin: 0;
  font-size: 1.125rem;
}

.close-sidebar {
  background: none;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.close-sidebar:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.quick-contact-content {
  padding: 1.5rem;
}

.quick-contact-content p {
  text-align: center;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.quick-contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quick-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

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

.quick-option.phone {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-color: #2563eb;
}

.quick-option.whatsapp {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border-color: #16a34a;
}

.quick-option.email {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-color: #d97706;
}

.quick-option i {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.quick-option.phone i {
  color: #2563eb;
}

.quick-option.whatsapp i {
  color: #16a34a;
}

.quick-option.email i {
  color: #d97706;
}

.quick-option div {
  flex: 1;
}

.quick-option strong {
  display: block;
  color: #1e293b;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.quick-option span {
  color: #64748b;
  font-size: 0.8rem;
}

.quick-contact-cta {
  text-align: center;
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* Quick Contact Toggle Button */
.quick-contact-toggle {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border: none;
  border-radius: 25px 0 0 25px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.quick-contact-toggle:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-50%) translateX(-5px);
}

.quick-contact-toggle i {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.quick-contact-toggle span {
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .quick-contact-sidebar {
    width: 90vw;
    right: -90vw;
    top: auto;
    bottom: 0;
    transform: none;
    border-radius: 12px 12px 0 0;
    max-height: 70vh;
  }

  .quick-contact-toggle {
    display: none;
  }

  .whatsapp-float {
    bottom: 80px;
  }
}
