/* Terms of Service Page Specific Styles */

.terms-main {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 40px 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.terms-header {
  text-align: center;
  margin-bottom: 80px;
  padding-top: 60px;
}

.terms-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}

.terms-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 120px;
}

.terms-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.terms-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

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

.terms-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.terms-card:hover::before {
  left: 100%;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.terms-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

.terms-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.service-features {
  margin-top: 16px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.contact-info {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.contact-info p {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.contact-info strong {
  color: white;
  font-weight: 600;
}

.contact-button {
  display: inline-block;
  background: white;
  color: #0a0a0a;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.contact-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.contact-button.secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  color: white;
  text-decoration: underline;
}

/* Terms Responsive Design */
@media (max-width: 768px) {
  .terms-main {
    padding: 24px 24px 0;
  }
  
  .terms-header {
    margin-bottom: 60px;
    padding-top: 40px;
  }
  
  .terms-title {
    font-size: clamp(28px, 8vw, 40px);
  }
  
  .terms-subtitle {
    font-size: 16px;
  }
  
  .terms-content {
    gap: 60px;
    margin-bottom: 80px;
  }
  
  .terms-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .terms-main {
    padding: 16px 16px 0;
  }
  
  .terms-header {
    margin-bottom: 40px;
    padding-top: 24px;
  }
  
  .terms-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .terms-card {
    padding: 20px;
  }
  
  .terms-list li {
    font-size: 13px;
    padding: 6px 0 6px 20px;
  }
}