/* Nausea Guide Page Styles
 * Mirrors the voucher.css component pattern for consistent premium look
 * Reuses voucher-* classes where possible, adds nausea-specific overrides
 */

/* ── Hero Section ── */
/* Layout now comes from voucher-variant-h.css (voucher-hero classes) */
/* Only nausea-specific overrides below */

.voucher-hero .voucher-badge {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* ── Badge Cards (4-column trust signals) ── */
.nausea-badges {
    background: var(--bg-light);
}

.nausea-badges .voucher-badges__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.nausea-badge-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.nausea-badge-card .badge-icon {
    width: 48px;
    height: 48px;
    background: aliceblue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.nausea-badge-card .badge-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.nausea-badge-card h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.nausea-badge-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* ── Benefits (2-column: content + sidebar panel) ── */
/* white background (default from body) */

.nausea-causes .voucher-benefits__grid {
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: start;
}

.nausea-causes__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
}

.nausea-causes__list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.nausea-causes__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: aliceblue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.nausea-causes__icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.nausea-causes__text strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.nausea-causes__text p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── Quick Facts Panel (sidebar card) ── */
.nausea-causes .voucher-benefits__panel {
    background: var(--bg-light, #f0f4f8);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nausea-causes .voucher-benefits__panel h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.nausea-causes .voucher-benefits__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.nausea-causes .voucher-benefits__tags span {
    background: #ffffff;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    color: var(--primary, #0056b3);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
}

.nausea-causes .voucher-benefits__meta {
    display: grid;
    gap: 18px;
}

.nausea-causes .voucher-benefits__meta>div {
    display: flex;
    flex-direction: column;
}

.nausea-causes .voucher-benefits__meta strong {
    font-size: 1.8rem;
    color: var(--primary, #0056b3);
    display: block;
    line-height: 1.2;
}

.nausea-causes .voucher-benefits__meta span {
    color: var(--text-dark, #1a1a2e);
    line-height: 1.5;
}

/* ── Dark Gradient Section (What Our Pilots Do) ── */
.nausea-pilots {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(140deg, #05284f, #0f4f82);
    color: #ffffff;
    overflow: hidden;
}

.nausea-pilots::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.12), transparent 60%);
}

.nausea-pilots .container {
    position: relative;
    z-index: 1;
}

.nausea-pilots h2,
.nausea-pilots p,
.nausea-pilots strong,
.nausea-pilots span {
    color: #ffffff;
}

.nausea-pilots p {
    opacity: 0.92;
}

.nausea-pilots__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 40px 0;
}

.nausea-pilots__card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px 22px;
    backdrop-filter: blur(10px);
}

.nausea-pilots__card strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
}

.nausea-pilots__card span {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* ── Prevention Steps (3-column numbered cards) ── */
/* white background (default from body) */

.nausea-prevention .voucher-steps__grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 10px;
}

.voucher-step {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px 28px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.voucher-step__number {
    position: absolute;
    top: -18px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary, #0056b3);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.voucher-step h3 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.voucher-step p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* ── Includes Section (4-column feature cards) ── */
.nausea-tips {
    background: var(--bg-light);
}

.nausea-tips .voucher-includes__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Reuses .voucher-include-card from voucher.css */

/* ── If Nausea Occurs ── */
.nausea-emergency {
    background: var(--bg-light);
    position: relative;
}

.nausea-emergency .container {
    max-width: 820px;
}

.nausea-emergency__steps {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 36px;
}

.nausea-emergency__step {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    text-align: center;
}

.nausea-emergency__step .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

/* ── Testimonials (dark gradient + white cards) ── */
.nausea-testimonials {
    position: relative;
    background: linear-gradient(140deg, #05284f, #0f4f82);
    color: #ffffff;
    overflow: hidden;
}

.nausea-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.12), transparent 60%);
}

.nausea-testimonials .container {
    position: relative;
    z-index: 1;
}

.nausea-testimonials h2 {
    color: #ffffff;
}

.nausea-testimonials .voucher-testimonials__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nausea-testimonial {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
}

.nausea-testimonial blockquote {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 16px;
    color: var(--text-dark);
}

.nausea-testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.nausea-testimonial .stars {
    font-size: 1.2rem;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #ffb347 0%, #ffd166 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* ── CTA Section ── */
.nausea-cta {
    position: relative;
    background: linear-gradient(120deg, #0a315a, #0f4f82);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.nausea-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18), transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.15), transparent 55%);
}

.nausea-cta .container {
    position: relative;
    z-index: 1;
}

.nausea-cta h2,
.nausea-cta p {
    color: #ffffff;
}

.nausea-cta p {
    max-width: 720px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.92);
}

.nausea-cta__actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nausea-cta .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.nausea-cta .btn-outline:hover {
    background-color: #ffffff;
    color: var(--primary);
}

/* ── Responsive ── */

@media (max-width: 992px) {

    .nausea-badges .voucher-badges__grid,
    .nausea-causes .voucher-benefits__grid,
    .nausea-pilots__grid,
    .nausea-prevention .voucher-steps__grid,
    .nausea-tips .voucher-includes__grid,
    .nausea-emergency__steps,
    .nausea-testimonials .voucher-testimonials__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


}

@media (max-width: 768px) {

    .nausea-badges .voucher-badges__grid,
    .nausea-causes .voucher-benefits__grid,
    .nausea-pilots__grid,
    .nausea-prevention .voucher-steps__grid,
    .nausea-tips .voucher-includes__grid,
    .nausea-emergency__steps,
    .nausea-testimonials .voucher-testimonials__grid {
        grid-template-columns: 1fr;
    }


    .nausea-pilots {
        padding: 60px 0;
    }

    .nausea-cta {
        padding: 60px 0;
    }

    .nausea-badge-card,
    .nausea-testimonial,
    .nausea-pilots__card,
    .nausea-emergency__step {
        padding: 24px;
    }
}

/* ── Accessibility ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--primary, #0056b3);
    color: #fff;
    border-radius: 0 0 4px 4px;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

[id="nausea-info"],
[id="causes"],
[id="prevention"],
[id="pilots"],
[id="emergency"],
[id="experiences"] {
    scroll-margin-top: 80px;
}

/* ── Typography ── */
h1,
h2,
h3 {
    text-wrap: balance;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {

    .nausea-badge-card,
    .nausea-testimonial,
    .nausea-cta .btn,
    .nausea-hero .btn {
        transition: none;
    }
}

/* ── Focus ring ── */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--primary, #0056b3);
    outline-offset: 2px;
    border-radius: 4px;
}