/* ========== Terms & Conditions Page ========== */

.text-gold {
  color: var(--gold-light) !important;
}

.border,
.border-bottom,
.border-light-subtle {
  border-color: var(--border) !important;
}

/* --- Terms Hero --- */
.terms-hero {
  position: relative;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(215, 179, 65, 0.10), transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  overflow: hidden;
  min-height: 260px;
}

.terms-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.terms-hero-inner {
  display: flex;
  align-items: center;
  min-height: 260px;
  position: relative;
}

.terms-hero-text {
  max-width: 520px;
  padding: 48px 0;
  position: relative;
  z-index: 3;
}

.terms-hero-title {
  font-size: 2.6rem;
  line-height: 1.15;
}

.terms-hero-desc {
  font-size: 15px;
  line-height: 1.65;
  max-width: 440px;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 3.2px;
  font-weight: 800;
}

/* Hero image — flush right, partially cropping */
.terms-hero-image {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 320px;
  z-index: 2;
}

.terms-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(-10px 8px 30px rgba(0, 0, 0, 0.6));
}

/* Gold dust sparkle line at bottom */
.terms-hero-dust {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(215, 179, 65, 0.05) 10%,
      rgba(215, 179, 65, 0.35) 30%,
      rgba(215, 179, 65, 0.5) 50%,
      rgba(215, 179, 65, 0.35) 70%,
      rgba(215, 179, 65, 0.05) 90%,
      transparent 100%);
  z-index: 4;
}

.terms-hero-dust::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 30px;
  background: radial-gradient(ellipse at 50% 100%, rgba(215, 179, 65, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

/******************* CALL TO ACTION *******************/
.pricing-action-solid {
  border-radius: 999px;
  color: #111;
  box-shadow: 0 8px 25px rgba(215, 179, 65, 0.2);
  text-transform: uppercase;
  text-align: center;
}

/********* Text Left - Background Image Right *********/
.delivery-cta-box {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1.5px solid rgba(215, 179, 65, 0.15) !important;
  border-radius: 20px !important;
  padding: 50px 60px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 24px;
}

.delivery-cta-box h2 {
  letter-spacing: normal;
}

.delivery-cta-logo {
  width: 200px;
  height: auto;
  opacity: 0.8;
}

/* Responsive hero */
@media (max-width: 991px) {
  .terms-hero-image {
    position: absolute;
    right: -40px;
    width: 280px;
    height: 240px;
    opacity: 0.35;
  }
}

@media (max-width: 575px) {
  .terms-hero-inner {
    min-height: 220px;
  }

  .terms-hero-text {
    padding: 32px 0;
  }

  .terms-hero-title {
    font-size: 1.8rem;
  }

  .terms-hero-image {
    right: -30px;
    width: 200px;
    height: 180px;
    opacity: 0.25;
  }
}

/* --- Main Content Section --- */
.terms-content-section {
  background: var(--black);
}

/* Sticky Sidebar Index */
.terms-sidebar-wrapper {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 10px;
}

/* Scrollbar styling for the sidebar list */
.terms-sidebar-wrapper::-webkit-scrollbar {
  width: 4px;
}

.terms-sidebar-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 2px;
}

.terms-sidebar-wrapper::-webkit-scrollbar-thumb {
  background: rgba(215, 179, 65, 0.2);
  border-radius: 2px;
}

.terms-sidebar {
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.terms-sidebar .nav-link {
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  margin-bottom: 4px;
}

.terms-sidebar .nav-link:last-child {
  margin-bottom: 0;
}

.terms-sidebar .nav-link svg {
  color: var(--gray);
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.terms-sidebar .nav-link:hover {
  color: var(--gold-light);
  background: rgba(215, 179, 65, 0.04);
}

.terms-sidebar .nav-link:hover svg {
  color: var(--gold-light);
}

/* Scrollspy Active State */
.terms-sidebar .nav-link.active {
  color: var(--gold-light) !important;
  background: rgba(215, 179, 65, 0.08) !important;
  border: 1px solid var(--gold-light) !important;
  font-weight: 700;
}

.terms-sidebar .nav-link.active svg {
  color: var(--gold-light) !important;
}

/* Right Content Column */
.terms-body-wrapper {
  padding-left: 20px;
}

.terms-block {
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
  margin-bottom: 40px;
  scroll-margin-top: 100px;
}

.terms-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.terms-num {
  color: var(--gold-light);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}

.terms-heading {
  margin-bottom: 15px;
}

.terms-block p {
  margin-bottom: 12px;
}

.terms-block p:last-of-type {
  margin-bottom: 0;
}

.terms-block ul {
  padding-left: 0;
  margin-bottom: 20px;
  list-style-type: none;
}

.terms-block li {
  color: #c8c8c8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.terms-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.8;
}

.terms-block li:last-child {
  margin-bottom: 0;
}

/* --- Expand / Collapse Toggle --- */

.terms-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.terms-expand-btn:hover {
  background: rgba(215, 179, 65, 0.08);
  box-shadow: 0 4px 20px rgba(215, 179, 65, 0.15);
}

/* --- Commitment Section --- */
.terms-commitment {
  background: var(--black);
}

.commitment-wrapper {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px 36px;
  background: rgba(255, 255, 255, 0.015);
}

.commitment-title {
  color: var(--gold-light);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.commitment-subtitle {
  color: #b0b0b0;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}



.commitment-col {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.commitment-col:last-child {
  border-right: none;
}

.commitment-icon-wrap {
  color: var(--gold-light);
  margin-bottom: 14px;
}

.commitment-icon-wrap svg {
  opacity: 0.85;
  width: 52px;
  height: 52px;
}

.commitment-label {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.commitment-desc {
  color: #999;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- CTA Section --- */
.terms-cta-section {
  background: var(--black);
}

.terms-cta-card {
  background:
    radial-gradient(circle at 10% 20%, rgba(215, 179, 65, 0.08), transparent 45%),
    var(--black-soft);
  border: 1px solid rgba(215, 179, 65, 0.22);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.terms-cta-text {
  width: 50%;
}

.terms-cta-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 65%;
  z-index: 0;
}

.terms-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to right, var(--black-soft) 0%, transparent 40%);
}

/* Card Container */
.cta-standout-card {
  background-color: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
}

.standout-header {
  color: var(--gold-light);
}

/* Icon box */
.cta-standout-icon {
  flex-shrink: 0;
}

/* Description Text */
.cta-description {
  color: #b0b0b0 !important;
  font-size: 0.95rem;
}

/* Gold Gradient Button */
.cta-gold-gradient-btn {
  display: inline-block;
  background: linear-gradient(180deg, #f3c155 0%, #c8962e 100%);
  color: #000 !important;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: none;
}

.cta-gold-gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(243, 193, 85, 0.4);
}

/* Main Container */
.help-center-wrapper {
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, #0a0a0a 0%, #111 100%);
}

.help-main-icon-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid #f3c155;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(243, 193, 85, 0.15);
  position: relative;
}

.help-boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.help-box-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.help-box-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(243, 193, 85, 0.3);
  transform: translateY(-5px);
}

.help-box-icon {
  margin-bottom: 15px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-box-link {
  color: #f3c155 !important;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-gold-gradient-btn {
  display: inline-block;
  background: linear-gradient(180deg, #f3c155 0%, #c8962e 100%);
  color: #000 !important;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none !important;
}

/* vertical infor card call to action */
.vic-card-container {
  display: flex;
  justify-content: center;
}

.vic-card {
  background-color: #0b0b0b;
  border: 2px solid var(--card-border);
  border-radius: 20px;
  width: 100%;
  max-width: 360px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Glowing Top Icon */
.vic-icon-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  background: radial-gradient(circle, rgba(245, 171, 35, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.vic-svg-headset {
  width: 34px;
  height: 34px;
  color: var(--gold-light);
}

.vic-custom-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.vic-title {
  margin: 0 0 10px 0;
}

.vic-description {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 260px;
}

.vic-description p {
  margin: 0;
}

.vic-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  width: 100%;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vic-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e0e0e0;
  text-align: left;
}

.vic-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f3c155;
}

.vic-check-icon svg {
  width: 18px;
  height: 18px;
  color: #f5ab23;
  flex-shrink: 0;
  display: block;
}

.vic-btn-wrapper {
  width: 100%;
}

.vic-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(180deg, #ffd369 0%, #e99d1a 100%);
  color: #1a1200 !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(233, 157, 26, 0.2);
}

.vic-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.vic-btn-icon {
  width: 18px;
  height: 18px;
}

.vic-footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vic-footer-time {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
}

@media (max-width: 1200px) {
  .help-boxes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .terms-cta-text {
    width: 100%;
  }

  .terms-cta-image {
    position: relative;
    width: 100%;
    height: 200px;
  }

  .cta-fade-overlay {
    background: linear-gradient(to bottom, var(--black-soft) 0%, transparent 40%);
  }

  .cta-standout-card {
    flex-direction: column;
    text-align: left;
    gap: 20px;
    padding: 30px !important;
  }

  .cta-standout-icon img {
    width: 50px;
  }

  .help-boxes-grid {
    grid-template-columns: 1fr;
  }

  .help-main-icon-circle {
    width: 100px;
    height: 100px;
  }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  font-size: 16px;
  font-weight: 800;
  border-radius: 8px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(215, 179, 65, 0.35);
  color: #111;
}

/* ========== Responsive Styles ========== */
@media (max-width: 991px) {
  .terms-sidebar-wrapper {
    position: static;
    max-height: none;
    overflow-y: visible;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .terms-body-wrapper {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .terms-sidebar {
    padding: 10px;
  }

  .terms-sidebar .nav {
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 8px;
  }

  .terms-sidebar .nav-item {
    flex: 0 0 auto;
  }

  .terms-sidebar .nav-link {
    margin-bottom: 0;
    white-space: nowrap;
  }

  /* Style scrollbar for horizontal mobile index */
  .terms-sidebar .nav::-webkit-scrollbar {
    height: 4px;
  }

  .terms-sidebar .nav::-webkit-scrollbar-thumb {
    background: rgba(215, 179, 65, 0.3);
    border-radius: 2px;
  }
}