/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}

/*** Global ***/
body {
    font-family: 'Montserrat', sans-serif;
    color: #444;
}

a {
    text-decoration: none;
    transition: .3s;
}

/*** Section Headings ***/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 0;
}

.section-heading span {
    color: var(--primary);
}

.section-subtext {
    font-size: 1rem;
    color: #777;
    max-width: 580px;
    margin: 12px auto 0;
    line-height: 1.7;
}

@media (max-width: 576px) {
    .section-heading { font-size: 1.6rem; }
}



/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
#footer-logo{
    width: 100px;
}
#header-logo{
    width: 200px;
    
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-item img {
    height: 600px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 768px) {
    .carousel-item img { height: 380px; }
}
@media (max-width: 576px) {
    .carousel-item img { height: 280px; }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(9,30,62,0.5) 0%, rgba(9,30,62,0.85) 100%);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 13px;
        font-weight: 500 !important;
    }
    .carousel-caption h1 {
        font-size: 26px;
        font-weight: 700 !important;
    }
    .carousel-caption .btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

/*** Package Overview Cards ***/
.pkg-card {
    border-radius: 16px;
    border: 1.5px solid #e8f0f8;
    background: #fff;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(6,163,218,0.13);
    border-color: var(--primary);
}
.pkg-card-featured {
    border-color: var(--primary);
    background: linear-gradient(145deg, var(--primary) 0%, #0880b0 100%);
    position: relative;
}
.pkg-popular-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .3px;
}
.pkg-card-header {
    padding: 28px 24px 16px;
    text-align: center;
}
.pkg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--light);
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 14px;
}
.pkg-card-featured .pkg-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.pkg-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 4px;
}
.pkg-card-featured .pkg-name { color: #fff; }
.pkg-desc {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0;
}
.pkg-card-featured .pkg-desc { color: rgba(255,255,255,0.75); }
.pkg-card-body {
    padding: 0 24px 28px;
    text-align: center;
}
.pkg-speed {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 2px;
}
.pkg-speed span {
    font-size: 1rem;
    font-weight: 600;
    color: #999;
}
.pkg-card-featured .pkg-speed { color: #fff; }
.pkg-card-featured .pkg-speed span { color: rgba(255,255,255,0.7); }
.pkg-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}
.pkg-price small {
    font-size: 0.8rem;
    font-weight: 500;
    color: #aaa;
}
.pkg-card-featured .pkg-price { color: #fff; }
.pkg-card-featured .pkg-price small { color: rgba(255,255,255,0.65); }
.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 4px;
    text-align: left;
}
.pkg-features li {
    font-size: 0.88rem;
    color: #555;
    padding: 5px 0;
    border-bottom: 1px solid #f0f4f8;
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-card-featured .pkg-features li {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.15);
}

/*** FTTH Table Wrapper ***/
.ftth-table-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.09);
}

/*** Pricing Table ***/
.ftth-table {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.09);
    width: 100%;
}
.ftth-table thead tr {
    background: var(--dark);
}
.ftth-table thead th {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 20px;
    border: none;
}
.ftth-table tbody tr {
    transition: background .2s, transform .2s;
    border-bottom: 1px solid #f0f4f8;
}
.ftth-table tbody tr:hover {
    background: #f0f9ff;
}
.ftth-table tbody tr.highlighted {
    background: linear-gradient(90deg, #e8f7ff 0%, #f0fbff 100%);
    border-left: 4px solid var(--primary);
}
.ftth-table tbody td {
    padding: 14px 20px;
    vertical-align: middle;
    font-size: 0.95rem;
    border: none;
}
.ftth-table .speed-cell {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark);
}
.ftth-table .speed-cell .speed-badge {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 6px;
}
.ftth-table .bestfor-cell {
    color: #666;
    font-size: 0.9rem;
}
.ftth-table .bestfor-cell .use-tag {
    display: inline-block;
    background: #f0f4f8;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.8rem;
    color: #555;
    margin: 2px 2px 2px 0;
}
.ftth-table .price-cell {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
    white-space: nowrap;
}
.ftth-table .price-cell small {
    font-size: 0.72rem;
    font-weight: 500;
    color: #999;
    display: block;
    margin-top: 2px;
}
.ftth-table .popular-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-left: 6px;
    vertical-align: middle;
}
.ftth-table .btn-subscribe {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 8px;
    white-space: nowrap;
}

/*** Pricing Tabs ***/
.pricing-tab-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: .5px;
    border-radius: 10px !important;
    padding: 12px 32px !important;
    transition: all .3s;
}
.pricing-tab-btn.active {
    box-shadow: 0 4px 15px rgba(6,163,218,0.3);
}

/*** DIA Cards ***/
.dia-card {
    border-radius: 14px;
    border: 1.5px solid #e8f0f8;
    background: #fff;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    overflow: hidden;
}
.dia-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(6,163,218,0.15);
    border-color: var(--primary);
}
.dia-card.dia-featured {
    border-color: var(--primary);
    background: var(--dark);
}
.dia-card .dia-header {
    padding: 24px 24px 0;
}
.dia-card .dia-range {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}
.dia-card.dia-featured .dia-range { color: #fff; }
.dia-card .dia-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--primary);
    line-height: 1;
    margin: 12px 0 4px;
}
.dia-card.dia-featured .dia-price { color: #06A3DA; }
.dia-card .dia-unit {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}
.dia-card.dia-featured .dia-unit { color: rgba(255,255,255,0.6); }
.dia-card .dia-body {
    padding: 16px 24px 24px;
}
.dia-card .dia-desc {
    font-size: 0.88rem;
    color: #777;
    margin-bottom: 16px;
    line-height: 1.6;
}
.dia-card.dia-featured .dia-desc { color: rgba(255,255,255,0.65); }
.dia-card .dia-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
}
.dia-card.dia-featured .dia-feature { color: rgba(255,255,255,0.8); }
.dia-card .dia-feature i { color: var(--primary); font-size: 13px; }
/*** Testimonial ***/
.testimonial-item {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.testimonial-item .stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 2px;
}
.testimonial-item .quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
}
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Contact Cards ***/
.contact-card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform .3s, box-shadow .3s;
    overflow: hidden;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6,163,218,0.15);
}
.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.contact-card .contact-icon i {
    font-size: 24px;
    color: var(--primary);
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: .3s;
    text-decoration: none;
    color: #fff;
}
.social-btn:hover {
    opacity: 0.88;
    color: #fff;
    transform: translateY(-2px);
}
.social-btn.fb  { background: #1877F2; }
.social-btn.ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.tt  { background: #010101; }
.social-btn.tw  { background: #1DA1F2; }

/*** About Page ***/
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border-radius: 10px;
    background: var(--light);
    margin-bottom: 15px;
    transition: box-shadow .3s;
}
.about-feature-item:hover {
    box-shadow: 0 4px 15px rgba(6,163,218,0.12);
}
.about-feature-item .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feature-item .icon-box i {
    color: #fff;
    font-size: 20px;
}
.message-card {
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    padding: 30px;
}
.message-card .signature {
    font-style: italic;
    color: var(--primary);
    font-weight: 600;
    margin-top: 15px;
}

/*** Coverage badges ***/
.area-badge {
    display: inline-block;
    background: var(--light);
    color: var(--dark);
    border: 1px solid rgba(6,163,218,0.25);
    border-radius: 25px;
    padding: 7px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 5px;
    transition: .3s;
}
.area-badge:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/*** Footer ***/
.footer-link {
    color: #8a9bb5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color .2s;
}
.footer-link:hover { color: #fff; }
.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s;
    font-size: 0.85rem;
}
.footer-social-btn:hover { background: var(--primary); color: #fff; }
.footer-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(6,163,218,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
    font-size: 0.85rem;
}

/*** Miscellaneous ***/
.section-bg-light {
    background: #f8fbff;
}
.rounded-12 { border-radius: 12px; }
.shadow-soft { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Floating WhatsApp Button ***/
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 40px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
    z-index: 999;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}
.whatsapp-float i {
    color: #fff;
    font-size: 1.6rem;
}

/*** Footer mobile fixes ***/
.footer-link-sm { font-size: 0.75rem; }
.footer-col-title { font-size: 0.68rem; margin-bottom: 0.5rem !important; letter-spacing: 0 !important; }
.btn-footer-action { font-size: 0.72rem; padding: 5px 10px; white-space: nowrap; }
.footer-copyright { font-size: 0.75rem; }

@media (max-width: 575.98px) {
    /* === GLOBAL SPACING === */
    .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .container.py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    .mb-5 { margin-bottom: 1.5rem !important; }
    .mt-5 { margin-top: 1.5rem !important; }

    /* === PAGE HEADER === */
    .bg-header { margin-bottom: 0 !important; }
    [style*="margin-bottom:90px"] { margin-bottom: 0 !important; }
    .bg-header .row.py-5 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .bg-header .col-12 { padding-top: 3rem !important; margin-top: 0 !important; }
    .bg-header h1.display-4 { font-size: 1.8rem !important; }

    /* === SECTION HEADINGS === */
    .section-heading { font-size: 1.3rem !important; }
    .section-subtext { font-size: 0.85rem; }
    h3.fw-bold { font-size: 1.2rem !important; }
    .section-label { font-size: 0.65rem; letter-spacing: 2px; }

    /* === LOGO === */
    #header-logo { width: 130px; }

    /* === PRICING TABS === */
    .pricing-tab-btn { font-size: 0.72rem !important; padding: 8px 10px !important; letter-spacing: 0; }
    .pricing-tab-btn i { display: none; }

    /* === FTTH TABLE === */
    .ftth-table thead th { font-size: 0.68rem; padding: 10px 8px; letter-spacing: 0; }
    .ftth-table tbody td { font-size: 0.78rem; padding: 8px 8px; }
    .ftth-table .speed-cell { font-size: 0.82rem; }
    .ftth-table .price-cell { font-size: 0.88rem; }
    .ftth-table .bestfor-cell { display: none; }
    .ftth-table .btn-subscribe { font-size: 0.68rem; padding: 5px 8px; }
    .ftth-table .popular-badge { display: none; }
    .ftth-table .use-tag { display: none; }

    /* === PACKAGE PREVIEW CARDS === */
    .pkg-preview-card img { height: 120px !important; }
    .pkg-preview-card .p-4 { padding: 0.75rem !important; }

    /* === TRUST STRIP === */
    .trust-strip-item { font-size: 0.75rem; }

    /* === FOOTER MOBILE === */
    .footer-link-sm { font-size: 0.68rem; line-height: 1.4; }
    .footer-col-title { font-size: 0.6rem; }
    .footer-icon-circle { width: 24px; height: 24px; font-size: 0.7rem; margin-right: 5px; flex-shrink: 0; }
    .footer-copyright { font-size: 0.68rem; text-align: center; }
    .btn-footer-action { font-size: 0.7rem; padding: 6px 10px; }

    /* === SOCIAL BUTTONS === */
    .social-btn-label { display: none; }
    .social-btn { padding: 9px 12px; font-size: 0.85rem; }

    /* === ALL BUTTONS === */
    .btn { font-size: 0.78rem; padding: 6px 12px; }
    .btn-lg { font-size: 0.8rem !important; padding: 7px 14px !important; }

    /* === WHATSAPP FLOAT === */
    .whatsapp-float { width: 42px; height: 42px; bottom: 75px; right: 16px; }
    .whatsapp-float i { font-size: 1.2rem; }

    /* === BACK TO TOP === */
    .back-to-top { right: 16px; bottom: 16px; }

    /* === CONTACT CARDS === */
    .contact-card .contact-icon { width: 44px; height: 44px; }
    .contact-card .contact-icon i { font-size: 18px; }

    /* === ABOUT FEATURE ITEMS === */
    .about-feature-item { padding: 12px; gap: 10px; }
    .about-feature-item .icon-box { width: 38px; height: 38px; }

    /* === MESSAGE CARDS === */
    .message-card { padding: 18px; }

    /* === AREA BADGES === */
    .area-badge { font-size: 0.78rem; padding: 5px 12px; margin: 3px; }
}

/*** WhatsApp Button ***/
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}
.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}

/*** Animation speed cap ***/
.animated {
    animation-duration: 0.45s;
}
.wow {
    animation-duration: 0.45s;
}

/* Bootstrap tab fade — instant switch */
.tab-pane.fade {
    transition: opacity 0.15s ease !important;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    margin-bottom: 0 !important;
}

#kwote-footer {
    margin-bottom: 0;
    padding-bottom: 0;
    display: block;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}