@charset "utf-8";
/* ============================================================
   AMERICA'S 250TH BIRTHDAY PROMOTION — Patriotic Theme
   Aerial Roofing & Exterior
   ------------------------------------------------------------
   Re-skins the existing .early-bird-section / .eb-* promo
   components in a red-white-blue palette. Apply by adding the
   class "patriotic-promo" to the <section class="early-bird-section">.
   Load AFTER sections.css so these rules win.
   Also styles the hero two-button row (.hero-buttons) and the
   standalone promotions page (.promo-page-*).
   ============================================================ */

/* ---- Promo section background (navy → red gradient) ---- */
.patriotic-promo {
    background: linear-gradient(160deg, #0a1a3f 0%, #0b1730 45%, #3a0d14 100%);
}

.patriotic-promo::before {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(178, 34, 52, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(60, 90, 180, 0.16) 0%, transparent 55%);
}

/* ---- Eyebrow label (red) ---- */
.patriotic-promo .promo-eyebrow {
    background: linear-gradient(135deg, #b22234, #8c1622);
}

/* ---- Card accent borders: red, blue, red ---- */
.patriotic-promo .roofing-offer  { border-top-color: #b22234; }
.patriotic-promo .exterior-offer { border-top-color: #2a4b9b; }
.patriotic-promo .windows-offer  { border-top-color: #b22234; }

/* ---- Discount badges (red instead of green) ---- */
.patriotic-promo .eb-badge-large {
    background: linear-gradient(135deg, #b22234, #8c1622);
}

/* The "5th FREE" badge keeps a gold/star feel */
.patriotic-promo .eb-badge-free {
    background: linear-gradient(135deg, #f2d24b, #d9a400);
    color: #1a2f6b;
}

/* ---- Offer heading color (navy) ---- */
.patriotic-promo .eb-offer-content h4 {
    color: #1a2f6b;
}

/* ---- Highlight bars (navy-tinted) ---- */
.patriotic-promo .eb-highlight {
    background: linear-gradient(135deg, #eef2fb, #dde6f7);
    border-left-color: #2a4b9b;
    color: #1a2f6b;
}
.patriotic-promo .eb-highlight i {
    color: #b22234;
}

/* Keep the "free" highlight gold for the windows card */
.patriotic-promo .eb-highlight-green {
    background: linear-gradient(135deg, #fffbea, #fff3c2);
    border-left-color: #d9a400;
    color: #7a5800;
}
.patriotic-promo .eb-highlight-green i {
    color: #d9a400;
}

/* ---- List check icons (blue) ---- */
.patriotic-promo .eb-offer-content .offer-benefits li i {
    color: #2a4b9b;
}

/* ---- Urgency pill (red border) ---- */
.patriotic-promo .eb-urgency {
    border-color: rgba(178, 34, 52, 0.55);
    color: #f1c9cf;
}
.patriotic-promo .eb-urgency i {
    color: #e0566a;
}

/* ============================================================
   HERO — two-button row
   ============================================================ */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-buttons .btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    font-weight: 600;
}

.hero-buttons .btn-outline-light:hover,
.hero-buttons .btn-outline-light:focus {
    background: #ffffff;
    color: var(--dark, #1a1e21);
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   STANDALONE PROMOTIONS PAGE (promotions.html)
   ============================================================ */
.promo-page-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(160deg, #0a1a3f 0%, #0b1730 45%, #3a0d14 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(178, 34, 52, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(60, 90, 180, 0.18) 0%, transparent 55%);
    pointer-events: none;
}

.promo-page-hero > .container {
    position: relative;
    z-index: 2;
}

.promo-page-hero .promo-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, #b22234, #8c1622);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.promo-page-hero h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.promo-page-hero .promo-hero-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 720px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
}

.promo-page-hero .eb-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(178, 34, 52, 0.55);
    color: #f1c9cf;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
}
.promo-page-hero .eb-urgency i { color: #e0566a; }

/* Offers band on the promo page */
.promo-page-offers {
    padding: var(--section-padding, 5rem) 0;
    background-color: #f4f6fa;
}

/* Patriotic card accents on the light offers band (promotions.html) */
.promo-page-offers .roofing-offer  { border-top-color: #b22234; }
.promo-page-offers .exterior-offer { border-top-color: #2a4b9b; }
.promo-page-offers .windows-offer  { border-top-color: #b22234; }
.promo-page-offers .eb-badge-large {
    background: linear-gradient(135deg, #b22234, #8c1622);
}
.promo-page-offers .eb-badge-free {
    background: linear-gradient(135deg, #f2d24b, #d9a400);
    color: #1a2f6b;
}
.promo-page-offers .eb-offer-content h4 { color: #1a2f6b; }
.promo-page-offers .eb-highlight {
    background: linear-gradient(135deg, #eef2fb, #dde6f7);
    border-left-color: #2a4b9b;
    color: #1a2f6b;
}
.promo-page-offers .eb-highlight i { color: #b22234; }
.promo-page-offers .eb-highlight-green {
    background: linear-gradient(135deg, #fffbea, #fff3c2);
    border-left-color: #d9a400;
    color: #7a5800;
}
.promo-page-offers .eb-highlight-green i { color: #d9a400; }
.promo-page-offers .offer-benefits li i { color: #2a4b9b; }

/* Fine print band */
.promo-fineprint-section {
    padding: 3rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e6e6e6;
}

.promo-fineprint-section h3 {
    color: var(--dark, #1a1e21);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.promo-fineprint-section ul {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    padding-left: 1.25rem;
    max-width: 900px;
}

.promo-fineprint-section ul li { margin-bottom: 0.5rem; }

/* Closing CTA band */
.promo-cta-band {
    padding: 4rem 0;
    background: linear-gradient(135deg, #b22234, #8c1622);
    color: #ffffff;
    text-align: center;
}

.promo-cta-band h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.promo-cta-band p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
}

.promo-cta-band .btn-light {
    background: #ffffff;
    color: #b22234;
    font-weight: 700;
    padding: 0.85rem 2rem;
}
.promo-cta-band .btn-light:hover { background: #f1f1f1; color: #8c1622; }

.promo-cta-band .btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    padding: 0.85rem 2rem;
}
.promo-cta-band .btn-outline-light:hover { background: #ffffff; color: #b22234; }

@media (max-width: 768px) {
    .promo-page-hero h1 { font-size: 2.1rem; }
    .promo-page-hero { padding: 8rem 0 3rem; }
}
