/* ====================================
   RESPONSIVE APP CONTENT STYLES
   PRISM Insurance Brokers Limited
   ==================================== */

#app-content {
    min-height: 100vh;
}

/* ── Page Title (public-facing pages) ── */
.page-title {
    font-family: var(--font-family-serif), serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color); /* Navy */
    margin-bottom: 1rem;
}

/* Italic accent word (matches PRISM hero h1 <em> pattern) */
.page-title em,
h1 em, h2 em {
    font-style: normal;
    color: var(--accent-color); /* Gold emphasis */
}

/* ── Page Header Banner ── */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #153370 100%);
    padding: 100px 0 70px;
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-family: var(--font-family-serif), serif;
}

.page-header p {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Section helpers ── */
.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary-color); /* PRISM blue */
}

.section-label-gold {
    color: var(--accent-color);
}

/* Gold divider bar */
.divider {
    width: 44px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* -------------------------------------------- Hero ------------------------------------------- */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #153370 100%);
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 164, 80, .15);
    border: 1px solid rgba(200, 164, 80, .35);
    color: var(--accent-color);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .3rem .9rem;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #153370 100%);
    padding: 70px 0 70px;
}

.page-hero h1 em {
    font-style: normal;
    color: var(--accent-color);
}

/* --------------------------------- Why row (grid table-style) ------------------------------------ */
.why-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.why-cell {
    padding: 2rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-cell:nth-child(2n) {
    border-right: none;
}

.why-cell:nth-last-child(-n+2) {
    border-bottom: none;
}

.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(26, 79, 214, .1);
    line-height: 1;
}

@media (max-width: 767px) {
    .why-row {
        grid-template-columns: 1fr;
    }

    .why-cell {
        border-right: none;
    }

    .why-cell:last-child {
        border-bottom: none;
    }

    .srv-big-img {
        min-height: 220px;
    }
}


/* ----------------- CEO quote ------------------------------- */
.ceo-section {
    background: #0d1f42;
}

.ceo-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
}

/* --------------------------------------------- Testimonial ---------------------------------- */
.testi-card {
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --------------------- Gold CTA button in nav ----------------------------- */
.btn-nav-cta {
    background: var(--accent-color);
    color: #0d1f42 !important;
    font-weight: 700 !important;
    border-radius: 3px;
    padding: .4rem 1.2rem !important;
}

.btn-nav-cta:hover {
    background: #e0b55c;
}

/* ── FAQ accordion ── */
.faq-btn {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: .95rem;
}

/* ------------------------------ Service big card (services page) --------------------------------- */
.srv-big {
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    scroll-margin-top: 90px;
}

.srv-big-img {
    min-height: 320px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.srv-num {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .15);
    line-height: 1;
}




