﻿/* =========================================
   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 15px;
    box-sizing: border-box;
}


/* =========================================
   HERO BANNER
   ========================================= */
.page-title img {
    width: 100%;
    background-position: center;
    display: block;
    /* height: 350px; */
}

@media (max-width: 767px) {
    .page-title img {
        height: 200px;
        object-fit: cover;
        object-position: center;
    }
}

/* =========================================
   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: #1b3a5c;
    margin: 0 0 20px;
    line-height: 1.2;
}

.op-card-desc {
    font-size: 15px;
    color: var(--op-text);
    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: 700;
    color: #111111;
    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: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 50px;
    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;
    }
}