/**
 * Offerings Page Styles
 * My Best Windows & Glass Child Theme
 */

/* ========================================
   OFFERINGS HERO
   ======================================== */
.bwg-offerings-hero {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.bwg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 61, 122, 0.85) 100%);
    z-index: 1;
}

.bwg-offerings-hero-content {
    position: relative;
    z-index: 2;
}

.bwg-offerings-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bwg-offerings-subtitle {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* ========================================
   OFFERINGS OVERVIEW
   ======================================== */
.bwg-offerings-overview {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.bwg-offerings-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bwg-offerings-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--bwg-primary);
    margin-bottom: 25px;
}

.bwg-offerings-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--bwg-text);
}

/* ========================================
   OFFERINGS GRID
   ======================================== */
.bwg-offerings-grid-section {
    padding: 80px 0;
    background: var(--bwg-light-gray);
    position: relative;
}

.bwg-offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.bwg-offering-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bwg-offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
}

.bwg-offering-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bwg-light-gray);
}

.bwg-offering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bwg-offering-card:hover .bwg-offering-image img {
    transform: scale(1.1);
}

.bwg-offering-icon {
    font-size: 80px;
    text-align: center;
    padding: 40px 20px;
    background: var(--bwg-light-gray);
}

.bwg-offering-content {
    padding: 35px 30px;
}

.bwg-offering-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--bwg-primary);
    margin-bottom: 15px;
}

.bwg-offering-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--bwg-text);
    margin: 0;
}

/* ========================================
   OFFERINGS FEATURES
   ======================================== */
.bwg-offerings-features {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.bwg-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.bwg-features-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--bwg-primary);
    margin-bottom: 15px;
}

.bwg-features-header p {
    font-size: 20px;
    color: var(--bwg-text);
}

.bwg-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.bwg-feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.bwg-feature-icon {
    font-size: 48px;
    flex-shrink: 0;
    line-height: 1;
}

.bwg-feature-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--bwg-primary);
    margin-bottom: 10px;
}

.bwg-feature-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--bwg-text);
    margin: 0;
}

/* ========================================
   OFFERINGS CTA
   ======================================== */
.bwg-offerings-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bwg-primary) 0%, var(--bwg-secondary) 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
}

.bwg-offerings-cta .bwg-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.bwg-offerings-cta .bwg-cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.bwg-offerings-cta .bwg-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.bwg-offerings-cta .bwg-button-primary {
    background: #ffffff;
    color: var(--bwg-primary);
}

.bwg-offerings-cta .bwg-button-primary:hover {
    background: var(--bwg-light-gray);
}

.bwg-offerings-cta .bwg-button-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.bwg-offerings-cta .bwg-button-secondary:hover {
    background: #ffffff;
    color: var(--bwg-primary);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
    .bwg-offerings-hero-content h1 {
        font-size: 42px;
    }
    
    .bwg-offerings-subtitle {
        font-size: 20px;
    }
    
    .bwg-offerings-intro h2,
    .bwg-features-header h2,
    .bwg-offerings-cta .bwg-cta-content h2 {
        font-size: 36px;
    }
    
    .bwg-offerings-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bwg-features-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bwg-offerings-hero {
        padding: 80px 0 60px;
    }
    
    .bwg-offerings-hero-content h1 {
        font-size: 36px;
    }
    
    .bwg-offerings-subtitle {
        font-size: 18px;
    }
    
    .bwg-offerings-overview,
    .bwg-offerings-grid-section,
    .bwg-offerings-features,
    .bwg-offerings-cta {
        padding: 60px 0;
    }
    
    .bwg-offering-image {
        height: 220px;
    }
    
    .bwg-offering-content {
        padding: 25px 20px;
    }
    
    .bwg-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bwg-cta-buttons .bwg-button-primary,
    .bwg-cta-buttons .bwg-button-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .bwg-offerings-hero-content h1 {
        font-size: 32px;
    }
    
    .bwg-offerings-intro h2,
    .bwg-features-header h2,
    .bwg-offerings-cta .bwg-cta-content h2 {
        font-size: 28px;
    }
    
    .bwg-feature-item {
        flex-direction: column;
        text-align: center;
    }
}

