/* ============================================
   EVERLUX ENERGY — Clone of authorizecabledealer.com
   Font: Inter (close match to the original)
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 18px;
    font-weight: 800;
    color: #2979FF;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #2979FF;
}

.btn-call-header {
    background: #2979FF;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-call-header:hover {
    background: #1565C0;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #e8e8e8;
}

.mobile-nav a {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav.open {
    display: flex;
}

/* ============================================
   DISCLAIMER BANNER
   ============================================ */
.disclaimer-banner {
    background: #f0f4f8;
    padding: 14px 0;
    border-bottom: 1px solid #dde3ea;
}

.disclaimer-banner p {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.5;
    text-align: left;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #fef9f0 0%, #fff5e6 50%, #fff 100%);
    padding: 60px 0 40px;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    color: #1a1a2e;
    margin-bottom: 30px;
}

.hero-checklist {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.checklist-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
}

.check-icon {
    width: 22px;
    height: 22px;
    fill: #2979FF;
    flex-shrink: 0;
}

.btn-call-hero {
    display: inline-block;
    background: #2979FF;
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    transition: background 0.2s, transform 0.2s;
}

.btn-call-hero:hover {
    background: #1565C0;
    transform: translateY(-1px);
}

.hero-disclaimer-text {
    max-width: 520px;
}

.hero-disclaimer-text p {
    font-size: 11px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 420px;
}

/* ============================================
   SERVICES SECTION (ISP Cards)
   ============================================ */
.services-section {
    padding: 70px 0 60px;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.wifi-icon-circle {
    width: 64px;
    height: 64px;
    background: #2979FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.services-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #2979FF;
    margin-bottom: 10px;
}

.services-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.2s;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(41, 121, 255, 0.1);
    transform: translateY(-2px);
}

.service-icon {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2979FF;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.55;
}

/* ============================================
   ABOUT US SECTION
   ============================================ */
.about-section {
    padding: 70px 0;
    background: #f8fafd;
}

.about-inner {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-content {
    flex: 1;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.about-label-icon {
    width: 30px;
    height: 30px;
    background: #2979FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-label span {
    font-size: 15px;
    font-weight: 600;
    color: #2979FF;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-content > p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-sub-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-sub-img {
    width: 180px;
    border-radius: 12px;
    object-fit: cover;
    height: 140px;
}

.about-sub-content p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
}

.about-image {
    flex: 1;
    position: relative;
    max-width: 460px;
}

.about-image > img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 380px;
}

.speed-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    width: 120px;
    height: 120px;
    background: #e53935;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.speed-badge-label {
    font-size: 13px;
    font-weight: 500;
}

.speed-badge-value {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
}

.speed-badge-unit {
    font-size: 12px;
    font-weight: 400;
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
    padding: 40px 0 30px;
    background: #fff;
    border-top: 1px solid #eee;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.feature-item p {
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

.features-cta-text {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #2979FF;
}

/* ============================================
   CALL BANNER
   ============================================ */
.call-banner {
    background: linear-gradient(135deg, #2979FF 0%, #1565C0 100%);
    padding: 55px 0;
    text-align: center;
}

.call-banner-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.call-banner h2 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.call-banner-phone {
    font-size: 32px;
    font-weight: 900;
    color: #FF5252;
    display: inline-block;
    transition: transform 0.2s;
}

.call-banner-phone:hover {
    transform: scale(1.03);
}

/* ============================================
   COVERAGE SECTION
   ============================================ */
.coverage-section {
    padding: 70px 0;
    background: #fff;
}

.coverage-inner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.coverage-image {
    flex: 1;
    max-width: 400px;
}

.us-map-img {
    width: 100%;
    border-radius: 8px;
}

.coverage-content {
    flex: 1;
}

.coverage-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.coverage-label-icon {
    width: 28px;
    height: 28px;
    background: #2979FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage-label span {
    font-size: 14px;
    font-weight: 600;
    color: #2979FF;
}

.coverage-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.coverage-content > p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.coverage-cta-text {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.coverage-phone {
    font-size: 20px;
    font-weight: 700;
    color: #2979FF;
    display: inline-block;
}

.coverage-phone:hover {
    text-decoration: underline;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 60px 0;
    background: #f8fafd;
}

.faq-subtitle {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #2979FF;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 36px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    gap: 10px;
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #2979FF;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */
.disclaimer-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.disclaimer-section h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.notice-heading {
    margin-top: 40px;
}

.disclaimer-section p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.disclaimer-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.disclaimer-section li {
    font-size: 13.5px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 4px;
}

.disclaimer-section a {
    color: #2979FF;
}

.disclaimer-section a:hover {
    text-decoration: underline;
}

.disclaimer-section strong {
    color: #1a1a2e;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1a2e;
    padding: 22px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-inner {
        flex-direction: column;
    }

    .about-image {
        max-width: 100%;
    }

    .coverage-inner {
        flex-direction: column;
    }

    .coverage-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .btn-call-header {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-inner {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-checklist {
        flex-direction: column;
        gap: 10px;
    }

    .hero-image {
        max-width: 100%;
    }

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

    .services-title {
        font-size: 26px;
    }

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

    .call-banner h2 {
        font-size: 24px;
    }

    .call-banner-phone {
        font-size: 26px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

    .call-banner-phone {
        font-size: 22px;
    }
}
