/* CSS Custom Properties */
:root {
    --directv-blue: #0a2463;
    --directv-medium-blue: #1e3a8a;
    --directv-light-blue: #3b82f6;
    --directv-orange: #ff6b00;
    --directv-orange-hover: #e65f00;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-white: #ffffff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   STICKY PROMOTION BANNER
   ======================================== */
.promo-banner {
    background: linear-gradient(90deg, var(--directv-orange), #ff8c00);
    color: var(--text-white);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.promo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.promo-badge {
    background: var(--bg-white);
    color: var(--directv-orange);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    background: var(--bg-white);
    color: var(--directv-orange);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.promo-cta:hover {
    background: var(--directv-blue);
    color: var(--text-white);
}

.phone-icon-small {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 60px 0 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 550px;
}

.hero-badge {
    display: inline-block;
    background: var(--directv-blue);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--directv-blue);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1;
    color: var(--directv-blue);
}

.hero .sub-headline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 36, 99, 0.2);
    max-width: 100%;
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.disclosure {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--directv-orange);
    color: var(--text-white);
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
}

.cta-button:hover {
    background: var(--directv-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.45);
}

.phone-icon {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
}

/* Multiline CTA Buttons */
.cta-multiline {
    flex-direction: column;
    gap: 4px;
}

.cta-text {
    font-size: 1rem;
    font-weight: 600;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ========================================
   FEATURES SECTION (Blue Background)
   ======================================== */
.features {
    background-image: url('blue_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.92) 0%, rgba(30, 58, 138, 0.88) 100%);
}

.features .container {
    position: relative;
    z-index: 1;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--directv-orange);
    margin-bottom: 15px;
}

.feature-icon svg {
    stroke: var(--directv-orange);
}

.feature-card h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.channel-showcase {
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.channel-showcase img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.features .cta-button {
    display: flex;
    margin: 0 auto;
    max-width: 450px;
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages {
    background: var(--bg-white);
    padding: 80px 0;
}

.packages h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
    color: var(--directv-blue);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.packages-visual {
    text-align: center;
    margin-bottom: 40px;
}

.packages-visual img {
    max-width: 700px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.package-card {
    background: var(--bg-white);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--directv-light-blue);
}

.package-card.featured {
    border: 3px solid var(--directv-orange);
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.2);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--directv-orange);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.package-card h3 {
    color: var(--directv-blue);
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--directv-orange);
}

.package-card ul {
    list-style: none;
}

.package-card li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.package-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--directv-orange);
    border-radius: 50%;
}

/* Promotion Callout Box */
.promo-callout {
    background: linear-gradient(135deg, var(--directv-blue), var(--directv-medium-blue));
    border-radius: 12px;
    padding: 25px 30px;
    margin: 30px auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-callout-badge {
    background: var(--directv-orange);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-callout p {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.source {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 20px 0;
}

.packages .cta-button {
    display: flex;
    margin: 0 auto;
    max-width: 400px;
}

/* ========================================
   ADD-ONS SECTION (Blue Background)
   ======================================== */
.addons {
    background-image: url('blue_background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}

.addons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.92) 0%, rgba(30, 58, 138, 0.88) 100%);
}

.addons .container {
    position: relative;
    z-index: 1;
}

.addons h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-white);
}

.sports-showcase {
    text-align: center;
    margin-bottom: 40px;
}

.sports-showcase img {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.addon-category {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.addon-category h3 {
    color: var(--directv-blue);
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--directv-orange);
}

.addon-category ul {
    list-style: none;
}

.addon-category li {
    padding: 10px 0;
    position: relative;
    padding-left: 22px;
    color: var(--text-primary);
}

.addon-category li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--directv-orange);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.addons .source {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    background: var(--bg-light);
    padding: 80px 0;
}

.how-it-works h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--directv-blue);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.how-it-works-content {
    max-width: 500px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--directv-orange);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.step-text h4 {
    color: var(--directv-blue);
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.step-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.device-showcase {
    text-align: center;
}

.device-showcase img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.how-it-works .cta-button {
    margin-top: 20px;
}

/* ========================================
   DISCLAIMER SECTION
   ======================================== */
.disclaimer {
    background: var(--bg-white);
    padding: 40px 0;
    border-top: 3px solid var(--directv-blue);
    border-bottom: 3px solid var(--directv-blue);
}

.disclaimer p {
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

.authorized-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.authorized-info p {
    margin: 5px auto;
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--directv-blue) 0%, var(--directv-medium-blue) 100%);
    color: var(--text-white);
    padding: 50px 0 40px;
    text-align: center;
}

.footer-cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-footer {
    margin-bottom: 30px;
}

.footer .hours {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 1rem;
}

.footer .legal-links {
    margin-top: 20px;
}

.footer .legal-links a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer .legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ========================================
   FLOATING MOBILE CTA
   ======================================== */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--directv-orange);
    color: var(--text-white);
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
    transition: all 0.3s ease;
    align-items: center;
    gap: 8px;
}

.floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6);
}

.floating-phone-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-it-works-grid {
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .promo-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .promo-text {
        font-size: 0.85rem;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .sub-headline {
        font-size: 1.1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .features h2,
    .packages h2,
    .addons h2,
    .how-it-works h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-5px);
    }

    .addons-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-it-works-content {
        max-width: 100%;
        order: 1;
    }

    .device-showcase {
        order: 2;
    }

    .device-showcase img {
        max-width: 300px;
    }

    /* Show floating CTA on tablet and mobile */
    .floating-cta {
        display: flex;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .promo-banner {
        padding: 10px 15px;
    }

    .promo-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .promo-text {
        font-size: 0.8rem;
    }

    .hero {
        padding: 30px 0 50px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero .sub-headline {
        font-size: 1rem;
    }

    .cta-button {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .package-card,
    .addon-category {
        padding: 25px 20px;
    }

    .promo-callout {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .promo-callout p {
        font-size: 1rem;
    }

    .step {
        gap: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .footer-cta-text {
        font-size: 1.3rem;
    }
}
