/* =========================================================
   COVEXA NETWORKS
   ORANGE • WHITE • BLACK THEME
========================================================= */

/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;500;600;700;800&display=swap');


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --orange: #ff7a00;
    --orange-dark: #e65f00;
    --orange-light: #ff9d3d;

    --black: #050505;
    --black-soft: #0d0d0d;
    --black-card: #151515;

    --white: #ffffff;
    --white-soft: #f7f7f7;

    --gray: #a7a7a7;
    --gray-dark: #6f6f6f;

    --border: rgba(255, 255, 255, 0.09);

    --shadow:
        0 20px 60px rgba(0, 0, 0, 0.45);

    --orange-glow:
        0 0 45px rgba(255, 122, 0, 0.35);

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

    scroll-padding-top: 90px;

}

body {

    font-family: 'Poppins', sans-serif;

    background: var(--black);

    color: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}

img {

    max-width: 100%;

    display: block;

}

a {

    text-decoration: none;

    color: inherit;

}

ul {

    list-style: none;

}

button,
input,
textarea {

    font-family: inherit;

}


/* =========================================================
   SECTIONS
========================================================= */

section {

    padding: 100px 8%;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: var(--orange);

    color: var(--white);

    padding: 14px 30px;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 600;

    border: 2px solid var(--orange);

    cursor: pointer;

    transition: all 0.35s ease;

}

.btn:hover {

    background: var(--orange-dark);

    border-color: var(--orange-dark);

    transform: translateY(-3px);

    box-shadow: var(--orange-glow);

}

.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 30px;

    border-radius: 50px;

    border: 2px solid var(--orange);

    color: var(--white);

    font-size: 15px;

    font-weight: 600;

    transition: all 0.35s ease;

}

.btn-outline:hover {

    background: var(--orange);

    color: var(--white);

    transform: translateY(-3px);

}


/* =========================================================
   HEADER / NAVBAR
========================================================= */

header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(5, 5, 5, 0.92);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);

}

.navbar {

    width: 90%;

    max-width: 1400px;

    height: 82px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

}

.logo-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:

        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-dark)
        );

    color: var(--white);

    font-size: 25px;

    font-weight: 800;

    box-shadow:

        0 0 25px
        rgba(255, 122, 0, 0.35);

}

.logo h2 {

    font-size: 24px;

    line-height: 1;

    font-weight: 700;

}

.logo span {

    display: block;

    margin-top: 4px;

    color: var(--orange);

    font-size: 10px;

    letter-spacing: 4px;

    font-weight: 600;

}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {

    display: flex;

    align-items: center;

    gap: 35px;

}

.nav-links a {

    position: relative;

    color: #eeeeee;

    font-size: 14px;

    font-weight: 500;

    transition: 0.3s;

}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--orange);

    transition: 0.3s;

}

.nav-links a:hover {

    color: var(--orange);

}

.nav-links a:hover::after {

    width: 100%;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    padding-top: 150px;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 80px;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(255, 122, 0, 0.12),
            transparent 35%
        ),

        var(--black);

}


/* HERO BACKGROUND GLOW */

.hero::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    background: var(--orange);

    filter: blur(180px);

    opacity: 0.08;

    right: -150px;

    top: 30%;

    pointer-events: none;

}


/* HERO CONTENT */

.hero-content {

    position: relative;

    z-index: 2;

}

.hero-content h1 {

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.12;

    font-weight: 800;

    margin-bottom: 25px;

    letter-spacing: -2px;

}

.hero-content h1 span {

    color: var(--orange);

}

.hero-content > p {

    max-width: 700px;

    color: var(--gray);

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 35px;

}

.hero-content strong {

    color: var(--white);

}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 35px;

}

.stat {

    min-width: 145px;

    padding: 16px 20px;

    background:

        rgba(255, 255, 255, 0.035);

    border:

        1px solid var(--border);

    border-radius: 15px;

    transition: 0.3s;

}

.stat:hover {

    border-color: var(--orange);

    transform: translateY(-4px);

    box-shadow:

        0 10px 30px
        rgba(255, 122, 0, 0.1);

}

.stat h3 {

    color: var(--orange);

    font-size: 23px;

    font-weight: 700;

}

.stat p {

    color: var(--gray);

    font-size: 12px;

    margin: 0;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

}


/* =========================================================
   HERO WIFI ICON
========================================================= */

.hero-image {

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}

.wifi-icon {

    width: 250px;

    height: 250px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            var(--orange-light),
            var(--orange-dark)
        );

    box-shadow:

        0 0 40px
        rgba(255, 122, 0, 0.5),

        0 0 100px
        rgba(255, 122, 0, 0.25);

}

.wifi-icon i {

    position: relative;

    z-index: 5;

    color: var(--white);

    font-size: 100px;

    animation:

        wifiPulse 2s infinite ease-in-out;

    filter:

        drop-shadow(
            0 0 15px
            rgba(255, 255, 255, 0.7)
        );

}

.ring {

    position: absolute;

    border:

        2px solid
        rgba(255, 122, 0, 0.5);

    border-radius: 50%;

    animation:

        ripple 3s infinite ease-out;

}

.ring1 {

    width: 290px;
    height: 290px;

}

.ring2 {

    width: 350px;
    height: 350px;

    animation-delay: 1s;

}

.ring3 {

    width: 420px;
    height: 420px;

    animation-delay: 2s;

}


/* =========================================================
   WIFI ANIMATIONS
========================================================= */

@keyframes wifiPulse {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.1);

    }

}

@keyframes ripple {

    0% {

        transform: scale(0.7);

        opacity: 0.8;

    }

    100% {

        transform: scale(1.15);

        opacity: 0;

    }

}


/* =========================================================
   SECTION TITLES
========================================================= */

section h2 {

    text-align: center;

    font-size: clamp(32px, 4vw, 44px);

    line-height: 1.2;

    margin-bottom: 50px;

    font-weight: 700;

}

section h2::after {

    content: "";

    display: block;

    width: 70px;

    height: 4px;

    background: var(--orange);

    border-radius: 10px;

    margin: 15px auto 0;

}


/* =========================================================
   ABOUT
========================================================= */

.about {

    background:

        linear-gradient(
            180deg,
            #0b0b0b,
            #101010
        );

}

.about > p {

    max-width: 850px;

    margin:

        -15px auto 60px;

    text-align: center;

    color: var(--gray);

    font-size: 16px;

    line-height: 1.9;

}

.about-grid {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:

        repeat(
            3,
            1fr
        );

    gap: 25px;

}

.card {

    padding: 40px 30px;

    text-align: center;

    background:

        var(--black-card);

    border:

        1px solid var(--border);

    border-radius: 22px;

    transition: 0.35s;

}

.card:hover {

    transform: translateY(-10px);

    border-color: var(--orange);

    box-shadow:

        0 20px 50px
        rgba(0, 0, 0, 0.5);

}

.card i {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 75px;

    height: 75px;

    margin-bottom: 20px;

    border-radius: 20px;

    background:

        rgba(255, 122, 0, 0.1);

    color: var(--orange);

    font-size: 34px;

}

.card h3 {

    font-size: 21px;

    margin-bottom: 10px;

}

.card p {

    color: var(--gray);

    font-size: 14px;

}


/* =========================================================
   SERVICES
========================================================= */

.services {

    background: var(--black);

}

.service-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:

        repeat(
            4,
            1fr
        );

    gap: 22px;

}

.service-card {

    padding: 40px 25px;

    text-align: center;

    background:

        linear-gradient(
            145deg,
            #181818,
            #0d0d0d
        );

    border:

        1px solid var(--border);

    border-radius: 22px;

    transition: 0.35s;

}

.service-card:hover {

    transform: translateY(-10px);

    border-color: var(--orange);

    box-shadow:

        0 20px 50px
        rgba(255, 122, 0, 0.1);

}

.service-card i {

    color: var(--orange);

    font-size: 45px;

    margin-bottom: 20px;

}

.service-card h3 {

    font-size: 19px;

    margin-bottom: 12px;

}

.service-card p {

    color: var(--gray);

    font-size: 13px;

}


/* =========================================================
   PLANS
========================================================= */

.plans {

    background:

        #0b0b0b;

}

.plan-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:

        repeat(
            4,
            1fr
        );

    gap: 25px;

}

.plan {

    position: relative;

    overflow: hidden;

    padding: 40px 25px;

    text-align: center;

    background: var(--white);

    color: var(--black);

    border-radius: 22px;

    transition: 0.35s;

}

.plan:hover {

    transform: translateY(-10px);

    box-shadow:

        0 25px 60px
        rgba(0, 0, 0, 0.5);

}

.plan h3 {

    font-size: 24px;

    margin-bottom: 12px;

}

.plan h1 {

    color: var(--orange);

    font-size: 40px;

    margin-bottom: 8px;

}

.plan p {

    color: #666;

    margin-bottom: 25px;

}

.plan a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--orange);

    color: var(--white);

    padding: 12px 28px;

    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s;

}

.plan a:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);

}


/* POPULAR PLAN */

.plan.popular {

    border:

        3px solid var(--orange);

    transform:

        scale(1.04);

}

.plan.popular:hover {

    transform:

        scale(1.04)
        translateY(-10px);

}

.plan.popular > span {

    position: absolute;

    top: 18px;

    right: -38px;

    padding: 7px 45px;

    background: var(--orange);

    color: var(--white);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    transform: rotate(45deg);

}


/* =========================================================
   CTA
========================================================= */

.cta {

    position: relative;

    overflow: hidden;

    text-align: center;

    background:

        linear-gradient(
            135deg,
            #ff7a00,
            #e65f00
        );

}

.cta::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background:

        rgba(255, 255, 255, 0.1);

    top: -180px;

    left: -100px;

}

.cta h2 {

    position: relative;

    font-size: clamp(34px, 4vw, 48px);

}

.cta h2::after {

    display: none;

}

.cta p {

    position: relative;

    max-width: 650px;

    margin: 0 auto 35px;

    color: rgba(255, 255, 255, 0.9);

}

.cta .btn {

    position: relative;

    background: var(--black);

    border-color: var(--black);

}

.cta .btn:hover {

    background: #222;

    border-color: #222;

}


/* =========================================================
   CONTACT
========================================================= */

.contact {

    background: #0b0b0b;

}

.contact-intro {

    max-width: 700px;

    margin:

        -20px auto 45px;

    text-align: center;

    color: var(--gray);

}

.contact-box {

    max-width: 950px;

    margin: auto;

    display: grid;

    grid-template-columns:

        0.8fr 1.2fr;

    gap: 50px;

    padding: 45px;

    background: var(--black-card);

    border:

        1px solid var(--border);

    border-radius: 25px;

    box-shadow: var(--shadow);

}


/* CONTACT INFO */

.contact-info {

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.contact-info p {

    display: flex;

    align-items: center;

    gap: 15px;

    color: var(--gray);

    font-size: 15px;

    margin: 15px 0;

    word-break: break-word;

}

.contact-info i {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        rgba(255, 122, 0, 0.1);

    color: var(--orange);

    border-radius: 12px;

}


/* =========================================================
   CONTACT FORM
========================================================= */

#contactForm {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.form-group {

    display: flex;

    flex-direction: column;

    text-align: left;

    gap: 7px;

}

.form-group label {

    color: var(--white);

    font-size: 13px;

    font-weight: 500;

}

.form-group label span {

    color: var(--gray-dark);

}

.form-group input,
.form-group textarea {

    width: 100%;

    padding: 14px 16px;

    border:

        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 12px;

    outline: none;

    background: #0b0b0b;

    color: var(--white);

    font-size: 14px;

    transition: 0.3s;

}

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #666;

}

.form-group input:focus,
.form-group textarea:focus {

    border-color: var(--orange);

    box-shadow:

        0 0 0 3px
        rgba(255, 122, 0, 0.1);

}

.form-group textarea {

    min-height: 140px;

    resize: vertical;

}


/* FILE INPUT */

.form-group input[type="file"] {

    padding: 10px;

    cursor: pointer;

}

.form-group input[type="file"]::file-selector-button {

    margin-right: 12px;

    padding: 8px 14px;

    border: none;

    border-radius: 8px;

    background: var(--orange);

    color: var(--white);

    cursor: pointer;

    font-family: inherit;

}

.form-group small {

    color: var(--gray-dark);

    font-size: 11px;

}


/* FORM BUTTON */

#contactForm .btn {

    width: 100%;

    margin-top: 5px;

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    padding: 30px 20px;

    text-align: center;

    background: #030303;

    border-top:

        1px solid var(--border);

    color: var(--gray);

    font-size: 13px;

}

footer p {

    margin: 5px 0;

}

footer strong {

    color: var(--orange);

}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #25D366;

    color: white;

    font-size: 31px;

    z-index: 999;

    box-shadow:

        0 10px 35px
        rgba(37, 211, 102, 0.4);

    transition: 0.3s;

}

.whatsapp-float:hover {

    transform: scale(1.1);

}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 9px;

}

::-webkit-scrollbar-track {

    background: var(--black);

}

::-webkit-scrollbar-thumb {

    background: var(--orange);

    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: var(--orange-light);

}


/* =========================================================
   ANIMATIONS
========================================================= */

.card,
.service-card,
.plan {

    animation:

        fadeUp 0.8s ease both;

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 40px;

    }

    .hero-content > p {

        margin-left: auto;

        margin-right: auto;

    }

    .hero-stats {

        justify-content: center;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-image {

        min-height: 400px;

    }

    .about-grid {

        grid-template-columns:

            repeat(
                3,
                1fr
            );

    }

    .service-grid {

        grid-template-columns:

            repeat(
                2,
                1fr
            );

    }

    .plan-grid {

        grid-template-columns:

            repeat(
                2,
                1fr
            );

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {

    section {

        padding:

            75px 6%;

    }

    .navbar {

        width: 92%;

        height: 75px;

    }

    .nav-links {

        display: none;

    }

    .navbar > .btn {

        padding:

            11px 20px;

        font-size: 13px;

    }

    .logo-icon {

        width: 43px;

        height: 43px;

        font-size: 21px;

    }

    .logo h2 {

        font-size: 20px;

    }

    .logo span {

        font-size: 8px;

        letter-spacing: 3px;

    }

    .hero {

        padding-top: 125px;

    }

    .hero-content h1 {

        font-size: 39px;

        letter-spacing: -1px;

    }

    .hero-content > p {

        font-size: 15px;

    }

    .hero-image {

        min-height: 350px;

    }

    .wifi-icon {

        width: 190px;

        height: 190px;

    }

    .wifi-icon i {

        font-size: 75px;

    }

    .ring1 {

        width: 220px;

        height: 220px;

    }

    .ring2 {

        width: 270px;

        height: 270px;

    }

    .ring3 {

        width: 320px;

        height: 320px;

    }

    .about-grid,
    .service-grid,
    .plan-grid {

        grid-template-columns: 1fr;

    }

    .plan.popular {

        transform: none;

    }

    .plan.popular:hover {

        transform: translateY(-10px);

    }

    .contact-box {

        grid-template-columns: 1fr;

        padding: 30px 22px;

        gap: 35px;

    }

    .contact-info {

        text-align: center;

    }

    .contact-info p {

        justify-content: center;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-buttons .btn,
    .hero-buttons .btn-outline {

        width: 100%;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .navbar > .btn {

        display: none;

    }

    .hero-content h1 {

        font-size: 33px;

    }

    .hero-stats {

        display: grid;

        grid-template-columns: 1fr;

    }

    .stat {

        width: 100%;

    }

    section h2 {

        font-size: 30px;

    }

    .cta h2 {

        font-size: 32px;

    }

    .whatsapp-float {

        width: 55px;

        height: 55px;

        right: 18px;

        bottom: 18px;

        font-size: 27px;

    }

}