/* ====================================
   DRENTO HAVEN - SOFT PASTEL DESIGN
   Complete CSS Styles
   ==================================== */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #3d3d3d;
  background: linear-gradient(135deg, #fef5f8 0%, #f4f7fc 100%);
  overflow-x: hidden;
}

/* SOFT PASTEL COLOR PALETTE */
:root {
  --pastel-pink: #ffd1dc;
  --pastel-lavender: #e6e6fa;
  --pastel-mint: #d4f1f4;
  --pastel-peach: #ffe5d4;
  --pastel-lemon: #fffacd;
  --text-primary: #5a5a5a;
  --text-secondary: #7a7a7a;
  --text-dark: #3d3d3d;
  --white: #ffffff;
  --soft-shadow: 0 4px 20px rgba(200, 150, 200, 0.15);
  --hover-shadow: 0 8px 30px rgba(200, 150, 200, 0.25);
}

/* TYPOGRAPHY - SOFT & DREAMY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 200;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 300;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
}

h4 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

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

ul {
  list-style: none;
}

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

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER - FLOATING STYLE */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(200, 150, 200, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-lavender));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav a:hover::after {
  width: 80%;
}

/* BUTTONS - SOFT ROUNDED STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  box-shadow: var(--soft-shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 100%);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  box-shadow: var(--hover-shadow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-lemon) 100%);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-peach) 100%);
  box-shadow: var(--hover-shadow);
  transform: translateY(-2px);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  border: none;
  font-size: 24px;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  box-shadow: var(--soft-shadow);
  color: var(--text-dark);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, var(--pastel-lavender) 100%);
  padding: 80px 30px 30px;
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(200, 150, 200, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-pink));
  border: none;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--soft-shadow);
  color: var(--text-dark);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: var(--text-primary);
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  transform: translateX(10px);
}

/* HERO SECTIONS */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--text-dark);
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(200, 150, 200, 0.1);
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* CARDS & GRIDS - FLEXBOX ONLY */
.services-grid,
.values-grid,
.stats-grid,
.testimonials-grid,
.benefits-grid,
.options-grid,
.reasons-grid,
.process-steps,
.contacts-grid,
.industry-grid,
.mvv-grid,
.expertise-grid,
.positions-list,
.culture-values,
.contact-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card,
.value-item,
.stat-item,
.testimonial-card,
.benefit-item,
.option-card,
.reason-item,
.process-step,
.contact-person,
.industry-card,
.mvv-item,
.expertise-item,
.position-card,
.culture-item,
.contact-card,
.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
  border-radius: 25px;
  box-shadow: var(--soft-shadow);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.option-card:hover,
.position-card:hover,
.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
  background: linear-gradient(135deg, rgba(255, 209, 220, 0.3), rgba(230, 230, 250, 0.3));
}

.service-card h3,
.option-card h3,
.position-card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p,
.option-card p,
.position-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 15px;
}

.price {
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 20px 0;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-lemon) 100%);
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
}

.values-grid {
  max-width: 900px;
  margin: 0 auto;
}

.value-item {
  flex: 1 1 calc(50% - 24px);
  text-align: center;
}

/* STATISTICS */
.statistics {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
}

.stat-item {
  flex: 1 1 calc(25% - 24px);
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 200;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
}

/* TESTIMONIALS - IMPROVED READABILITY */
.testimonials {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 247, 252, 0.95));
  flex: 1 1 calc(50% - 24px);
  padding: 32px;
  border-left: 4px solid var(--pastel-lavender);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
}

.testimonial-author {
  font-style: normal;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 16px;
  font-size: 14px;
}

/* CTA BANNER */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 50%, var(--pastel-mint) 100%);
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.contact-info {
  margin-top: 32px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info p {
  color: var(--text-dark);
  font-size: 14px;
}

/* 404 PAGE */
.hero-404 {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: 120px;
  font-weight: 200;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

/* THANK YOU PAGE */
.hero-thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--text-dark);
  margin: 0 auto 32px;
  box-shadow: var(--soft-shadow);
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  position: relative;
}

.process-step {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  position: relative;
}

.timeline-info {
  text-align: center;
  margin-top: 32px;
  font-weight: 600;
  color: var(--text-dark);
}

/* SERVICE DETAILS */
.service-detail {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px 32px;
  border-radius: 25px;
  margin-bottom: 32px;
  box-shadow: var(--soft-shadow);
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail li {
  list-style: disc;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.8;
}

/* TEXT SECTIONS */
.text-section {
  background: rgba(255, 255, 255, 0.7);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.text-section h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.text-section p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.text-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.text-section li {
  list-style: disc;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* VALUES SECTION */
.values-section h3 {
  text-align: center;
  margin: 40px 0 32px;
}

.values-grid .value-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-lemon));
  border-radius: 20px;
  font-weight: 500;
  color: var(--text-dark);
}

/* CONTACT FORMS */
.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.form-info {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.7);
  padding: 32px;
  border-radius: 20px;
}

.form-container {
  flex: 2 1 500px;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.form-note {
  background: linear-gradient(135deg, var(--pastel-lemon), var(--pastel-peach));
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

/* OFFICE INFO */
.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.office-detail {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.8);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 50px 50px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-column h3,
.footer-column h4 {
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 400;
}

.footer-column p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-column a:hover {
  color: var(--text-dark);
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 150, 200, 0.2);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.98));
  backdrop-filter: blur(10px);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(200, 150, 200, 0.2);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 30px 30px 0 0;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  color: var(--text-secondary);
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 24px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept-all {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-lavender));
  color: var(--text-dark);
}

.btn-reject-all {
  background: rgba(200, 200, 200, 0.3);
  color: var(--text-secondary);
}

.btn-settings {
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-lemon));
  color: var(--text-dark);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #ffffff, var(--pastel-lavender));
  padding: 40px;
  border-radius: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--hover-shadow);
}

.cookie-category {
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
}

.cookie-category h4 {
  margin-bottom: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

/* QUALITY METRICS */
.quality-metrics {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.metric {
  text-align: center;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  font-size: 18px;
}

.metric strong {
  display: block;
  font-size: 32px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

/* LAST UPDATED */
.last-updated {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 16px;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .service-card,
  .value-item,
  .stat-item,
  .testimonial-card,
  .benefit-item,
  .option-card,
  .reason-item,
  .process-step,
  .contact-person,
  .industry-card,
  .mvv-item,
  .expertise-item,
  .position-card,
  .culture-item,
  .contact-card,
  .resource-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .form-wrapper {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .testimonial-card,
  .option-card,
  .position-card,
  .resource-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid var(--pastel-lavender);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--pastel-pink);
}

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

.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cta-banner {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}