/* Internet Deals Page Styles */

/* Navigation Tabs */
.deals-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.deals-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.deals-tabs::-webkit-scrollbar {
    display: none;
}

.deals-tabs a {
    padding: 18px 24px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.deals-tabs a:hover {
    background: #f5f5f5;
}

.deals-tabs a.active {
    border-bottom-color: #6B4CE6;
    color: #6B4CE6;
}

.deals-tabs a.build-own {
    margin-left: auto;
    color: #6B4CE6;
}

/* Hero Section */
.deals-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 20px 80px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.deals-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 20px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 800px;
    opacity: 0.95;
}

.hero-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.price-main {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 50px auto;
    max-width: 1200px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.hero-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.8;
    margin-top: 40px;
    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);
}

/* More to Love Section */
.more-love-section {
    padding: 80px 20px;
    background: #fff;
}

.more-love-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.more-love-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-bottom: 20px;
}

.more-love-carousel::-webkit-scrollbar {
    height: 8px;
}

.more-love-carousel::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.more-love-carousel::-webkit-scrollbar-thumb {
    background: #6B4CE6;
    border-radius: 4px;
}

.love-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.love-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 8px;
}

.love-badge img {
    height: 30px;
    display: block;
}

.love-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #e0e0e0;
}

.love-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.love-content {
    padding: 30px;
}

.love-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #000;
}

.love-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 20px;
}

.love-disclaimer {
    font-size: 12px !important;
    line-height: 1.5 !important;
    color: #666 !important;
    margin-top: 20px !important;
}

/* Moving Section */
.moving-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.moving-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.moving-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.moving-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.moving-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e0e0e0;
}

.moving-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moving-content {
    padding: 25px;
}

.moving-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #000;
}

.moving-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 15px;
}

.link-arrow {
    color: #6B4CE6;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    gap: 8px;
    color: #5a3cc5;
}

/* FAQ Section */
.deals-faq-section {
    padding: 80px 20px;
    background: #fff;
}

.deals-faq-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.deals-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.deals-faq-accordion details {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.deals-faq-accordion details:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.deals-faq-accordion details[open] {
    border-color: #6B4CE6;
}

.deals-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;
}

.deals-faq-accordion summary::-webkit-details-marker {
    display: none;
}

.deals-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;
}

.deals-faq-accordion details[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.deals-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);
}

/* 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: 768px) {
    .deals-hero h1 {
        font-size: 36px;
    }

    .price-main {
        font-size: 32px;
    }

    .plans-section h2,
    .more-love-section h2,
    .deals-faq-section h2 {
        font-size: 32px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .love-card {
        flex: 0 0 320px;
    }

    .moving-grid {
        grid-template-columns: 1fr;
    }

    .deals-tabs a {
        font-size: 14px;
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .deals-hero {
        padding: 40px 20px 60px;
    }

    .deals-hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .price-main {
        font-size: 28px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    .plans-section,
    .more-love-section,
    .moving-section,
    .deals-faq-section {
        padding: 50px 20px;
    }

    .plans-section h2,
    .more-love-section h2,
    .deals-faq-section h2 {
        font-size: 28px;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .love-card {
        flex: 0 0 280px;
    }

    .deals-faq-accordion summary {
        font-size: 16px;
        padding: 20px 50px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}