/* ==========================================================================
   Page Sections - Dětské centrum Liberec
   ========================================================================== */

/* ==========================================================================
   DEPRECATED: Old Where Section (keeping for reference)
   ========================================================================== */

.where-section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.where-section__title {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 700;
  color: #2d2d2d;
  text-align: center;
  margin: 0 0 12px;
}

.where-section__subtitle {
  font-size: 16px;
  color: #6b6b6b;
  text-align: center;
  margin: 0 0 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Card Grid */
.where-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Individual Card */
.where-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.where-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #993366, #cc6699);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.where-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(153, 51, 102, 0.12);
  border-color: rgba(153, 51, 102, 0.2);
}

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

/* Card Icon */
.where-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFF0F5 0%, #FFE4EC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.where-card:hover .where-card__icon {
  background: linear-gradient(135deg, #993366 0%, #cc6699 100%);
  transform: scale(1.05);
}

.where-card__icon svg {
  width: 28px;
  height: 28px;
  color: #993366;
  transition: color 0.3s ease;
}

.where-card:hover .where-card__icon svg {
  color: #ffffff;
}

/* Card Content */
.where-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0;
  line-height: 1.3;
}

.where-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: #6b6b6b;
  margin: 0;
  flex-grow: 1;
}

/* Card Link */
.where-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #993366;
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.where-card__link:hover {
  color: #7a2952;
  gap: 10px;
}

.where-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.where-card__link:hover svg {
  transform: translateX(3px);
}

/* Card Number Badge */
.where-card__number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF9F6;
  border: 2px solid rgba(153, 51, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #993366;
  transition: all 0.3s ease;
}

.where-card:hover .where-card__number {
  background: #993366;
  border-color: #993366;
  color: #ffffff;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
  .where-section {
    padding: 64px 0;
  }

  .where-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .where-cards .where-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .where-section {
    padding: 48px 0;
  }

  .where-section__container {
    padding: 0 20px;
  }

  .where-section__subtitle {
    margin-bottom: 32px;
  }

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

  .where-cards .where-card:last-child {
    max-width: none;
  }

  .where-card {
    padding: 24px;
  }
}

/* ==========================================================================
   Services Section Update
   ========================================================================== */

.services-section {
  background: #FFF9F6;
  padding: 80px 0;
}

.services-section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.services-section__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #2d2d2d;
  text-align: center;
  margin: 0 0 48px;
}

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

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #993366, #cc6699);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 8px;
}

.service-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}

@media (max-width: 640px) {
  .services-section {
    padding: 48px 0;
  }

  .services-section__container {
    padding: 0 20px;
  }

  .services-section__title {
    margin-bottom: 32px;
  }
}

/* ==========================================================================
   "O nás" (About Us) Section
   ========================================================================== */

.about-section {
  background: #FFF9F6;
  padding: 80px 0;
}

.about-section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  align-items: center; /* Vertically center text and image */
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left Column - Text Content */
.about-section__content {
  max-width: 480px;  /* Narrower width = less stretching needed for justified text */
  display: flex;
  flex-direction: column;
}

.about-section__label {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2d2d2d;
  background: #FFE4EC;
  border-radius: 20px;
  margin-bottom: 16px;
}

.about-section__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #2d2d2d;
  margin: 0 0 24px;
  line-height: 1.2;
}

.about-section__text {
  font-size: 17px;
  line-height: 1.75;
  color: #5a5a5a;
  margin: 0 0 20px;
  text-align: justify;           /* Block-like paragraphs (same end position) */
  text-align-last: left;         /* Don't justify the last line - prevents huge gaps */
  text-justify: inter-word;      /* Prefer adjusting spaces between words */
  /* Allow hyphenation to avoid huge gaps between words */
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  /* Keep sensible word breaking */
  word-break: normal;
  overflow-wrap: break-word;
  orphans: 2;
  widows: 2;
  text-wrap: pretty;
}

.about-section__text:last-of-type {
  margin-bottom: 28px;
}

/* Features Tags */
.about-section__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.about-section__feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #2d2d2d;
  background: #E8D5E8;
  border-radius: 24px;
}

.about-section__feature-check {
  width: 16px;
  height: 16px;
  color: #2d2d2d;
  flex-shrink: 0;
}

/* Footer Label */
.about-section__footer-label {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2d2d2d;
  background: #FFE4EC;
  border-radius: 20px;
  margin-top: auto;
  align-self: center;
}

/* Right Column - Image */
.about-section__image-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin-left: auto;
}

.about-section__image {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  z-index: 1;
  width: 100%;
}

.about-section__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  min-height: 450px;
  border-radius: 24px;
}

/* Decorative Blob */
.about-section__decoration {
  position: absolute;
  pointer-events: none;
}

.about-section__decoration--blob {
  width: 250px;
  height: 250px;
  background: #FFE5D9;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -50px;
  left: -80px;
  z-index: 0;
  opacity: 0.9;
}

/* ==========================================================================
   About Section - Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
  .about-section__container {
    gap: 48px;
  }

  .about-section__content {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .about-section {
    padding: 64px 0;
  }

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

  /* Text above on mobile */
  .about-section__content {
    order: 1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
  }

  .about-section__label {
    justify-content: center;
  }

  .about-section__features {
    justify-content: center;
  }

  .about-section__footer-label {
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* Image below on mobile */
  .about-section__image-wrapper {
    order: 2;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  .about-section__image img {
    min-height: 350px;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 48px 0;
  }

  .about-section__container {
    padding: 0 24px;
    gap: 32px;
  }

  .about-section__content {
    max-width: 100%;
    text-align: left;
  }

  .about-section__label {
    justify-content: flex-start;
  }

  .about-section__title {
    margin-bottom: 20px;
  }

  .about-section__text {
    font-size: 16px;
  }

  .about-section__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .about-section__footer-label {
    margin-left: 0;
    margin-right: auto;
  }

  .about-section__image-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .about-section__image img {
    min-height: 300px;
  }

  .about-section__decoration--blob {
    display: none;
  }
}

/* ==========================================================================
   "Co nabízíme" (What We Offer) Section - Service Cards
   ========================================================================== */

.offer-section {
  background: #FFF9F6;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative Blob */
.offer-section__decoration {
  position: absolute;
  pointer-events: none;
}

.offer-section__decoration--blob {
  width: 300px;
  height: 300px;
  background: #FFE5D9;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 10%;
  right: 5%;
  z-index: 0;
  opacity: 0.9;
}

.offer-section__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.offer-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.offer-section__label {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2d2d2d;
  background: #FFE4EC;
  border-radius: 20px;
  margin-bottom: 16px;
}

.offer-section__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #2d2d2d;
  margin: 0 0 16px;
  line-height: 1.2;
}

.offer-section__subtitle {
  font-size: 17px;
  color: #6b6b6b;
  margin: 0 0 24px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Golden Separator Line */
.offer-section__separator {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FFCC66, #FFD700, #FFCC66);
  border-radius: 2px;
  margin: 0 auto;
}

/* Cards Grid */
.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Individual Offer Card */
.offer-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Card Icon */
.offer-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E8D5E8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.offer-card:hover .offer-card__icon {
  background: #993366;
  transform: scale(1.05);
}

.offer-card__icon svg {
  width: 24px;
  height: 24px;
  color: #993366;
  transition: color 0.3s ease;
}

.offer-card:hover .offer-card__icon svg {
  color: #ffffff;
}

/* Card Content */
.offer-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 10px;
  line-height: 1.35;
}

.offer-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: #6b6b6b;
  margin: 0;
  /* Prevent single letter orphans */
  word-break: normal; /* Better typography - only break when necessary */
  overflow-wrap: break-word;
  /* Disable automatic hyphenation - words should move to next line instead of breaking */
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  orphans: 2;
  widows: 2;
  text-wrap: pretty;
}

/* Empty card styling */
.offer-card--empty {
  visibility: hidden;
  pointer-events: none;
}

/* Grid for 6 cards */
.offer-cards--six {
  grid-template-columns: repeat(3, 1fr);
}

/* Large card variant (optional) */
.offer-card--featured {
  background: linear-gradient(135deg, #993366 0%, #7a2952 100%);
  border-color: transparent;
}

.offer-card--featured .offer-card__icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.offer-card--featured .offer-card__icon svg {
  color: #ffffff;
}

.offer-card--featured .offer-card__title {
  color: #ffffff;
}

.offer-card--featured .offer-card__text {
  color: rgba(255, 255, 255, 0.85);
}

.offer-card--featured:hover {
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(153, 51, 102, 0.3);
}

/* ==========================================================================
   Offer Section - Responsive Design
   ========================================================================== */

@media (max-width: 1100px) {
  .offer-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Hide empty card on smaller screens */
  .offer-cards--six .offer-card--empty {
    display: none;
  }
}

@media (max-width: 768px) {
  .offer-section {
    padding: 64px 0;
  }

  .offer-section__header {
    margin-bottom: 36px;
  }

  .offer-section__decoration--blob {
    display: none;
  }

  .offer-cards {
    gap: 20px;
  }

  .offer-card {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .offer-section {
    padding: 48px 0;
  }

  .offer-section__container {
    padding: 0 20px;
  }

  .offer-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offer-cards--six .offer-card--empty {
    display: none;
  }

  .offer-card {
    border-radius: 18px;
  }

  .offer-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .offer-card__icon svg {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================================================
   "Jak se stát pěstounem" - Process/Timeline Section
   ========================================================================== */

.process-section {
  background: #FFF9F6;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.process-section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.process-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.process-section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #993366;
  margin-bottom: 12px;
}

.process-section__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #2d2d2d;
  margin: 0 0 16px;
  line-height: 1.2;
}

.process-section__subtitle {
  font-size: 17px;
  color: #6b6b6b;
  margin: 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Timeline Container */
.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Golden Path Line - Recurring Visual Element */
.process-timeline__path {
  position: absolute;
  left: 39px;
  top: 40px;
  bottom: 40px;
  width: 6px;
  pointer-events: none;
  z-index: 0;
}

.process-timeline__path-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, 
    #FFCC66 0%, 
    #FFD700 25%, 
    #FFEC8B 50%, 
    #FFD700 75%, 
    #FFCC66 100%
  );
  border-radius: 3px;
  opacity: 0.85;
  box-shadow: 0 0 20px rgba(255, 204, 102, 0.4);
}

/* Animated glow effect */
.process-timeline__path-glow {
  position: absolute;
  left: -2px;
  top: 0;
  width: 10px;
  height: 60px;
  background: linear-gradient(180deg, 
    transparent, 
    rgba(255, 255, 255, 0.8), 
    transparent
  );
  border-radius: 5px;
  animation: timeline-glow 4s ease-in-out infinite;
}

@keyframes timeline-glow {
  0%, 100% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: calc(100% - 60px); opacity: 0; }
}

/* Process Node Component - Reusable */
.process-node {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  z-index: 1;
  padding: 24px 0;
}

.process-node:first-child {
  padding-top: 0;
}

.process-node:last-child {
  padding-bottom: 0;
}

/* Node Circle */
.process-node__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #FFCC66;
  box-shadow: 
    0 0 0 6px rgba(255, 204, 102, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-node:hover .process-node__circle {
  border-color: #993366;
  box-shadow: 
    0 0 0 8px rgba(153, 51, 102, 0.1),
    0 12px 32px rgba(153, 51, 102, 0.15);
  transform: scale(1.05);
}

.process-node__icon {
  width: 32px;
  height: 32px;
  color: #993366;
  transition: all 0.3s ease;
}

.process-node:hover .process-node__icon {
  color: #7a2952;
  transform: scale(1.1);
}

/* Node Number Badge */
.process-node__number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #993366, #cc6699);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(153, 51, 102, 0.3);
}

/* Node Content */
.process-node__content {
  flex: 1;
  padding-top: 12px;
}

.process-node__title {
  font-size: 19px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.process-node:hover .process-node__title {
  color: #993366;
}

.process-node__text {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
  max-width: 400px;
}

/* Alternating layout for visual interest */
.process-timeline--alternating .process-node:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.process-timeline--alternating .process-node:nth-child(even) .process-node__text {
  margin-left: auto;
}

/* Grid Layout Alternative (Desktop) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Horizontal Golden Path for Grid */
.process-grid__path {
  position: absolute;
  left: 60px;
  right: 60px;
  top: 40px;
  height: 6px;
  pointer-events: none;
  z-index: 0;
}

.process-grid__path-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, 
    #FFCC66 0%, 
    #FFD700 25%, 
    #FFEC8B 50%, 
    #FFD700 75%, 
    #FFCC66 100%
  );
  border-radius: 3px;
  opacity: 0.85;
  box-shadow: 0 0 20px rgba(255, 204, 102, 0.4);
}

/* Grid Node */
.process-grid-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-grid-node__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #FFCC66;
  box-shadow: 
    0 0 0 6px rgba(255, 204, 102, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-grid-node:hover .process-grid-node__circle {
  border-color: #993366;
  box-shadow: 
    0 0 0 8px rgba(153, 51, 102, 0.1),
    0 12px 32px rgba(153, 51, 102, 0.15);
  transform: scale(1.08);
}

.process-grid-node__icon {
  width: 32px;
  height: 32px;
  color: #993366;
  transition: all 0.3s ease;
}

.process-grid-node:hover .process-grid-node__icon {
  color: #7a2952;
  transform: scale(1.1);
}

.process-grid-node__number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #993366, #cc6699);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(153, 51, 102, 0.3);
}

.process-grid-node__title {
  font-size: 16px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 8px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.process-grid-node:hover .process-grid-node__title {
  color: #993366;
}

.process-grid-node__text {
  font-size: 14px;
  line-height: 1.55;
  color: #6b6b6b;
  margin: 0;
}

/* Two-row grid for 7 steps */
.process-grid--seven {
  grid-template-columns: repeat(4, 1fr);
  row-gap: 48px;
}

.process-grid--seven .process-grid-node:nth-child(5),
.process-grid--seven .process-grid-node:nth-child(6),
.process-grid--seven .process-grid-node:nth-child(7) {
  /* Second row: 3 items centered */
}

/* Center last row */
.process-grid--seven::after {
  content: '';
  grid-column: span 1;
}

/* CTA at bottom */
.process-section__cta {
  text-align: center;
  margin-top: 56px;
}

.process-section__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #993366, #7a2952);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(153, 51, 102, 0.3);
}

.process-section__cta-btn:hover {
  background: linear-gradient(135deg, #7a2952, #662244);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(153, 51, 102, 0.4);
}

.process-section__cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.process-section__cta-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Process Section - Responsive Design
   ========================================================================== */

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

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

  .process-grid__path {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 64px 0 80px;
  }

  .process-section__header {
    margin-bottom: 48px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .process-grid-node__circle {
    width: 72px;
    height: 72px;
  }

  .process-grid-node__icon {
    width: 28px;
    height: 28px;
  }

  .process-section__cta {
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .process-section {
    padding: 48px 0 64px;
  }

  .process-section__container {
    padding: 0 20px;
  }

  .process-grid-node__circle {
    width: 64px;
    height: 64px;
  }

  .process-grid-node__icon {
    width: 26px;
    height: 26px;
  }

  .process-grid-node__number {
    width: 24px;
    height: 24px;
    font-size: 11px;
    top: -4px;
    right: -4px;
  }

  .process-grid-node__title {
    font-size: 15px;
  }

  .process-grid-node__text {
    font-size: 13px;
  }

  .process-section__cta-btn {
    width: 100%;
    padding: 14px 24px;
  }
}

/* ==========================================================================
   "Aktuální přípravy" - Course Teaser Section
   ========================================================================== */

.courses-section {
  background: #FFF9F6;
  padding: 80px 0;
}

.courses-section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.courses-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.courses-section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #993366;
  margin-bottom: 12px;
}

.courses-section__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #2d2d2d;
  margin: 0 0 16px;
  line-height: 1.2;
}

.courses-section__subtitle {
  font-size: 17px;
  color: #6b6b6b;
  margin: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Course Cards Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

/* Course Card */
.course-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.course-card:hover {
  border-color: rgba(153, 51, 102, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Status Tag */
.course-card__status {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  /* Enhanced visibility with shadow and backdrop */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  /* Ensure text is always readable */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.course-card__status--full {
  background: #E53935;
  color: #ffffff;
}

.course-card__status--available {
  background: #2E7D32;
  color: #ffffff;
}

.course-card__status--upcoming {
  background: #FF9800;
  color: #ffffff;
}

/* Card Image */
.course-card__image {
  margin: -28px -28px 20px -28px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  position: relative;
  width: calc(100% + 56px);
  /* Fixed aspect ratio container with background */
  aspect-ratio: 16 / 9;
  min-height: 200px;
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-card__image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  /* Show full image without cropping */
}

/* Card Header */
.course-card__header {
  margin-bottom: 20px;
  padding-right: 120px;
}

.course-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 8px;
}

.course-card__subtitle {
  font-size: 14px;
  color: #6b6b6b;
  margin: 0;
  /* Prevent single letter orphans */
  word-break: normal; /* Better typography - only break when necessary */
  overflow-wrap: break-word;
  /* Disable automatic hyphenation - words should move to next line instead of breaking */
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  text-wrap: pretty;
}

/* Date Pills */
.course-card__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.course-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF5F9;
  border: 1px solid #F2DCE8;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #993366;
}

.course-card__date svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* Card Info */
.course-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 12px 0;
}

.course-card__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(153, 51, 102, 0.02);
  border: 1px solid rgba(153, 51, 102, 0.08);
  transition: all 0.2s ease;
  /* Prevent single letter orphans */
  word-break: break-word;
  overflow-wrap: break-word;
}

.course-card__info-item:hover {
  background: rgba(153, 51, 102, 0.04);
  border-color: rgba(153, 51, 102, 0.12);
}

.course-card__info-icon {
  width: 22px;
  height: 22px;
  color: #993366;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.course-card__info-item:hover .course-card__info-icon {
  opacity: 1;
}

.course-card__info-label {
  font-weight: 600;
  color: #2d2d2d;
  margin-right: 4px;
}

.course-card__info-item span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}

/* Card Actions */
.course-card__actions {
  display: flex;
  gap: 12px;
}

.course-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}

.course-card__btn--primary {
  background: linear-gradient(135deg, #993366, #7a2952);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(153, 51, 102, 0.25);
}

.course-card__btn--primary:hover {
  background: linear-gradient(135deg, #7a2952, #662244);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(153, 51, 102, 0.35);
}

.course-card__btn--secondary {
  background: #FFF5F9;
  color: #993366;
  border: 1px solid #F2DCE8;
}

.course-card__btn--secondary:hover {
  background: #FFE4EC;
  border-color: #993366;
}

.course-card__btn--disabled {
  background: #f5f5f5;
  color: #999999;
  cursor: not-allowed;
  box-shadow: none;
}

.course-card__btn svg {
  width: 18px;
  height: 18px;
}

/* Upcoming Card Special Style */
.course-card--upcoming {
  background: linear-gradient(135deg, #FFF9F6 0%, #FFF5F9 100%);
  border-color: #F2DCE8;
}

/* Section CTA */
.courses-section__cta {
  text-align: center;
}

.courses-section__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #993366;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.courses-section__cta-link:hover {
  background: #FFF5F9;
  color: #7a2952;
}

.courses-section__cta-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.courses-section__cta-link:hover svg {
  transform: translateX(4px);
}

/* Courses Section Responsive */
@media (max-width: 900px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }

  .course-card__image {
    margin: -28px -28px 20px -28px;
    width: calc(100% + 56px);
    min-height: 180px;
  }

  .course-card__image img {
    /* Image will use contain to show fully */
  }
}

@media (max-width: 600px) {
  .courses-section {
    padding: 48px 0;
  }

  .courses-section__container {
    padding: 0 20px;
  }

  .course-card {
    padding: 24px 20px;
  }

  .course-card__image {
    margin: -24px -20px 16px -20px;
    width: calc(100% + 40px);
    border-radius: 16px 16px 0 0;
    min-height: 180px;
  }

  .course-card__image img {
    /* Image will use contain to show fully */
  }

  .course-card__header {
    padding-right: 0;
    margin-bottom: 16px;
  }

  .course-card__status {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-block;
    margin-bottom: 0;
    /* Keep enhanced visibility on mobile too */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    font-size: 11px;
  }

  .course-card__actions {
    flex-direction: column;
  }

  .course-card__btn {
    justify-content: center;
  }

  .course-card__info {
    gap: 10px;
    margin-bottom: 20px;
  }

  .course-card__info-item {
    font-size: 14px;
    padding: 8px 10px;
    gap: 10px;
  }

  .course-card__info-icon {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================================================
   "Dokumenty ke stažení" - Documents Section
   ========================================================================== */

.documents-section {
  background: #F5F0F8;
  padding: 48px 0;
}

.documents-section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.documents-section__content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.documents-section__icon {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.documents-section__icon svg {
  width: 32px;
  height: 32px;
  color: #993366;
}

.documents-section__text {
  flex: 1;
}

.documents-section__title {
  font-size: 24px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 8px;
  line-height: 1.3;
}

.documents-section__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}

.documents-section__action {
  flex-shrink: 0;
}

.documents-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid #993366;
  border-radius: 12px;
  background: transparent;
  color: #993366;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.documents-section__btn:hover {
  background: #993366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(153, 51, 102, 0.2);
}

.documents-section__btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.documents-section__btn:hover .documents-section__btn-icon {
  color: #ffffff;
}

/* CTA Link Style (used in template) */
.documents-section__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid #993366;
  border-radius: 12px;
  background: transparent;
  color: #993366;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.documents-section__cta-link:hover {
  background: #993366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(153, 51, 102, 0.2);
}

.documents-section__cta-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.documents-section__cta-link:hover svg {
  transform: translateX(4px);
  color: #ffffff;
}

/* Documents Section Responsive */
@media (max-width: 900px) {
  .documents-section__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .documents-section__content {
    width: 100%;
    flex-wrap: wrap;
  }

  .documents-section__action {
    width: 100%;
  }

  .documents-section__btn,
  .documents-section__cta-link {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .documents-section__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .documents-section__icon {
    width: 56px;
    height: 56px;
  }

  .documents-section__icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 600px) {
  .documents-section {
    padding: 40px 0;
  }

  .documents-section__container {
    padding: 0 20px;
    gap: 20px;
  }

  .documents-section__content {
    gap: 12px;
  }

  .documents-section__icon {
    width: 48px;
    height: 48px;
  }

  .documents-section__icon svg {
    width: 24px;
    height: 24px;
  }

  .documents-section__title {
    font-size: 20px;
  }

  .documents-section__subtitle {
    font-size: 14px;
  }

  .documents-section__btn,
  .documents-section__cta-link {
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  background: #FFF9F6;
  padding: 80px 0;
}

.faq-section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* FAQ Column */
.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-column__header {
  margin-bottom: 28px;
}

.faq-column__title {
  font-size: 24px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-column__title-icon {
  width: 28px;
  height: 28px;
  color: #993366;
}

.faq-column__subtitle {
  font-size: 15px;
  color: #6b6b6b;
  margin: 0;
}

/* FAQ Items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(153, 51, 102, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-item__question {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0 0 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-item__question::before {
  content: 'Q';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #993366, #cc6699);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  flex-shrink: 0;
}

.faq-item__answer {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
  padding-left: 34px;
}

/* FAQ Link */
.faq-column__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #993366;
  text-decoration: none;
  margin-top: 20px;
  padding: 10px 0;
  transition: all 0.2s ease;
}

.faq-column__link:hover {
  color: #7a2952;
}

.faq-column__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.faq-column__link:hover svg {
  transform: translateX(4px);
}

/* Resources Column */
.resources-column {
  display: flex;
  flex-direction: column;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.resource-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-item:hover {
  border-color: rgba(153, 51, 102, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}

.resource-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFF5F9 0%, #FFE4EC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.resource-item:hover .resource-item__icon {
  background: linear-gradient(135deg, #993366, #cc6699);
}

.resource-item__icon svg {
  width: 24px;
  height: 24px;
  color: #993366;
  transition: color 0.3s ease;
}

.resource-item:hover .resource-item__icon svg {
  color: #ffffff;
}

.resource-item__content {
  flex: 1;
}

.resource-item__title {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0 0 4px;
}

.resource-item__text {
  font-size: 13px;
  color: #6b6b6b;
  margin: 0;
}

.resource-item__arrow {
  width: 20px;
  height: 20px;
  color: #999999;
  transition: all 0.2s ease;
}

.resource-item:hover .resource-item__arrow {
  color: #993366;
  transform: translateX(4px);
}

/* FAQ Section Responsive */
@media (max-width: 900px) {
  .faq-section__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 48px 0;
  }

  .faq-section__container {
    padding: 0 20px;
  }

  .faq-column__title {
    font-size: 20px;
  }

  .faq-item {
    padding: 16px;
  }

  .faq-item__question {
    font-size: 15px;
  }

  .faq-item__answer {
    font-size: 13px;
    padding-left: 0;
    margin-top: 8px;
  }

  .resource-item__icon {
    width: 44px;
    height: 44px;
  }
}

/* ==========================================================================
   Contact/CTA Section - Emotional Ending
   ========================================================================== */

.contact-section {
  background: linear-gradient(135deg, #7a2952 0%, #993366 50%, #662244 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Golden accent line */
.contact-section__accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #FFCC66, #FFD700, #FFCC66);
  border-radius: 2px;
}

.contact-section__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

/* Quote Section */
.contact-section__quote {
  margin-bottom: 40px;
}

.contact-section__quote-text {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 16px;
  font-style: italic;
}

.contact-section__quote-subtext {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Contact Info */
.contact-section__info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.contact-section__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-section__info-item:hover {
  transform: translateY(-2px);
}

.contact-section__info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-section__info-item:hover .contact-section__info-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-section__info-icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.contact-section__info-content {
  text-align: left;
}

.contact-section__info-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-section__info-value {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* CTA Button */
.contact-section__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-section__btn--primary {
  background: #ffffff;
  color: #993366;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-section__btn--primary:hover {
  background: #FFF5F9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.contact-section__btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.contact-section__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.contact-section__btn svg {
  width: 20px;
  height: 20px;
}

/* Floating hearts decoration */
.contact-section__hearts {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-section__heart {
  position: absolute;
  opacity: 0.1;
  animation: float-heart 6s ease-in-out infinite;
}

.contact-section__heart:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.contact-section__heart:nth-child(2) {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.contact-section__heart:nth-child(3) {
  top: 30%;
  right: 8%;
  animation-delay: 1s;
}

.contact-section__heart:nth-child(4) {
  top: 70%;
  right: 12%;
  animation-delay: 3s;
}

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

/* Contact Section Responsive */
@media (max-width: 600px) {
  .contact-section {
    padding: 56px 0;
  }

  .contact-section__container {
    padding: 0 20px;
  }

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

  .contact-section__quote-subtext {
    font-size: 16px;
  }

  .contact-section__info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-section__info-item {
    width: 100%;
    max-width: 280px;
  }

  .contact-section__cta {
    flex-direction: column;
  }

  .contact-section__btn {
    width: 100%;
  }
}

/* ==========================================================================
   Information About Courses Page - Informace o kurzech
   ========================================================================== */

.info-courses-page {
  background: #FFF9F6;
  padding: 80px 0;
  min-height: calc(100vh - 80px);
}

.info-courses-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header Section */
.info-courses-page__header {
  text-align: center;
  margin-bottom: 64px;
}

.info-courses-page__label {
  display: inline-block;
  padding: 8px 20px;
  background: #FFF9C4;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 20px;
}

.info-courses-page__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
  color: #2d2d2d;
}

.info-courses-page__title-highlight {
  color: #993366;
}

.info-courses-page__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Cards - Top Section */
.info-courses-page__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.info-courses-page__feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.info-courses-page__feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-courses-page__feature-icon {
  width: 64px;
  height: 64px;
  background: #993366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.info-courses-page__feature-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.info-courses-page__feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0 0 12px;
}

.info-courses-page__feature-value {
  font-size: 32px;
  font-weight: 700;
  color: #993366;
  margin: 0 0 8px;
}

.info-courses-page__feature-text {
  font-size: 14px;
  color: #6b6b6b;
  margin: 0;
}

/* Course Content Section */
.info-courses-page__content {
  margin-bottom: 80px;
}

.info-courses-page__content-header {
  text-align: center;
  margin-bottom: 48px;
}

.info-courses-page__content-label {
  display: inline-block;
  padding: 6px 16px;
  background: #FFE4EC;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 16px;
}

.info-courses-page__content-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #993366;
  margin: 0 0 16px;
}

.info-courses-page__content-subtitle {
  font-size: 17px;
  color: #6b6b6b;
  margin: 0 0 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.info-courses-page__separator {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FFCC66, #FFD700, #FFCC66);
  border-radius: 2px;
  margin: 0 auto;
}

/* Content Cards Grid */
.info-courses-page__content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.info-courses-page__content-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.info-courses-page__content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-courses-page__content-card-icon {
  width: 56px;
  height: 56px;
  background: #E8D5E8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-courses-page__content-card-icon svg {
  width: 28px;
  height: 28px;
  color: #993366;
}

.info-courses-page__content-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 20px;
}

.info-courses-page__content-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-courses-page__content-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.6;
}

.info-courses-page__content-card-list li svg {
  width: 18px;
  height: 18px;
  color: #993366;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Why Choose Us Section */
.info-courses-page__why {
  margin-top: 80px;
}

.info-courses-page__why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.info-courses-page__why-content {
  flex: 1;
}

.info-courses-page__why-label {
  display: inline-block;
  padding: 6px 16px;
  background: #FFE4EC;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 16px;
}

.info-courses-page__why-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #2d2d2d;
  margin: 0 0 20px;
  line-height: 1.3;
}

.info-courses-page__why-text {
  font-size: 17px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0 0 32px;
}

.info-courses-page__why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-courses-page__why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #2d2d2d;
  line-height: 1.6;
}

.info-courses-page__why-list li svg {
  width: 20px;
  height: 20px;
  color: #993366;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA Card */
.info-courses-page__why-cta {
  background: linear-gradient(135deg, #993366, #7a2952);
  border-radius: 24px;
  padding: 40px;
  color: #ffffff;
  position: sticky;
  top: 100px;
}

.info-courses-page__why-cta-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.info-courses-page__why-cta-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.info-courses-page__why-cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
}

.info-courses-page__why-cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
}

.info-courses-page__why-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-courses-page__why-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.info-courses-page__why-cta-btn--primary {
  background: #FFF9C4;
  color: #2d2d2d;
}

.info-courses-page__why-cta-btn--primary:hover {
  background: #FFF59D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-courses-page__why-cta-btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.info-courses-page__why-cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.info-courses-page__why-cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.info-courses-page__why-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Information Page Responsive */
@media (max-width: 1024px) {
  .info-courses-page__why-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .info-courses-page__why-cta {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .info-courses-page {
    padding: 64px 0;
  }

  .info-courses-page__header {
    margin-bottom: 48px;
  }

  .info-courses-page__features {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 64px;
  }

  .info-courses-page__content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info-courses-page__content {
    margin-bottom: 64px;
  }

  .info-courses-page__why {
    margin-top: 64px;
  }
}

@media (max-width: 600px) {
  .info-courses-page {
    padding: 48px 0;
  }

  .info-courses-page__container {
    padding: 0 20px;
  }

  .info-courses-page__feature-card {
    padding: 24px;
  }

  .info-courses-page__content-card {
    padding: 24px;
  }

  .info-courses-page__why-cta {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   Substitute Family Care Page - Náhradní rodinná péče
   ========================================================================== */

.foster-care-page {
  background: #FFF9F6;
  padding: 80px 0;
  min-height: calc(100vh - 80px);
}

.foster-care-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header Section */
.foster-care-page__header {
  text-align: center;
  margin-bottom: 80px;
}

.foster-care-page__label {
  display: inline-block;
  padding: 8px 20px;
  background: #FFF9C4;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 20px;
}

.foster-care-page__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
}

.foster-care-page__title-text {
  color: #2d2d2d;
}

.foster-care-page__title-highlight {
  color: #993366;
}

.foster-care-page__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Forms Section */
.foster-care-page__forms {
  margin-bottom: 80px;
}

.foster-care-page__forms-header {
  text-align: center;
  margin-bottom: 48px;
}

.foster-care-page__forms-label {
  display: inline-block;
  padding: 6px 16px;
  background: #FFE4EC;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 16px;
}

.foster-care-page__forms-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin: 0 0 16px;
}

.foster-care-page__forms-title-text {
  color: #2d2d2d;
}

.foster-care-page__forms-title-highlight {
  color: #993366;
}

.foster-care-page__forms-subtitle {
  font-size: 17px;
  color: #6b6b6b;
  margin: 0 0 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.foster-care-page__separator {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FFCC66, #FFD700, #FFCC66);
  border-radius: 2px;
  margin: 0 auto;
}

/* Form Cards List */
.foster-care-page__forms-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.foster-care-page__form-card {
  background: #FFE4EC;
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.foster-care-page__form-card-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.foster-care-page__form-card-icon {
  width: 64px;
  height: 64px;
  background: #993366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid #ffffff;
}

.foster-care-page__form-card-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.foster-care-page__form-card-text {
  flex: 1;
}

.foster-care-page__form-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 12px;
}

.foster-care-page__form-card-description {
  font-size: 16px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}

.foster-care-page__form-card-points {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
}

.foster-care-page__form-card-points-title {
  font-size: 14px;
  font-weight: 700;
  color: #993366;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

.foster-care-page__form-card-points-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.foster-care-page__form-card-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #2d2d2d;
  line-height: 1.6;
}

.foster-care-page__form-card-points-list li svg {
  width: 20px;
  height: 20px;
  color: #993366;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Conditions Section */
.foster-care-page__conditions {
  margin-bottom: 80px;
}

.foster-care-page__conditions-header {
  text-align: center;
  margin-bottom: 48px;
}

.foster-care-page__conditions-label {
  display: inline-block;
  padding: 6px 16px;
  background: #FFE4EC;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 16px;
}

.foster-care-page__conditions-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin: 0 0 16px;
}

.foster-care-page__conditions-title-text {
  color: #2d2d2d;
}

.foster-care-page__conditions-title-highlight {
  color: #993366;
}

.foster-care-page__conditions-subtitle {
  font-size: 17px;
  color: #6b6b6b;
  margin: 0 0 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.foster-care-page__condition-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.foster-care-page__condition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.foster-care-page__condition-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #FFCC66, #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}

.foster-care-page__condition-card-icon::before {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid #FFD700;
}

.foster-care-page__condition-card-icon svg {
  width: 28px;
  height: 28px;
  color: #993366;
  position: relative;
  z-index: 1;
}

.foster-care-page__condition-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 12px;
}

.foster-care-page__condition-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}

/* Process Section */
.foster-care-page__process {
  margin-bottom: 80px;
}

.foster-care-page__process-header {
  text-align: center;
  margin-bottom: 48px;
}

.foster-care-page__process-label {
  display: inline-block;
  padding: 6px 16px;
  background: #FFE4EC;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 16px;
}

.foster-care-page__process-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin: 0;
}

.foster-care-page__process-title-text {
  color: #2d2d2d;
}

.foster-care-page__process-title-highlight {
  color: #993366;
}

/* Process Timeline */
.foster-care-page__process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 60px;
}

.foster-care-page__process-line {
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FFCC66, #FFD700, #FFCC66);
  border-radius: 2px;
}

.foster-care-page__process-step {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.foster-care-page__process-step:last-child {
  margin-bottom: 0;
}

.foster-care-page__process-step-number {
  position: absolute;
  left: -60px;
  width: 56px;
  height: 56px;
  background: #993366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  border: 4px solid #FFF9F6;
  box-shadow: 0 4px 12px rgba(153, 51, 102, 0.2);
  z-index: 1;
}

.foster-care-page__process-step-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  flex: 1;
}

.foster-care-page__process-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 8px;
}

.foster-care-page__process-step-text {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}

/* CTA Section */
.foster-care-page__cta {
  background: linear-gradient(135deg, #993366, #7a2952);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  color: #ffffff;
}

.foster-care-page__cta-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.foster-care-page__cta-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.foster-care-page__cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
}

.foster-care-page__cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.foster-care-page__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.foster-care-page__cta-btn--primary {
  background: #FFF9C4;
  color: #2d2d2d;
}

.foster-care-page__cta-btn--primary:hover {
  background: #FFF59D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.foster-care-page__cta-btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.foster-care-page__cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.foster-care-page__cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.foster-care-page__cta-btn:hover svg {
  transform: translateX(4px);
}

/* Foster Care Page Responsive */
@media (max-width: 1024px) {
  .foster-care-page__form-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 768px) {
  .foster-care-page {
    padding: 64px 0;
  }

  .foster-care-page__header {
    margin-bottom: 64px;
  }

  .foster-care-page__forms {
    margin-bottom: 64px;
  }

  .foster-care-page__forms-list {
    gap: 24px;
  }

  .foster-care-page__form-card {
    padding: 32px 24px;
  }

  .foster-care-page__form-card-content {
    flex-direction: column;
    gap: 20px;
  }

  .foster-care-page__conditions {
    margin-bottom: 64px;
  }

  .foster-care-page__conditions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .foster-care-page__process {
    margin-bottom: 64px;
  }

  .foster-care-page__process-timeline {
    padding-left: 50px;
  }

  .foster-care-page__process-step-number {
    left: -50px;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .foster-care-page__cta {
    padding: 40px 32px;
  }
}

@media (max-width: 600px) {
  .foster-care-page {
    padding: 48px 0;
  }

  .foster-care-page__container {
    padding: 0 20px;
  }

  .foster-care-page__form-card {
    padding: 24px;
  }

  .foster-care-page__condition-card {
    padding: 24px;
  }

  .foster-care-page__process-timeline {
    padding-left: 40px;
  }

  .foster-care-page__process-line {
    left: 19px;
  }

  .foster-care-page__process-step-number {
    left: -40px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .foster-care-page__cta {
    padding: 32px 24px;
  }

  .foster-care-page__cta-buttons {
    flex-direction: column;
  }

  .foster-care-page__cta-btn {
    width: 100%;
  }
}

/* ==========================================================================
   Courses Page - Přípravné kurzy
   ========================================================================== */

.courses-page {
  background: #FFF9F6;
  padding: 80px 0;
  min-height: calc(100vh - 80px);
}

.courses-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header Section */
.courses-page__header {
  text-align: center;
  margin-bottom: 64px;
}

.courses-page__label {
  display: inline-block;
  padding: 8px 20px;
  background: #FFF9C4;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 20px;
}

.courses-page__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
}

.courses-page__title-text {
  color: #2d2d2d;
}

.courses-page__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Final Message Section */
.foster-care-page__final-message {
  margin-top: 80px;
  margin-bottom: 40px;
  text-align: center;
}

.foster-care-page__final-message-text {
  font-size: 17px;
  line-height: 1.7;
  color: #5a5a5a;
  max-width: 680px;
  margin: 0 auto 12px;
}

.foster-care-page__final-message-text:last-of-type {
  margin-bottom: 0;
}

/* Courses List */
.courses-page__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}

/* Course Page Card */
.course-page-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.course-page-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.course-page-card__content {
  flex: 1;
}

.course-page-card__header {
  margin-bottom: 24px;
}

.course-page-card__title {
  font-size: 24px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 12px;
  line-height: 1.3;
}

.course-page-card__description {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}

/* Course Details */
.course-page-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.course-page-card__details-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-page-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.course-page-card__detail-icon {
  width: 40px;
  height: 40px;
  background: #FFE4EC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.course-page-card__detail-icon svg {
  width: 20px;
  height: 20px;
  color: #993366;
}

.course-page-card__detail-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.course-page-card__detail-label {
  font-size: 13px;
  font-weight: 600;
  color: #993366;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.course-page-card__detail-value {
  font-size: 15px;
  color: #2d2d2d;
  font-weight: 500;
}

/* Action Section */
.course-page-card__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
  min-width: 200px;
}

.course-page-card__status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-page-card__status-dot {
  width: 8px;
  height: 8px;
  background: #43A047;
  border-radius: 50%;
  flex-shrink: 0;
}

.course-page-card__status-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.course-page-card__status-label {
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
}

.course-page-card__status-subtitle {
  font-size: 12px;
  color: #6b6b6b;
}

.course-page-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #993366, #7a2952);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(153, 51, 102, 0.25);
}

.course-page-card__btn:hover {
  background: linear-gradient(135deg, #7a2952, #662244);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(153, 51, 102, 0.35);
}

.course-page-card__btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.course-page-card__btn:hover svg {
  transform: translateX(4px);
}

/* CTA Section */
.courses-page__cta {
  background: #F5F0F8;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}

.courses-page__cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 16px;
}

.courses-page__cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.courses-page__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #ffffff;
  color: #993366;
  border: 2px solid #993366;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.courses-page__cta-btn:hover {
  background: #993366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(153, 51, 102, 0.2);
}

.courses-page__cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.courses-page__cta-btn:hover svg {
  transform: translateX(4px);
}

/* Courses Page Responsive */
@media (max-width: 1024px) {
  .course-page-card {
    flex-direction: column;
    gap: 24px;
  }

  .course-page-card__action {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .courses-page {
    padding: 64px 0;
  }

  .courses-page__header {
    margin-bottom: 48px;
  }

  .courses-page__list {
    gap: 24px;
    margin-bottom: 48px;
  }

  .course-page-card {
    padding: 24px;
  }

  .course-page-card__details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .course-page-card__action {
    flex-direction: column;
    align-items: stretch;
  }

  .course-page-card__btn {
    width: 100%;
    justify-content: center;
  }

  .courses-page__cta {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .courses-page {
    padding: 48px 0;
  }

  .courses-page__container {
    padding: 0 20px;
  }

  .course-page-card__title {
    font-size: 20px;
  }

  .courses-page__cta-title {
    font-size: 24px;
  }
}

/* ==========================================================================
   FAQ Page - Často kladené dotazy
   ========================================================================== */

.faq-page {
  background: #FFF9F6;
  padding: 80px 0;
  min-height: calc(100vh - 80px);
}

.faq-page__container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header Section */
.faq-page__header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-page__label {
  display: inline-block;
  padding: 8px 20px;
  background: #FFF9C4;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 20px;
}

.faq-page__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
  color: #2d2d2d;
}

.faq-page__title-highlight {
  color: #993366;
}

.faq-page__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Sections */
.faq-page__section {
  margin-bottom: 64px;
}

.faq-page__section-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 32px;
}

/* Accordion */
.faq-page__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-page__item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.faq-page__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-page__item--active {
  box-shadow: 0 4px 20px rgba(153, 51, 102, 0.12);
}

.faq-page__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  transition: all 0.3s ease;
}

.faq-page__question:hover {
  color: #993366;
}

.faq-page__question span {
  flex: 1;
  padding-right: 16px;
}

.faq-page__icon {
  width: 24px;
  height: 24px;
  color: #993366;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-page__item--active .faq-page__icon {
  transform: rotate(180deg);
}

.faq-page__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-page__answer p {
  padding: 0 24px 24px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #6b6b6b;
  /* Prevent single letter orphans */
  word-break: break-word;
  overflow-wrap: break-word;
  /* Disable automatic hyphenation - words should move to next line instead of breaking */
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
}

.faq-page__answer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px 24px;
  color: #993366;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.faq-page__answer-link:hover {
  color: #7a2952;
  transform: translateX(2px);
}

.faq-page__answer-link-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* CTA Section */
.faq-page__cta {
  background: linear-gradient(135deg, #F5F0F8, #E8D5E8);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  margin-top: 80px;
}

.faq-page__cta-icon {
  width: 64px;
  height: 64px;
  background: #993366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.faq-page__cta-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.faq-page__cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 16px;
}

.faq-page__cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-page__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #993366, #7a2952);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(153, 51, 102, 0.25);
}

.faq-page__cta-btn:hover {
  background: linear-gradient(135deg, #7a2952, #662244);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(153, 51, 102, 0.35);
}

.faq-page__cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.faq-page__cta-btn:hover svg {
  transform: translateX(4px);
}

/* FAQ Page Responsive */
@media (max-width: 768px) {
  .faq-page {
    padding: 64px 0;
  }

  .faq-page__header {
    margin-bottom: 48px;
  }

  .faq-page__section {
    margin-bottom: 48px;
  }

  .faq-page__question {
    padding: 20px;
    font-size: 16px;
  }

  .faq-page__answer p {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  .faq-page__cta {
    padding: 40px 32px;
    margin-top: 64px;
  }
}

@media (max-width: 600px) {
  .faq-page {
    padding: 48px 0;
  }

  .faq-page__container {
    padding: 0 20px;
  }

  .faq-page__question {
    padding: 18px;
    font-size: 15px;
  }

  .faq-page__answer p {
    padding: 0 18px 18px;
    font-size: 14px;
  }

  .faq-page__cta {
    padding: 32px 24px;
  }

  .faq-page__cta-title {
    font-size: 24px;
  }
}

/* ==========================================================================
   Useful Links Page - Užitečné odkazy
   ========================================================================== */

.links-page {
  background: #FFF9F6;
  padding: 80px 0;
  min-height: calc(100vh - 80px);
}

.links-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header Section */
.links-page__header {
  text-align: center;
  margin-bottom: 64px;
}

.links-page__label {
  display: inline-block;
  padding: 8px 20px;
  background: #FFF9C4;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 20px;
}

.links-page__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
}

.links-page__title-text {
  color: #2d2d2d;
}

.links-page__title-highlight {
  color: #993366;
}

.links-page__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Links Grid */
.links-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.links-page__column {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Section */
.links-page__section {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.links-page__section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 24px;
}

.links-page__section-icon {
  width: 28px;
  height: 28px;
  color: #993366;
  flex-shrink: 0;
}

/* Links List */
.links-page__links-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.links-page__link {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #FFF9F6;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.links-page__link:hover {
  background: #ffffff;
  border-color: rgba(153, 51, 102, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.links-page__link-content {
  flex: 1;
}

.links-page__link-title {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0 0 6px;
  transition: color 0.3s ease;
}

.links-page__link:hover .links-page__link-title {
  color: #993366;
}

.links-page__link-text {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}

.links-page__link-icon {
  width: 20px;
  height: 20px;
  color: #993366;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.links-page__link:hover .links-page__link-icon {
  transform: translate(2px, -2px);
}

/* Disclaimer Footer */
.links-page__disclaimer {
  background: #F5F0F8;
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: 64px;
}

.links-page__disclaimer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
  text-align: center;
}

/* Links Page Responsive */
@media (max-width: 1024px) {
  .links-page__grid {
    gap: 32px;
  }

  .links-page__column {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .links-page {
    padding: 64px 0;
  }

  .links-page__header {
    margin-bottom: 48px;
  }

  .links-page__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .links-page__section {
    padding: 24px;
  }

  .links-page__disclaimer {
    margin-top: 48px;
    padding: 20px 24px;
  }
}

@media (max-width: 600px) {
  .links-page {
    padding: 48px 0;
  }

  .links-page__container {
    padding: 0 20px;
  }

  .links-page__section {
    padding: 20px;
  }

  .links-page__link {
    padding: 16px;
  }

  .links-page__link-title {
    font-size: 16px;
  }

  .links-page__link-text {
    font-size: 13px;
  }

  .links-page__disclaimer {
    padding: 16px 20px;
  }

  .links-page__disclaimer-text {
    font-size: 13px;
  }
}

/* ==========================================================================
   Contacts Page - Kontakty
   ========================================================================== */

.contacts-page {
  background: #FFF9F6;
  padding: 80px 0;
  min-height: calc(100vh - 80px);
}

.contacts-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header Section */
.contacts-page__header {
  text-align: center;
  margin-bottom: 64px;
}

.contacts-page__label {
  display: inline-block;
  padding: 8px 20px;
  background: #FFF9C4;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 20px;
}

.contacts-page__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #993366;
  margin: 0 0 20px;
  line-height: 1.2;
}

.contacts-page__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Info Cards */
.contacts-page__info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.contacts-page__info-card {
  background: #FFE4EC;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.contacts-page__info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(153, 51, 102, 0.15);
}

.contacts-page__info-card-icon {
  width: 56px;
  height: 56px;
  background: #993366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contacts-page__info-card-icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.contacts-page__info-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0 0 12px;
}

.contacts-page__info-card-text {
  font-size: 15px;
  color: #6b6b6b;
  margin: 4px 0;
  line-height: 1.5;
}

.contacts-page__info-card-link {
  font-size: 15px;
  color: #993366;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contacts-page__info-card-link:hover {
  color: #7a2952;
  text-decoration: underline;
}

/* Main Section - Form and Map */
.contacts-page__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Form Section */
.contacts-page__form-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contacts-page__form-title {
  font-size: 28px;
  font-weight: 700;
  color: #993366;
  margin: 0 0 12px;
}

.contacts-page__form-subtitle {
  font-size: 16px;
  color: #6b6b6b;
  margin: 0 0 32px;
  line-height: 1.6;
}

.contacts-page__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contacts-page__form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts-page__form-label {
  font-size: 15px;
  font-weight: 600;
  color: #2d2d2d;
}

.contacts-page__form-required {
  color: #993366;
}

.contacts-page__form-input,
.contacts-page__form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: #2d2d2d;
  background: #ffffff;
  transition: all 0.3s ease;
}

.contacts-page__form-input:focus,
.contacts-page__form-textarea:focus {
  outline: none;
  border-color: #993366;
  box-shadow: 0 0 0 3px rgba(153, 51, 102, 0.1);
}

.contacts-page__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contacts-page__form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
  cursor: pointer;
}

.contacts-page__form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #993366;
}

.contacts-page__form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #993366, #7a2952);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(153, 51, 102, 0.25);
  align-self: flex-start;
}

.contacts-page__form-submit:hover {
  background: linear-gradient(135deg, #7a2952, #662244);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(153, 51, 102, 0.35);
}

.contacts-page__form-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.contacts-page__form-submit:hover svg {
  transform: translate(4px, -4px);
}

/* Flash Messages */
.contacts-page__flash {
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  border-left: 4px solid;
  animation: flashSlideIn 0.3s ease-out;
}

.contacts-page__flash--success {
  background: #f0fdf4;
  color: #166534;
  border-left-color: #22c55e;
}

.contacts-page__flash--error {
  background: #fef2f2;
  color: #dc2626;
  border-left-color: #ef4444;
}

.contacts-page__flash--warning {
  background: #fffbeb;
  color: #d97706;
  border-left-color: #f59e0b;
}

.contacts-page__flash--info {
  background: #f0f9ff;
  color: #0369a1;
  border-left-color: #3b82f6;
}

@keyframes flashSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* reCAPTCHA Styling */
.g-recaptcha {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacts-page__form-group .g-recaptcha {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* Mobile responsive reCAPTCHA */
@media (max-width: 768px) {
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: center;
  }
}

@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.75);
    transform-origin: center;
  }
}

/* Course Card Two-Button Layout */
.course-card__actions--two-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.course-card__actions--two-buttons .course-card__btn {
  flex: 1;
  font-size: 14px;
  padding: 12px 16px;
}

.course-card__btn--secondary {
  background-color: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.course-card__btn--secondary:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Booking Modal Styles */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal.active {
  display: flex;
}

.booking-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.booking-modal__container {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--primary);
  animation: bookingModalSlideIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.booking-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-bottom: 2px solid var(--border-color);
  background: var(--primary);
  color: white;
}

.booking-modal__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal__icon svg {
  width: 20px;
  height: 20px;
}

.booking-modal__title {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.booking-modal__close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.booking-modal__close svg {
  width: 20px;
  height: 20px;
}

.booking-modal__content {
  padding: 32px;
  max-height: 60vh;
  overflow-y: auto;
}

.booking-modal__course-info {
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.booking-modal__course-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px 0;
}

.booking-modal__course-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Booking Form Styles */
.booking-form__group {
  margin-bottom: 24px;
}

.booking-form__label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.booking-form__required {
  color: #dc2626;
  font-weight: 700;
}

.booking-form__input,
.booking-form__textarea,
.booking-form__select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 15px;
  transition: all 0.2s ease;
  background: white;
}

.booking-form__input:focus,
.booking-form__textarea:focus,
.booking-form__select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(153, 51, 102, 0.1);
}

.booking-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.booking-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-body);
  cursor: pointer;
}

.booking-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--primary);
}

.booking-form__error {
  display: block;
  color: #dc2626;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

.booking-form__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--border-color);
}

.booking-form__btn {
  flex: 1;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.booking-form__btn--primary {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.booking-form__btn--primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(153, 51, 102, 0.3);
}

.booking-form__btn--secondary {
  background-color: white;
  color: var(--text-muted);
  border-color: var(--border-color);
}

.booking-form__btn--secondary:hover {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border-color: var(--text-muted);
}

/* Responsive Design for Booking Modal */
@media (max-width: 768px) {
  .booking-modal__container {
    margin: 10px;
    max-height: 95vh;
  }
  
  .booking-modal__header,
  .booking-modal__content {
    padding: 20px;
  }
  
  .booking-form__actions {
    flex-direction: column;
  }
  
  .course-card__actions--two-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .booking-modal__container {
    margin: 5px;
  }
}

/* Map Section */
.contacts-page__map-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contacts-page__map-title {
  font-size: 28px;
  font-weight: 700;
  color: #993366;
  margin: 0 0 12px;
}

.contacts-page__map-subtitle {
  font-size: 16px;
  color: #6b6b6b;
  margin: 0 0 32px;
  line-height: 1.6;
}

.contacts-page__map-wrapper {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contacts-page__map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.contacts-page__map-info {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}

.contacts-page__map-info strong {
  color: #2d2d2d;
}

/* Contacts Page Responsive */
@media (max-width: 1024px) {
  .contacts-page__info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts-page__main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .contacts-page {
    padding: 64px 0;
  }

  .contacts-page__header {
    margin-bottom: 48px;
  }

  .contacts-page__info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
  }

  .contacts-page__form-section,
  .contacts-page__map-section {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .contacts-page {
    padding: 48px 0;
  }

  .contacts-page__container {
    padding: 0 20px;
  }

  .contacts-page__info-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contacts-page__info-card {
    padding: 24px 20px;
  }

  .contacts-page__form-section,
  .contacts-page__map-section {
    padding: 24px 20px;
  }

  .contacts-page__form-title,
  .contacts-page__map-title {
    font-size: 24px;
  }

  .contacts-page__map-wrapper iframe {
    height: 300px;
  }
}

/* ==========================================================================
   Course Detail Page - Enhanced Modern Design
   ========================================================================== */

.course-detail-page {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, #FFF9F6 0%, #ffffff 100%);
  min-height: calc(100vh - 76px);
}

.course-detail-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Hero Image Section - Enhanced */
.course-detail-page__hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #993366, #7a2952);
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-detail-page__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

.course-detail-page__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
  min-height: 500px;
}

.course-detail-page__hero:hover .course-detail-page__hero-image {
  transform: scale(1.03);
}

.course-detail-page__status {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.course-detail-page__status--full {
  background: linear-gradient(135deg, #E53935, #C62828);
  color: #ffffff;
}

.course-detail-page__status--available {
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  color: #ffffff;
}

/* Main Card - Enhanced */
.course-detail-page__card {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  border: 1px solid rgba(153, 51, 102, 0.05);
  position: relative;
  overflow: hidden;
}

.course-detail-page__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #993366, #cc6699, #993366);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.course-detail-page__header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid #F5F0F8;
  position: relative;
}

.course-detail-page__title-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.course-detail-page__title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  color: #2d2d2d;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #2d2d2d 0%, #993366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex: 1;
  min-width: 200px;
}

.course-detail-page__status-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  white-space: nowrap;
}

.course-detail-page__status-badge--full {
  background: linear-gradient(135deg, #E53935, #C62828);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.course-detail-page__status-badge--available {
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.course-detail-page__subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: #6b6b6b;
  margin: 0;
  font-weight: 400;
}

/* Info Grid - Enhanced Style */
.course-detail-page__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.course-detail-page__info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(153, 51, 102, 0.03) 0%, rgba(153, 51, 102, 0.01) 100%);
  border: 2px solid rgba(153, 51, 102, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.course-detail-page__info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(153, 51, 102, 0.1), transparent);
  transition: left 0.5s ease;
}

.course-detail-page__info-item:hover::before {
  left: 100%;
}

.course-detail-page__info-item:hover {
  background: linear-gradient(135deg, rgba(153, 51, 102, 0.06) 0%, rgba(153, 51, 102, 0.02) 100%);
  border-color: rgba(153, 51, 102, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(153, 51, 102, 0.15);
}

.course-detail-page__info-icon {
  width: 56px;
  height: 56px;
  color: #ffffff;
  flex-shrink: 0;
  background: linear-gradient(135deg, #993366, #cc6699);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(153, 51, 102, 0.3);
  transition: all 0.3s ease;
}

.course-detail-page__info-item:hover .course-detail-page__info-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(153, 51, 102, 0.4);
}

.course-detail-page__info-icon svg {
  width: 28px;
  height: 28px;
}

.course-detail-page__info-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.course-detail-page__info-label {
  font-size: 12px;
  font-weight: 700;
  color: #993366;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.course-detail-page__info-value {
  font-size: 17px;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1.5;
  word-break: break-word;
}

/* Booking Section - Enhanced */
.course-detail-page__booking {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 3px solid #F5F0F8;
  position: relative;
}

.course-detail-page__booking::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #993366, transparent);
  border-radius: 3px 0 0 0;
}

.course-detail-page__booking-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 40px;
  background: linear-gradient(135deg, #993366 0%, #7a2952 50%, #993366 100%);
  background-size: 200% 100%;
  color: #ffffff;
  border: none;
  border-radius: 18px;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(153, 51, 102, 0.35);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.course-detail-page__booking-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.course-detail-page__booking-btn:hover svg {
  transform: scale(1.15) rotate(5deg);
}

.course-detail-page__booking-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.course-detail-page__booking-btn:hover::before {
  left: 100%;
}

.course-detail-page__booking-btn:hover {
  background-position: 100% 0;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(153, 51, 102, 0.45);
}

.course-detail-page__booking-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(153, 51, 102, 0.4);
}

.course-detail-page__booking-message {
  width: 100%;
  padding: 20px 32px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}

.course-detail-page__booking-message--full {
  background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEE 100%);
  color: #C62828;
  border: 2px solid #FFCDD2;
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.1);
}

/* Content Card - Enhanced */
.course-detail-page__content-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  border: 1px solid rgba(153, 51, 102, 0.05);
}

.course-detail-page__content {
  font-size: 18px;
  line-height: 1.85;
  color: #4a4a4a;
}

.course-detail-page__content p {
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
}

.course-detail-page__content h2,
.course-detail-page__content h3 {
  color: #2d2d2d;
  margin: 32px 0 16px;
  font-weight: 700;
}

.course-detail-page__content h2 {
  font-size: 28px;
}

.course-detail-page__content h3 {
  font-size: 24px;
}

/* Section Titles - Enhanced */
.course-detail-page__section-title {
  font-size: 32px;
  font-weight: 800;
  color: #2d2d2d;
  margin: 0 0 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 16px;
}

.course-detail-page__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #993366, #cc6699);
  border-radius: 2px;
}

/* Gallery - Enhanced */
.course-detail-page__gallery-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  border: 1px solid rgba(153, 51, 102, 0.05);
}

.course-detail-page__gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.course-detail-page__gallery-item {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  position: relative;
  background: #f8f9fa;
}

.course-detail-page__gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(153, 51, 102, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.course-detail-page__gallery-item:hover::after {
  opacity: 1;
}

.course-detail-page__gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(153, 51, 102, 0.25);
}

.course-detail-page__gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.course-detail-page__gallery-item:hover img {
  transform: scale(1.1);
}

/* Files - Enhanced */
.course-detail-page__files-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  border: 1px solid rgba(153, 51, 102, 0.05);
}

.course-detail-page__files-list {
  display: grid;
  gap: 16px;
}

.course-detail-page__file-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(153, 51, 102, 0.03) 0%, rgba(153, 51, 102, 0.01) 100%);
  border: 2px solid rgba(153, 51, 102, 0.1);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.course-detail-page__file-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, #993366, #cc6699);
  transition: width 0.3s ease;
}

.course-detail-page__file-item:hover::before {
  width: 4px;
}

.course-detail-page__file-item:hover {
  background: linear-gradient(135deg, rgba(153, 51, 102, 0.06) 0%, rgba(153, 51, 102, 0.02) 100%);
  border-color: #993366;
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 8px 20px rgba(153, 51, 102, 0.2);
}

.course-detail-page__file-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #993366, #cc6699);
  border-radius: 14px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(153, 51, 102, 0.3);
  transition: all 0.3s ease;
}

.course-detail-page__file-item:hover .course-detail-page__file-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(153, 51, 102, 0.4);
}

.course-detail-page__file-icon svg {
  width: 28px;
  height: 28px;
}

.course-detail-page__file-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.course-detail-page__file-name {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
}

.course-detail-page__file-action {
  font-size: 14px;
  color: #993366;
  font-weight: 500;
}

/* Actions - Enhanced */
.course-detail-page__actions {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #F5F0F8;
}

.course-detail-page__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #FFF5F9 0%, #FFE4EC 100%);
  color: #993366;
  border: 2px solid #F2DCE8;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(153, 51, 102, 0.1);
  position: relative;
  overflow: hidden;
}

.course-detail-page__back-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(153, 51, 102, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.course-detail-page__back-btn:hover::before {
  width: 300px;
  height: 300px;
}

.course-detail-page__back-btn:hover {
  background: linear-gradient(135deg, #FFE4EC 0%, #FFD6E0 100%);
  border-color: #993366;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(153, 51, 102, 0.2);
}

.course-detail-page__back-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.course-detail-page__back-btn:hover svg {
  transform: translateX(-4px);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox__close:hover {
  color: #ccc;
}

#lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .course-detail-page__container {
    padding: 0 24px;
  }

  .course-detail-page__hero {
    height: 350px;
    border-radius: 24px;
    margin-bottom: 32px;
  }

  .course-detail-page__card,
  .course-detail-page__content-card,
  .course-detail-page__gallery-card,
  .course-detail-page__files-card {
    padding: 36px 28px;
    border-radius: 24px;
    margin-bottom: 32px;
  }

  .course-detail-page__title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .course-detail-page__title {
    font-size: 32px;
  }

  .course-detail-page__status-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .course-detail-page__info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .course-detail-page__info-item {
    padding: 20px;
  }

  .course-detail-page__gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .course-detail-page__section-title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .course-detail-page {
    padding: 24px 0 60px;
  }

  .course-detail-page__container {
    padding: 0 20px;
  }

  .course-detail-page__hero {
    height: 280px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .course-detail-page__status {
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    font-size: 11px;
  }

  .course-detail-page__card,
  .course-detail-page__content-card,
  .course-detail-page__gallery-card,
  .course-detail-page__files-card {
    padding: 28px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .course-detail-page__header {
    margin-bottom: 28px;
    padding-bottom: 24px;
  }

  .course-detail-page__title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .course-detail-page__title {
    font-size: 28px;
    margin-bottom: 0;
  }

  .course-detail-page__status-badge {
    font-size: 11px;
    padding: 7px 14px;
  }

  .course-detail-page__subtitle {
    font-size: 16px;
  }

  .course-detail-page__info-grid {
    gap: 14px;
    margin-bottom: 32px;
  }

  .course-detail-page__info-item {
    padding: 18px;
    gap: 16px;
  }

  .course-detail-page__info-icon {
    width: 48px;
    height: 48px;
  }

  .course-detail-page__info-icon svg {
    width: 24px;
    height: 24px;
  }

  .course-detail-page__info-label {
    font-size: 11px;
  }

  .course-detail-page__info-value {
    font-size: 16px;
  }

  .course-detail-page__booking {
    margin-top: 32px;
    padding-top: 32px;
  }

  .course-detail-page__booking-btn {
    padding: 18px 28px;
    font-size: 17px;
    border-radius: 16px;
  }

  .course-detail-page__section-title {
    font-size: 24px;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }

  .course-detail-page__section-title::after {
    width: 60px;
    height: 3px;
  }

  .course-detail-page__gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .course-detail-page__gallery-item img {
    height: 220px;
  }

  .course-detail-page__files-list {
    gap: 12px;
  }

  .course-detail-page__file-item {
    padding: 18px;
    gap: 16px;
  }

  .course-detail-page__file-icon {
    width: 48px;
    height: 48px;
  }

  .course-detail-page__file-icon svg {
    width: 24px;
    height: 24px;
  }

  .course-detail-page__actions {
    margin-top: 48px;
    padding-top: 32px;
  }

  .course-detail-page__back-btn {
    padding: 14px 24px;
    font-size: 16px;
  }
}

/* ==========================================================================
   Footer Component
   ========================================================================== */

.footer {
  background: #84315b;
  border-top: 1px solid #e9ecef;
  padding: 60px 0 20px;
  position: relative;
}

.footer__accent {
  height: 4px;
  background: linear-gradient(90deg, #993366 0%, #b8860b 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.footer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Contact Section */
.footer__contact {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer__contact-info {
  display: flex;
  gap: 32px;
  flex: 1;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.footer__contact-item:hover {
  transform: translateY(-2px);
}

.footer__contact-icon {
  width: 50px;
  height: 50px;
  background: #993366;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.footer__contact-icon svg {
  width: 24px;
  height: 24px;
}

.footer__contact-content {
  flex: 1;
}

.footer__contact-label {
  font-size: 12px;
  color: #6b6b6b;
  margin: 0 0 4px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer__contact-value {
  font-size: 16px;
  color: #2d2d2d;
  margin: 0;
  font-weight: 600;
}

/* Contact CTA Buttons */
.footer__contact-cta {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.footer__contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer__contact-btn--primary {
  background: #993366;
  color: #ffffff;
}

.footer__contact-btn--primary:hover {
  background: #7a2952;
  transform: translateY(-2px);
}

.footer__contact-btn--outline {
  background: transparent;
  color: #993366;
  border-color: #993366;
}

.footer__contact-btn--outline:hover {
  background: #993366;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer__contact-btn svg {
  width: 18px;
  height: 18px;
}

/* Main Footer Content */
.footer__main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer__column {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.footer__section {
  height: 100%;
}

.footer__title {
  font-size: 20px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #993366;
}

.footer__text {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0 0 24px;
}

/* DPO Information */
.footer__dpo {
  margin-top: 20px;
}

.footer__dpo-label {
  font-size: 12px;
  color: #6b6b6b;
  margin: 0 0 8px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer__dpo-name {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0 0 16px;
}

.footer__dpo-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__dpo-item {
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__dpo-item .footer__dpo-label {
  font-size: 12px;
  margin: 0;
  min-width: 50px;
}

.footer__link {
  color: #993366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #7a2952;
  text-decoration: underline;
}

/* Documents */
.footer__documents {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__document-item {
  margin: 0;
}

.footer__document-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer__document-link:hover {
  background: #e9ecef;
  border-color: #993366;
  transform: translateY(-1px);
}

.footer__document-icon {
  width: 24px;
  height: 24px;
  color: #993366;
  flex-shrink: 0;
}

.footer__document-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__document-title {
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
}

.footer__document-meta {
  font-size: 12px;
  color: #6b6b6b;
}

.footer__document-arrow {
  width: 16px;
  height: 16px;
  color: #993366;
  flex-shrink: 0;
}

/* Organization Info */
.footer__org-info {
  margin-bottom: 24px;
}

.footer__org-item {
  font-size: 14px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__org-label {
  font-size: 12px;
  color: #6b6b6b;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  min-width: 120px;
}

.footer__org-value {
  color: #2d2d2d;
  font-weight: 600;
}

/* Links */
.footer__links {
  margin-top: 24px;
}

.footer__links-title {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0 0 12px;
}

.footer__links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links-list li {
  margin: 0;
}

.footer__links-list .footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 8px 0;
}

.footer__links-list .footer__link svg {
  width: 14px;
  height: 14px;
}

.footer__link-logo {
  width: auto;
  height: 18px;
  max-width: 90px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0 4px;
  vertical-align: middle;
  display: inline-block;
}

.footer__link--with-logo {
  gap: 6px;
  align-items: center;
}

.footer__link--with-logo:hover .footer__link-logo {
  opacity: 0.8;
}

/* Bottom Section */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid #e9ecef;
  margin-bottom: 20px;
}

.footer__support-text {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__logo-link {
  display: block;
  transition: transform 0.3s ease;
}

.footer__logo-link:hover {
  transform: translateY(-2px);
}

.footer__logo {
  height: 40px;
  width: auto;
}

/* Copyright */
.footer__copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.footer__copyright-text {
  font-size: 12px;
  color: #ffffff;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__contact {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  
  .footer__contact-info {
    justify-content: center;
  }
  
  .footer__contact-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer__container {
    padding: 0 20px;
  }
  
  .footer__main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer__contact {
    padding: 24px;
  }
  
  .footer__contact-info {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer__contact-cta {
    flex-direction: column;
  }
  
  .footer__column {
    padding: 24px;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer__contact-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .footer__title {
    font-size: 18px;
  }
}

/* Books Section Styles for Links Page */
.links-page__books-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 48px;
}

.links-page__books-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 32px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #993366;
}

.links-page__books-title:first-child {
  margin-top: 0;
}

.links-page__books-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.links-page__books-list li {
  position: relative;
  padding: 12px 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  border-bottom: 1px solid #f0f0f0;
}

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


.links-page__books-note {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0 0 24px;
  padding: 16px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #993366;
  font-style: italic;
}

/* Films Section */
.links-page__section-note {
  font-size: 14px;
  color: #6b6b6b;
  margin: 0 0 20px;
  font-style: italic;
}

.links-page__films-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.links-page__films-list li {
  position: relative;
  padding: 12px 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  border-bottom: 1px solid #f0f0f0;
}

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



/* Responsive adjustments for books section */
@media (max-width: 768px) {
  .links-page__books-section {
    padding: 24px;
    margin-bottom: 32px;
  }
  
  .links-page__books-title {
    font-size: 20px;
    margin: 24px 0 16px;
  }
  
  .links-page__books-list li {
    font-size: 15px;
    padding: 10px 0;
  }
  
}

@media (max-width: 600px) {
  .links-page__books-section {
    padding: 20px;
  }
  
  .links-page__books-title {
    font-size: 18px;
  }
  
  .links-page__books-list li {
    font-size: 14px;
  }
  
}


/* ==========================================================================
   Modern Documents Section
   ========================================================================== */

.documents-modern {
  margin-top: 40px;
}

/* Document Tabs */
.documents-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 16px;
  overflow-x: auto;
}

.documents-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #6b6b6b;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.documents-tab:hover {
  background: #ffffff;
  color: #993366;
  transform: translateY(-1px);
}

.documents-tab--active {
  background: #ffffff;
  color: #993366;
  box-shadow: 0 2px 8px rgba(153, 51, 102, 0.15);
}

.documents-tab__count {
  background: #e9ecef;
  color: #495057;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.documents-tab--active .documents-tab__count,
.documents-tab:hover .documents-tab__count {
  background: #993366;
  color: #ffffff;
}

/* Document Categories */
.documents-category {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.documents-category--active {
  display: block;
}

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

/* Documents Grid */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Document Cards */
.document-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 80px;
}

.document-card:hover {
  border-color: #993366;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(153, 51, 102, 0.15);
}

.document-card:hover .document-card__action {
  background: #993366;
  color: #ffffff;
  transform: scale(1.1);
}

.document-card:hover .document-card__icon {
  background: #993366;
  color: #ffffff;
  transform: scale(1.05);
}

/* Card Badge */
.document-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 2;
}

.document-card__badge svg {
  width: 12px;
  height: 12px;
}

/* Card Icon */
.document-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #993366;
  transition: all 0.3s ease;
}

.document-card__icon svg {
  width: 24px;
  height: 24px;
}

/* Card Content */
.document-card__content {
  flex: 1;
  min-width: 0;
}

.document-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0 0 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.document-card__filename {
  font-size: 13px;
  color: #6b6b6b;
  margin: 0;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Action */
.document-card__action {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #993366;
  transition: all 0.3s ease;
}

.document-card__action svg {
  width: 18px;
  height: 18px;
}

/* Empty State */
.documents-empty {
  text-align: center;
  padding: 60px 20px;
  color: #6b6b6b;
}

.documents-empty svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.documents-empty p {
  font-size: 16px;
  margin: 0;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .documents-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .documents-modern {
    margin-top: 32px;
  }
  
  .documents-tabs {
    margin-bottom: 24px;
    padding: 6px;
  }
  
  .documents-tab {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .documents-tab__count {
    font-size: 10px;
    padding: 3px 6px;
  }
  
  .documents-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .document-card {
    padding: 20px;
    min-height: 70px;
  }
  
  .document-card__icon {
    width: 44px;
    height: 44px;
  }
  
  .document-card__icon svg {
    width: 22px;
    height: 22px;
  }
  
  .document-card__title {
    font-size: 15px;
  }
  
  .document-card__filename {
    font-size: 12px;
  }
  
  .document-card__action {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  
  .document-card__action svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 600px) {
  .documents-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  
  .documents-tab {
    justify-content: space-between;
    text-align: left;
  }
  
  .document-card {
    padding: 16px;
    gap: 12px;
  }
  
  .document-card__icon {
    width: 40px;
    height: 40px;
  }
  
  .document-card__icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Enhanced Animation Effects */
.document-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(153, 51, 102, 0.05), transparent);
  transition: left 0.6s ease;
}

.document-card:hover::before {
  left: 100%;
}

/* Focus states for accessibility */
.documents-tab:focus {
  outline: 2px solid #993366;
  outline-offset: 2px;
}

.document-card:focus {
  outline: 2px solid #993366;
  outline-offset: 2px;
}

/* Courses Page Empty State */
.courses-empty {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.courses-empty svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: #993366;
  opacity: 0.5;
}

.courses-empty p {
  font-size: 18px;
  color: #6b6b6b;
  margin: 12px 0;
  line-height: 1.6;
}

.courses-empty p:first-of-type {
  font-size: 20px;
  font-weight: 600;
  color: #2d2d2d;
}

@media (max-width: 768px) {
  .courses-empty {
    padding: 60px 20px;
  }
  
  .courses-empty svg {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }
  
  .courses-empty p {
    font-size: 16px;
  }
  
  .courses-empty p:first-of-type {
    font-size: 18px;
  }
}
