/* ===================================================
   TRUE SERVE WIFI
   PROFESSIONAL ISP WEBSITE
   STYLE.CSS - PART 1
=================================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#0B5ED7;
    --secondary:#0A58CA;
    --accent:#FF7A00;

    --dark:#1B1B1B;
    --light:#ffffff;

    --text:#555;
    --border:#ECECEC;

    --radius:14px;

    --shadow:0 15px 35px rgba(0,0,0,.08);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:#F8FAFD;
    line-height:1.7;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:92%;
    max-width:1200px;
    margin:auto;

}

/* =============================
TOP BAR
============================= */

.top-bar{

    background:var(--primary);
    color:#fff;
    font-size:14px;
    padding:12px 0;

}

.top-bar .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.top-bar a{

    color:#fff;

}

.top-bar i{

    margin-right:8px;

}

/* =============================
HEADER
============================= */

.main-header{

    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.main-header .container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:85px;

}

.logo img{

    height:60px;

}

.navbar ul{

    display:flex;
    gap:35px;

}

.navbar a{

    color:#333;
    font-weight:600;
    transition:.3s;

}

.navbar a:hover,
.navbar .active{

    color:var(--primary);

}

.call-btn{

    background:var(--primary);
    color:#fff;
    padding:14px 26px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;

}

.call-btn:hover{

    background:var(--secondary);

}

.mobile-menu{

    display:none;
    font-size:30px;
    cursor:pointer;

}

/* =============================
HERO
============================= */

.hero{

    padding:90px 0;

    background:
    linear-gradient(
    rgba(11,94,215,.90),
    rgba(11,94,215,.88)),
    url(images/hero.jpg);

    background-size:cover;
    background-position:center;

}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 470px;
    gap:60px;
    align-items:center;

}

.hero-left{

    color:#fff;

}

.hero-badge{

    display:inline-block;
    background:#fff;
    color:var(--primary);
    padding:10px 18px;
    border-radius:40px;
    font-weight:600;
    margin-bottom:25px;

}

.hero-left h1{

    font-size:58px;
    line-height:1.15;
    margin-bottom:25px;
    font-weight:800;

}

.hero-left p{

    font-size:18px;
    margin-bottom:35px;
    color:#E8F0FF;

}

.hero-buttons{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.primary-btn{

    background:#fff;
    color:var(--primary);
    padding:17px 32px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;

}

.primary-btn:hover{

    transform:translateY(-3px);

}

.secondary-btn{

    border:2px solid #fff;
    color:#fff;
    padding:17px 32px;
    border-radius:50px;
    font-weight:700;

}

/* =============================
AVAILABILITY CARD
============================= */

.availability-card{

    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);

}

.availability-card h2{

    text-align:center;
    margin-bottom:25px;
    font-size:32px;

}

.availability-card input{

    width:100%;
    height:56px;
    margin-bottom:18px;
    padding:0 18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;

}

.zip-row{

    display:flex;
    gap:15px;

}

.zip-row button{

    width:180px;
    background:var(--primary);
    color:#fff;
    border:none;
    border-radius:12px;
    font-size:17px;
    font-weight:700;
    cursor:pointer;

}

.small-text{

    margin-top:18px;
    text-align:center;
    color:#777;

}
/* ===================================================
STYLE.CSS - PART 2
===================================================*/

/* =============================
COMMON SECTION
============================= */

section{

    padding:90px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    margin-bottom:15px;
    color:var(--dark);
    font-weight:700;

}

.section-title p{

    max-width:700px;
    margin:auto;
    color:#777;
    font-size:17px;

}

/* =============================
PROVIDERS
============================= */

.providers{

    background:#fff;

}

.provider-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.provider-card{

    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;

}

.provider-card:hover{

    transform:translateY(-10px);

}

.provider-card img{

    height:70px;
    margin:auto;
    margin-bottom:25px;
    object-fit:contain;

}

.provider-card h3{

    font-size:24px;
    margin-bottom:15px;

}

.provider-card p{

    color:#777;
    margin-bottom:25px;

}

.provider-card a{

    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:12px 24px;
    border-radius:40px;
    font-weight:600;

}

/* =============================
WHY US
============================= */

.why-us{

    background:#F7F9FC;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;

}

.why-box{

    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    box-shadow:var(--shadow);
    text-align:center;
    transition:.35s;

}

.why-box:hover{

    transform:translateY(-8px);

}

.why-box i{

    width:80px;
    height:80px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:auto;
    margin-bottom:25px;

}

.why-box h3{

    margin-bottom:15px;
    font-size:24px;

}

.why-box p{

    color:#777;

}

/* =============================
INTERNET SECTION
============================= */

.internet-section{

    background:#fff;

}

.business-section{

    background:#F7F9FC;

}

.internet-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.internet-grid.reverse{

    direction:rtl;

}

.internet-grid.reverse>*{

    direction:ltr;

}

.internet-image{

    width:100%;
    border-radius:20px;
    box-shadow:var(--shadow);

}

.mini-title{

    color:var(--primary);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;

}

.internet-grid h2{

    font-size:42px;
    margin:18px 0;

}

.internet-grid p{

    color:#666;
    margin-bottom:25px;

}

.feature-list{

    margin-bottom:35px;

}

.feature-list li{

    margin-bottom:14px;
    font-size:17px;

}

.feature-list i{

    color:var(--primary);
    margin-right:10px;

}

/* =============================
STATISTICS
============================= */

.stats{

    background:var(--primary);
    color:#fff;

}

.stats-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    text-align:center;

}

.stats-grid h2{

    font-size:52px;
    font-weight:800;
    margin-bottom:10px;

}

.stats-grid p{

    font-size:18px;

}
/* ===================================================
STYLE.CSS - PART 3
===================================================*/

/* =============================
TESTIMONIALS
============================= */

.testimonials{

    background:#fff;

}

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

}

.testimonial-card{

    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.stars{

    color:#FFC107;
    font-size:22px;
    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;
    margin-bottom:20px;

}

.testimonial-card h4{

    color:var(--primary);

}

/* =============================
FAQ
============================= */

.faq{

    background:#F7F9FC;

}

.faq-item{

    background:#fff;
    padding:30px;
    margin-bottom:20px;
    border-radius:15px;
    box-shadow:var(--shadow);

}

.faq-item h3{

    color:var(--primary);
    margin-bottom:15px;

}

.faq-item p{

    color:#666;

}

/* =============================
CALL TO ACTION
============================= */

.cta{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;
    text-align:center;

}

.cta h2{

    font-size:48px;
    margin-bottom:20px;

}

.cta p{

    font-size:18px;
    margin-bottom:35px;
    color:#EAF2FF;

}

.cta .primary-btn{

    background:#fff;
    color:var(--primary);

}

.cta .secondary-btn{

    border:2px solid #fff;
    color:#fff;

}

/* =============================
FOOTER
============================= */

.footer{

    background:#111827;
    color:#fff;
    padding:80px 0 30px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;

}

.footer img{

    margin-bottom:20px;
    max-width:180px;

}

.footer h3{

    margin-bottom:20px;
    font-size:22px;

}

.footer ul li{

    margin-bottom:12px;

}

.footer a{

    color:#fff;
    transition:.3s;

}

.footer a:hover{

    color:#63A8FF;

}

.footer p{

    color:#D6D6D6;

}

.footer hr{

    border:none;
    height:1px;
    background:#2C3746;
    margin:40px 0 25px;

}

.copyright{

    text-align:center;
    color:#bbb;

}

/* =============================
FLOATING CALL BUTTON
============================= */

.floating-call{

    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;

}

.floating-call:hover{

    transform:scale(1.1);

}

/* =============================
HOVER ANIMATIONS
============================= */

.provider-card,
.why-box,
.testimonial-card{

    transition:.35s ease;

}

.provider-card:hover,
.why-box:hover,
.testimonial-card:hover{

    transform:translateY(-8px);

}
/* ===================================================
STYLE.CSS - PART 4 (FINAL)
===================================================*/

/* =============================
RESPONSIVE
============================= */

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

}

.internet-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.top-bar{

display:none;

}

.navbar{

display:none;

}

.mobile-menu{

display:block;

}

.main-header .container{

min-height:75px;

}

.logo img{

height:50px;

}

.hero{

padding:70px 0;

}

.hero-left{

text-align:center;

}

.hero-left h1{

font-size:40px;

}

.hero-buttons{

justify-content:center;

}

.zip-row{

flex-direction:column;

}

.zip-row button{

width:100%;
height:56px;

}

.section-title h2{

font-size:32px;

}

.internet-grid h2{

font-size:32px;

}

.cta h2{

font-size:36px;

}

.footer-grid{

grid-template-columns:1fr;

}

}

@media(max-width:480px){

.container{

width:94%;

}

.hero-left h1{

font-size:32px;

}

.hero-left p{

font-size:16px;

}

.call-btn{

display:none;

}

.primary-btn,
.secondary-btn{

width:100%;
text-align:center;

}

.availability-card{

padding:25px;

}

.stats-grid h2{

font-size:40px;

}

.floating-call{

width:58px;
height:58px;
font-size:22px;

}

}

/* =================================================
CONTACT FORM
=================================================*/

#contact-form{

width:100%;

}

.contact-table{

width:100%;
border-collapse:collapse;
margin-bottom:25px;
background:#fff;

}

.contact-table td{

border:1px solid #d9d9d9;
padding:18px;
vertical-align:top;

}

.label-cell{

width:140px;
white-space:nowrap;

}

.message-label{

padding-top:25px;

}

.contact-table input{

width:100%;
border:none;
outline:none;
font-size:16px;
font-family:'Poppins',sans-serif;
background:transparent;

}

.contact-table textarea{

width:100%;
border:none;
outline:none;
resize:vertical;
min-height:160px;
font-size:16px;
font-family:'Poppins',sans-serif;
background:transparent;

}

.sms-consent{

border:1px solid #bfcde2;
background:#fff;
padding:18px;
margin-bottom:18px;

}

.sms-consent label{

display:block;
cursor:pointer;

}

.sms-consent input[type="radio"]{

margin-right:10px;
transform:scale(1.2);

}

.sms-consent span{

font-size:15px;
line-height:1.8;
color:#444;

}

.sms-consent a{

color:#0B5ED7;
font-weight:600;
text-decoration:none;

}

.sms-consent a:hover{

text-decoration:underline;

}

.submit-btn{

width:100%;
border:none;
cursor:pointer;
font-size:18px;
padding:18px;
background:var(--primary);
color:#fff;
border-radius:12px;
font-weight:700;
transition:.3s;

}

.submit-btn:hover{

background:var(--secondary);

}

/* Mobile Contact Form */

@media(max-width:768px){

.contact-table,
.contact-table tbody,
.contact-table tr,
.contact-table td{

display:block;
width:100%;

}

.label-cell{

background:#0B5ED7;
color:#fff;
font-size:16px;

}

.contact-table td{

border:1px solid #ddd;

}

}

/* ===================================================
END OF FILE
===================================================*/
