/* ===========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   =========================================== */
:root {
    --everfast-blue: #00529B;
    --off-white: #e0e3e6;
    --bg-button-gold:  linear-gradient(to right top, #ce7500, #d78721, #e19939, #eaab4f, #f3bd65, #f4bf66, #f6c066, #f7c267, #f1b552, #eba73d, #e59925, #df8b00);
    --hero-bg-overlay: linear-gradient(rgba(0, 80, 160, 0.5), rgba(0, 80, 160, 0.5));
    --text-gold: #EFB13A;
}

/* ===========================================
   GLOBAL STYLES
   =========================================== */
main {
    background-color: var(--off-white);
}

body {
    background: 
        radial-gradient(circle at 30% 20%, rgba(6, 87, 158, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(234, 175, 70, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%) !important;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(6, 87, 158, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(234, 175, 70, 0.4) 2px, transparent 2px);
    background-size: 30px 30px, 45px 45px;
    background-position: 0 0, 15px 15px;
    pointer-events: none;
    z-index: -999;
    opacity: 1;
}

main {
    background: transparent;
    min-height: 100vh;
    position: relative;
}

/* ===========================================
   HEADER / NAVIGATION
   =========================================== */
header, 
.bg-blue {
    background-color: var(--everfast-blue);
}

.navbar-brand img {
    width: 10rem;
}

.navbar-toggler {
    background-color: var(--text-gold);
}


.header-nav-link {
    font-family: 'Roboto', 'sans-serif';
    font-size: .875rem;
}

/* Dropdown hover styles for navigation */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    margin-top: 0;
}

/* Ensure dropdown works on mobile touch devices */
@media (max-width: 991px) {
    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background: transparent;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}


.btn-style {
    background-image: var(--bg-button-gold);
    color: black;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid var(--text-gold);
    border-radius: 1.5625rem;
    min-width: 8rem;
    padding: 0.5rem 1rem;
}


/* ===========================================
   HERO SECTION
   =========================================== */
.hero-wrapper {
    background-image: 
        var(--hero-bg-overlay),
        url('../../imgs/coworkers-using-everfast-internet-for-business-1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    padding-top: 3%;
    padding-bottom: 3%;
}

.hero-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    text-wrap: wrap;
    line-height: 3rem;
}

.hero-text {
    font-family: 'Roboto', 'sans-serif';
}

.hero-price-large {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    color: var(--text-gold);
}



/* Hero Media Queries */
@media (max-width: 990px) {
    .hero-right {
        display: none;
    }
    
    .hero-title {
        width: 100%;
        font-size: 48px;
        line-height: 3rem;
    }
    
    .hero-text {
        width: 100%;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        margin: 0;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 2.5rem;
    }
    
    .hero-text {
        font-size: 20px;
    }
}




/* ===========================================
   Business Pitch SECTION
   =========================================== */
.business-pitch-wrapper {
    background-color: var(--everfast-blue);
    background-size: cover;
    background-position: center;
}


.perk-card-off-white {
    border-radius: 25px;
    background-color: var(--off-white);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.per-text {
    color: var(--everfast-blue);
    font-size: 16px;
    font-family: 'Roboto', 'sans-serif';
    font-weight: 600;
}

.business-pitch-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    width: 80%;
    color: var(--everfast-blue);
}

.business-pitch-subtext {
    font-family: 'Roboto', 'sans-serif';
}

.business-pitch-card {
    border-radius: 25px;
    background-color: #f4f4f4;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.business-pitch-list-item {
    color: black;
    font-family: 'Roboto', 'sans-serif';
    border-bottom: 1px solid gray;
}

.business-pitch-card-title {
    color: var(--everfast-blue);
    font-family: 'Roboto';
}

/* Comparison table section */
.comparison-table-sec-wrapper {
    background-image: 
        var(--hero-bg-overlay),
        url('../../imgs/small-business-office-using-everfast-internet.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    padding-top: 3%;
    padding-bottom: 3%;
} 

.features-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
}

.comparison-container {
    position: relative;
    z-index: 2;
}

.comparison-column {
    position: relative;
}

.column-header {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px 10px 0 0;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    margin-bottom: 0;
}

.everfast-header {
    font-family: 'Roboto';
    color: #059669;
    background: rgba(255, 255, 255, 0.98);
}

.everfast-header::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.everfast-header::after {
    content: '✓';
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.competitors-header {
    font-family: 'Roboto';
    color: #6b7280;
}

.competitors-header::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.competitors-header::after {
    content: '✕';
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.comparison-content {
    font-family: 'Roboto';
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 10px 10px;
    padding: 0;
    min-height: 400px;
}

.comparison-item {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
}

.comparison-item:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.vs-divider {
    font-family: 'Roboto';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


@media (max-width: 991px) {
    .vs-divider {
        position: relative;
        transform: none;
        margin: 20px auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .comparison-item {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
}


/* Business Solutions Page */

.business-solutions-section-wrapper {
background-color: var(--everfast-blue);
}
.business-solutions-title {
    font-size: 2.375rem;
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    font-weight: bold;
    line-height: 1.3;
}

.business-solution-card {
    border-radius: 1.5625rem;
    background-color: var(--off-white);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.business-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 30px, rgba(0, 0, 0, 0.1) 0px 5px 15px;
}

.solution-icon-wrapper {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(6, 87, 158, 0.1) 0%, rgba(6, 87, 158, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}



.solution-icon {
    font-size: 2.5rem;
    color: var(--bg-header);
}



.solution-card-title {
    font-size: 1.125rem;
    font-family: 'Roboto';
    font-weight: 600;
    color: var(--bg-header);
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* Responsive adjustments for business solutions cards */
@media (max-width: 1200px) {
    .business-solutions-title {
        font-size: 2.125rem;
    }
}

@media (max-width: 992px) {
    .business-solutions-title {
        font-size: 1.875rem;
        width: 90%;
    }
    
    .solution-icon-wrapper {
        width: 4.5rem;
        height: 4.5rem;
    }
    
    .solution-icon-wrapper::before {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .solution-icon {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .business-solutions-title {
        font-size: 1.75rem;
        width: 95%;
    }
    
    .solution-card-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .business-solutions-title {
        font-size: 1.5rem;
        width: 100%;
    }
    
    .solution-icon-wrapper {
        width: 4rem;
        height: 4rem;
    }
    
    .solution-icon-wrapper::before {
        width: 3rem;
        height: 3rem;
    }
    
    .solution-icon {
        font-size: 2rem;
    }
    
    .solution-card-title {
        font-size: 0.9375rem;
    }
}


/* ===========================================
   TESTIMONIAL SECTION
   =========================================== */
.testimonial-wrapper {
    
}

.testimonial-title {
    color: var(--everfast-blue);
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
}

.testimonial-carousel {
    border-bottom: 2px solid var(--everfast-blue);
}

.testimonial {
    font-family: 'Roboto', 'sans-serif';
    font-weight: lighter;
    font-weight: 300;
}

.reviewer-name {
    font-family: 'Roboto';
    font-weight: bolder;
}

.location {
    font-family: 'Roboto';
    font-weight: lighter;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) saturate(100%) invert(11%) sepia(100%) saturate(7497%) hue-rotate(0deg) brightness(97%) contrast(118%);
}



/* ===========================================
   FAQ SECTION
   =========================================== */
.faq-wrapper {
    background-color: var(--everfast-blue);
    color: white;
}

.faq-accordion-container {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.faq-section-title {
    font-family: 'Newsreader', 'sans-serif' !important;
    font-weight: 500;
    line-height: 4rem;
    color: white;
}

.faq-subtext {
    font-family: 'Roboto', 'sans-serif';
    color: white;
}


.faq-question {
    font-family: 'Roboto', 'sans-serif';
    font-weight: 800;
}

.faq-answer {
    font-family: 'Roboto', 'sans-serif';
}



/* ===========================================
   SERVICE COVERAGE MAP SECTION
   =========================================== */
.service-map-section-wrapper {
    /* background-color: var(--off-white); */
}

.service-map-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    color: var(--everfast-blue);
}

.map-subtext {
    font-family: 'Roboto', 'sans-serif';
    color: var(--everfast-blue);
    width: 55%;
    margin: 0 auto;
}

.map {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}


/* ===========================================
   CONTACT US SECTION
   =========================================== */
.contact-wrapper {
    background-image: 
        var(--hero-bg-overlay),
        url('../../imgs/man-smiling-talking-on-phone.jpg');
    background-size: cover;
    background-position: center;
}


.contact-card {
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    background-color: var(--off-white);
}

.contact-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    color: var(--everfast-blue);
}

.contact-text {
    font-family: 'Roboto';
    font-weight: 400;
    color: var(--everfast-blue);
}

.contact-form-checkbox-text {
    font-size: 12px;
    font-family: 'Roboto', 'sans-serif';
    font-weight: 700;
    color: var(--everfast-blue)
}

.form-input-fully-rounded {
    border: 2px solid var(--text-gold) !important;
    border-radius: 50px;
    font-family: 'Roboto';
}  

.form-input-medium-rounded {
    border: 2px solid var(--text-gold) !important;
    border-radius: 25px !important;
    font-family: 'Roboto';
}

.form-label-title {
    font-family: 'Roboto', 'sans-serif';
    font-weight: 700;
    color: var(--everfast-blue)
}

.checkbox-border {
    border: 1px solid var(--text-gold) !important;
}














/* ===========================================
   FOOTER SECTION
   =========================================== */
.footer-wrapper {
    background-color: var(--everfast-blue);
}

.footer-title,
.footer-list-title {
    font-family: 'Roboto', 'sans-serif';
    color: white;
}

.footer-text,
.footer-list-item {
    font-family: 'Roboto', 'sans-serif';
    color: white;
}

.footer-link {
    text-decoration: none;
}

.footer-disclaimer,
.copyright {
    font-family: 'Roboto', 'sans-serif';
    font-size: 12px;
    color: white;
}

.footer-social-icon {
    font-size: 32px;
    color: white;
}

.lower-footer {
    border-top: 2px solid #1863A5;
}