/* ============================================================================
   Reviews Index (hub) page skin -- CSS VERBATIM from Subash's reviews-page-code.html
   (Drive 'Reviews' folder). Loaded on /reviews/ by includes/reviews_styles.php.
   ALL comp rules scoped under body.galv-reviews so nothing leaks into the Bricks header/footer.
   Generated by seeds/tools/assemble_reviews_index_css_js.py -- do NOT hand-edit; fixes go through
   the comp + re-run. SCOPING: :root->body.galv-reviews; bare body->body.galv-reviews; html/@keyframes
   global; @media inner selectors scoped.
   ============================================================================ */

/* ============================================================
   GALVANIZE REVIEWS HUB - Page CSS
   Sibling of admission-reviews + test-prep-reviews;
   reuses the same design tokens, no new colors/radii invented.
   ============================================================ */
body.galv-reviews *, body.galv-reviews *::before, body.galv-reviews *::after { box-sizing: border-box; }
html, body.galv-reviews { overflow-x: hidden; }
body.galv-reviews {
    --bg-hero: #13217c;
    --bg-section: #e6ebff;
    --bg-banner-blue: #3b5bff;
    --color-title: #3b5bff;
    --color-cta: #cc00cc;
    --text-primary: #333;
    --text-white: #fffdfe;
    --font-main: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container: 1280px;
}
html { scroll-behavior: smooth; }
body.galv-reviews { margin: 0; font-family: var(--font-body); color: var(--text-primary); line-height: 1.6; }
body.galv-reviews .container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ============ SECTION 01 - HERO ============ */
body.galv-reviews .hero-section {
    background: var(--bg-hero); color: var(--text-white);
    padding: 60px 0 60px; position: relative; overflow: hidden;
    text-align: center;
}
body.galv-reviews .hero-section .hero-eyebrow {
    font-family: var(--font-body); font-weight: 600;
    font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
    color: #fffdfe; margin: 0 0 14px;
}
body.galv-reviews .hero-section h1 {
    font-family: var(--font-main); font-weight: 600;
    font-size: 42px; line-height: 1.2; margin: 0 0 18px;
    max-width: 920px; margin-left: auto; margin-right: auto;
}
body.galv-reviews .hero-section h1 .accent { color: #fffdfe; }
body.galv-reviews .hero-section p.hero-subhead {
    font-family: var(--font-main); font-weight: 400;
    font-size: 20px; line-height: 30px;
    margin: 0 auto 32px; max-width: 720px;
}
body.galv-reviews .hero-cta-row {
    display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
body.galv-reviews .btn-magenta {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--color-cta); color: var(--text-white); border: 0;
    height: 48px; padding: 0 22px; border-radius: 10px;
    font-family: var(--font-body); font-size: 18px; font-weight: 600;
    cursor: pointer; transition: background .2s ease, transform .2s ease;
    text-decoration: none;
}
body.galv-reviews .btn-magenta:hover { background: #b300b3; transform: translateY(-1px); }
body.galv-reviews .btn-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: var(--text-white);
    border: 2px solid rgba(255,255,255,.6);
    height: 48px; padding: 0 22px; border-radius: 10px;
    font-family: var(--font-body); font-size: 18px; font-weight: 600;
    cursor: pointer; transition: background .2s ease, border-color .2s ease;
    text-decoration: none;
}
body.galv-reviews .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: #fffdfe; }

/* ============ SECTION 02 - TRUST STRIP ============ */
body.galv-reviews .trust-strip-section {
    background: linear-gradient(
        to bottom,
        var(--bg-hero) 0,
        var(--bg-hero) 50%,
        var(--bg-section) 50%,
        var(--bg-section) 100%
    );
    position: relative; z-index: 5;
    overflow-x: clip;
}
body.galv-reviews .trust-card {
    max-width: 1062px; width: calc(100% - 40px);
    margin: 0 auto;
    background: #fffdfe; border-radius: 20px;
    padding: 24px 30px; box-shadow: 0 15px 40px rgba(0,0,0,.15);
}
body.galv-reviews .trust-card h2 {
    font-family: var(--font-main); font-weight: 600; color: var(--color-title);
    font-size: 22px; line-height: 1.35; text-align: center; margin: 0 0 22px;
}
body.galv-reviews .trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
body.galv-reviews .trust-item {
    display: flex; align-items: center; gap: 14px;
    background: var(--bg-section);
    border: 1px solid #c7d2ff;
    border-radius: 14px;
    padding: 14px 16px;
}
body.galv-reviews .trust-item .trust-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: #fffdfe;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
body.galv-reviews .trust-icon.icon-quora { color: #b92b27; }
body.galv-reviews .trust-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
body.galv-reviews .trust-value {
    font-family: var(--font-main); font-weight: 700;
    font-size: 18px; color: var(--text-primary);
}
body.galv-reviews .trust-label {
    font-family: var(--font-body); font-size: 12px; font-weight: 500;
    color: var(--text-primary); opacity: .7;
}

/* Shared section eyebrow + headline pattern */
body.galv-reviews .section-eyebrow {
    text-align: center; color: var(--color-cta);
    font-family: var(--font-body); font-weight: 600; font-size: 18px;
    letter-spacing: .3px; margin: 0 0 8px;
}
body.galv-reviews .section-headline {
    font-family: var(--font-main); font-weight: 600; font-size: 36px; line-height: 1.3;
    color: var(--color-title); text-align: center;
    max-width: 1024px; margin: 0 auto;
}
body.galv-reviews .section-headline .accent { color: var(--color-cta); }
body.galv-reviews .section-subhead {
    font-family: var(--font-body); font-size: 18px; line-height: 1.6;
    color: var(--text-primary); text-align: center;
    max-width: 760px; margin: 14px auto 0;
}

/* ============ SECTION 03 - ROUTE CARDS (the hub centerpiece) ============ */
body.galv-reviews .routes-section {
    background: var(--bg-section);
    padding: 60px 0 60px;
}
body.galv-reviews .routes-section .container > .section-eyebrow { margin-top: 0; }
body.galv-reviews .routes-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
    max-width: 1100px; margin: 40px auto 0;
}
body.galv-reviews .route-card {
    background: #fffdfe; border-radius: 20px;
    padding: 36px 32px 32px;
    box-shadow: 0 12px 36px rgba(19,33,124,.10);
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    border: 2px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
body.galv-reviews .route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(19,33,124,.18);
    border-color: #a0aeff;
}
body.galv-reviews .route-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: var(--bg-section);
    color: var(--color-title);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 0 18px;
}
body.galv-reviews .route-card.is-prep .route-icon { color: var(--color-cta); }
body.galv-reviews .route-card h2 {
    font-family: var(--font-main); font-weight: 600;
    font-size: 28px; line-height: 1.25; color: var(--color-title);
    margin: 0 0 12px;
}
body.galv-reviews .route-card.is-prep h2 { color: var(--color-cta); }
body.galv-reviews .route-card p.route-lede {
    font-family: var(--font-body); font-size: 16px; line-height: 1.55;
    color: var(--text-primary); margin: 0 0 20px;
}
body.galv-reviews .route-bullets { list-style: none; padding: 0; margin: 0 0 28px; }
body.galv-reviews .route-bullet {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 16px; line-height: 1.5; color: var(--text-primary);
    margin-bottom: 12px;
}
body.galv-reviews .route-bullet::before {
    content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: #6ee7b7; flex-shrink: 0; font-size: 16px; margin-top: 3px;
}
body.galv-reviews .route-meta {
    display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px;
}
body.galv-reviews .route-meta-pill {
    display: inline-flex; align-items: center;
    background: var(--bg-section);
    color: var(--color-title);
    font-family: var(--font-body); font-size: 12px; font-weight: 600;
    letter-spacing: .3px; text-transform: uppercase;
    padding: 5px 10px; border-radius: 999px;
}
body.galv-reviews .route-cta {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    background: var(--color-title); color: #fffdfe;
    border: 0; height: 48px; padding: 0 24px; border-radius: 10px;
    font-family: var(--font-body); font-size: 16px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: background .2s ease, transform .2s ease;
    margin-top: auto; align-self: flex-start;
}
body.galv-reviews .route-card.is-prep .route-cta { background: var(--color-cta); }
body.galv-reviews .route-cta:hover { transform: translateX(4px); }
body.galv-reviews .route-cta i { font-size: 14px; }

/* ============ SECTION 04 - FEATURED TESTIMONIALS ============ */
body.galv-reviews .featured-section {
    background: #fffdfe;
    padding: 60px 0 60px;
}
body.galv-reviews .featured-section .featured-swiper-wrap {
    max-width: 1100px; margin: 36px auto 0; padding: 0 4px;
}
body.galv-reviews .featured-Slider { overflow: hidden; padding-bottom: 40px; }
body.galv-reviews .featured-Slider .swiper-slide { height: auto; }
body.galv-reviews .featured-Slider .swiper-wrapper { align-items: stretch; }
body.galv-reviews .featured-card {
    position: relative;
    background: var(--bg-section); border-radius: 16px;
    padding: 24px 22px;
    height: 100%;
    display: flex; flex-direction: column; gap: 14px;
    border: 1px solid #d8defc;
}
body.galv-reviews .featured-badge {
    position: absolute; top: 14px; right: 14px;
    display: inline-flex; align-items: center;
    padding: 4px 12px; border-radius: 999px;
    font-family: var(--font-body); font-size: 12px; font-weight: 600;
    letter-spacing: .3px; color: #fffdfe;
    background: var(--color-cta);
}
body.galv-reviews .featured-badge.is-prep { background: var(--color-title); }
body.galv-reviews .featured-head { display: flex; align-items: center; gap: 14px; padding-right: 80px; }
body.galv-reviews .featured-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    background: #fffdfe;
    border: 3px solid #fffdfe;
    box-shadow: 0 4px 12px rgba(19,33,124,.12);
}
body.galv-reviews .featured-name {
    font-family: var(--font-body); font-weight: 600; font-size: 18px;
    color: var(--text-primary); margin: 0 0 2px;
}
body.galv-reviews .featured-meta {
    font-family: var(--font-body); font-size: 14px; color: var(--color-cta);
    margin: 0;
}
body.galv-reviews .featured-quote {
    font-family: var(--font-body); font-size: 16px; line-height: 1.55;
    color: var(--text-primary); margin: 0;
    flex-grow: 1;
}
body.galv-reviews .featured-readmore {
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    color: var(--color-title); text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 4px;
}
body.galv-reviews .featured-readmore:hover { text-decoration: underline; }

body.galv-reviews .featured-Slider .swiper-pagination {
    /* Subash v2 2026-06-21: text-align:center was inert (Swiper width/defaults left-aligned the
       bullets). Flex-center reliably centers the dots under the slider. */
    position: static; margin-top: 18px; display: flex; justify-content: center;
}
body.galv-reviews .featured-Slider .swiper-pagination-bullet {
    width: 8px; height: 8px; background: rgba(19,33,124,.25); opacity: 1;
    transition: width .2s ease, background .2s ease;
}
body.galv-reviews .featured-Slider .swiper-pagination-bullet-active {
    background: var(--color-title); width: 28px; border-radius: 4px;
}

/* ============ SECTION 05 - WHY GALVANIZE TILES ============ */
body.galv-reviews .why-section {
    background: var(--bg-section);
    padding: 60px 0 60px;
}
body.galv-reviews .why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
    max-width: 1100px; margin: 40px auto 0;
}
body.galv-reviews .why-tile {
    background: #fffdfe; border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid #d8defc;
}
body.galv-reviews .why-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--bg-section);
    color: var(--color-title);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 14px;
}
body.galv-reviews .why-tile h3 {
    font-family: var(--font-main); font-weight: 600;
    font-size: 18px; line-height: 1.3; color: var(--text-primary);
    margin: 0 0 8px;
}
body.galv-reviews .why-tile p {
    font-family: var(--font-body); font-size: 14px; line-height: 1.55;
    color: var(--text-primary); margin: 0; opacity: .85;
}

/* ============ SECTION 06 - FORM ============ */
body.galv-reviews .form-section { background: var(--bg-hero); padding: 60px 0 60px; overflow: hidden; }
body.galv-reviews .form-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px;
    max-width: 1250px; margin: 0 auto; align-items: stretch;
}
body.galv-reviews .form-illustration {
    width: 100%; height: auto; max-width: 625px;
    display: block; margin: 0 auto; border-radius: 16px;
}
body.galv-reviews .form-card {
    background: var(--bg-hero); border-radius: 20px;
    padding: 0; overflow: hidden; min-width: 0;
}
body.galv-reviews .form-card iframe {
    width: 100%; height: 600px; border: 0; display: block;
}

/* ============ SECTION 07 - FAQ (USA destination pattern: image-left + numbered navy items) ============ */
body.galv-reviews .faq-section {
    background: #fffdfe;
    padding: 60px 0;
}
body.galv-reviews .faq-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    align-items: start;
}
body.galv-reviews .faq-image-col img {
    width: 100%; max-width: 420px; height: auto;
    border-radius: 20px; display: block;
}
body.galv-reviews .faq-container {
    max-width: 100%; margin: 0; padding: 0;
}
body.galv-reviews .faq-title {
    font-family: var(--font-main);
    font-size: 36px; line-height: 1.3; font-weight: 600;
    color: var(--color-title); margin: 0 0 30px;
}
body.galv-reviews .faq-item {
    background: var(--color-title);
    margin-bottom: 18px; overflow: hidden;
    border-radius: 8px;
}
body.galv-reviews .faq-question {
    padding: 20px 50px 20px 20px;
    font-size: 18px; line-height: 1.5; font-weight: 400;
    color: var(--text-white); cursor: pointer;
    position: relative; transition: all 0.3s ease;
    user-select: none;
    font-family: var(--font-body);
}
body.galv-reviews .faq-question::after {
    content: "›";
    position: absolute; right: 20px; top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 26px; color: #fffdfe; font-weight: 400;
    transition: transform 0.3s ease; line-height: 1;
}
body.galv-reviews .faq-question.active::after {
    transform: translateY(-50%) rotate(90deg);
}
body.galv-reviews .faq-answer {
    background-color: var(--bg-section);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    font-size: 16px; line-height: 1.6; font-weight: 400;
    color: var(--color-title);
    font-family: var(--font-body);
}
body.galv-reviews .faq-answer.active {
    max-height: 800px; padding: 20px;
}
body.galv-reviews .faq-answer a { color: var(--color-cta); text-decoration: underline; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1023px){
    body.galv-reviews .trust-grid { grid-template-columns: repeat(2, 1fr); }
    body.galv-reviews .routes-grid { grid-template-columns: 1fr; max-width: 600px; }
    body.galv-reviews .why-grid { grid-template-columns: repeat(2, 1fr); }
    body.galv-reviews .form-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 991px){
    body.galv-reviews .hero-section h1 { font-size: 38px; line-height: 1.2; }
    body.galv-reviews .hero-section p.hero-subhead { font-size: 18px; line-height: 28px; }
    body.galv-reviews .section-headline { font-size: 30px; }
}
@media (max-width: 767px){
    body.galv-reviews .hero-section, body.galv-reviews .routes-section, body.galv-reviews .featured-section, body.galv-reviews .why-section, body.galv-reviews .form-section, body.galv-reviews .faq-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    body.galv-reviews .hero-section h1 { font-size: 30px; }
    body.galv-reviews .hero-section p.hero-subhead { font-size: 16px; line-height: 26px; }
    body.galv-reviews .section-headline { font-size: 26px; }
    body.galv-reviews .hero-cta-row { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
    body.galv-reviews .hero-cta-row .btn-magenta, body.galv-reviews .hero-cta-row .btn-ghost { width: 100%; }
    body.galv-reviews .trust-card { padding: 20px 18px; }
    body.galv-reviews .trust-grid { gap: 12px; }
    body.galv-reviews .trust-item { padding: 12px 14px; gap: 12px; }
    body.galv-reviews .route-card { padding: 30px 24px 28px; }
    body.galv-reviews .route-card h2 { font-size: 24px; }
    body.galv-reviews .featured-Slider { padding-bottom: 0; }
    body.galv-reviews .featured-head { padding-right: 0; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
    body.galv-reviews .featured-badge { position: static; align-self: center; }
    body.galv-reviews .form-card iframe { height: 580px; }
    body.galv-reviews .faq-layout { grid-template-columns: 1fr; }
    body.galv-reviews .faq-image-col { display: none; }
    body.galv-reviews .faq-title { font-size: 22px; }
    body.galv-reviews .faq-question { font-size: 16px; }
    body.galv-reviews .faq-answer { font-size: 14px; }
}
@media (max-width: 478px){
    body.galv-reviews .why-grid { grid-template-columns: 1fr; }
    body.galv-reviews .trust-grid { grid-template-columns: 1fr; }
    body.galv-reviews .route-card { padding: 26px 20px 24px; }
    body.galv-reviews .route-card h2 { font-size: 22px; }
}

/* ============================================================================
   Bricks integration reset (galv reviews-index v0.1) -- neutralize Bricks' container
   max-width/flex/padding so the comp sections own the full-width layout. Comp body
   font/background already carried by the scoped body.galv-reviews{} rule above.
   ============================================================================ */
body.galv-reviews #brx-content.brxe-container,
body.galv-reviews .brxe-container,
body.galv-reviews .brxe-text {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: block !important;
    gap: 0 !important;
    align-items: stretch !important;
}
body.galv-reviews #brx-content.brxe-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
