/* Terms and Conditions Page Styles */

.terms-wrapper {
  min-height: 100vh;
  background: var(--gradient-subtle);
  /* margin-top: 2rem; */
}

.terms-container {
  max-width: 900px;
  margin: auto;
  padding: 7rem 1.5rem 3rem 1.5rem;
}

.terms-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

/* Main card */
.terms-card {
  background: var(--bg-primary);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 3rem;
}

/* Meta information */
.terms-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.meta-separator {
  color: var(--text-muted);
}

/* Content styling */
.terms-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

.terms-section {
  margin-bottom: 2.5rem;
}

.terms-section:last-child {
  margin-bottom: 0;
}

.section-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-gold);
}

.subsection-title {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.intro-text {
  font-size: 1.125rem;
  color: var(--text-primary);
  background: var(--bg-tertiary);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
}

/* Lists */
.terms-list {
  margin-left: 1.5rem;
  list-style: none;
}

.terms-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.terms-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.info-item {
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: 6px;
  border-left: 3px solid var(--accent-teal);
}

.info-item strong {
  color: var(--text-primary);
}

/* Highlight elements */
.highlight-text {
  color: var(--text-primary);
  font-weight: 500;
  background: linear-gradient(to right, var(--accent-gold-light), transparent);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin: 1rem 0;
}

.highlight-box {
  background: var(--bg-secondary);
  border: 1px solid var(--accent-teal);
  padding: 1.25rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.highlight-box strong {
  color: var(--primary-color);
}

.restriction-title {
  color: var(--error-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Agreement section */
.agreement-section {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--border-light);
}

.agreement-text {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .terms-container {
    padding: 2rem 1rem;
  }

  .terms-card {
    padding: 2rem 1.5rem;
  }

  .terms-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .terms-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .meta-separator {
    display: none;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Paragraph spacing */
.terms-section p {
  margin-bottom: 1rem;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

/* Terms Navigation CSS Starts here */
.notification-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gradient-gold);
  padding: 0.5rem 1rem;
  z-index: 2000;
  box-shadow: var(--shadow-sm);
  height: 36px;
}

.strip-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
}

.strip-badge {
  background: var(--primary-dark);
  color: var(--text-white);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.strip-text {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.strip-cta {
  background: var(--primary-dark);
  color: var(--text-white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.strip-cta:hover {
  transform: translateX(3px);
}

.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  z-index: 1500;
  transition: all 0.3s ease;
  height: 60px;
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.nav-logo img {
  height: 100%;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-item:hover {
  color: var(--primary-color);
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-btn-outline {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.nav-btn-solid {
  background: var(--gradient-primary);
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(27, 29, 78, 0.2);
}

.nav-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 29, 78, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .notification-strip {
    height: 30px;
    padding: 0.35rem 0.75rem;
  }

  .strip-text {
    font-size: 0.8rem;
  }

  .strip-cta {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }

  .main-nav {
    height: 50px;
  }

  .nav-wrapper {
    padding: 0 1rem;
  }

  .nav-logo {
    height: 50px;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xl);
    border-radius: 12px;
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    display: none;
    min-width: 200px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }

  .nav-item:hover {
    background: var(--bg-tertiary);
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .page-wrapper {
    margin-top: 80px;
  }
}

@media (max-width: 400px) {
  .strip-badge {
    font-size: 0.5rem;
  }

  .strip-text {
    font-size: 0.6rem;
  }

  .strip-cta {
    font-size: 0.5rem;
    padding: 0.2rem 0.6rem;
  }
}
