/* ==========================================================================
   Flyer Theme - trial variant styles
   Loaded alongside styles.css by index-flyer.html. Contains only the
   additions needed for the flyer-style intro, service cards, and the
   "Who We Help" tag strip.
   ========================================================================== */

/* Flyer-style brand block in the header (logo + stacked name/slogan) */
.flyer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flyer-brand-logo {
    width: 70px;
    height: auto;
}

.flyer-brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}

.flyer-brand-name span {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    text-transform: none;
    color: #fff;
    border-top: 2px solid var(--accent-action);
    padding-top: 2px;
    margin-top: 2px;
    width: 100%;
}

@media (max-width: 860px) {
    .flyer-brand-logo {
        width: 54px;
    }

    .flyer-brand-name {
        font-size: 1.15rem;
    }

    .flyer-brand-name span {
        font-size: 0.9rem;
    }
}

/* Header brand — replicates flyer logo treatment */
.flyer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.flyer-brand-logo {
    width: 52px;
    height: auto;
    flex-shrink: 0;
}

.flyer-brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.flyer-brand-name span {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.5px;
    color: #fff;
    border-top: 2px solid var(--accent-action);
    padding-top: 3px;
    margin-top: 4px;
}

/* Mobile brand adjustments */
@media (max-width: 768px) {
    .flyer-brand {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .flyer-brand-logo {
        width: 44px;
    }

    .flyer-brand-name {
        font-size: 1.1rem;
        text-align: center;
    }
}

/* Intro band, sits directly under the hero */
.flyer-intro {
    background: var(--dark-navy);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid var(--accent-action);
    border-bottom: 2px solid var(--accent-action);
}

.flyer-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
}

.flyer-intro strong {
    color: var(--accent-action);
    font-weight: 600;
}

/* Flyer-style services: 2x2 card grid */
.flyer-services {
    background: #eef1f4;
    padding: 70px 20px;
}

.flyer-services .section-header {
    text-align: center;
    margin-bottom: 45px;
}

.flyer-services .section-header h2 {
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    color: var(--dark-navy);
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: inline-block;
}

.flyer-services .section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-action);
    margin: 12px auto 0;
}

.flyer-services .section-header p {
    color: #57606f;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.flyer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.flyer-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--accent-action);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flyer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.flyer-card-img {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-color: #f4f4f4;
}

.flyer-card-body {
    padding: 28px 30px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.flyer-card-body h3 {
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    color: var(--dark-navy);
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.flyer-card-body h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-action);
    margin-top: 10px;
    margin-bottom: 16px;
}

.flyer-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flyer-card-body li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #57606f;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45;
}

.flyer-card-body li::before {
    content: '\2714';
    color: var(--accent-action);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.05rem;
}

/* "Who We Help" horizontal tag strip (flyer style) */
.who-we-help {
    background: #fff;
    padding: 35px 20px;
    text-align: center;
    border-top: 2px solid var(--accent-action);
    border-bottom: 2px solid var(--accent-action);
}

.who-we-help h3 {
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    color: var(--dark-navy);
    font-size: 1.15rem;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.who-we-help-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.who-we-help-tag {
    background: var(--dark-navy);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Contact section tweaks — equal-width columns so labels and values line up */
.flyer-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.flyer-contact-lede {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #57606f;
}

.flyer-contact .contact-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.flyer-contact .contact-item {
    text-align: center;
}

@media (max-width: 720px) {
    .flyer-contact .contact-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Responsive */
@media (max-width: 860px) {
    .flyer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .flyer-services {
        padding: 50px 16px;
    }

    .flyer-services .section-header h2 {
        font-size: 2rem;
    }

    .flyer-intro p {
        font-size: 1.1rem;
    }

    .flyer-card-img {
        height: 220px;
    }
}
