/**
 * Singapore Airlines Luxurious Theme
 * Auto-generated
 */

:root {
    --jini-primary: #1f132f;
    --jini-primary-light: #4f5a68;
    --jini-primary-dark: #181316;
    --jini-bronze: #c2a055;
    --jini-bronze-light: #d8b57b;
    --jini-bronze-dark: #917448;
    --jini-silver: #b9c4c4;
    --jini-silver-light: #d4dce8;
    --jini-charcoal: #FFF8EB;
    --jini-midnight: #FFFDF7;
    --jini-slate: #FFFFFF;
    --jini-text: #E8EDF2;
    --jini-text-dim: #8399af;
    --jini-text-dark: #1d1e26;
    --jini-border: #eae4cc;
    --jini-success: #33c472;
    --jini-warning: #e25242;
    --jini-highlight: #f5d70a;
    --jini-curve-sm: 6px;
    --jini-curve-md: 10px;
    --jini-curve-lg: 16px;
    --jini-glow: 0 2px 8px rgba(0,0,0,0.08);
    --jini-glow-bronze: 0 6px 24px rgba(191,161,88,0.25);
    --jini-anim: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --jini-font-heading: 'Inter', sans-serif;
    --jini-font-text: 'Inter', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.jini-page {
    font-family: var(--jini-font-text);
    background: linear-gradient(180deg, var(--jini-charcoal) 0%, var(--jini-midnight) 100%);
    color: var(--jini-text);
    line-height: 1.75;
    min-height: 100vh;
}

a {
    color: var(--jini-bronze);
    text-decoration: none;
    transition: var(--jini-anim);
}

a:hover {
    color: var(--jini-bronze-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ================================================
   NAVIGATION BAR
================================================ */
.jini-topbar {
    background: linear-gradient(180deg, var(--jini-primary-dark) 0%, var(--jini-charcoal) 100%);
    border-bottom: 1px solid var(--jini-border);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(9px);
}

.jini-topbar__wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 19px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.jini-brand {
    display: flex;
    align-items: center;
    gap: 17px;
    text-decoration: none;
    margin-right: auto;
}

.jini-brand__title {
    font-family: var(--jini-font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--jini-text);
    letter-spacing: 0.6px;
}

.jini-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.jini-menu__link {
    display: inline-block;
    padding: 11px 25px;
    color: var(--jini-text);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    border-radius: var(--jini-curve-sm);
    transition: var(--jini-anim);
}

.jini-menu__link:hover,
.jini-menu__link.current {
    color: var(--jini-bronze);
    background: rgba(192,167,96,0.12);
}

.jini-topbar__action {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--jini-bronze) 0%, var(--jini-bronze-dark) 100%);
    color: var(--jini-charcoal);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 53px;
    transition: var(--jini-anim);
    box-shadow: var(--jini-glow-bronze);
}

.jini-topbar__action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193,158,87,0.5);
    color: var(--jini-charcoal);
}

.jini-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 14px;
    background: transparent;
    border: 1px solid var(--jini-bronze);
    border-radius: var(--jini-curve-sm);
    cursor: pointer;
}

.jini-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--jini-bronze);
    transition: var(--jini-anim);
}

.jini-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.jini-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.jini-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.jini-drawer {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: var(--jini-primary-dark);
    transition: max-height 0.35s ease;
}

.jini-drawer.open {
    display: block;
    max-height: 420px;
    padding: 21px 32px;
}

.jini-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jini-drawer__nav a {
    display: block;
    padding: 12px 25px;
    color: var(--jini-text);
    font-size: 15px;
    border-radius: var(--jini-curve-sm);
}

.jini-drawer__nav a:hover {
    background: rgba(194,164,95,0.12);
    color: var(--jini-bronze);
}

/* ================================================
   LAYOUT
================================================ */
.jini-content {
    min-height: calc(100vh - 200px);
}

.jini-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 9px 32px;
}

/* ================================================
   HERO BANNER
================================================ */
.jini-hero {
    text-align: center;
    padding: 23px 18px 17px;
    margin-bottom: 19px;
    background: linear-gradient(135deg, #161e29 0%, #342b4e 50%, #181133 100%);
    border-radius: var(--jini-curve-lg);
    position: relative;
    overflow: hidden;
}
.jini-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(195,170,86,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.jini-hero .jini-hero__heading { color: #fff; }
.jini-hero .jini-hero__desc { color: rgba(255,255,255,0.7); }

.jini-hero__tag {
    display: inline-block;
    padding: 9px 26px;
    background: rgba(197,167,85,0.18);
    color: var(--jini-bronze);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 53px;
    margin-bottom: 22px;
}

.jini-hero__heading {
    font-family: var(--jini-font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--jini-text);
    margin-bottom: 23px;
    line-height: 1.15;
    letter-spacing: -0.4px;
}

.jini-hero__desc {
    font-size: 19px;
    color: var(--jini-text-dim);
    max-width: 640px;
    margin: 0 auto 36px;
}

/* ================================================
   SECTION HEADERS
================================================ */
.jini-section-intro {
    text-align: center;
    margin-bottom: 19px;
}

.jini-section-intro__label {
    display: inline-block;
    padding: 6px 19px;
    background: rgba(198,157,93,0.18);
    color: var(--jini-bronze);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 52px;
    margin-bottom: 13px;
}

.jini-section-intro__title {
    font-family: var(--jini-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--jini-text);
    margin-bottom: 7px;
}

.jini-section-intro__text {
    font-size: 16px;
    color: var(--jini-text-dim);
}

/* ================================================
   COMPANY GRID
================================================ */
.jini-providers {
    margin: 17px 0 51px;
    width: 95vw;
    max-width: 1500px;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.jini-providers__grid {
    background: var(--jini-slate);
    border-radius: var(--jini-curve-lg);
    overflow: hidden;
    box-shadow: var(--jini-glow);
}

.jini-providers__head {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 26px;
    padding: 13px 32px;
    background: #22202d;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    text-align: center;
    align-items: center;
}

.jini-providers__head > div {
    text-align: center;
    color: #fff;
}

.jini-providers__row {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 25px;
    padding: 25px 31px;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #dfe0e4;
    background: #ffffff;
    transition: background 0.2s ease;
}

.jini-providers__row:nth-child(odd) {
    background: #f0f4f8;
}

.jini-providers__row:last-child {
    border-bottom: none;
}

.jini-providers__row:hover {
    background: #e8edf5;
}

.jini-providers__row.top-pick {
    background: #fef9e7;
    border-left: 4px solid #95844f;
}

.jini-company-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.jini-company-cell__logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    min-height: 60px;
    object-fit: contain;
    border-radius: 11px;
    background: #fff;
    padding: 15px 15px;
    border: 2px solid #eee;
}

.jini-company-cell__tagline {
    font-size: 12px;
    color: #a08740;
    text-align: center;
    font-weight: 500;
}

.jini-perks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.jini-perk {
    display: block;
    padding: 6px 12px;
    background: #eaf2e8;
    color: #1f5521;
    font-size: 11px;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    width: fit-content;
    border: 1px solid #c3ebcf;
}

.jini-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.jini-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.jini-stars__star {
    font-size: 17px;
}

.jini-stars__star.lit {
    color: #f5a70a;
}

.jini-stars__star.dim {
    color: #cdd8d6;
}

.jini-score__num {
    font-weight: 700;
    color: #323b50;
    font-size: 17px;
}

.jini-score__bbb {
    font-size: 11px;
    color: #185525;
    font-weight: 700;
    background: #e8f5e9;
    padding: 3px 11px;
    border-radius: 3px;
}

.jini-invest {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jini-invest__amount {
    font-weight: 700;
    color: #2a4754;
    font-size: 17px;
}

.jini-invest__label {
    font-size: 11px;
    color: #888f95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jini-cta-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
}

.jini-cta-cell__main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 25px;
    background: linear-gradient(135deg, #9d8041 0%, #c3a970 100%);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border-radius: 10px;
    transition: var(--jini-anim);
}

.jini-cta-cell__main:hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(199,164,84,0.3);
}

.jini-cta-cell__alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    color: #4b5b5d;
    border: 2px solid #ccccc4;
    font-size: 11px;
    border-radius: 7px;
    transition: var(--jini-anim);
}

.jini-cta-cell__alt:hover {
    background: #f0f0f0;
    color: #2a3730;
}

/* ================================================
   TABLE OF CONTENTS
================================================ */
.jini-toc {
    background: linear-gradient(135deg, rgba(200,170,92,0.12) 0%, rgba(201,160,83,0.05) 100%);
    border: 2px solid var(--jini-bronze);
    border-radius: var(--jini-curve-lg);
    padding: 25px 36px;
    margin: 39px 0;
}

.jini-toc__title {
    font-family: var(--jini-font-heading);
    font-size: 22px;
    color: var(--jini-text);
    margin-bottom: 21px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.jini-toc__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.jini-toc__list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 16px;
    color: var(--jini-text);
    font-size: 14px;
    border-radius: var(--jini-curve-sm);
    transition: var(--jini-anim);
}

.jini-toc__list li a:hover {
    background: rgba(202,167,91,0.18);
    color: var(--jini-bronze);
}

.jini-toc__list li a::before {
    content: '\2192';
    color: var(--jini-bronze);
}

/* ================================================
   ARTICLE / CONTENT BLOCKS
================================================ */
.jini-article {
    margin: 42px 0;
}

.jini-article h1 {
    font-family: var(--jini-font-heading);
    font-size: 46px;
    font-weight: 700;
    color: var(--jini-text);
    margin-bottom: 27px;
    text-align: center;
}

.jini-block {
    margin: 43px 0;
    padding: 34px;
    background: var(--jini-slate);
    border-radius: var(--jini-curve-lg);
}

.jini-block#overview {
    background: transparent;
    padding: 0;
}

.jini-block h2 {
    font-family: var(--jini-font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--jini-text);
    margin-bottom: 22px;
}

.jini-block__body {
    font-size: 19px;
    line-height: 1.85;
}

.jini-block__body p {
    margin-bottom: 16px;
}

.jini-block__body ul,
.jini-block__body ol {
    margin: 19px 0;
    padding-left: 31px;
}

.jini-block__body li {
    margin-bottom: 11px;
}

.jini-block__body strong {
    color: var(--jini-text);
}

.jini-block__body img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* Content images */
.jini-content-image {
    margin: 33px 0;
    border-radius: var(--jini-curve-lg);
    overflow: hidden;
    box-shadow: var(--jini-glow);
}

.jini-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   FAQ SECTION
================================================ */
.jini-faq {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--jini-curve-lg);
    margin: 51px 0;
}

.jini-faq .jini-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 21px;
}

.jini-faq-header {
    text-align: center;
    margin-bottom: 43px;
}

.jini-faq-label {
    display: inline-block;
    background: linear-gradient(135deg, #bea156 0%, #d0a873 100%);
    color: white;
    padding: 5px 18px;
    border-radius: 17px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.jini-faq-title {
    font-size: 33px;
    font-weight: 700;
    color: #141434;
    margin: 0;
}

.jini-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jini-faq-item {
    background: white;
    border-radius: 11px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.jini-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.jini-faq-item.active .jini-faq-answer {
    max-height: 500px;
    padding: 0 25px 23px;
}

.jini-faq-item.active .jini-faq-icon {
    transform: rotate(180deg);
}

.jini-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #1f2225;
    gap: 16px;
}

.jini-faq-question:hover {
    color: #c0a755;
}

.jini-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #cba15a;
}

.jini-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.jini-faq-answer-inner {
    color: #46405f;
    line-height: 1.7;
    font-size: 15px;
}

/* ================================================
   TESTIMONIALS SLIDER
================================================ */
.jini-reviews {
    margin: 63px 0;
    overflow: hidden;
}

.jini-reviews__carousel {
    display: flex;
    gap: 30px;
    animation: slideReviews 30s linear infinite;
}

@keyframes slideReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.jini-reviews__carousel:hover {
    animation-play-state: paused;
}

.jini-review-card {
    flex-shrink: 0;
    width: 340px;
    background: var(--jini-slate);
    padding: 28px;
    border-radius: var(--jini-curve-lg);
    border: 2px solid var(--jini-border);
}

.jini-review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 19px;
}

.jini-review-card__avatar {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--jini-bronze) 0%, var(--jini-bronze-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: var(--jini-charcoal);
    overflow: hidden;
}

.jini-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jini-review-card__author {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.jini-review-card__name {
    font-weight: 600;
    color: var(--jini-text);
}

.jini-review-card__location {
    font-size: 13px;
    color: var(--jini-text-dim);
}

.jini-review-card__verified {
    width: 26px;
    height: 26px;
    background: var(--jini-success);
    color: var(--jini-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.jini-review-card__stars {
    margin-bottom: 17px;
}

.jini-review-card__text {
    font-size: 15px;
    color: var(--jini-text);
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.7;
}

.jini-review-card__date {
    font-size: 12px;
    color: var(--jini-text-dim);
}

/* ================================================
   FOOTER
================================================ */
.jini-footer {
    background: linear-gradient(180deg, var(--jini-charcoal) 0%, #050a14 100%);
    border-top: 1px solid var(--jini-border);
    padding: 60px 0 43px;
    margin-top: 62px;
}

.jini-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
}

.jini-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 59px;
    margin-bottom: 52px;
    padding-bottom: 37px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.jini-footer__brand-name {
    font-family: var(--jini-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--jini-text);
    margin-bottom: 12px;
}

.jini-footer__desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--jini-text-dim);
    max-width: 360px;
}

.jini-footer__heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--jini-text);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.jini-footer__links {
    list-style: none;
}

.jini-footer__links li {
    margin-bottom: 12px;
}

.jini-footer__links a {
    color: var(--jini-text-dim);
    font-size: 15px;
    transition: var(--jini-anim);
}

.jini-footer__links a:hover {
    color: var(--jini-bronze);
}

.jini-footer__bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ================================================
   EXIT POPUP
================================================ */
.jini-exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.jini-exit-popup-overlay.is-visible {
    display: flex;
}

/* ================================================
   STICKY FOOTER BAR
================================================ */
.jini-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    padding: 9px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
    .jini-providers__head {
        display: none;
    }
    .jini-providers__grid {
        display: flex;
        flex-direction: column;
        gap: 19px;
        background: transparent;
        box-shadow: none;
    }
    .jini-providers__row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 22px 21px;
        background: #fff;
        border-radius: 19px;
        box-shadow: 0 1px 14px rgba(0,0,0,0.08);
        border-bottom: none;
        gap: 9px;
    }
    .jini-providers__row.top-pick {
        border-left: none;
        border-top: 4px solid #9b8c4c;
    }
    .jini-company-cell__logo {
        max-width: 45%;
        width: 45%;
    }
    .jini-providers {
        width: calc(100vw - 20px);
    }
    html, body {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .jini-menu {
        display: none;
    }
    .jini-hamburger {
        display: flex;
        margin-left: auto;
    }
    .jini-topbar__action {
        display: none;
    }
    .jini-hero__heading {
        font-size: 32px;
    }
    .jini-hero__desc {
        font-size: 16px;
    }
    .jini-toc__list {
        grid-template-columns: 1fr;
    }
    .jini-footer__grid {
        grid-template-columns: 1fr;
        gap: 39px;
    }
    .jini-article h1 {
        font-size: 34px;
    }
    .jini-block h2 {
        font-size: 24px;
    }
    .jini-sticky-bar {
        flex-direction: column;
        gap: 8px;
        padding: 11px 10px;
        text-align: center;
    }
    .jini-sticky-bar img {
        height: 35px;
    }
}

@media (max-width: 640px) {
    .jini-faq { padding: 39px 0; }
    .jini-faq-title { font-size: 26px; }
    .jini-faq-question { font-size: 15px; padding: 16px 23px; }
}

/* Animation helper */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Overhaul */
h1 { text-align: center !important; }
.jini-hero__tag { margin-bottom: 3px !important; margin-top: 0 !important; }
.jini-hero__heading { margin-bottom: 5px !important; margin-top: 0 !important; }
/* Hero H1 visible above fold with proper contrast */
.jini-hero__heading { font-size: clamp(28px, 4.5vw, 52px) !important; margin-bottom: 10px !important; color: #fff !important; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.jini-hero__desc { margin-bottom: 15px !important; }
.jini-hero { padding-bottom: 0 !important; margin-bottom: 0 !important; padding-top: 0 !important; }
img[class*="logo"] { border-radius: 10px !important; border: none !important; }

body.jini-page { padding-bottom: 71px !important; }


/* ===== LIGHT THEME CONTENT OVERRIDES ===== */
body.jini-page {
    background: #FFFDF7;
    color: #191627;
}
.jini-content { color: #10102c; }
/* .jini-hero__heading color set in hero section */
/* .jini-hero__desc color set in hero section */
.jini-section-intro__title { color: #1a1331; }
.jini-section-intro__text { color: #627a87; }
.jini-block { background: #FFF8EB; }
.jini-block#overview { background: transparent; }
.jini-block h2 { color: #12152a; }
.jini-block__body { color: #1d102f; }
.jini-block__body strong { color: #131334; }
.jini-article h1 { color: #1e2125; }
.jini-toc { background: rgba(195,159,94,0.05); }
.jini-toc__title { color: #151b29; }
.jini-toc__list li a { color: #1f152e; }
.jini-review-card { background: #fff; border-color: #ece5d5; }
.jini-review-card__name { color: #201324; }
.jini-review-card__text { color: #172132; }
.jini-review-card__location { color: #737389; }
.jini-review-card__date { color: #696d79; }
.jini-wrapper { color: #23192c; }
.jini-faq-title { color: #1a1331; }
.jini-faq-question { color: #102036; }
.jini-faq-answer-inner { color: #6c7378; }
.jini-footer {
    background: linear-gradient(180deg, #11152b 0%, #0f0f1b 100%);
}

/* Review page mobile fixes */
@media(max-width:640px){
    [style*='grid-template-columns: 1fr 1fr']{grid-template-columns:1fr!important}
    .jini-providers__row .jini-company-cell__logo{max-width:60%;margin:0 auto}
    .jini-section-intro__title{font-size:23px!important}
}


/* ===== COMPREHENSIVE FIXES ===== */

/* Desktop company logos 170-230px width */
.jini-company-cell__logo {
    width: 200px !important;
    min-width: 170px !important;
    max-width: 230px !important;
}

/* Button text centering */
.jini-cta-cell__main,
.jini-cta-cell__alt,
[class*="btn-cta"],
[class*="btn-review"],
[class*="btn-primary"],
.fb-btn {
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Content images on desktop: 30% width, float */
@media (min-width: 769px) {
    .jini-article img,
    .jini-block__body img {
        max-width: 30% !important;
        height: auto !important;
        margin: 13px 23px 11px 0 !important;
        border-radius: 10px;
    }
    .jini-article img:nth-of-type(odd),
    .jini-block__body img:nth-of-type(odd) {
        float: left !important;
        margin: 9px 20px 15px 0 !important;
    }
    .jini-article img:nth-of-type(even),
    .jini-block__body img:nth-of-type(even) {
        float: right !important;
        margin: 10px 0 13px 23px !important;
    }
    /* Clear floats after paragraphs */
    .jini-block__body::after,
    .jini-article::after {
        content: '';
        display: table;
        clear: both;
    }
    /* Exclude banner images from float */
    .kit-banner-block img,
    .jini-block__body [style*="text-align:center"] img,
    .jini-article [style*="text-align:center"] img,
    .jini-block__body div[style*="text-align"] img,
    .jini-article div[style*="text-align"] img,
    .jini-block__body a[href*="gokiiit"] img,
    .jini-article a[href*="gokiiit"] img,
    img[alt*="gold IRA kit" i],
    img[alt*="Gold IRA Kit" i],
    img[src*="gold-ira-kit"] {
        float: none !important;
        max-width: 100% !important;
        width: auto !important;
        margin: 17px auto !important;
        display: block !important;
    }
}

/* Content images mobile: full width */
@media (max-width: 768px) {
    .jini-article img,
    .jini-block__body img {
        max-width: 100% !important;
        width: 100% !important;
        float: none !important;
        margin: 9px 0 !important;
    }
}

/* Max content width 1500px */
.jini-wrapper {
    max-width: 1500px !important;
}
.jini-providers {
    max-width: 1500px !important;
}

/* FAQ compact question height */
.jini-faq-question {
    padding: 15px 23px !important;
    margin: 0 !important;
}
.jini-faq-item {
    margin: 0 !important;
}
.jini-faq-list {
    gap: 7px !important;
}
[class*="-faq"], #faq, [id="faq"] {
    max-width: 900px !important;
}
/* Prevent margin blowup */
.jini-faq {
    padding: 37px 0 !important;
    margin: 32px 0 !important;
}

/* Review page company logo with semi-transparent white bg */
.review-company-logo-wrap {
    background: rgba(255,255,255,0.85) !important;
    padding: 19px 22px !important;
    border-radius: 17px !important;
    display: inline-block !important;
}

/* Breadcrumbs stay within content */
.jini-breadcrumbs {
    max-width: 1500px;
    margin: 0 auto;
    padding: 11px 34px;
    font-size: 10px;
    color: #646b86;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.jini-breadcrumbs a {
    color: #c8ab51;
}

/* Mobile cards centered */
@media (max-width: 1024px) {
    .jini-providers__row {
        align-items: center !important;
        text-align: center !important;
    }
    .jini-company-cell__logo {
        width: 45% !important;
        min-width: unset !important;
        max-width: unset !important;
        margin: 0 auto !important;
    }
    .jini-cta-cell {
        width: 100%;
        align-items: center !important;
    }
    .jini-cta-cell__main,
    .jini-cta-cell__alt {
        width: 80%;
        max-width: 250px;
    }
}

/* Mobile minimum side padding */
@media (max-width: 640px) {
    .jini-wrapper {
        padding-left: 13px !important;
        padding-right: 15px !important;
    }
    .jini-company-cell__logo {
        width: 50% !important;
    }
}

/* Banners centered */
.kit-banner-block {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* TOC styling */
.jini-toc {
    max-width: 760px;
    margin: 26px auto !important;
}
.jini-toc__title {
    user-select: none;
}
.jini-toc__title:hover {
    color: var(--jini-bronze);
}


/* ================================================
   ENHANCED FOOTER RESPONSIVENESS
================================================ */
.jini-footer__brand-col {
    max-width: 400px;
}

.jini-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 53px;
    padding-bottom: 38px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .jini-footer__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 31px !important;
    }
    .jini-footer__brand-col {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    .jini-footer__brand-col a {
        justify-content: center !important;
    }
    .jini-footer__brand-col .jini-footer__desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .jini-footer__grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        text-align: center;
    }
    .jini-footer__inner {
        padding: 0 16px !important;
    }
    .jini-footer {
        padding: 43px 0 28px !important;
    }
    .jini-footer__heading {
        font-size: 13px !important;
    }
    .jini-footer__links li {
        margin-bottom: 13px;
    }
    .jini-footer__links a {
        font-size: 14px;
    }
    .jini-footer__bottom {
        font-size: 12px !important;
        padding: 0 5px;
    }
    .jini-footer__brand-name {
        font-size: 18px !important;
    }
}

@media (max-width: 400px) {
    .jini-footer__brand-col a svg {
        width: 28px !important;
        height: 32px !important;
    }
    .jini-footer__brand-name {
        font-size: 16px !important;
    }
}

/* Exit popup responsive */
@media (max-width: 480px) {
    #exitOverlay > div {
        padding: 30px 17px 24px !important;
        width: 95% !important;
        border-radius: 19px !important;
    }
    #exitOverlay h3 {
        font-size: 20px !important;
    }
    #exitOverlay p {
        font-size: 14px !important;
    }
}

/* Article tables responsive */
@media (max-width: 640px) {
    .jini-block table {
        font-size: 13px !important;
    }
    .jini-block table th,
    .jini-block table td {
        padding: 10px 5px !important;
    }
    .jini-article table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Citations section */
.citations {
    max-width: 100% !important;
}
.citations ol {
    margin: 0;
}
.citations ol li {
    margin-bottom: 6px;
}
.citations a {
    color: #bfa555;
    text-decoration: underline;
}
.citations a:hover {
    color: #987643;
}
