/* TV Packages Section */
.tv-packages-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.channel-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1.5rem;
}

.package-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 1.5rem 0;
}

.package-features {
    margin: 1.5rem 0;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.package-features i {
    color: #28a745;
}

/* Smart Home Section */
.smart-home-section {
    padding: 5rem 0;
    background: white;
}

.smart-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #555;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.smart-home-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile Section */
.mobile-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.mobile-section .section-header {
    color: white;
}

.mobile-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mobile-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.mobile-feature i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mobile-feature h3 {
    color: white;
    margin-bottom: 1rem;
}

.mobile-feature p {
    color: rgba(255, 255, 255, 0.9);
}

/* Value Section */
.value-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .smart-home-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .smart-home-image {
        order: -1;
    }

    .mobile-features {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }
}
