/* ===== TERMS & CONDITIONS PAGE – TERMS.CSS ===== */
/* Complete color change - Purple to Orange-Red */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f6f4f0;
  color: #1e1b2b;
  line-height: 1.6;
  padding-top: 90px;
}
html{
    scrollbar-gutter:stable;
}

body{
    margin:0;
    overflow-y:scroll;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EA8534, #A0111A);
  background-size: cover;
  background-blend-mode: overlay;
  padding: 2rem 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  min-height: 60vh;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(1px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  color: white;
  padding: 2rem 1rem;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-title i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 3.2rem;
}

.hero-sub {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(2px);
  display: inline-block;
  padding: 0.3rem 2.2rem;
  border-radius: 60px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.hero-meta {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.10);
  padding: 0.6rem 2rem;
  border-radius: 60px;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-meta i {
  margin-right: 6px;
  opacity: 0.9;
}

/* ===== TERMS BOX ===== */
.terms-wrapper {
  max-width: 1100px;
  margin: -3rem auto 3rem auto;
  position: relative;
  z-index: 5;
  padding: 0 1.5rem;
}

.terms-box {
  background: white;
  border-radius: 2.5rem;
  box-shadow: 0 30px 50px -20px rgba(160, 17, 26, 0.18);
  padding: 2.8rem 3rem;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 70px;
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ===== TERMS SECTIONS - COMPLETE COLOR CHANGE ===== */
.terms-section {
  background: #fbfaf8;
  padding: 1.6rem 2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(234, 133, 52, 0.12);
  transition: background 0.15s, border-color 0.15s;
}

.terms-section:hover {
  background: #fef8f2;
  border-color: rgba(234, 133, 52, 0.30);
}

.section-number {
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  color: #A0111A;
  background: rgba(160, 17, 26, 0.08);
  padding: 0.15rem 0.9rem;
  border-radius: 30px;
  margin-bottom: 0.4rem;
}

.terms-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e1b2b;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.terms-section h3 i {
  color: #EA8534;
  opacity: 0.8;
  font-size: 1.2rem;
  width: 1.8rem;
}

.terms-section p,
.terms-section li {
  color: #2d2a3a;
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.terms-section ul,
.terms-section ol {
  padding-left: 1.6rem;
  margin: 0.4rem 0 0.2rem 0;
}

.terms-section ul li {
  list-style-type: disc;
}

.terms-section ol li {
  list-style-type: decimal;
}

/* ===== DEFINITION LIST ===== */
.def-list {
  background: white;
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  border-left: 4px solid #EA8534;
  margin: 0.6rem 0 0.2rem 0;
}

.def-list strong {
  color: #A0111A;
  font-weight: 600;
}

/* ===== CONTACT BLOCK - COMPLETE COLOR CHANGE ===== */
.contact-block {
  background: rgba(234, 133, 52, 0.06);
  border-radius: 1.2rem;
  padding: 1rem 1.8rem;
  border: 1px dashed rgba(160, 17, 26, 0.20);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.contact-block a {
  color: #A0111A;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dotted rgba(160, 17, 26, 0.3);
}

.contact-block a:hover {
  border-bottom: 1px solid #EA8534;
  color: #EA8534;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-sub {
    font-size: 1.2rem;
    padding: 0.2rem 1.2rem;
  }

  .hero-meta {
    gap: 1rem;
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
  }

  .terms-box {
    padding: 1.8rem 1.2rem;
  }

  .terms-section {
    padding: 1.2rem 1rem;
  }

  .terms-section h3 {
    font-size: 1.3rem;
  }

  .contact-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero {
    min-height: 50vh;
  }
}