/* Freedom Pass landing page (freedom.vacationbranson.com).
   Loaded only on home-freedom.blade.php via @push('styles').
   Selectors are namespaced under .freedom-* / .freedom-page so
   nothing leaks into the apex or other CMS-driven pages. */

:root {
    --freedom-navy:        #1c398e;
    --freedom-navy-dark:   #1e2f7a;
    --freedom-blue:        #1d4ed8;
    --freedom-red:         #dc2626;
    --freedom-yellow:      #fbbf24;
    --freedom-yellow-deep: #f59e0b;
    --freedom-ink:         #1f2937;
    --freedom-ink-soft:    #4b5563;
    --freedom-bg-soft:     #f3f4f6;
    --freedom-border:      #e5e7eb;

    /* Patriotic blue→wine palette used by .freedom-hero */
    --freedom-navy1:       #354b96;
    --freedom-purple:      #564e86;
    --freedom-purple2:     #6f4f77;
    --freedom-lred:        #8c4a64;
    --freedom-lred2:       #9f4354;
    --freedom-red1:        #c42027;
    --freedom-red-soft:    #9d4557;
    --freedom-bpurple:     #6e4e78;
}

.freedom-page {
    font-family: 'Poppins', sans-serif;
    color: var(--freedom-ink);
    line-height: 1.5;
}
.freedom-page h1,
.freedom-page h2,
.freedom-page h3,
.freedom-page h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}
.freedom-page section { padding: 56px 16px; }
.freedom-page section > [class$="__inner"] { max-width: 1100px; margin: 0 auto; }

/* ---------- 1. HERO -------------------------------------------------- */
.freedom-hero {
    position: relative;
    padding: 96px 16px 80px;
    text-align: center;
    color: #fff;
    background:
        /* Warm red glow anchored at the top-right corner,
           fading diagonally toward the bottom-left. */
        radial-gradient(ellipse farthest-corner at top right,
            rgba(220, 38, 38, .9)   0%,
            rgba(196, 32, 39, .55) 35%,
            rgba(156, 69, 87, .25) 65%,
            transparent            90%),
        /* Blue → wine base sweep */
        linear-gradient(100deg,
            var(--freedom-navy1)     0%,
            var(--freedom-purple)   30%,
            var(--freedom-purple2)  55%,
            var(--freedom-lred)     80%,
            var(--freedom-bpurple) 100%);
    overflow: hidden;
}
/* Subtle starburst overlay so the gradient doesn't read as a flat blend. */
.freedom-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: .6;
    pointer-events: none;
}
.freedom-hero__inner { position: relative; max-width: 900px; margin: 0 auto; }

.freedom-hero__pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--freedom-red);
    color: #fff;
    font-weight: 600; font-size: 14px; letter-spacing: .5px;
    padding: 8px 20px; border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    animation: freedom-pill-pulse 2.4s ease-in-out infinite;
    will-change: opacity, transform;
}
.freedom-hero__pill i { font-size: 13px; }

@keyframes freedom-pill-pulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%      { opacity: .6;  transform: scale(.97); }
}

@media (prefers-reduced-motion: reduce) {
    .freedom-hero__pill { animation: none; }
}

.freedom-hero__title {
    margin: 24px 0 16px;
    font-size: clamp(36px, 6vw, 64px);
    text-transform: none;
}
.freedom-hero__title span { display: block; }
.freedom-hero__title-white  { color: #fff; }
.freedom-hero__title-yellow { color: var(--freedom-yellow); }

.freedom-hero__subtitle {
    max-width: 640px; margin: 0 auto 36px;
    font-size: 18px;
    color: rgba(255,255,255,.92);
}

.freedom-hero__price-row {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}

.freedom-hero__price {
    display: flex; flex-direction: column; align-items: flex-start;
    text-align: left;
}
.freedom-hero__price-amount {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 7vw, 72px);
    color: var(--freedom-yellow);
    line-height: 1;
}
.freedom-hero__price-old {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    text-decoration: line-through;
    margin-top: 4px;
}
.freedom-hero__price-arrow {
    color: var(--freedom-yellow);
    font-size: 32px;
    font-weight: 700;
}

.freedom-hero__cta {
    display: inline-block;
    background: var(--freedom-yellow);
    color: var(--freedom-navy-dark);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .5px;
    padding: 16px 28px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.freedom-hero__cta:hover {
    background: var(--freedom-yellow-deep);
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(0,0,0,.3);
    color: var(--freedom-navy-dark);
    text-decoration: none;
}

.freedom-hero__bullets {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 24px;
    list-style: none; padding: 0; margin: 0;
    color: #fff; font-size: 15px;
}
.freedom-hero__bullets i { color: var(--freedom-yellow); margin-right: 6px; }

/* ---------- 2. FLYER ------------------------------------------------- */
.freedom-flyer {
    padding: 32px 16px;
    background: #fff;
}
.freedom-flyer__inner { max-width: 900px; margin: 0 auto; }
.freedom-flyer__img {
    display: block; width: 100%; height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

/* ---------- 3. TRUST BAR --------------------------------------------- */
.freedom-trust {
    padding: 36px 16px;
    background: #fff;
    border-top: 4px solid var(--freedom-navy);
    border-bottom: 4px solid var(--freedom-navy);
}
.freedom-trust__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}
.freedom-trust__item {
    display: flex; flex-direction: column; align-items: center;
    gap: 6px;
}
.freedom-trust__item strong { font-size: 16px; color: var(--freedom-ink); }
.freedom-trust__item span   { font-size: 13px; color: var(--freedom-ink-soft); }
.freedom-trust__icon {
    font-size: 28px; color: var(--freedom-navy);
    margin-bottom: 4px;
}
@media (max-width: 768px) {
    .freedom-trust__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 4. FEATURES ---------------------------------------------- */
.freedom-features {
    background: var(--freedom-bg-soft);
    padding: 72px 16px;
    text-align: center;
}
.freedom-features__title {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--freedom-navy);
    margin-bottom: 8px;
}
.freedom-features__subtitle {
    color: var(--freedom-ink-soft);
    margin-bottom: 40px;
}
.freedom-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .freedom-features__grid { grid-template-columns: 1fr; }
}

.freedom-features__card {
    position: relative;
    background: #fff;
    border: 4px solid var(--accent, #162456);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.freedom-features__card--blue {
    --accent:     var(--freedom-navy);
    --accent-alt: var(--freedom-red);
}
.freedom-features__card--red {
    --accent:     var(--freedom-red);
    --accent-alt: var(--freedom-navy);
}

.freedom-features__big-number {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: var(--accent-alt);
    line-height: 1;
}
.freedom-features__card-title {
    color: var(--accent);
    font-size: 20px;
    letter-spacing: .5px;
    margin: 8px 0 12px;
}
.freedom-features__card-text {
    color: var(--freedom-ink-soft);
    margin-bottom: 16px;
    font-size: 14px;
}
.freedom-features__card-list {
    list-style: none; padding: 0; margin: 0;
}
.freedom-features__card-list li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--freedom-ink);
}
.freedom-features__card-list li i {
    color: #10b981;
    margin-right: 8px;
    font-size: 12px;
}

/* ---------- 5. VIDEO ------------------------------------------------- */
.freedom-video {
    background: var(--freedom-navy);
    padding: 72px 16px;
    text-align: center;
    color: #fff;
}
.freedom-video__title {
    color: #fff;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 32px;
}

.freedom-video-poster {
    position: relative;
    max-width: 800px; margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30,58,138,.85), rgba(220,38,38,.85));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    cursor: pointer;
    outline: none;
}
.freedom-video-poster:focus-visible {
    box-shadow: 0 0 0 4px rgba(251,191,36,.5);
}
.freedom-video-poster__play {
    display: inline-flex; align-items: center; justify-content: center;
    width: 88px; height: 88px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: var(--freedom-navy);
    font-size: 32px;
    box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
/* Visually center the play triangle. */
.freedom-video-poster__play i { margin-left: 6px; }
.freedom-video-poster__caption {
    margin-top: 24px;
    color: rgba(255,255,255,.9);
    font-size: 15px;
}

/* ---------- 6. TESTIMONIALS ------------------------------------------ */
.freedom-testimonials {
    background: #fff;
    padding: 72px 16px;
    text-align: center;
}
.freedom-testimonials__title {
    color: var(--freedom-navy);
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 8px;
}
.freedom-testimonials__stars {
    color: var(--freedom-yellow);
    font-size: 18px;
    margin-bottom: 32px;
}
.freedom-testimonials__stars i { margin: 0 2px; }
.freedom-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .freedom-testimonials__grid { grid-template-columns: 1fr; }
}

.freedom-testimonial {
    background: #fff;
    border: 1px solid var(--freedom-border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.freedom-testimonial__stars {
    color: var(--freedom-yellow);
    margin-bottom: 12px;
}
.freedom-testimonial__stars i { margin-right: 2px; }
.freedom-testimonial__quote {
    font-style: italic;
    color: var(--freedom-ink-soft);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
}
.freedom-testimonial__author {
    display: flex; align-items: center; gap: 12px;
}
.freedom-testimonial__author strong {
    display: block; color: var(--freedom-ink); font-weight: 600;
}
.freedom-testimonial__author small { color: var(--freedom-ink-soft); }
.freedom-testimonial__avatar {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--avatar-bg, #6b7280);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

/* ---------- 7. URGENCY ----------------------------------------------- */
.freedom-urgency {
    background: var(--freedom-red);
    color: #fff;
    padding: 72px 16px;
    text-align: center;
}
.freedom-urgency__title {
    color: #fff;
    font-size: clamp(24px, 3.5vw, 34px);
    margin-bottom: 16px;
}
.freedom-urgency__title i {
    color: var(--freedom-yellow);
    margin-right: 8px;
}
.freedom-urgency__lead {
    max-width: 560px; margin: 0 auto 32px;
    color: rgba(255,255,255,.92);
}
.freedom-urgency__counters {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 48px;
}
.freedom-urgency__counter strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    color: #fff;
}
.freedom-urgency__counter span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.85);
}

/* ---------- 8. FAQ --------------------------------------------------- */
.freedom-faq {
    background: #fff;
    padding: 72px 16px;
}
.freedom-faq__title {
    text-align: center;
    color: var(--freedom-navy);
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 32px;
}
.freedom-faq__inner { max-width: 820px; margin: 0 auto; }

.freedom-faq__item {
    background: #fff;
    border: 1px solid var(--freedom-border);
    border-radius: 10px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    overflow: hidden;
    transition: box-shadow .2s ease;
}
.freedom-faq__item[open] { box-shadow: 0 8px 22px rgba(0,0,0,.08); }

.freedom-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    color: var(--freedom-navy);
    font-size: 16px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
}
.freedom-faq__item summary::-webkit-details-marker { display: none; }
.freedom-faq__item summary::after {
    content: '+';
    font-weight: 400;
    color: var(--freedom-navy);
    font-size: 24px;
    transition: transform .2s ease;
}
.freedom-faq__item[open] summary::after { content: '−'; }
.freedom-faq__item p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--freedom-ink-soft);
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- 9. FINAL CTA --------------------------------------------- */
.freedom-final-cta {
    position: relative;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(255,255,255,.08) 0%, transparent 55%),
        linear-gradient(135deg, var(--freedom-navy) 0%, var(--freedom-red) 100%);
    padding: 88px 16px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.freedom-final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: .5;
    pointer-events: none;
}
.freedom-final-cta__inner { position: relative; max-width: 720px; margin: 0 auto; }

.freedom-final-cta__title {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
}
.freedom-final-cta__title span { display: block; }
.freedom-final-cta__title-white  { color: #fff; }
.freedom-final-cta__title-yellow { color: var(--freedom-yellow); }

.freedom-final-cta__lead {
    color: rgba(255,255,255,.92);
    margin-bottom: 32px;
}

.freedom-final-cta__price-box {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    padding: 28px;
    margin: 0 auto 28px;
    max-width: 560px;
    backdrop-filter: blur(4px);
}
.freedom-final-cta__counts {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: center;
    margin-bottom: 16px;
}
.freedom-final-cta__counts strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: var(--freedom-yellow);
    line-height: 1;
}
.freedom-final-cta__counts span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.85);
    margin-top: 4px;
}
.freedom-final-cta__price {
    display: flex; align-items: baseline; justify-content: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.18);
}
.freedom-final-cta__price-old {
    font-size: 22px;
    color: rgba(255,255,255,.6);
    text-decoration: line-through;
}
.freedom-final-cta__price-new {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}
.freedom-final-cta__save {
    margin: 12px 0 0;
    color: var(--freedom-yellow);
    font-weight: 700;
    letter-spacing: .5px;
}

.freedom-final-cta__button {
    display: inline-block;
    background: var(--freedom-yellow);
    color: var(--freedom-navy-dark);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .5px;
    padding: 18px 56px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.freedom-final-cta__button:hover {
    background: var(--freedom-yellow-deep);
    color: var(--freedom-navy-dark);
    transform: translateY(-1px);
    box-shadow: 0 16px 50px rgba(0,0,0,.35);
    text-decoration: none;
}

.freedom-final-cta__guarantees {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 24px;
    list-style: none; padding: 0; margin: 24px 0 0;
    color: #fff;
    font-size: 14px;
}
.freedom-final-cta__guarantees i { color: var(--freedom-yellow); margin-right: 6px; }

/* ---------- 10. FOOTER (outside .freedom-page in the DOM) ----------- */
.freedom-footer {
    background: #162456;
    color: #fff;
    padding: 48px 16px;
    text-align: center;
}
.freedom-footer__inner { max-width: 1100px; margin: 0 auto; }

.freedom-footer__brand {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--freedom-yellow);
    font-size: 28px;
    margin-bottom: 6px;
}
.freedom-footer__tagline {
    color: rgba(255,255,255,.85);
    margin-bottom: 20px;
}
.freedom-footer__links {
    list-style: none; padding: 0; margin: 0 0 20px;
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 24px;
}
.freedom-footer__links a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: 14px;
}
.freedom-footer__links a:hover { color: #fff; text-decoration: underline; }
.freedom-footer__copyright {
    color: rgba(255,255,255,.6);
    font-size: 13px;
    margin: 0;
}
