/* ============================================================
   holiday.css — Christmas / Holiday Loans page
   Brand palette only: --primary #1E1E2F | --accent #FF7A18 | --secondary #F4B400
   No green, no blue shades.
   All pl-* classes live here; style.css untouched.
   ============================================================ */

/* ---- Container ---- */
.pl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section base ---- */
.pl-section {
  padding: 80px 0;
}

/* ---- Tags / eyebrow chips ---- */
.pl-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.pl-tag--dark {
  background: rgba(255, 122, 24, 0.12);
  color: var(--accent);
  border: 1px solid rgba(255, 122, 24, 0.3);
}

/* ================================================================
   HERO — Christmas theme overrides on top of about-hero shared CSS
   ================================================================ */
.xmas-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 122, 24, 0.15);
  border: 1px solid rgba(255, 122, 24, 0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.xmas-hero-badge i {
  font-size: 14px;
}

.about-hero__title .xmas-highlight {
  color: var(--accent);
}

.xmas-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.xmas-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.xmas-chip i {
  color: var(--accent);
  font-size: 13px;
}

/* ================================================================
   INTRO SECTION — text + youtube video
   ================================================================ */
.pl-intro {
  background: #fff;
}

.pl-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pl-intro__content h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.pl-intro__content h2 span {
  color: var(--accent);
}

.pl-lead {
  font-size: 16px;
  color: var(--text-muted, #555);
  line-height: 1.8;
  margin-bottom: 28px;
}

.pl-intro__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pl-intro__video {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 30, 47, 0.14);
  border: 2px solid rgba(255, 122, 24, 0.25);
  aspect-ratio: 16 / 9;
}

.pl-intro__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================================================
   "SMART WAYS" SECTION — dark primary background, icon cards
   ================================================================ */
.why-choose {
  background: var(--primary) !important;
  position: relative;
}

.why-choose::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 50%, rgba(255, 122, 24, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 95% 50%, rgba(244, 180, 0, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Section header on dark bg */
.why-choose .section__tag {
  background: rgba(255, 122, 24, 0.15) !important;
  color: var(--accent) !important;
  border: 1px solid rgba(255, 122, 24, 0.3);
}

.why-choose .section__title {
  color: #fff !important;
}

.why-choose .section__title span {
  color: var(--accent) !important;
}

.why-choose .section__header p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.why-choose .section__header a {
  color: var(--accent);
}

/* Grid */
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding: 6px 4px 12px;
	border:none;
}

/* Cards */
.why-choose__stat-card {
  background: #252539;
  border: 1px solid #393959;
  border-top: 3px solid #393959;
  border-radius: 20px;
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  cursor: default;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: background 0.25s ease, border-color 0.25s ease,
              border-top-color 0.25s ease, transform 0.25s ease,
              box-shadow 0.25s ease;
}

.why-choose__stat-card:hover {
  background: #2c2445;
  border-color: var(--accent);
  border-top-color: var(--accent);
}

.why-choose__card-icon {
  width: 72px;
  height: 72px;
  background: #1E1E2F;
  border: 2px solid rgba(255, 122, 24, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--accent);
  transition: background 0.25s ease, color 0.25s ease,
              border-color 0.25s ease,
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-choose__stat-card:hover .why-choose__card-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #1E1E2F;
  transform: scale(1.15) rotate(-6deg);
}

.why-choose__stat-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.why-choose__stat-card:hover h3 {
  color: var(--accent);
}

.why-choose__stat-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.72;
  margin: 0;
  transition: color 0.25s ease;
}

.why-choose__stat-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

/* CTA in why-choose context */
.why-choose .section__cta {
  margin-top: 48px;
}

/* ================================================================
   CREDIT SECTION — image left, text right
   ================================================================ */
.pl-credit {
  background: #fff;
}

.pl-credit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pl-credit__img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 24px 64px rgba(30, 30, 47, 0.14);
}

.pl-credit__img img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 340px;
}

.pl-credit__img-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent);
  color: #1E1E2F;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pl-credit__content h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.pl-credit__content h2 span {
  color: var(--accent);
}

.pl-credit__content p {
  font-size: 16px;
  color: var(--text-muted, #555);
  line-height: 1.8;
  margin-bottom: 20px;
}

.pl-credit__content a {
  color: var(--accent);
  font-weight: 600;
}

/* ================================================================
   ELIGIBILITY SECTION — 6 numbered cards
   ================================================================ */
.pl-eligibility {
  background: var(--bg-alt, #F5F7FA);
}

.pl-section-head {
  text-align: center;
  margin: 0 auto 56px;
}

.pl-section-head h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 14px;
  margin-top: 14px;
}

.pl-section-head h2 span {
  color: var(--accent);
}

.pl-section-head p {
  font-size: 16px;
  color: var(--text-muted, #555);
  line-height: 1.75;
}

.ar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.ar-tag--light {
  background: rgba(255, 122, 24, 0.12);
  color: var(--accent);
  border: 1px solid rgba(255, 122, 24, 0.3);
}

.pl-eligibility__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pl-elig-card {
  background: #fff;
  border: 1px solid var(--border, #E2E8F0);
  border-radius: 18px;
  padding: 32px 24px 28px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.pl-elig-card:hover {
  border-color: rgba(255, 122, 24, 0.4);
  box-shadow: 0 12px 40px rgba(255, 122, 24, 0.10);
  transform: translateY(-4px);
}

.pl-elig-card__num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 122, 24, 0.10);
  line-height: 1;
  margin-bottom: 14px;
  font-family: inherit;
  letter-spacing: -2px;
}

.pl-elig-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 122, 24, 0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 16px;
}

.pl-elig-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.pl-elig-card p {
  font-size: 14px;
  color: var(--text-muted, #555);
  line-height: 1.65;
  margin: 0;
}

.pl-elig-card__check {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  background: rgba(255, 122, 24, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent);
}

.pl-eligibility__cta {
  text-align: center;
  margin-top: 52px;
  padding: 44px 40px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border, #E2E8F0);
}

.pl-eligibility__cta p {
  max-width: 1100px;
  margin: 0 auto 28px;
  font-size: 15px;
  color: var(--text-muted, #555);
  line-height: 1.75;
}

.pl-eligibility__cta p a {
  color: var(--accent);
  font-weight: 600;
}

.pl-no-impact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted, #777);
}

.pl-no-impact i {
  color: var(--accent);
}

/* ================================================================
   COST / RATES TABLE SECTION — dark background
   ================================================================ */
.pl-cost {
  padding: 80px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.pl-cost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 80%, rgba(255, 122, 24, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.pl-cost__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.pl-cost__sidebar .pl-tag {
  background: rgba(255, 122, 24, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 122, 24, 0.3);
}

.pl-cost__sidebar h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
  margin-top: 0;
}

.pl-cost__sidebar h2 span {
  color: var(--accent);
}

.pl-cost__sidebar p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  margin: 0;
}

.pl-cost__table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pl-cost__table th {
  background: var(--accent);
  color: #1E1E2F;
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pl-cost__table td {
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.pl-cost__table tr:last-child td {
  background: rgba(255, 122, 24, 0.06);
}

.pl-cost__table tr:hover td {
  background: rgba(255, 122, 24, 0.09);
}

.pl-cost__table p {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.pl-faq {
  background: #fff;
  padding: 80px 0;
}

.pl-faq__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.pl-faq__sidebar h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 14px;
  margin-top: 14px;
}

.pl-faq__sidebar h2 span {
  color: var(--accent);
}

.pl-faq__sidebar p {
  font-size: 15px;
  color: var(--text-muted, #555);
  line-height: 1.75;
  margin-bottom: 24px;
}

.pl-faq__img {
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 24px;
  box-shadow: 0 12px 36px rgba(30, 30, 47, 0.10);
}

.pl-faq__img img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 180px;
}

.pl-faq__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 122, 24, 0.07);
  border-radius: 14px;
  text-decoration: none;
  color: var(--primary);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pl-faq__contact:hover {
  background: rgba(255, 122, 24, 0.13);
  border-color: var(--accent);
}

.pl-faq__contact > i:first-child {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.pl-faq__contact > i:last-child {
  margin-left: auto;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.pl-faq__contact strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.pl-faq__contact span {
  font-size: 12px;
  color: var(--text-muted, #777);
}

/* Accordion items */
.pl-faq-item {
  border: 1px solid var(--border, #E2E8F0);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pl-faq-item:hover {
  border-color: rgba(255, 122, 24, 0.35);
  box-shadow: 0 4px 16px rgba(255, 122, 24, 0.07);
}

.pl-faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  font-family: inherit;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.pl-faq-item__q[aria-expanded="true"] {
  color: var(--accent);
}

.pl-faq-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--accent);
  transition: background 0.25s ease, transform 0.3s ease;
}

.pl-faq-item__q[aria-expanded="true"] .pl-faq-item__icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}

.pl-faq-item__a {
  padding: 0 24px 20px;
}

.pl-faq-item__a p {
  font-size: 15px;
  color: var(--text-muted, #555);
  line-height: 1.75;
  margin: 0;
}

/* ================================================================
   TESTIMONIALS — override var(--success) green star color
   ================================================================ */
.testi-summary__num,
.testi-summary__stars {
  color: var(--accent) !important;
}

/* ================================================================
   REVEAL ANIMATIONS (pl-* specific)
   ================================================================ */
.pl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.pl-reveal.pl-revealed {
  opacity: 1;
  transform: none;
}

.pl-reveal--right {
  transform: translateX(28px);
}

.pl-reveal--right.pl-revealed {
  transform: none;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-faq__grid {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .pl-cost__grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .pl-intro__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pl-credit__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pl-eligibility__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-cost__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pl-faq__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pl-faq__img {
    display: none;
  }
}

@media (max-width: 640px) {
  .pl-section {
    padding: 56px 0;
  }

  .pl-cost {
    padding: 56px 0;
  }

  .pl-faq {
    padding: 56px 0;
  }

  .why-choose__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .pl-eligibility__grid {
    grid-template-columns: 1fr;
  }

  .pl-eligibility__cta {
    padding: 28px 20px;
  }

  .xmas-hero-chips {
    gap: 8px;
  }

  .pl-cost__table {
    overflow-x: auto;
  }

  .pl-cost__table table {
    min-width: 480px;
  }
}

@media (max-width: 420px) {
  .why-choose__grid {
    grid-template-columns: 1fr;
  }
}
