/* ── Buttons ──────────────────────────────────────────── */

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--tp-radius-full);
  font-family: var(--tp-font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--tp-transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.tp-btn-gold {
  background: var(--tp-gradient-gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.25);
}
.tp-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
  color: #fff;
}

.tp-btn-outline {
  background: transparent;
  color: var(--tp-text-primary);
  border-color: var(--tp-border-hover);
}
.tp-btn-outline:hover {
  border-color: var(--tp-gold);
  color: var(--tp-gold);
  background: rgba(201, 168, 76, 0.04);
}

.tp-btn-sm { padding: 8px 20px; font-size: 14px; }

.tp-btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.tp-btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  color: #fff;
}

/* ── Cards ────────────────────────────────────────────── */

.tp-card {
  background: var(--tp-bg-card);
  border-radius: var(--tp-radius);
  border: 1px solid var(--tp-border);
  padding: 28px;
  transition: all var(--tp-transition);
  box-shadow: var(--tp-shadow-card);
}
.tp-card:hover {
  border-color: var(--tp-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--tp-shadow-lg);
}

/* ── Tags ─────────────────────────────────────────────── */

.tp-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--tp-radius-full);
  font-size: 13px;
  font-weight: 700;
  background: rgba(201, 168, 76, 0.08);
  color: var(--tp-gold-dark);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

/* ── Section Headers ──────────────────────────────────── */

.tp-label {
  font-family: var(--tp-font-english);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tp-gold);
}

.tp-heading-xl {
  font-family: var(--tp-font-body);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--tp-text-primary);
  line-height: 1.15;
}

.tp-heading-lg {
  font-family: var(--tp-font-body);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--tp-text-primary);
  line-height: 1.2;
}

.tp-gold-text { color: var(--tp-gold); }

.tp-section-subtitle {
  font-size: 18px;
  color: var(--tp-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.tp-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.tp-section-header .tp-label { display: block; margin-bottom: 12px; }
.tp-section-header .tp-heading-xl,
.tp-section-header .tp-heading-lg { margin-bottom: 16px; }

/* ── Scroll Reveal ────────────────────────────────────── */

.tp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.tp-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Quote ────────────────────────────────────────────── */

.tp-quote {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
  color: var(--tp-text-primary);
}

/* ── Video Modal ──────────────────────────────────────── */

.tp-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.tp-video-modal.active { display: flex; }

.tp-video-modal-body {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: var(--tp-radius);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.4);
}
.tp-video-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.tp-video-modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10000;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.tp-video-modal-close:hover { opacity: 1; }

/* ── Play Button ──────────────────────────────────────── */

.tp-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tp-transition);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.tp-play-btn:hover {
  transform: scale(1.1);
  background: var(--tp-gold);
}
.tp-play-btn svg { fill: var(--tp-text-primary); margin-left: 2px; }
.tp-play-btn:hover svg { fill: #fff; }

/* ── Accessibility Widget ─────────────────────────────── */

.tp-a11y-toggle {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tp-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
  transition: all 0.3s;
}
.tp-a11y-toggle:hover { transform: translateY(-50%) scale(1.1); }

/* ── WhatsApp Float ───────────────────────────────────── */

.tp-whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
}
.tp-whatsapp-float:hover { transform: scale(1.1); }

@media (max-width: 768px) {
  .tp-a11y-toggle { left: 16px; width: 40px; height: 40px; }
  .tp-whatsapp-float { bottom: 16px; left: 16px; width: 48px; height: 48px; }
}
