/* Hero Section - Updated with new background image */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('https://i.pinimg.com/736x/27/5b/14/275b14689a0b5bde35d446c109bb3a19.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-secondary);
}

/* Streaming Section */
.streaming {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.streaming-header {
    text-align: center;
    margin-bottom: 40px;
}

.streaming-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.savings-message {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.platform-message {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Devices Section */
.devices {
    padding: 80px 0;
    background-color: var(--background-color);
}

.devices-header {
    text-align: center;
    margin-bottom: 50px;
}

.devices-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.devices-header p {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

/* Device card styling update */
.device-card {
    background-color: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.device-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(229, 9, 20, 0.3);
}

.device-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    padding: 15px;
    background-color: var(--card-background);
}

.device-label {
    padding: 15px;
    text-align: center;
    font-weight: 500;
    width: 100%;
    border-top: 3px solid var(--primary-color);
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.plan-card {
    background-color: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0 10px 0 10px;
}

.plan-header {
    background: linear-gradient(to right, var(--primary-color), #ff0a16);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.plan-features {
    padding: 25px;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.plan-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--background-color);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(229, 9, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-media {
    margin-top: 30px;
}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--card-background);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--text-color);
    text-align: center;
    line-height: 40px;
    transition: all 0.3s;
}

.social-media a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--card-background);
    color: var(--text-color);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Carousel styles */
.streaming-carousel {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 30px auto;
    height: 180px;
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.carousel-item {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    margin: 0 20px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.carousel-item:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}