/* Discount Modern Page */

/* Hero Section */
.discount-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1a0a2e 50%, #2d1b4e 100%);
    overflow: hidden;
}

.discount-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.discount-hero-bg .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.discount-hero-bg .orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(168, 85, 247, 0.15);
    top: -150px;
    right: -100px;
}

.discount-hero-bg .orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(236, 72, 153, 0.1);
    bottom: -100px;
    left: -100px;
}

.discount-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.discount-hero-content { text-align: right; }

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: #c4b5fd;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.discount-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.discount-hero-title span {
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discount-hero-desc {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.9;
    margin-bottom: 32px;
}

.discount-hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.discount-mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.discount-mini-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.discount-mini-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0 0 4px;
}

.discount-mini-card p {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
}

.discount-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-discount-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.btn-discount-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
    color: #fff;
}

.btn-discount-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-discount-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Hero Visual */
.discount-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 380px;
}

.discount-logo-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: discountPulse 4s ease-in-out infinite;
}

@keyframes discountPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.discount-visual-card {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    z-index: 2;
}

.discount-visual-card .percent {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #c084fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.discount-visual-card .percent-label {
    font-size: 1.3rem;
    color: #c4b5fd;
    font-weight: 600;
    margin-top: 8px;
}

.discount-visual-card .percent-sub {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 4px;
}

.discount-float {
    position: absolute;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    white-space: nowrap;
}

.discount-float.f1 { top: 20px; right: -30px; animation: floatY 3s ease-in-out infinite; }
.discount-float.f2 { bottom: 30px; left: -20px; animation: floatY 3s ease-in-out infinite 1.5s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Offer Section */
.discount-offer {
    padding: 100px 0;
    background: #f8fafc;
}

.offer-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.offer-card-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    padding: 50px;
    align-items: center;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.offer-card-top h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.offer-card-top p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.promo-code-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #faf5ff;
    border: 2px dashed #a855f7;
    border-radius: 12px;
    margin-bottom: 20px;
}

.promo-code-box .label {
    font-size: 0.85rem;
    color: #7c3aed;
    font-weight: 500;
}

.promo-code-box .code {
    font-size: 1.2rem;
    font-weight: 800;
    color: #7c3aed;
    font-family: monospace;
    letter-spacing: 2px;
    direction: ltr;
}

.btn-copy-promo {
    padding: 6px 14px;
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-copy-promo:hover { background: #6d28d9; }
.btn-copy-promo.copied { background: #22c55e; }

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.25);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.35);
    color: #fff;
}

.offer-image {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Offer Table */
.offer-table {
    border-top: 1px solid #f1f5f9;
}

.offer-table table {
    width: 100%;
    border-collapse: collapse;
}

.offer-table thead th {
    padding: 16px 20px;
    background: #f8fafc;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-align: right;
    border-bottom: 1px solid #e2e8f0;
}

.offer-table tbody td {
    padding: 16px 20px;
    font-size: 0.95rem;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
}

.offer-table .note-row td {
    background: #fffbeb;
    padding: 20px;
}

.offer-table .note-row .note-title {
    font-weight: 700;
    color: #92400e;
    margin-bottom: 6px;
}

.offer-table .note-row p {
    color: #78350f;
    font-size: 0.9rem;
    margin: 0;
}

.btn-order-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-order-sm:hover { transform: translateY(-2px); color: #fff; }

/* No Discount State */
.no-discount {
    padding: 100px 0;
    background: #f8fafc;
    text-align: center;
}

.no-discount-icon {
    width: 100px;
    height: 100px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: #a855f7;
}

.no-discount h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.no-discount p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 24px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-contact:hover { transform: translateY(-2px); color: #fff; }

/* CTA */
.discount-cta {
    padding: 80px 0;
    background: #fff;
}

.discount-cta .cta-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    color: #fff;
}

.discount-cta .cta-card h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.discount-cta .cta-card p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; }
.discount-cta .cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: #a855f7;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); color: #a855f7; }

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Responsive */
@media (max-width: 992px) {
    .discount-hero .container { grid-template-columns: 1fr; }
    .discount-hero-visual { display: none; }
    .discount-hero-title { font-size: 2.2rem; }
    .offer-card-top { grid-template-columns: 1fr; }
    .offer-image { width: 100%; height: 200px; }
}

@media (max-width: 768px) {
    .discount-hero { padding: 100px 0 60px; }
    .discount-hero-title { font-size: 1.8rem; }
    .discount-hero-cards { grid-template-columns: 1fr; }
    .offer-card-top { padding: 30px; }
    .offer-table { overflow-x: auto; }
    .offer-table table { min-width: 600px; }
    .discount-cta .cta-card { padding: 30px; }
}
