﻿/* =========================================
   OFFERS PAGE  —  offers.css
   Matches screenshot: hero + 2-col cards +
   FREE badge + yellow button + teal CTA bar
   ========================================= */

/* ── Variables ── */
:root {
    --op-cyan:        #29C3D4;
    --op-cyan-dark:   #1FA8B8;
    --op-yellow:      #F0A500;
    --op-yellow-dark: #D08C00;
    --op-dark:        #1a1a1a;
    --op-text:        #444;
    --op-border:      #e5e9f0;
    --op-white:       #ffffff;
    --op-bg:          #f4f4f4;
    --op-shadow:      0 4px 20px rgba(0,0,0,.08);
}

/* ── Page wrapper ── */
.op-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* offers-page.css */

/* offers-page.css */

/* Hero Section */
.op-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.op-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.op-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.op-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.op-hero-underline {
    width: 80px;
    height: 4px;
    background: #f4b942;
    margin: 0 auto;
}

/* Offers Section */
.op-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

/* Offers Grid */
.op-grid {
    display: flex;
    flex-direction: column;
}

/* Offer Card - IMAGE LEFT, TEXT RIGHT */
.op-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 0;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

.op-card:last-child {
    border-bottom: none;
}

/* Card Image - LEFT */
.op-card-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.op-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Card Body - RIGHT */
.op-card-body {
    padding: 20px;
}

.op-card-title {
    font-size: 25px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px;
}

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

/* Features List */
.op-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.op-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #000000;
    margin-bottom: 8px;
}

.op-features li svg {
    color: #6b2d9e;
    flex-shrink: 0;
}

/* Discount Text */
.op-discount-text {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Call Button */
.op-call-btn {
    display: inline-block;
    background: #F9AF40;
    color: #000000;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.op-call-btn:hover {
    background: transparent;
   border: 2px solid #F9AF40;
    
}

/* Responsive Design */
@media (max-width: 992px) {
    .op-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .op-hero {
        height: 250px;
    }
    
    .op-hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .op-section {
        padding: 60px 0;
    }
    
    .op-card {
        padding: 40px 0;
    }
    
    .op-card-title {
        font-size: 22px;
    }
    
    .op-hero {
        height: 200px;
    }
    
    .op-hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .op-card-title {
        font-size: 20px;
    }
    
    .op-card-desc {
        font-size: 14px;
    }
    
    .op-features li {
        font-size: 13px;
    }
    
    .op-call-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .op-hero-content h1 {
        font-size: 28px;
    }
}