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

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

.btp-welcome-wrapper {
  position: relative;
  width: 100%;
  background: #fdf9f2;
  font-family: 'Poppins', sans-serif;
  padding: 70px 60px 90px;
  overflow: hidden;
}

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

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

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

/* Elementor editor preview: always show content so it isn't hidden while editing */
.elementor-editor-active .btp-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- TOP: Welcome row ---------- */

.btp-welcome-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-top: 130px;
}

.btp-lavender-topleft {
  position: absolute;
  top: -60px;
  left: -50px;
  width: 340px;
  height: auto;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

.btp-welcome-heading-block {
  position: relative;
  z-index: 2;
  min-width: 320px;
}

.btp-welcome-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 46px;
  color: #3d1a5b;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.btp-welcome-subtitle {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 22px;
  color: #4a1f6b;
  margin-top: 10px;
}

.btp-welcome-text-block {
  max-width: 480px;
  padding-top: 10px;
}

.btp-welcome-text-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0;
  padding: 0;
}

.btp-welcome-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 16px;
  color: #3d1a5b;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.btp-welcome-link:hover {
  gap: 12px;
  color: #c1832f;
}

.btp-welcome-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: transform 0.25s ease;
}

/* ---------- BOTTOM: Image + Services ---------- */

.btp-bottom-row {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 50px;
  flex-wrap: wrap;
}

.btp-group-photo {
  flex: 1 1 460px;
  max-width: 560px;
  border-radius: 20px;
  overflow: hidden;
}

.btp-group-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
  transition: transform 0.6s ease;
}

.btp-group-photo:hover img {
  transform: scale(1.06);
}

.btp-services-col {
  flex: 1 1 500px;
  position: relative;
  padding-top: 10px;
}

.btp-services-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 14px;
}

.btp-services-label span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #c99b3a;
}

.btp-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 130px;
  margin: 0 auto;
}

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

.btp-divider i,
.btp-divider svg {
  width: 14px;
  height: 14px;
  font-size: 14px;
  color: #c99b3a;
  fill: #c99b3a;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.btp-services-label:hover .btp-divider i,
.btp-services-label:hover .btp-divider svg {
  transform: scale(1.3) rotate(-6deg);
}

.btp-services-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 34px;
  text-align: center;
  color: #3d1a5b;
  line-height: 1.25;
  margin: 0 0 40px;
}

.btp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.btp-service-item {
  text-align: center;
  padding: 0 14px;
  border-left: 1px solid #e3d9c8;
  transition: transform 0.25s ease;
  display: block;
  text-decoration: none;
}

.btp-service-item:hover {
  transform: translateY(-4px);
}

.btp-service-item:first-child {
  border-left: none;
}

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

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

.btp-service-icon i {
  font-size: 34px;
  color: #4a1f6b;
}

.btp-service-icon svg {
  width: 34px;
  height: 34px;
  stroke: #4a1f6b;
  fill: none;
  stroke-width: 1.6;
}

.btp-service-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 17px;
  color: #3d1a5b;
  line-height: 1.3;
  margin: 0 0 10px;
}

.btp-service-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}

.btp-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-weight: 600;
  font-size: 15px;
  color: #3d1a5b;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.btp-view-all:hover {
  gap: 12px;
  color: #c1832f;
}

.btp-view-all svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.btp-lavender-bottomright {
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 320px;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

/* Staggered entrance delays for service items */
.btp-services-grid .btp-service-item:nth-child(1) { transition-delay: 0s; }
.btp-services-grid .btp-service-item:nth-child(2) { transition-delay: 0.1s; }
.btp-services-grid .btp-service-item:nth-child(3) { transition-delay: 0.2s; }
.btp-services-grid .btp-service-item:nth-child(4) { transition-delay: 0.3s; }
.btp-services-grid .btp-service-item:nth-child(5) { transition-delay: 0.4s; }
.btp-services-grid .btp-service-item:nth-child(6) { transition-delay: 0.5s; }

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

@media (max-width: 1024px) {
  .btp-welcome-heading-block {
    padding-left: 0;
  }
  .btp-lavender-topleft {
    display: none;
  }
  .btp-services-grid {
    row-gap: 30px;
  }
}

@media (max-width: 640px) {
  .btp-welcome-wrapper {
    padding: 50px 24px 60px;
  }
  .btp-welcome-top {
    padding-top: 60px;
  }
  .btp-welcome-title {
    font-size: 34px;
  }
  .btp-welcome-subtitle {
    white-space: normal;
  }
  .btp-service-item {
    border-left: none !important;
    border-top: 1px solid #e3d9c8;
    padding-top: 24px;
  }
  .btp-service-item:first-child {
    border-top: none;
    padding-top: 0;
  }
  .btp-lavender-bottomright {
    display: none;
  }
}
