/* ===========================================
   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";
    font-size: .875rem;
}

.btn-everfast-primary {
    background-image: var(--bg-button-gold);
    color: black;
    font-family: 'Roboto', 'sans-serif';
    font-weight: 500;
    font-size: 16px;
    border: 1px solid white;
    border-radius: 25px;
    width: 160px;
}

/* 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', 'sans-serif';
    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/entire-family-using-everfast-wifi-and-internet.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    padding-top: 3%;
    padding-bottom: 3%;
}

.hero-title {
    font-family: 'Newsreader', 'sans-serif';
    text-wrap: wrap;
    line-height: 3rem;
    font-weight: 500;
    width: 75%;
}

.hero-text {
    font-family: 'Roboto', 'sans-serif';
}


/* 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 {
    }
}

/* ===========================================
   RISK FREE guarantee SECTION
   =========================================== */
.risk-free-wrapper {
    background-color: var(--everfast-blue);
}

.risk-guarantee-left {
    background-color: white;
    border-radius: 0 200px 200px 0;
}

.guarantee-description {
    font-family: 'Roboto', 'sans-serif';
    color: white;
}

.list-title {
    font-family: 'Roboto', 'sans-serif';
    color: var(--text-gold);
    font-weight: 700;
}

.list-guarantee {
    font-family: "Roboto";
    color: white;
    text-align: left;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-weight: 600;
}


.guarantee-list-icon {
    color: var(--text-gold);
}


/* Frosted Glass Cards for Risk-Free Section */
.risk-guarantee-frosted {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ===========================================
   CONTACT US SECTION
   =========================================== */
.contact-wrapper {
    background-image: 
        var(--hero-bg-overlay),
        url('../../imgs/olathe-offering-everfast-home-internet-to-residents.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}


.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', 'sans-serif';
    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', 'sans-serif';
}  

.form-input-medium-rounded {
    border: 2px solid var(--text-gold) !important;
    border-radius: 25px !important;
    font-family: 'Roboto', 'sans-serif';
}

.form-label-title {
    font-family: 'Roboto', 'sans-serif';
    font-weight: 700;
    color: var(--everfast-blue)
}

.checkbox-border {
    border: 1px solid var(--text-gold) !important;
}

/* ===========================================
   PITCH SECTION
   =========================================== */
.plans-wrapper {
    /* background-color: var(--off-white); */
}

.plans-section-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    color: var(--everfast-blue);
}


.plans-section-text {
    font-family: 'Roboto', 'sans-serif';
}

.plans-card {
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.plans-badge {
    background-color: var(--everfast-blue);
    display: inline;
    width: 45%;
    margin: 0 auto;
    border-radius: 0 0 150px 150px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 5px, rgba(0, 0, 0, 0.22) 0px 5px 5px;
}

.plans-card-badge-text {
    color: white;
    font-weight: bold;
    font-family: 'Roboto', 'sans-serif';
}

.plans-card-title {
    font-family: 'Raleway';
    color: var(--everfast-blue);
    font-weight: 700; 
}

.plans-card-pricing-dollar-amount{
    font-family: 'Newsreader', 'sans-serif';
    color: var(--text-gold);
    font-weight: 500;
}

.plans-card-pricing-period-text {
    font-family: 'Roboto', sans-serif;
    color: var(--everfast-blue);
} 

.plans-list {
    margin: 0 auto;
}

.plans-list-text {
    color: black;
    font-family: 'Roboto', 'sans-serif';
    border-bottom: 1px solid gray;
}

.plans-list-item-top-border {
    border-top: 1px solid gray;
}

.plan-list-item-white-borders {
    border-color: white;
}

.bg-blue {
    background-color: var(--everfast-blue);
}



.plans-disclaimer {
background-color: var(--everfast-blue);
    border-radius: 30px;
    font-family: 'Roboto', 'sans-serif';
    font-style: italic;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}




.card-title {
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
}

.hero-price-large {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    color: var(--text-gold);
}

.pricing-period-text {
    color: white;
    font-family: 'Newsreader', 'sans-serif';
    text-wrap: wrap;
    font-weight: 500;
    width: 19%;
}

.pitch-lower-title {
    color: var(--everfast-blue);
    font-family: 'Roboto', 'sans-serif';
    font-weight: 800;
}

/* ===========================================
   SERVICE COVERAGE MAP SECTION
   =========================================== */
.service-map-section-wrapper {
    background-color: var(--everfast-blue);
}

.service-map-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    color: white;
}

.btn-state {
    font-family: 'Roboto', sans-serif;
    background-color: var(--text-gold);
    color: white;
    border-radius: 50px;
    font-weight: 500;
}

.btn-town {
    border: 1px solid var(--text-gold);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    background-color: white;
    color: var(--everfast-blue);
    font-family: 'Roboto', 'sans-serif';
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-town:hover {
    background-color: var(--text-gold);
    color: white;
}

.map {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}



/* ===========================================
   Home Internet Plans SECTION
   =========================================== */
.home-internet-wrapper {
    background-image: 
        var(--hero-bg-overlay),
        url('../../../imgs/man-using-everfast-home-internet-on-cell-phone.jpg');
    background-size: cover;
    background-position: center;
    color: white;

}

.home-internet-card,
.target-card-body  {
    background-color: var(--off-white);
    border-radius: 25px;
}

.home-internet-card img {
    border-radius: 25px 25px 0 0;
}

.home-internet-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
}

.home-internet-card-title {
    color: var(--everfast-blue);
    font-family: 'Roboto', 'sans-serif';
    font-weight: bold;
}

.home-internet-card-text {
    color: #7a7a7a;
    font-family: 'Roboto', 'sans-serif';
}


.home-internet-lower-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
}

.home-internet-lower-subtext {
    font-family: 'Roboto', 'sans-serif';
}

.home-internet-lower-text {
    font-family: 'Roboto', 'sans-serif';
}

.cta-title {
    font-family: 'Roboto', 'sans-serif';
    font-weight: bold
}

.cta-section-bottom-border {
    border-bottom: 1px solid white;
}



/* ===========================================
   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: 3rem;
    color: white;
}

.faq-subtext {
    font-family: 'Roboto', 'sans-serif';
    color: white;
}


.faq-question {
    font-family: 'Roboto', 'sans-serif';
    font-weight: 800;
}

.faq-answer {
    font-size: 16px;
    font-family: 'Roboto', 'sans-serif';
}

/* ===========================================
   TESTIMONIAL SECTION
   =========================================== */
.testimonial-wrapper {
    /* background-color: var(--off-white); */
}

.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";
    font-weight: lighter;
    font-weight: 300;
}

.reviewer-name {
    font-family: 'Roboto', 'sans-serif';
    font-weight: bolder;
}

.location {
    font-family: 'Roboto', 'sans-serif';
    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%);
}

/* ===========================================
   FOOTER SECTION
   =========================================== */
.footer-wrapper {
    background-color: var(--everfast-blue);
}

.footer-title,
.footer-list-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    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;
}