/* Internet Service Page Styles */

/* Address Finder Bar */
.address-finder-bar {
    background: #f8f8f8;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.address-finder-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.address-finder-bar p {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.address-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.address-input {
    padding: 10px 16px;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    min-width: 250px;
    transition: all 0.3s ease;
}

.address-input:focus {
    outline: none;
    border-color: #6B4CE6;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 15px;
}

/* Hero Section with Video Background */
.internet-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
}

.hero-badge-image {
    margin-bottom: 30px;
}

.hero-badge-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.internet-hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 20px;
    max-width: 1000px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 800px;
}

.hero-price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-large {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.price-duration {
    font-size: 18px;
    line-height: 1.3;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.link-secondary {
    color: #fff;
    text-decoration: underline;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.link-secondary:hover {
    opacity: 0.8;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 60px auto;
    max-width: 1100px;
}

.hero-feature-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 24px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-feature-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.hero-alternate-offer {
    margin: 50px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    max-width: 700px;
}

.hero-alternate-offer p {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
}

.alternate-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.link-white {
    color: #fff;
    text-decoration: underline;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.link-white:hover {
    opacity: 0.8;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #6B4CE6;
}

.hero-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.85;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Plans Section */
.plans-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.plans-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #000;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.plan-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.plan-card.featured {
    border-color: #6B4CE6;
    position: relative;
    overflow: hidden;
}

.plan-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #6B4CE6;
    color: #fff;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}

.plan-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #000;
}

.plan-price {
    font-size: 20px;
    font-weight: 600;
    color: #6B4CE6;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

.plan-features li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.plans-disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Same Day WiFi Banner */
.same-day-banner {
    background: linear-gradient(135deg, #6B4CE6 0%, #8B5CF6 100%);
    padding: 40px 20px;
    margin: 60px 0;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-icon {
    width: 48px;
    height: 48px;
}

.banner-text {
    flex: 1;
    min-width: 250px;
}

.banner-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
}

.banner-text p {
    font-size: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Savings Comparison Section */
.savings-comparison {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.savings-comparison h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.comparison-cta {
    margin: 40px 0;
}

.comparison-disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* Get More Section */
.get-more-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.get-more-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.get-more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.get-more-placeholder {
    background: #fff;
    border-radius: 16px;
    padding: 60px 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.placeholder-content p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* FAQ Section */
.internet-faq-section {
    padding: 80px 20px;
    background: #fff;
}

.internet-faq-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.internet-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.internet-faq-accordion details {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.internet-faq-accordion details:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.internet-faq-accordion details[open] {
    border-color: #6B4CE6;
}

.internet-faq-accordion summary {
    padding: 24px 60px 24px 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    list-style: none;
    color: #000;
    transition: all 0.3s ease;
}

.internet-faq-accordion summary::-webkit-details-marker {
    display: none;
}

.internet-faq-accordion summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 300;
    color: #6B4CE6;
    transition: transform 0.3s ease;
}

.internet-faq-accordion details[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.internet-faq-accordion summary:hover {
    background: #f8f8f8;
}

.faq-answer {
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #6B4CE6;
    color: #fff;
}

.btn-primary:hover {
    background: #5a3cc5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 76, 230, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #6B4CE6;
    border: 2px solid #6B4CE6;
}

.btn-secondary:hover {
    background: #6B4CE6;
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .internet-hero h1 {
        font-size: 42px;
    }

    .price-large {
        font-size: 48px;
    }

    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .address-finder-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .address-input-wrapper {
        width: 100%;
    }

    .address-input {
        flex: 1;
        min-width: auto;
    }

    .internet-hero {
        min-height: auto;
        padding: 60px 20px;
    }

    .internet-hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .price-large {
        font-size: 40px;
    }

    .hero-price-box {
        flex-direction: column;
        gap: 30px;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
    }

    .plans-section h2,
    .savings-comparison h2,
    .get-more-section h2,
    .internet-faq-section h2 {
        font-size: 32px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-text h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .internet-hero h1 {
        font-size: 28px;
    }

    .hero-badge-image img {
        max-width: 300px;
    }

    .price-large {
        font-size: 36px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    .plans-section,
    .savings-comparison,
    .get-more-section,
    .internet-faq-section {
        padding: 50px 20px;
    }

    .plans-section h2,
    .savings-comparison h2,
    .get-more-section h2,
    .internet-faq-section h2 {
        font-size: 28px;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .internet-faq-accordion summary {
        font-size: 16px;
        padding: 20px 50px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}