/* Thank You Section Styles */
.thankyou-section {
  padding: 40px 20px;
  background: var(--color-grigio-chiaro);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.thankyou-card {
  background: var(--color-bianco);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 113, 146, 0.1);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thankyou-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(90, 209, 230, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.thankyou-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-mare-profondo);
  margin: 0 0 20px 0;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.thankyou-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 20px 0;
  position: relative;
  z-index: 2;
}

.thankyou-closing {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-mare-profondo);
  margin: 0 0 30px 0;
  position: relative;
  z-index: 2;
}

.thankyou-social-btn {
  display: inline-block;
  background: var(--color-mare-profondo);
  color: var(--color-bianco);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.thankyou-social-btn:hover {
  background: var(--color-turchese);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 113, 146, 0.3);
  color: var(--color-bianco);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .thankyou-section {
    padding: 30px 15px;
  }
  
  .thankyou-card {
    padding: 30px 25px;
  }
  
  .thankyou-title {
    font-size: 1.8rem;
  }
  
  .thankyou-text {
    font-size: 1rem;
  }
  
  .thankyou-closing {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .thankyou-section {
    padding: 25px 15px;
  }
  
  .thankyou-card {
    padding: 25px 20px;
  }
  
  .thankyou-title {
    font-size: 1.6rem;
  }
  
  .thankyou-text {
    font-size: 0.95rem;
  }
  
  .thankyou-social-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}