/* CTA Section */
.cta-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 2;
}

.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 40px 20px;
  text-align: center;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-title {
  font-family: 'Yu Mincho', serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.cta-decoration {
  display: flex;
  align-items: center;
  gap: 8px;
}

.decoration-item {
  width: 12.54px;
  height: 10.32px;
  object-fit: contain;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 26px;
  border-radius: 80px;
  font-family: 'Yu Mincho', serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 21px;
  text-align: center;
  transition: all 0.3s ease;
  width: 320px;
  height: 49px;
}

.cta-btn.primary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.cta-btn.primary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary {
  background: #FFFFFF;
  color: #B90B1D;
  border: 1px solid #FFFFFF;
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .cta-section {
    height: 350px;
  }
  
  .cta-content {
    gap: 32px;
    padding: 30px 16px;
  }
  
  .cta-title {
    font-size: 28px;
    line-height: 40px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-btn {
    width: 280px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    height: 300px;
  }
  
  .cta-content {
    gap: 24px;
    padding: 20px 12px;
  }
  
  .cta-title {
    font-size: 24px;
    line-height: 36px;
  }
  
  .cta-btn {
    width: 250px;
    font-size: 16px;
    padding: 8px 20px;
  }
  
  .decoration-item {
    width: 10px;
    height: 8px;
  }
}
