/* Special Offer Banner - Premium & Compact Design */
.special-offer-banner {
    padding: 20px 0;
    background: transparent;
}

.offer-banner-content {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.offer-banner-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(255, 107, 53, 0.85) 100%);
    z-index: 1;
}

.offer-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 35px;
    gap: 25px;
}

.offer-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.offer-icon i {
    font-size: 28px;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.offer-text {
    flex: 1;
    min-width: 0;
}

.offer-text h2 {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.offer-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
}

.offer-button {
    flex-shrink: 0;
}

.btn-offer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #ff6b35;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-offer:hover {
    background: #212121;
    color: white;
    transform: translateX(3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-offer i {
    transition: transform 0.3s;
    font-size: 12px;
}

.btn-offer:hover i {
    transform: translateX(3px);
}

/* Tablet Responsive (768px - 1024px) */
@media (max-width: 1024px) {
    .special-offer-banner {
        padding: 18px 0;
    }
    
    .offer-banner-content {
        min-height: 75px;
        border-radius: 10px;
    }
    
    .offer-content {
        padding: 18px 30px;
        gap: 20px;
    }
    
    .offer-icon {
        width: 45px;
        height: 45px;
    }
    
    .offer-icon i {
        font-size: 24px;
    }
    
    .offer-text h2 {
        font-size: 20px;
    }
    
    .offer-text p {
        font-size: 13px;
    }
    
    .btn-offer {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* Mobile Responsive (481px - 768px) */
@media (max-width: 768px) {
    .special-offer-banner {
        padding: 15px 0;
    }
    
    .offer-banner-content {
        min-height: auto;
        border-radius: 10px;
    }
    
    .offer-content {
        flex-wrap: wrap;
        padding: 18px 20px;
        gap: 15px;
        justify-content: center;
        text-align: center;
    }
    
    .offer-icon {
        width: 40px;
        height: 40px;
        order: 1;
    }
    
    .offer-icon i {
        font-size: 22px;
    }
    
    .offer-text {
        order: 2;
        flex: 1 1 100%;
    }
    
    .offer-text h2 {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .offer-text p {
        font-size: 12px;
    }
    
    .offer-button {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .btn-offer {
        padding: 10px 24px;
        font-size: 12px;
        width: auto;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .special-offer-banner {
        padding: 12px 0;
    }
    
    .offer-banner-content {
        border-radius: 8px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    }
    
    .offer-content {
        padding: 15px;
        gap: 12px;
    }
    
    .offer-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    .offer-icon i {
        font-size: 20px;
    }
    
    .offer-text h2 {
        font-size: 16px;
        letter-spacing: 0.3px;
    }
    
    .offer-text p {
        font-size: 11px;
    }
    
    .btn-offer {
        padding: 9px 20px;
        font-size: 11px;
        border-radius: 30px;
        gap: 6px;
    }
    
    .btn-offer i {
        font-size: 10px;
    }
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 360px) {
    .offer-content {
        padding: 12px;
        gap: 10px;
    }
    
    .offer-icon {
        width: 32px;
        height: 32px;
    }
    
    .offer-icon i {
        font-size: 18px;
    }
    
    .offer-text h2 {
        font-size: 14px;
    }
    
    .offer-text p {
        font-size: 10px;
    }
    
    .btn-offer {
        padding: 8px 18px;
        font-size: 10px;
    }
}

/* Animation on scroll */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-banner-content {
    animation: slideInUp 0.5s ease-out;
}

/* Premium gradient variations */
.offer-overlay {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.95) 0%, 
        rgba(255, 107, 53, 0.85) 50%,
        rgba(255, 87, 34, 0.9) 100%);
}

/* Shimmer effect on hover */
.offer-banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    z-index: 3;
    transition: left 0.5s;
}

.offer-banner-content:hover::before {
    left: 100%;
}

/* Glass morphism effect for icon */
.offer-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Button glow effect */
.btn-offer {
    position: relative;
    overflow: hidden;
}

.btn-offer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-offer:hover::after {
    width: 300px;
    height: 300px;
}

/* Text shadow for better readability */
.offer-text h2,
.offer-text p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Smooth transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Print styles */
@media print {
    .special-offer-banner {
        display: none;
    }
}
