/* Netflix Hero */
.netflix-hero {
    background: linear-gradient(135deg, #000000 0%, #221f1f 50%, #e50914 100%);
    color: var(--text-white);
    padding: 9rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.netflix-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.netflix-hero .container {
    position: relative;
    z-index: 2;
}

.netflix-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.netflix-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(229, 9, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.netflix-badge img {
    height: 35px;
    width: auto;
    border-radius: 4px;
}

.netflix-badge span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.netflix-hero h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.netflix-hero p {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.btn-netflix {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, var(--primary-color), #b20710);
    color: var(--text-white);
    padding: 1.2rem 3rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

.btn-netflix:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(229, 9, 20, 0.5);
}

/* Plans Section */
.plans-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-light) 0%, #f0f0f0 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: var(--text-white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #e50914, #b20710);
}

.plan-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.2);
}

.plan-card.popular::before {
    height: 8px;
    background: linear-gradient(to right, #e50914, #ff6b6b);
}

.plan-card.selected {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, var(--primary-color), #b20710);
    color: var(--text-white);
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.plan-header h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
}

.price::before {
    content: 'HTG';
    font-size: 1rem;
    color: var(--text-light);
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.period {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.plan-features {
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    padding: 0.7rem 0;
    border-bottom: 1px dashed #eee;
}

.feature:last-child {
    border-bottom: none;
}

.feature i {
    color: var(--success-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.feature span {
    font-weight: 500;
    color: var(--text-dark);
}

.plan-select {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(145deg, var(--primary-color), #b20710);
    color: var(--text-white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

.plan-notes {
    background: var(--text-white);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
    border-left: 5px solid var(--warning-color);
}

.notes-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.notes-header i {
    color: var(--warning-color);
    font-size: 2rem;
}

.notes-content ul {
    list-style-position: inside;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.notes-content li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    padding-left: 0.5rem;
}

.note-warning {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    padding: 1.2rem;
    background-color: rgba(229, 9, 20, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    font-size: 1rem;
}

.plan-action {
    text-align: center;
}

.btn-netflix-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, var(--primary-color), #b20710);
    color: var(--text-white);
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
}

.btn-netflix-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--text-white);
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(145deg, var(--secondary-color), #000);
    color: var(--text-white);
    padding: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), #ff6b6b);
}

.modal-header h3 {
    margin: 0;
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
}

.selected-plan-info {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
    text-align: center;
    border: 2px solid #e50914;
}

.selected-plan-info h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.selected-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.selected-duration {
    color: var(--text-light);
    font-weight: 500;
}

.payment-methods {
    margin-bottom: 2.5rem;
}

.payment-methods h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 1rem;
}

.method-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 1.8rem 1rem;
    background-color: var(--bg-light);
    border: 3px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.method-btn:hover {
    border-color: var(--primary-color);
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.method-btn.active {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, white, #f8f9fa);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.2);
}

.method-btn i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.method-btn span {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
}

.payment-instructions {
    background: linear-gradient(145deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--success-color);
}

.payment-instructions h4 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.payment-instructions p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.modal-footer {
    padding: 1.8rem;
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
}

.btn-cancel {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1rem;
}

.btn-cancel:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-confirm {
    padding: 1rem 2.5rem;
    background: linear-gradient(145deg, var(--primary-color), #b20710);
    color: var(--text-white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

/* Netflix Footer Customization */
.footer.netflix-footer {
    background: linear-gradient(to right, #000, #221f1f);
}

.footer.netflix-footer .footer-col h4 {
    color: #e50914;
}

.footer.netflix-footer .contact-info i {
    color: #e50914;
}

/* Responsive Netflix */
@media (max-width: 1200px) {
    .netflix-hero h1 {
        font-size: 3rem;
    }
    
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .netflix-hero {
        padding: 8rem 0 4rem;
    }
    
    .netflix-hero h1 {
        font-size: 2.8rem;
    }
    
    .plan-card.popular {
        transform: none;
        order: -1;
    }
    
    .plans-grid {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .netflix-hero {
        padding: 7rem 0 3rem;
    }
    
    .netflix-hero h1 {
        font-size: 2.3rem;
    }
    
    .netflix-hero p {
        font-size: 1.1rem;
    }
    
    .netflix-badge {
        padding: 0.6rem 1.5rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-netflix-large {
        padding: 1.3rem 3rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .netflix-hero h1 {
        font-size: 2rem;
    }
    
    .netflix-hero p {
        font-size: 1rem;
    }
    
    .plan-card {
        padding: 2rem 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.8rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .btn-cancel, .btn-confirm {
        width: 100%;
        text-align: center;
    }
}