/* TERMS AREA */
.xp-terms-area {
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* HEADER */
.xp-terms-header .xp-terms-pretitle {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
}

.xp-terms-title {
  font-size: 42px;
  margin: 15px 0;
}

.xp-terms-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: #666;
}

/* TIMELINE */
.xp-terms-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
}

/* CARD */
.xp-terms-card {
  position: relative;
  padding: 35px 40px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  animation: fadeUp 0.8s ease both;
}

.xp-terms-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 35px 80px rgba(0,0,0,0.08);
}

/* INDEX */
.xp-terms-index {
  position: absolute;
  top: -18px;
  right: 30px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
}

/* TEXT */
.xp-terms-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.xp-terms-card p {
  color: #555;
  line-height: 1.7;
}



/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* contact */
/* ===============================
   Contact Form Select Styling
   =============================== */

.tp-contact-input select {
  width: 100%;
  height: 60px;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Placeholder option color */
.tp-contact-input select:invalid {
  color: #999;
}

/* Hover & focus */
.tp-contact-input select:hover,
.tp-contact-input select:focus {
  border-color: #f94d1c;
  box-shadow: 0 0 0 3px rgba(249, 77, 28, 0.12);
}

/* Dropdown arrow */
.tp-contact-input {
  position: relative;
}

.tp-contact-input::after {
  content: "▾";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #555;
  pointer-events: none;
}

/* Options styling (limited but cleaner) */
.tp-contact-input select option {
  font-size: 15px;
  padding: 10px;
}

/* Dark mode safety (optional) */
@media (prefers-color-scheme: dark) {
  .tp-contact-input select {
    background-color: #fff;
    color: #111;
  }
}

.tp-btn{
      padding: 18px 25px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .xp-terms-title {
    font-size: 32px;
  }

  .xp-terms-card {
    padding: 30px;
  }

  .xp-terms-index {
    font-size: 46px;
  }
}
@media (max-width: 1024px) {
    .tp-faq-bdc-thumb img{
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .tp-faq-bdc-thumb img{
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 426px) {
    .tp-faq-bdc-title, .xp-terms-title{
        font-size: 25px;
    }

    .tp-cta-form{
        display: flex;
        flex-direction: column;
    }
}

