/* ===================================================
   Festive Offer Landing Page — Premium Design
   =================================================== */

/* Hero Section */
.offer-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 40%, #fff0f0 100%);
    overflow: hidden;
}

.offer-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.offer-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.offer-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 5px rgba(255, 0, 0, 0.2); }
}

.offer-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #1a1a1b;
    margin-bottom: 15px;
    line-height: 1.15;
}

.offer-hero h1 span {
    color: #ff0000;
}

.offer-hero .price-highlight {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #ff0000;
    display: block;
    margin: 10px 0 5px;
    text-shadow: 2px 2px 0 rgba(255, 0, 0, 0.1);
}

.offer-hero .price-strike {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: 20px;
}

.offer-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #5a5f68;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.offer-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.offer-cta-group .btn-primary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.offer-cta-group .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.offer-cta-group .btn-outline {
    background: transparent;
    color: #ff0000;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #ff0000;
    transition: all 0.3s ease;
}

.offer-cta-group .btn-outline:hover {
    background: #ff0000;
    color: #fff;
    transform: translateY(-3px);
}

/* Features Section */
.offer-features {
    padding: 80px 5%;
    background: #ffffff;
}

.offer-features .container {
    max-width: 1100px;
    margin: 0 auto;
}

.offer-section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1a1a1b;
    margin-bottom: 15px;
}

.offer-section-title span {
    color: #ff0000;
}

.offer-section-desc {
    text-align: center;
    font-size: 1.1rem;
    color: #5a5f68;
    max-width: 600px;
    margin: 0 auto 50px;
}

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

.feature-card {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #ff0000, #ffd700);
    transition: height 0.4s ease;
    border-radius: 0 0 4px 4px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 0, 0, 0.1);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card .feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 215, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1b;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #5a5f68;
    line-height: 1.6;
}

/* Audience Section */
.offer-audience {
    padding: 80px 5%;
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
}

.offer-audience .container {
    max-width: 1100px;
    margin: 0 auto;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.audience-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.audience-card .audience-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0000, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 auto 20px;
}

.audience-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1b;
    margin-bottom: 8px;
}

.audience-card p {
    font-size: 0.95rem;
    color: #5a5f68;
    line-height: 1.6;
}

/* Pricing Comparison */
.offer-pricing {
    padding: 80px 5%;
    background: #ffffff;
}

.offer-pricing .container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-box {
    background: linear-gradient(135deg, #1a1a1b 0%, #2d2d2d 100%);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-box .pricing-label {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pricing-box .price-big {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: #ffd700;
    display: block;
    margin-bottom: 5px;
}

.pricing-box .price-old {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.pricing-box .price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    display: block;
}

.pricing-box .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 35px;
    max-width: 400px;
    text-align: left;
}

.pricing-box .pricing-features li {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-box .pricing-features li i {
    color: #25D366;
    font-size: 1.1rem;
}

.pricing-box .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #1a1a1b;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.pricing-box .btn-gold:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

/* Video Showcase */
.offer-video {
    padding: 80px 5%;
    background: #f8f9fa;
}

.offer-video .container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact CTA */
.offer-contact {
    padding: 80px 5%;
    background: linear-gradient(135deg, #fff0f0 0%, #ffffff 50%, #fff8e1 100%);
}

.offer-contact .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-card i {
    font-size: 1.8rem;
    color: #ff0000;
    margin-bottom: 15px;
    display: block;
}

.contact-card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
    font-size: 1.05rem;
    color: #1a1a1b;
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover {
    color: #ff0000;
}

/* Trust Section */
.offer-trust {
    padding: 60px 5%;
    background: #ffffff;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust-item {
    text-align: center;
}

.trust-item .trust-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff0000;
    display: block;
}

.trust-item .trust-label {
    font-size: 0.9rem;
    color: #5a5f68;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .offer-hero { padding: 80px 5% 40px; min-height: auto; }
    .features-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .pricing-box { padding: 35px 25px; }
    .contact-grid { grid-template-columns: 1fr; }
    .trust-badges { gap: 30px; }
    .offer-cta-group { flex-direction: column; align-items: center; }
    .video-wrapper { border-radius: 12px; }
}

