/* BTP Contact Page — base structural styles.
   Colors, fonts, spacing set here are DEFAULT fallbacks only.
   Elementor's Style tab controls override these per-instance. */

.btp-ct-wrapper * {
  box-sizing: border-box;
}

.btp-ct-wrapper {
  width: 100%;
  background: #fdf9f2;
  font-family: 'Poppins', sans-serif;
  padding: 60px;
}

/* ---- Entrance ---- */

.btp-ct-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
}

.btp-ct-animate.btp-ct-in-view {
  opacity: 1;
  transform: translateY(0);
}

.elementor-editor-active .btp-ct-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* ---- Top grid ---- */

.btp-ct-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.btp-ct-grid--single {
  grid-template-columns: 1fr;
}

.btp-ct-card {
  position: relative;
  background: #fdfaf3;
  border: 1px solid #eeddb8;
  border-radius: 18px;
  padding: 40px;
  overflow: hidden;
}

.btp-ct-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 26px;
  color: #3d1a5b;
  text-align: center;
  margin: 0 0 8px;
}

.btp-ct-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

.btp-ct-divider .btp-ct-line {
  flex: 1;
  height: 1px;
  background: #c99b3a;
}

.btp-ct-divider svg {
  width: 12px;
  height: 12px;
  fill: #c99b3a;
  flex-shrink: 0;
}

/* ---- Decorative accent ---- */

.btp-ct-accent {
  height: auto;
  opacity: 0.85;
}

/* ---- Contact info list ---- */

.btp-ct-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
}

.btp-ct-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(201,155,58,0.25);
  transition: transform 0.25s ease;
}

.btp-ct-info-list li:last-child .btp-ct-info-item {
  border-bottom: none;
}

.btp-ct-info-item:hover {
  transform: translateX(4px);
}

.btp-ct-info-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ece3f4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btp-ct-info-item:hover .btp-ct-info-icon {
  transform: scale(1.08);
}

.btp-ct-info-icon i {
  font-size: 20px;
  color: #4a1f6b;
}

.btp-ct-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: #4a1f6b;
  fill: none;
  stroke-width: 1.8;
}

.btp-ct-info-label {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: #3d1a5b;
  margin-bottom: 4px;
}

.btp-ct-info-value {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.btp-ct-info-hours {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}

.btp-ct-note-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f2eef7;
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
}

.btp-ct-note-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fdfaf3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btp-ct-note-icon i {
  font-size: 20px;
  color: #c99b3a;
}

.btp-ct-note-icon svg {
  width: 22px;
  height: 22px;
  stroke: #c99b3a;
  fill: none;
  stroke-width: 1.8;
}

.btp-ct-note-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* ---- Form ---- */

.btp-ct-form-desc {
  font-size: 14.5px;
  color: #333;
  text-align: center;
  margin: 0 0 30px;
  position: relative;
  z-index: 2;
}

.btp-ct-card form {
  position: relative;
  z-index: 2;
}

.btp-ct-label {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  color: #3d1a5b;
  margin-bottom: 8px;
  display: block;
}

.btp-ct-label .btp-ct-req {
  color: #c0392b;
  margin-left: 2px;
}

.btp-ct-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.btp-ct-fields--full {
  grid-template-columns: 1fr;
}

.btp-ct-input, .btp-ct-select, .btp-ct-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e3d3b8;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.btp-ct-input:focus, .btp-ct-select:focus, .btp-ct-textarea:focus {
  outline: none;
  border-color: #c99b3a;
  box-shadow: 0 0 0 3px rgba(201,155,58,0.15);
}

.btp-ct-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Poppins', sans-serif;
}

.btp-ct-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a1f6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}

.btp-ct-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #3d1a5b;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 8px;
}

.btp-ct-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
}

.btp-ct-submit svg {
  width: 18px;
  height: 18px;
}

.btp-ct-secure {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  margin-top: 16px;
}

.btp-ct-secure svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---- Partnerships banner ---- */

.btp-ct-partner {
  position: relative;
  background: #f2eef7;
  border-radius: 18px;
  padding: 40px;
  display: flex;
  align-items: stretch;
  gap: 30px;
  margin-bottom: 24px;
  overflow: hidden;
}

.btp-ct-partner-icon {
  flex: 0 0 auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #e2d3f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
  position: relative;
  z-index: 2;
}

.btp-ct-partner:hover .btp-ct-partner-icon {
  transform: scale(1.06) rotate(-3deg);
}

.btp-ct-partner-icon i {
  font-size: 44px;
  color: #4a1f6b;
}

.btp-ct-partner-icon svg {
  width: 50px;
  height: 50px;
  stroke: #4a1f6b;
  fill: none;
  stroke-width: 1.6;
}

.btp-ct-partner-divider-v {
  width: 1px;
  background: #c99b3a;
  opacity: 0.5;
  position: relative;
  z-index: 2;
}

.btp-ct-partner-main {
  flex: 1;
  position: relative;
  z-index: 2;
}

.btp-ct-partner-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  color: #3d1a5b;
  margin: 0 0 8px;
}

.btp-ct-partner-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100px;
  margin: 0 0 16px;
}

.btp-ct-partner-divider .btp-ct-line {
  flex: 1;
  height: 1px;
  background: #c99b3a;
}

.btp-ct-partner-divider svg {
  width: 12px;
  height: 12px;
  fill: #c99b3a;
  flex-shrink: 0;
}

.btp-ct-partner-main p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.btp-ct-partner-side {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.btp-ct-partner-side p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* ---- CTA footer bar ---- */

.btp-ct-cta {
  position: relative;
  background: linear-gradient(135deg, #3d1a5b 0%, #2e1445 100%);
  border-radius: 18px;
  padding: 44px 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  flex-wrap: wrap;
}

.btp-ct-cta-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
  position: relative;
  z-index: 2;
}

.btp-ct-cta:hover .btp-ct-cta-icon {
  transform: scale(1.08) rotate(-3deg);
}

.btp-ct-cta-icon i {
  font-size: 60px;
}

.btp-ct-cta-icon svg {
  width: 84px;
  height: 84px;
}

.btp-ct-cta-main {
  flex: 1 1 320px;
  position: relative;
  z-index: 2;
}

.btp-ct-cta-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 10px;
}

.btp-ct-cta-divider-v {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.25);
  position: relative;
  z-index: 2;
}

.btp-ct-cta-text {
  flex: 1 1 260px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #eee0f7;
  margin: 0;
  position: relative;
  z-index: 2;
}

.btp-ct-cta-buttons {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.btp-ct-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btp-ct-cta-btn--primary {
  background: #c99b3a;
  color: #fff;
}

.btp-ct-cta-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.3);
}

.btp-ct-cta-btn--outline {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}

.btp-ct-cta-btn--outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

/* ---- Responsive ---- */

@media (max-width: 1000px) {
  .btp-ct-grid {
    grid-template-columns: 1fr;
  }
  .btp-ct-partner {
    flex-direction: column;
  }
  .btp-ct-partner-divider-v {
    width: 100%;
    height: 1px;
  }
  .btp-ct-cta {
    flex-direction: column;
    text-align: center;
  }
  .btp-ct-cta-divider-v {
    width: 100%;
    height: 1px;
  }
  .btp-ct-cta-buttons {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .btp-ct-wrapper {
    padding: 40px 20px;
  }
  .btp-ct-card {
    padding: 28px 22px;
  }
  .btp-ct-fields {
    grid-template-columns: 1fr;
  }
  .btp-ct-cta {
    padding: 32px 26px;
  }
  .btp-ct-accent {
    width: 100px !important;
  }
}
