/* SURVEY PAGE SPECIFIC STYLES */
.survey-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 120px 20px 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.survey-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/background-pattern.png') repeat;
  opacity: 0.05;
}

.survey-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.survey-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.survey-content {
  padding: 60px 0;
  background-color: #f5f8fb;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blue-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.blue-frame {
  background-color: var(--primary-color);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}

.blue-frame::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  pointer-events: none;
}

.blue-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

.survey-text-content {
  color: white;
  position: relative;
  z-index: 2;
  text-align: center;
}

.survey-text-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.survey-text-content > p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.qr-section {
  margin: 40px 0;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.qr-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.qr-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.qr-code {
  background-color: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.qr-code img {
  width: 200px;
  height: 200px;
  display: block;
}

.qr-text {
  text-align: left;
  max-width: 250px;
}

.qr-text h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.qr-text p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.survey-link {
  margin: 30px 0;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.survey-link p {
  margin-bottom: 15px;
  font-size: 16px;
}

.survey-url {
  display: inline-flex;
  align-items: center;
  background-color: white;
  color: var(--primary-color);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.survey-url i {
  margin-right: 10px;
  color: var(--accent-color);
}

.survey-url:hover {
  background-color: var(--accent-color);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.survey-info {
  margin-top: 40px;
  text-align: left;
}

.survey-info h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--accent-color);
  text-align: center;
}

.survey-info ul {
  list-style: none;
  padding: 0;
}

.survey-info li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.survey-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .survey-hero {
    padding: 100px 20px 60px;
  }
  
  .survey-hero h1 {
    font-size: 2rem;
  }
  
  .survey-hero p {
    font-size: 1rem;
  }
  
  .blue-frame {
    padding: 30px 20px;
  }
  
  .survey-text-content h2 {
    font-size: 24px;
  }
  
  .qr-container {
    flex-direction: column;
    text-align: center;
  }
  
  .qr-text {
    text-align: center;
    max-width: 100%;
  }
  
  .survey-url {
    font-size: 14px;
    padding: 10px 15px;
  }
}

@media (max-width: 576px) {
  .survey-hero h1 {
    font-size: 1.8rem;
  }
  
  .blue-container {
    padding: 0 15px;
  }
  
  .blue-frame {
    padding: 25px 15px;
    border-radius: 12px;
  }
  
  .blue-frame::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .survey-text-content h2 {
    font-size: 22px;
  }
  
  .qr-section {
    padding: 20px;
  }
  
  .qr-code img {
    width: 150px;
    height: 150px;
  }
  
  .survey-info h3 {
    font-size: 20px;
  }
  
  .survey-info li {
    font-size: 14px;
  }
}