/* =================================================================
   SRJ Page Redesign — Ported 1:1 from mockup-preview.html
   All rules scoped under body.page for specificity.
   ================================================================= */

:root {
    --navy: #1a2744;
    --navy-dark: #111c30;
    --gold: #f0a500;
    --gold-border: #d99400;
    --white: #fff;
    --off-white: #f4f5f7;
    --text: #222;
    --text-mid: #444;
    --text-light: #777;
    --img-radius: 10px;
}

/* ── Gold underline ── */
body.page .srj-gold-line {
    width: 80px !important;
    height: 4px !important;
    background: var(--gold) !important;
    border-radius: 2px !important;
    border: none !important;
}
body.page .srj-gold-line.center { margin: 14px auto 28px !important; }
body.page .srj-gold-line.left { margin: 14px 0 28px !important; }

/* ── Rounded images ── */
body.page .img-rounded {
    border-radius: var(--img-radius) !important;
}

/* ── Typography ── */
body.page .heading-serif {
    font-family: Georgia, 'Times New Roman', serif !important;
    font-weight: 700 !important;
    font-style: italic !important;
    color: var(--text) !important;
    line-height: 1.2 !important;
}
body.page .heading-serif.white {
    color: var(--white) !important;
}
body.page .heading-bold {
    font-family: Georgia, 'Times New Roman', serif !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    line-height: 1.3 !important;
}
body.page .body-text,
body.page .body-text p {
    color: var(--text-mid) !important;
    line-height: 1.85 !important;
    font-size: 1rem !important;
}

/* ── Buttons ── */
body.page .btn-gold {
    display: inline-block !important;
    background: var(--gold) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    border: none !important;
    transition: all 0.2s ease;
}
body.page .btn-gold:hover {
    background: var(--gold-border) !important;
    color: var(--white) !important;
    text-decoration: none !important;
}
body.page .btn-navy {
    display: inline-block !important;
    background: var(--navy) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 13px 32px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-size: 0.92rem !important;
    border: none !important;
}
body.page .btn-navy:hover {
    background: var(--navy-dark) !important;
    color: var(--white) !important;
    text-decoration: none !important;
}


/* ==================================================================
   HERO
   ================================================================== */
body.page .srj-hero {
    position: relative !important;
    min-height: 480px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 100px 20px 80px !important;
    overflow: hidden !important;
    background: none !important;
    margin: 0 !important;
}
body.page .srj-hero__bg {
    position: absolute !important;
    inset: 0 !important;
    background-color: var(--navy) !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
body.page .srj-hero__overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(26, 39, 68, 0.65) !important;
}
body.page .srj-hero__inner {
    position: relative !important;
    z-index: 2 !important;
}
body.page .srj-hero__title {
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    font-style: italic !important;
    color: var(--white) !important;
    margin: 0 !important;
    text-transform: none !important;
    line-height: 1.2 !important;
}
body.page .srj-hero__subtitle {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin-bottom: 2rem !important;
}


/* ==================================================================
   VIDEO PLAYER
   ================================================================== */
body.page .srj-video-section {
    padding: 65px 0 !important;
    background: var(--white) !important;
}
body.page .srj-video-player {
    border-radius: var(--img-radius) !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}


/* ==================================================================
   CONTENT BLOCKS
   ================================================================== */
body.page .srj-content {
    padding: 60px 0 !important;
    background: var(--white) !important;
}

/* Gold checkbox list */
body.page .gold-check-list,
body.page .body-text ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
body.page .gold-check-list li,
body.page .body-text ul li {
    position: relative !important;
    padding: 7px 0 7px 36px !important;
    line-height: 1.7 !important;
    color: var(--text-mid) !important;
}
body.page .gold-check-list li::before,
body.page .body-text ul li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    top: 8px !important;
    width: 22px !important;
    height: 22px !important;
    background: var(--gold) !important;
    color: var(--white) !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 4px !important;
}


/* ==================================================================
   DARK BAND (Other Tax Benefits + CTA)
   ================================================================== */
body.page .srj-dark-band {
    position: relative !important;
    padding: 80px 0 !important;
    text-align: center !important;
    overflow: hidden !important;
    background: none !important;
}
body.page .srj-cta-band {
    padding: 90px 0 !important;
}
body.page .srj-dark-band__bg {
    position: absolute !important;
    inset: 0 !important;
    background-color: var(--navy-dark) !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
body.page .srj-dark-band__overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(17, 28, 48, 0.82) !important;
}
body.page .srj-dark-band__inner {
    position: relative !important;
    z-index: 2 !important;
}
body.page .srj-dark-band__text,
body.page .srj-dark-band__text p {
    color: rgba(255, 255, 255, 0.88) !important;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.85 !important;
}
body.page .srj-dark-band__text a {
    color: #fff !important;
    text-decoration: underline !important;
}


/* ==================================================================
   TAX ADVANTAGES
   ================================================================== */
body.page .srj-tax-adv {
    padding: 65px 0 !important;
    background: var(--white) !important;
}


/* ==================================================================
   REVIEWS
   ================================================================== */
body.page .srj-reviews {
    padding: 50px 0 !important;
    background: var(--white) !important;
}


/* ==================================================================
   SERVICES — 3×2 gold cards with white bordered icon box
   ================================================================== */
body.page .srj-services {
    padding: 60px 0 !important;
    background: var(--off-white) !important;
}
body.page .srj-svc-card {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 22px 28px !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    transition: all 0.2s ease;
    width: 100% !important;
    border: 2px solid var(--gold-border) !important;
}
body.page .srj-svc-card:hover {
    background: var(--gold-border) !important;
    color: var(--white) !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240,165,0,0.3);
}
body.page .srj-svc-card__icon {
    flex-shrink: 0 !important;
    width: 52px !important;
    height: 52px !important;
    background: var(--white) !important;
    border: 2px solid var(--gold-border) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
body.page .srj-svc-card__icon img {
    width: 28px !important;
    height: 28px !important;
    /* Icons are gold/dark outline on white bg — don't invert */
    filter: none !important;
}


/* ==================================================================
   CLIENTS HIGHLIGHT
   ================================================================== */
body.page .srj-clients {
    padding: 60px 0 !important;
    background: var(--off-white) !important;
}
body.page .srj-clients__grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
}
body.page .srj-client-card {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    border-radius: var(--img-radius) !important;
    overflow: hidden !important;
    background: var(--white) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
body.page .srj-client-card__img {
    position: relative !important;
    overflow: hidden !important;
    background: #ddd;
    min-height: 200px;
}
body.page .srj-client-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}
body.page .srj-client-card__img-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 14px 16px !important;
    background: linear-gradient(transparent, rgba(0,0,0,0.7)) !important;
    color: #fff !important;
}
body.page .srj-client-card__img-name {
    display: block !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
}
body.page .srj-client-card__img-label {
    display: block !important;
    font-size: 0.75rem !important;
    opacity: 0.8;
}
body.page .srj-client-card__body {
    padding: 24px 20px !important;
    position: relative !important;
}
body.page .srj-client-card__qm {
    position: absolute !important;
    top: 8px !important;
    right: 16px !important;
    font-size: 3rem !important;
    color: var(--off-white) !important;
    font-family: Georgia, serif !important;
    line-height: 1 !important;
}
body.page .srj-client-card__body h4 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 2px !important;
    color: var(--text) !important;
}
body.page .srj-client-card__body .role {
    color: var(--text-light) !important;
    font-size: 0.85rem !important;
}
body.page .srj-client-card__body h5 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    margin-top: 10px !important;
    color: var(--text) !important;
}
body.page .srj-client-card__body .quote {
    font-size: 0.88rem !important;
    color: var(--text-mid) !important;
    line-height: 1.65 !important;
}


/* ==================================================================
   TEAM MEMBERS
   ================================================================== */
body.page .srj-team {
    padding: 65px 0 !important;
    background: var(--white) !important;
}
body.page .srj-team-photo {
    background: var(--navy) !important;
    border-radius: var(--img-radius) !important;
    overflow: hidden !important;
    box-shadow: 0 6px 24px rgba(26,39,68,0.2) !important;
}
body.page .srj-team-photo img {
    width: 100% !important;
    display: block !important;
}
body.page .srj-team-name {
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    font-style: italic !important;
    color: var(--text) !important;
    margin-bottom: 4px !important;
}
body.page .srj-team-title {
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: var(--text) !important;
    margin-bottom: 4px !important;
}
body.page .srj-team-bio {
    color: var(--text-mid) !important;
    line-height: 1.8 !important;
}
body.page .srj-team-btns {
    display: flex !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    margin-top: 8px !important;
}


/* ==================================================================
   FAQ
   ================================================================== */
body.page .srj-faq {
    padding: 70px 0 !important;
    background: var(--off-white) !important;
}
body.page .srj-faq__label {
    display: block !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: var(--gold) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 8px !important;
}
body.page .srj-faq__item {
    background: var(--white) !important;
    border: 1px solid #e2e5ea !important;
    border-radius: 14px !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
}
body.page .srj-faq__q {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 22px 24px !important;
    background: transparent !important;
    border: none !important;
    color: var(--text) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-align: left !important;
    cursor: pointer;
}
body.page .srj-faq__q:focus {
    outline: none !important;
    box-shadow: none !important;
}
body.page .srj-faq__toggle {
    flex-shrink: 0 !important;
    font-size: 1.5rem !important;
    color: var(--text-light) !important;
    margin-left: 16px !important;
    transition: transform 0.3s ease;
}
body.page .srj-faq__q:not(.collapsed) .srj-faq__toggle {
    transform: rotate(45deg) !important;
}
body.page .srj-faq__a {
    padding: 0 24px 22px !important;
    color: var(--text-mid) !important;
    line-height: 1.8 !important;
}
body.page .srj-faq__a p {
    color: var(--text-mid) !important;
}


/* ==================================================================
   MAP
   ================================================================== */
body.page .srj-map {
    line-height: 0 !important;
}
body.page .srj-map iframe {
    width: 100% !important;
    height: 400px !important;
    border: 0 !important;
}


/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 767px) {
    body.page .srj-hero { min-height: 380px !important; padding: 70px 16px 50px !important; }
    body.page .srj-hero__title { font-size: 2.2rem !important; }
    body.page .srj-hero__subtitle { font-size: 1.15rem !important; }
    body.page .srj-content,
    body.page .srj-video-section,
    body.page .srj-tax-adv { padding: 45px 0 !important; }
    body.page .srj-dark-band { padding: 55px 0 !important; }
    body.page .srj-svc-card { padding: 16px 18px !important; font-size: 0.95rem !important; }
    body.page .srj-svc-card__icon { width: 40px !important; height: 40px !important; }
    body.page .srj-svc-card__icon img { width: 22px !important; height: 22px !important; }
    body.page .srj-team-btns { flex-direction: column !important; }
    body.page .srj-team-btns .btn-gold,
    body.page .srj-team-btns .btn-navy { width: 100% !important; text-align: center !important; }
    body.page .srj-team-photo { max-width: 280px !important; margin: 0 auto !important; }
    body.page .srj-clients__grid { grid-template-columns: 1fr !important; }
    body.page .srj-client-card { grid-template-columns: 1fr !important; }
    body.page .srj-team-name { font-size: 1.6rem !important; }
}
