﻿/* =========================================
   OFFERS PAGE  —  offers.css
   ========================================= */

:root {
    --op-navy: #1e1b4f;
    --op-navy-light: #262262;
    --op-orange: #f25b2a;
    --op-orange-dark: #d94c1f;
    --op-dark: #1a1a1a;
    --op-text: #444444;
    --op-border: #e5e9f0;
    --op-white: #ffffff;
    --op-bg: #f4f4f4;
}

.op-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


/* =========================================
   HERO BANNER
   ========================================= */
/* =========================================
   HERO BANNER — with title + breadcrumb overlay
   ========================================= */
.op-hero {
    position: relative;
}

.op-hero img {
    width: 100%;
    display: block;
}

.op-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.op-hero-title {
    /* background: rgba(60, 60, 60, 0.75); */
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    padding: 10px 30px;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.op-breadcrumb {
    /* background: rgba(60, 60, 60, 0.75); */
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.op-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.op-breadcrumb-sep {
    margin: 0 6px;
    opacity: 0.7;
}

@media (max-width: 767px) {
    .op-hero img {
        height: 220px;
        object-fit: cover;
        object-position: center;
    }

    .op-hero-title {
        font-size: 30px;
    }
}

@media (max-width: 450px) {
    .op-hero img {
        height: 140px;
    }
}

/* =========================================
   OFFERS SECTION
   ========================================= */
.op-section {
    background: var(--op-bg);
    padding: 50px 0 60px;
}

.op-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ── Card ── */
.op-card {
    background: var(--op-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--op-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* ── Left Column ── */
.op-card-left {
    display: flex;
    flex-direction: column;
}

.op-card-img-wrap {
    position: relative;
    flex: 1;
    /* min-height: 260px; */
    background: #eeeeee;
}

.op-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* Orange badge */
.op-card-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--op-orange);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Navy bottom bar */
.op-card-bar {
    background: var(--op-navy);
    color: #ffffff;
    text-align: center;
    padding: 14px 10px 10px;
}

.op-bar-title {
    display: block;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.op-bar-small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}

/* ── Right Column ── */
.op-card-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.op-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
    line-height: 1.2;
}

.op-card-desc {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    margin: 0 0 20px;
}

/* Checkmark list */
.op-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.op-card-features li {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    position: relative;
    padding-left: 22px;
}

.op-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: #111111;
    font-weight: 700;
    font-size: 16px;
}

/* Promo text */
.op-card-promo {
    font-size: 14px;
    font-weight: 900;
    color: #CD1E2D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px;
}

/* CTA Button */
.op-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    /* background: var(--op-orange); */
    color: #2B3990 ;
    font-size: 24px;
    font-weight: 700;
    padding: 14px 0px;
    /* border-radius: 26px; */
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.op-card-btn:hover {
    /* background: #262262; */
    transform: translateY(-2px);
    /* color: #ffffff; */
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .op-card {
        grid-template-columns: 1fr;
    }

    .op-card-img-wrap {
        /* min-height: 200px; */
    }

    .op-card-right {
        padding: 28px;
    }

    .op-card-title {
        font-size: 22px;
    }

    .op-card-badge {
        font-size: 16px;
        padding: 8px 14px;
    }

    .op-bar-title {
        font-size: 18px;
    }
}


.bi-header-banner {
    background-color: #FFE5E7;
    border-bottom: 2px solid #CD1E2D;
    border-top: 2px solid #CD1E2D;
    padding: 25px 0;
}

.bi-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bi-page-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
}

.bi-breadcrumb {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

.bi-breadcrumb a {
    color: #6530AD;
    text-decoration: none;
    transition: color 0.3s;
}

.bi-breadcrumb a:hover {
    /* color: var(--primary); */
}

.bi-breadcrumb span {
    color: #000000;
}