/* Gig WiFi Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Xfinity Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Address Bar Section */
.gig-address-bar {
    background-color: #f7f7f7;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
}

.address-finder {
    text-align: center;
}

.address-finder label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

.address-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto 15px;
}

.address-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.address-input:focus {
    border-color: #0073cf;
}

.btn-find-plan {
    background-color: #0073cf;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-find-plan:hover {
    background-color: #005eb8;
}

.signin-link {
    font-size: 14px;
    color: #666;
}

.signin-link a {
    color: #0073cf;
    text-decoration: none;
}

.signin-link a:hover {
    text-decoration: underline;
}

/* Hero Section */
.gig-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 20px 80px;
}

.gig-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.gig-event-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.gig-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gig-hero-tagline {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* Pricing Card */
.gig-pricing-card {
    background: #fff;
    color: #111;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
}

.gig-price-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e5e5;
    margin-bottom: 30px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-dollar {
    font-size: 64px;
    font-weight: 700;
    color: #0073cf;
}

.price-period {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

.price-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.btn-gig-primary {
    display: inline-block;
    background-color: #0073cf;
    color: #fff;
    padding: 14px 45px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-gig-primary:hover {
    background-color: #005eb8;
}

.gig-info-link {
    color: #0073cf;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.gig-info-link:hover {
    color: #005eb8;
}

/* Features Grid */
.gig-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gig-feature-item {
    text-align: center;
    padding: 20px 15px;
    background: #f7f7f7;
    border-radius: 6px;
}

.gig-feature-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
}

/* Alternative Offer */
.gig-alternative-offer {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.gig-alternative-offer p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.alt-offer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.btn-gig-secondary {
    display: inline-block;
    background-color: #fff;
    color: #0073cf;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-gig-secondary:hover {
    background-color: #0073cf;
    color: #fff;
}

/* Disclaimer */
.gig-disclaimer {
    margin-top: 30px;
}

.gig-disclaimer p {
    font-size: 11px;
    line-height: 1.7;
    opacity: 0.9;
    text-align: left;
}

/* Ultra Low Lag Section */
.gig-low-lag {
    background: #fff;
    padding: 70px 20px;
    text-align: center;
}

.gig-low-lag h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.lag-description {
    font-size: 15px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Peacock Section */
.gig-peacock {
    background: linear-gradient(135deg, #8b3dff 0%, #6a1cc7 100%);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.peacock-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.peacock-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.peacock-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.peacock-note {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 20px;
}

/* Fastest Internet Section */
.gig-fastest {
    background: #f7f7f7;
    padding: 70px 20px;
    text-align: center;
}

.gig-fastest h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.fastest-cta {
    font-size: 24px;
    color: #111;
    margin-bottom: 15px;
}

/* Services Section */
.gig-services {
    background: #fff;
    padding: 70px 20px;
}

.gig-services h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    text-decoration: none;
    color: #111;
    text-align: center;
    padding: 30px 15px;
    background: #f7f7f7;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    margin-bottom: 20px;
}

.service-image img {
    max-width: 120px;
    height: auto;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

/* Footer Disclaimers */
.gig-footer-disclaimers {
    background: #f7f7f7;
    padding: 40px 20px;
    border-top: 1px solid #e5e5e5;
}

.gig-footer-disclaimers p {
    font-size: 11px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.gig-footer-disclaimers a {
    color: #0073cf;
    text-decoration: none;
}

.gig-footer-disclaimers a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gig-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gig-hero h1 {
        font-size: 32px;
    }

    .gig-hero-tagline {
        font-size: 17px;
    }

    .price-dollar {
        font-size: 48px;
    }

    .price-period {
        font-size: 16px;
    }

    .gig-price-highlight {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .price-cta {
        align-items: center;
    }

    .gig-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .address-input-group {
        flex-direction: column;
    }

    .gig-low-lag h2,
    .gig-fastest h2,
    .gig-services h2 {
        font-size: 28px;
    }

    .peacock-content h2 {
        font-size: 28px;
    }

    .peacock-cta {
        flex-direction: column;
        align-items: center;
    }

    .alt-offer-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .gig-hero {
        padding: 40px 15px 60px;
    }

    .gig-hero h1 {
        font-size: 26px;
    }

    .gig-pricing-card {
        padding: 25px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gig-event-badge {
        font-size: 10px;
        padding: 6px 15px;
    }

    .fastest-cta {
        font-size: 20px;
    }
}