/*
Theme Name: Cenos Networks
Author: Cenos Networks
Description: Custom WordPress theme for Cenos Networks.
Version: 1.1
*/


/* =========================================================
   GLOBAL VARIABLES
========================================================= */

:root {
    --navy: #06182b;
    --navy-dark: #030e1a;
    --blue: #159cff;
    --blue-dark: #0077e6;
    --text: #12243a;
    --muted: #607085;
    --light: #f4f8fc;
    --border: #dbe6f0;
}


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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin-left: auto;
    margin-right: auto;
}


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

.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 99999;
    border-bottom: 1px solid #18334d;
}

.site-header .nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Logo */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 185px;
    height: auto;
    display: block;
}


/* Desktop Navigation */

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #55b7ff;
}


/* Header Phone */

.header-phone {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 5px;
}

.header-phone:hover {
    color: #55b7ff;
}


/* Header CTA */

.header-cta {
    flex-shrink: 0;
    white-space: nowrap;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
}


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

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--blue);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--blue-dark);
}

.btn-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
    border: 1px solid #9fb3c5;
    color: var(--navy);
}


/* Button groups */

.buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}


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

.hero {
    min-height: 600px;
    color: #ffffff;
    display: flex;
    align-items: center;

    /*
    IMPORTANT:
    Replace YOUR-HERO-IMAGE-URL-HERE with the Reno/Sierra
    image currently being used on your homepage.
    */

    background:
        linear-gradient(
            90deg,
            rgba(3, 18, 34, 0.82) 0%,
            rgba(3, 18, 34, 0.55) 45%,
            rgba(3, 18, 34, 0.18) 100%
        ),
        url('https://cenosnetworks.com/wp-content/uploads/2026/09/ChatGPT-Image-Sep-21-2026-09_22_11-AM.png') center / cover no-repeat;
}


/* Hero kicker */

.kicker {
    font-size: 14px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}


/* Hero heading */

.hero h1 {
    line-height: 1.05;
}

.hero h1 .hero-title-main {
    display: inline-block;
    font-size: 52px;
    color: #ffffff;
}

.hero h1 span {
    font-size: 52px;
    color: var(--blue);
}


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

.section {
    padding: 75px 0;
}

.section.alt {
    background: var(--light);
}

.section.dark {
    background: var(--navy);
    color: #ffffff;
}

.section-head {
    max-width: 750px;
    margin-bottom: 32px;
}

.section-head h2 {
    font-size: 40px;
    line-height: 1.1;
    margin: 8px 0 12px;
}

.section-head p {
    font-size: 17px;
    color: var(--muted);
}

.dark .section-head p {
    color: #c7d7e6;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px #0a274414;
    background: #ffffff;
}

.card-media {
    height: 180px;
    padding: 0;
    overflow: hidden;
    background: transparent;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 23px;
}

.card h3 {
    margin: 0 0 8px;
}

.card p {
    color: var(--muted);
}

.link {
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 700;
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 55px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature {
    display: flex;
    gap: 14px;
}

.icon {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 50%;
    background: #159cff20;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.feature h4 {
    margin: 0 0 3px;
}

.feature p {
    margin: 0;
    color: #c1d2e1;
    font-size: 14px;
}


/* =========================================================
   COVERAGE SECTION
========================================================= */

.coverage {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.coverage-image {
    min-height: 390px;
    background:
        linear-gradient(#06182b33, #06182b33),
        url('https://images.unsplash.com/photo-1545060894-3d4d7f2e6b77?auto=format&fit=crop&w=1200&q=80')
        center / cover;
}

.coverage-copy {
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coverage-copy li {
    margin: 7px 0;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial {
    background: #eaf4ff;
    border: 1px solid #d4e8fb;
    border-radius: 12px;
    padding: 25px;
}


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

.cta {
    background: linear-gradient(100deg, #0875d1, #159cff);
    color: #ffffff;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    font-size: 40px;
    margin: 0 0 10px;
}


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

.page-hero {
    background: linear-gradient(100deg, #06182b, #0a3154);
    color: #ffffff;
    padding: 80px 0;
}

.page-hero h1 {
    font-size: 54px;
    line-height: 1.05;
    margin: 10px 0;
}

.page-hero p {
    max-width: 720px;
    color: #d6e4ef;
    font-size: 18px;
}


/* =========================================================
   FORMS
========================================================= */

.form-box {
    max-width: 900px;
    margin: auto;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 12px 30px #0a274414;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-weight: 700;
    font-size: 14px;
}

.field input,
.field select,
.field textarea {
    padding: 12px;
    border: 1px solid #cbd8e5;
    border-radius: 8px;
    font: inherit;
}

.field textarea {
    min-height: 130px;
}


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

.site-footer {
    background: var(--navy-dark);
    color: #dce8f3;
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    width: 170px;
    height: auto;
    display: block;
}


/* Footer Navigation */

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #c7d7e6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--blue);
}


/* Footer right side */

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}


/* Footer Phone */

.footer-phone {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 4px;
}

.footer-phone:hover {
    color: var(--blue);
}


/* Social Icons */

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(21, 156, 255, 0.1);
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: var(--blue);
    color: #ffffff;
}


/* Copyright */

.footer-right .copyright {
    color: #607085;
    font-size: 11px;
    border: none;
    margin: 0;
    padding: 0;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .logo img {
        width: 160px;
    }
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 900px) {

    /* Header */

    .site-header .nav {
        min-height: 64px;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        position: relative;
        z-index: 99999;
    }

    .site-header .logo {
        flex-shrink: 0;
    }

    .site-header .logo img {
        width: 115px;
        height: auto;
    }

    .site-header .header-phone {
        display: inline-block;
        margin-left: auto;
        margin-right: 0;
        font-size: 11px;
        font-weight: 700;
        white-space: nowrap;
    }

    .site-header .header-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;

        width: auto;
        min-width: 0;
        max-width: none;
        height: 30px;
        min-height: 30px;

        padding: 0 10px;
        border-radius: 15px;

        font-size: 10px;
        line-height: 1;
        white-space: nowrap;
    }

    /* Hamburger */

    .site-header .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 100001;
        flex: 0 0 auto;

        width: 32px;
        height: 32px;

        margin: 0;
        padding: 5px;

        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .site-header .mobile-menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        margin: 4px 0;

        background: #ffffff;
        border-radius: 2px;
    }

    /* Mobile dropdown */

    .site-header .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 100000;

        width: 100%;
        margin: 0;
        padding: 10px 20px;

        background: var(--navy);
        border-top: 1px solid #18334d;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .site-header .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-header .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 5px;

        font-size: 15px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Content */

    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .features,
    .coverage {
        grid-template-columns: 1fr;
    }

    /* Footer */

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-right {
        align-items: center;
    }
}


/* =========================================================
   PHONES
========================================================= */

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    /* Hero */

    .hero {
        min-height: 650px;
        background-position: center;
    }

    .hero h1,
    .hero h1 .hero-title-main,
    .hero h1 span {
        font-size: 44px;
    }

    .buttons {
        gap: 12px;
    }

    /* Sections */

    .section {
        padding: 55px 0;
    }

    .section-head h2,
    .cta h2 {
        font-size: 32px;
    }

    /* Cards / Features / Forms */

    .cards,
    .feature-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Page Hero */

    .page-hero {
        padding: 60px 0;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    /* Footer */

    .footer-nav {
        gap: 12px 18px;
    }

    .footer-phone {
        font-size: 17px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 430px) {

    .hero h1,
    .hero h1 .hero-title-main,
    .hero h1 span {
        font-size: 40px;
    }

    .btn:not(.header-cta) {
        padding: 12px 17px;
        font-size: 14px;
    }
}


/* Keep homepage hero below the sticky navigation */

.hero {
    position: relative;
    z-index: 1;
}
@media (max-width: 600px) {
    .desktop-break {
        display: none;
    }
}
/* =========================================================
   FOOTER DBA BRAND
========================================================= */

.footer-brands {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    flex-shrink: 0;
}

.dba-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.dba-label {
    color: #8ea3b7;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.tmi-logo {
    display: block;
    width: 145px;
    height: auto;
}


/* Mobile */

@media (max-width: 900px) {

    .footer-brands {
        align-items: center;
        gap: 14px;
    }

    .dba-brand {
        align-items: center;
    }

    .dba-label {
        text-align: center;
    }

    .tmi-logo {
        width: 140px;
    }

}