/**
 * Media Naranja Films - Service Packs & Addons Stylesheet
 * Exclusively loaded on bodas.html and quince-anos.html
 * Enforces pure cinematic Liquid Glass aesthetic without price indicators.
 */

/* ==========================================================================
   PACKS CONTAINER & GRID
   ========================================================================== */
.service-packs-section {
  padding-top: 60px;
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 48px;
}

/* ==========================================================================
   PACK CARD BASE (LIQUID GLASS - UNIFORM ACROSS ALL TIERS)
   ========================================================================== */
.pack-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--glass-bg-base, rgba(16, 16, 22, 0.72));
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
  border-radius: 26px;
  padding: 36px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 32px -6px rgba(0, 0, 0, 0.65);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  overflow: hidden;
}

/* Specular light line on top of each card */
.pack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.24) 50%, transparent 100%);
  pointer-events: none;
}

.pack-card:hover {
  transform: translateY(-6px);
  background: var(--glass-bg-elevated, rgba(24, 24, 32, 0.82));
  border-color: rgba(255, 120, 20, 0.35);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.85),
              0 0 24px rgba(255, 106, 0, 0.10);
}

/* Ensure no badge is displayed */
.pack-badge-featured,
.pack-badge-premiere {
  display: none !important;
}

/* ==========================================================================
   PACK HEADER & DETAILS
   ========================================================================== */
.pack-card-header {
  margin-bottom: 20px;
}

.pack-tier-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand-orange-light, #ff8533);
  margin-bottom: 8px;
  display: block;
}

.pack-title {
  font-family: var(--font-primary);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 8px;
}

.pack-subtitle {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  margin-bottom: 14px;
}

.pack-focus-desc {
  font-size: 0.88rem;
  color: var(--text-secondary, #a1a1aa);
  line-height: 1.55;
  margin-bottom: 20px;
  min-height: 48px;
}

/* ==========================================================================
   SERVICE SPECS PILLS
   ========================================================================== */
.pack-specs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.spec-chip .chip-icon {
  color: var(--color-brand-orange, #ff6a00);
  font-size: 0.85rem;
}

/* ==========================================================================
   DELIVERABLES CHECKLIST
   ========================================================================== */
.pack-deliverables-box {
  margin-bottom: 24px;
}

.pack-deliverables-title {
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.pack-deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pack-deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.90rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.pack-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.15);
  color: #ff8533;
  margin-top: 1px;
}

.pack-check-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
}

.pack-deliverable-item strong {
  color: #ffffff;
}

/* ==========================================================================
   EXCLUSIVE PERKS HIGHLIGHT (GOLD PREMIERE, EXPRESS, ETC.)
   ========================================================================== */
.pack-exclusive-perks {
  display: none;
}

.exclusive-perk-header {
  display: none;
}

.exclusive-perk-item {
  display: none;
}

/* ==========================================================================
   ADDONS POSSIBILITIES TEASER
   ========================================================================== */
.pack-addons-teaser {
  display: none;
}

/* ==========================================================================
   PACK FOOTER ACTIONS (MEETING & WHATSAPP)
   ========================================================================== */
.pack-card-actions {
  display: none;
}

/* ==========================================================================
   EXTRAS & ADDONS SHOWCASE GRID
   ========================================================================== */
.addons-showcase-section {
  margin-top: 90px;
}

.addons-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.addon-card {
  background: rgba(18, 18, 24, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.addon-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.4);
  background: rgba(24, 24, 32, 0.78);
}

.addon-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 106, 0, 0.12);
  color: #ff7820;
}

.addon-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.addon-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.addon-desc {
  font-size: 0.88rem;
  color: var(--text-secondary, #a1a1aa);
  line-height: 1.55;
}

/* ==========================================================================
   PHYSICAL LUXURY DELIVERABLES (15 AÑOS)
   ========================================================================== */
.physical-goods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.physical-good-card {
  background: rgba(18, 18, 24, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.physical-good-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 140, 40, 0.4);
}

.physical-good-badge {
  align-self: flex-start;
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #ffd966;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.physical-good-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.physical-good-desc {
  font-size: 0.88rem;
  color: var(--text-secondary, #a1a1aa);
  line-height: 1.5;
}

/* ==========================================================================
   PLANNING POLICY CALLOUT (15 AÑOS)
   ========================================================================== */
.planning-policy-box {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.08) 0%, rgba(18, 18, 24, 0.7) 100%);
  border: 1px solid rgba(255, 106, 0, 0.28);
  border-radius: 24px;
  padding: 36px 32px;
  margin-top: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 28px;
  backdrop-filter: blur(16px);
}

.planning-policy-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 106, 0, 0.15);
  color: #ff8533;
}

.planning-policy-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
}

.planning-policy-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.planning-policy-content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
  .addons-cards-grid,
  .physical-goods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .pack-card.is-featured {
    transform: none;
  }
  .pack-card.is-featured:hover {
    transform: translateY(-8px);
  }
  .planning-policy-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .addons-cards-grid,
  .physical-goods-grid {
    grid-template-columns: 1fr;
  }
  .pack-card {
    padding: 30px 22px;
  }
}
