/* ===== PAGE HERO ===== */
.tc-page-hero {
  background: var(--secondary-color);
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
}

.tc-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color) 50%,
    transparent
  );
}

.tc-page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 2px;
}

.tc-hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(0, 200, 154, 0.07) 0%,
    transparent 70%
  );
}

.tc-hero-deco.tc-d1 {
  width: 480px;
  height: 480px;
  top: -200px;
  right: -80px;
}

.tc-hero-deco.tc-d2 {
  width: 280px;
  height: 280px;
  bottom: -120px;
  left: -50px;
}

.tc-hero-label {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 16px;
}

.tc-hero-label::before,
.tc-hero-label::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.tc-page-hero h1 {
  font-family: var(--title-font);
  font-size: var(--heading-xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.tc-hero-desc {
  font-family: var(--body-font);
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 26px;
  line-height: 1.8;
}

.tc-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.tc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.tc-hero-badge i {
  color: var(--primary-color);
  font-size: 13px;
}

.tc-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  font-family: var(--body-font);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.tc-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.tc-hero-breadcrumb a:hover {
  color: var(--primary-color);
}

.tc-hero-breadcrumb i {
  font-size: 9px;
  color: var(--primary-color);
}

.tc-hero-breadcrumb span {
  color: var(--primary-color);
  font-weight: 500;
}

/* ===== LAYOUT ===== */
.tc-wrapper {
  padding: 50px 0 80px;
}

/* ===== SIDEBAR ===== */
.tc-sidebar-sticky {
  position: sticky;
  top: 24px;
}

/* ---- TOC Card ---- */
.tc-toc-card {
  background: var(--white);
  border-radius: 12px;
  padding: var(--gap-20);
  margin-bottom: var(--gap-20);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid transparent;
  transition: box-shadow 0.3s ease;
}

.tc-toc-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tc-toc-heading {
  font-family: var(--title-font);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--gap-20);
  padding-bottom: 15px;
  border-bottom: 3px solid #e5e7eb;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-toc-heading i {
  color: var(--primary-color);
}

.tc-toc-heading::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.tc-toc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tc-toc-list li a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body-font);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: var(--primary-light);
}

.tc-toc-list li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-light);
  flex-shrink: 0;
  transition: background 0.2s;
}

.tc-toc-list li a:hover,
.tc-toc-list li a.tc-active {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.tc-toc-list li a:hover::before,
.tc-toc-list li a.tc-active::before {
  background: var(--white);
}

.tc-toc-list li a.tc-active {
  font-weight: 600;
}

/* ---- Quick Info Card ---- */
.tc-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: var(--gap-20);
  margin-bottom: var(--gap-20);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid transparent;
  transition: box-shadow 0.3s ease;
}

.tc-info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tc-info-card-heading {
  font-family: var(--title-font);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--gap-20);
  padding-bottom: 15px;
  border-bottom: 3px solid #e5e7eb;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-info-card-heading i {
  color: var(--primary-color);
}

.tc-info-card-heading::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.tc-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.tc-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tc-info-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tc-info-row-icon i {
  color: var(--primary-color);
  font-size: 12px;
}

.tc-info-row-label {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.tc-info-row-value {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

/* ---- Contact Card ---- */
.tc-contact-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  border-radius: 12px;
  padding: var(--gap-20);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.tc-contact-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tc-contact-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(0, 200, 154, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.tc-contact-card-icon i {
  color: var(--primary-color);
  font-size: 17px;
}

.tc-contact-card h4 {
  font-family: var(--title-font);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
  padding-bottom: 15px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.tc-contact-card h4::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 2px;
}

.tc-contact-card p {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin-bottom: 16px;
  margin-top: 12px;
}

.tc-contact-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body-font);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  background: var(--primary-color);
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 200, 154, 0.3);
  white-space: nowrap;
}

.tc-contact-card-btn:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 154, 0.4);
}

/* ===== MAIN CONTENT CARD ===== */
.tc-content-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 52px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

/* ===== INTRO BANNER ===== */
.tc-intro-banner {
  background: linear-gradient(
    135deg,
    var(--smoke) 0%,
    var(--primary-light) 100%
  );
  border-radius: 14px;
  padding: 28px 32px;
  border: 1px solid rgba(0, 200, 154, 0.2);
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}

.tc-intro-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 4px 0 0 4px;
}

.tc-intro-banner p {
  font-family: var(--body-font);
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 12px;
}

.tc-intro-banner p:last-child {
  margin-bottom: 0;
}

.tc-intro-banner a {
  color: var(--primary-color);
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 200, 154, 0.35);
  transition: border-color 0.3s;
}

.tc-intro-banner a:hover {
  border-color: var(--primary-color);
}

/* ===== SECTION ===== */
.tc-section {
  margin-bottom: 44px;
  scroll-margin-top: 24px;
}

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

.tc-section-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-light);
  margin-bottom: 11px;
}

.tc-section-icon-badge i {
  color: var(--primary-color);
  font-size: 14px;
}

.tc-section h2 {
  font-family: var(--title-font);
  font-size: var(--heading-md);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 14px;
  padding-bottom: 18px;
  border-bottom: 3px solid #e5e7eb;
  position: relative;
  letter-spacing: -0.5px;
}

.tc-section h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.tc-section p {
  font-family: var(--body-font);
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 13px;
}

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

.tc-section a {
  color: var(--primary-color);
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 200, 154, 0.3);
  transition: border-color 0.3s;
}

.tc-section a:hover {
  border-color: var(--primary-color);
}

/* ---- Bullet List ---- */
.tc-bullet-list {
  list-style: none;
  padding: 0;
  margin: 13px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tc-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: var(--body-font);
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.7;
}

.tc-bullet-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ---- Highlight Box ---- */
.tc-highlight-box {
  background: var(--smoke);
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary-color);
  margin: 16px 0;
}

.tc-highlight-box p {
  font-family: var(--body-font);
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 10px;
}

.tc-highlight-box p:last-child {
  margin-bottom: 0;
}

/* ---- Clause List (lettered / roman) ---- */
.tc-clause-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tc-clause-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--body-font);
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.7;
}

.tc-clause-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--primary-light);
  font-family: var(--title-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Address / Contact Box ---- */
.tc-address-box {
  background: var(--smoke);
  border-radius: 14px;
  padding: 26px 28px;
  border: 1px solid var(--border);
  margin-top: 16px;
}

.tc-address-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.tc-address-row:last-child {
  margin-bottom: 0;
}

.tc-address-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tc-address-row-icon i {
  color: var(--primary-color);
  font-size: 15px;
}

.tc-address-row-label {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.tc-address-row-value {
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
}

.tc-address-row-value a {
  color: var(--primary-color);
  border-bottom: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.tc-address-row-value a:hover {
  gap: 10px;
}

.tc-address-row-text {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Divider ---- */
.tc-divider {
  height: 1px;
  background: var(--secondary-extra-light);
  margin: 38px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .tc-content-card {
    padding: 34px 28px;
  }
}

@media (max-width: 768px) {
  .tc-page-hero {
    padding: 48px 0 38px;
  }

  .tc-page-hero h1 {
    font-size: var(--heading-lg);
  }

  .tc-content-card {
    padding: 24px 16px;
  }

  .tc-wrapper {
    padding: 32px 0 60px;
  }

  .tc-section h2 {
    font-size: var(--heading-sm);
  }

  .tc-intro-banner {
    padding: 22px 20px;
  }
}

@media (max-width: 576px) {
  .tc-page-hero h1 {
    font-size: var(--heading-md);
  }

  .tc-hero-label {
    font-size: 11px;
    letter-spacing: 2px;
    gap: 12px;
  }

  .tc-hero-label::before,
  .tc-hero-label::after {
    width: 15px;
  }
}
