/* ========================================
   ZORGVERLENER-WORDEN.CSS - Caregiver Page Specific Styles
   ======================================== */

/* Caregiver Intro Section */
.caregiver-intro-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.caregiver-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.caregiver-intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.caregiver-intro-image {
  width: 100%;
  height: auto;
}

.caregiver-intro-text {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
}

/* What We Offer Section - IMPROVED */
.offer-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.offer-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 2px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #2274FF 0%, #3b82f6 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.offer-card:hover {
  border-color: rgba(34, 116, 255, 0.4);
  box-shadow: 0 16px 48px rgba(34, 116, 255, 0.2), 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

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

.offer-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 28px rgba(34, 116, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover .offer-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 16px 36px rgba(34, 116, 255, 0.4);
}

.offer-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.offer-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.offer-description {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.8;
}

@media (min-width: 640px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Requirements Section */
.requirements-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.requirements-list {
  list-style: none;
  max-width: 48rem;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.requirements-list li {
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.requirements-list li:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transform: translateX(8px);
}

.requirements-list li::before {
  content: '✓';
  width: 1.75rem;
  height: 1.75rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.25);
}

.requirements-list li span {
  font-size: 1.0625rem;
  color: #0f172a;
  line-height: 1.6;
  font-weight: 500;
}
.requirements-intro {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
/* Application Process Section */
.application-process-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.process-step:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 12px 32px rgba(34, 116, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.process-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(34, 116, 255, 0.25);
}

.process-content {
  flex: 1;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.process-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

/* Caregiver CTA Section - STYLED */
.caregiver-cta-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.caregiver-cta-content {
  max-width: 56rem;
  margin: 0 auto;
  background: linear-gradient(135deg, #2274FF 0%, #1e5dd6 100%);
  border-radius: 2.5rem;
  padding: 4.5rem 3rem;
  text-align: center;
  color: white;
  box-shadow: 0 24px 56px rgba(34, 116, 255, 0.35), 0 12px 28px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

.caregiver-cta-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCTA 7s ease-in-out infinite;
}

.caregiver-cta-content::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -25%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCTA 9s ease-in-out infinite reverse;
}

@keyframes floatCTA {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-25px, -25px) scale(1.12);
  }
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  position: relative;
  z-index: 10;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.cta-buttons .btn {
  min-width: 16rem;
}

.cta-buttons .btn-primary {
  background: white;
  color: #2274FF;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.cta-buttons .btn-primary:hover {
  background: #f0f9ff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.cta-buttons .btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 10;
}

.cta-note a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.cta-note a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

/* Responsive Styles - Caregiver Page */
@media (min-width: 768px) {
  .caregiver-intro-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .caregiver-cta-content {
    padding: 5rem 4rem;
  }

  .cta-title {
    font-size: 2.75rem;
  }
  
  .cta-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Requirements Section */
.requirements-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.requirements-list {
  list-style: none;
  max-width: 48rem;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.requirements-list li {
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.requirements-list li:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transform: translateX(8px);
}

.requirements-list li::before {
  content: '✓';
  width: 1.75rem;
  height: 1.75rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.25);
}

.requirements-list li span {
  font-size: 1.0625rem;
  color: #0f172a;
  line-height: 1.6;
  font-weight: 500;
}

/* Application Process Section */
.application-process-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.process-step:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 12px 32px rgba(34, 116, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.process-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(34, 116, 255, 0.25);
}

.process-content {
  flex: 1;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.process-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

/* Requirement Intro Text */
.requirements-intro {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: center;
}

/* Responsive Styles - Caregiver Page */
@media (min-width: 768px) {
  .caregiver-intro-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .application-cta-card {
    padding: 4rem 3rem;
  }

  .application-cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
