/* ==========================================================================
   cgn.ltd site styles
   Loaded after the theme (style.css / responsive.css). Everything specific
   to Creative Global Networks lives here so theme files stay untouched.
   ========================================================================== */

:root {
    --primary-color: #007ebb;      /* theme accent, was orange */
    --brand: #007ebb;
    --brand-dark: #005f8e;
    --brand-soft: #e6f3fa;
    --dark-color: #10161d;
    --secondary-color: #5b6673;
    --grey-color: #f4f6f8;
    --line: #e5e9ee;
    --radius: 10px;
    --shadow: 0 8px 30px rgba(16, 22, 29, 0.08);
    --shadow-lg: 0 18px 45px rgba(16, 22, 29, 0.14);
}

/* --------------------------------------------------------------------------
   Base typography and spacing
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }
body { font-size: 16px; line-height: 1.7; color: var(--secondary-color); }
p { margin-bottom: 18px; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4, h5, h6 { text-transform: none; color: var(--dark-color); }
h2 { font-size: 36px; line-height: 1.2; }
h3 { font-size: 24px; line-height: 1.3; }
h4 { font-size: 18px; line-height: 1.4; }
.lead { font-size: 18px; line-height: 1.6; color: #3d4752; }
img { border-radius: 0; }
section { padding: 90px 0; }
.bg-light-grey { background: var(--grey-color); }
.bg-brand { background: var(--brand); }
.text-white-75 { color: rgba(255, 255, 255, 0.8); }
.text-white-50 { color: rgba(255, 255, 255, 0.65) !important; }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 17px; }

.pq-section-sub-title {
    display: inline-block;
    color: var(--brand);
    font-family: var(--title-fonts);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Buttons: unify on the theme button, add light variants for dark bands */
.pq-button {
    font-weight: 500;
    padding: 12px 28px;
    line-height: 1.6;
    border: 2px solid var(--brand);
    border-radius: 6px;
    background: var(--brand);
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.pq-button:hover, .pq-button:focus { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); }
button.pq-button { cursor: pointer; }
.pq-button.pq-btn-outline-light { background: transparent; border-color: rgba(255, 255, 255, 0.6); }
.pq-button.pq-btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.pq-button.pq-btn-light { background: #fff; border-color: #fff; color: var(--brand); }
.pq-button.pq-btn-light:hover { background: var(--brand-soft); border-color: var(--brand-soft); color: var(--brand-dark); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
header#pq-header .pq-top-header { font-size: 13px; }
header#pq-header .pq-top-header .pq-header-contact ul li { padding: 8px 18px 8px 0; border-right: 0; }
header#pq-header .pq-top-header .pq-header-contact ul li a { color: rgba(255, 255, 255, 0.85); }
header#pq-header .pq-top-header .pq-header-contact ul li a:hover { color: #fff; }
header#pq-header .pq-top-header .pq-header-contact ul li i { margin-right: 8px; color: #7fd0ff; }
header#pq-header .pq-top-header .pq-header-social ul { float: right; margin: 0; padding: 0; }
header#pq-header .pq-top-header .pq-header-social ul li { display: inline-block; border: 0; padding: 0; margin-left: 4px; }
header#pq-header .pq-top-header .pq-header-social ul li a { display: inline-block; width: 36px; line-height: 36px; text-align: center; color: rgba(255, 255, 255, 0.85); }
header#pq-header .pq-top-header .pq-header-social ul li a:hover { color: #7fd0ff; }

header#pq-header .pq-bottom-header { min-height: 84px; border-bottom: 1px solid var(--line); }
header#pq-header .pq-bottom-header .navbar { padding: 0; }
header#pq-header .pq-bottom-header .navbar .navbar-brand { line-height: 84px; margin-right: 24px; }
header#pq-header .pq-bottom-header .navbar .navbar-brand img { width: 60px; }
header#pq-header .pq-bottom-header .navbar .navbar-nav { float: none; margin-left: auto; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li { margin-right: 28px; line-height: 84px; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li a { font-size: 15px; font-weight: 500; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li > a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-ancestor > a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-item > a { color: var(--brand); }
header#pq-header .pq-bottom-header .navbar .navbar-nav li i.pq-submenu-icon { margin-left: 6px; font-size: 10px; opacity: 0.6; }

/* Dropdowns */
header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    top: 84px;
    width: 290px;
    padding: 8px 0;
    border-radius: 0 0 8px 8px;
    border-top: 3px solid var(--brand);
    box-shadow: var(--shadow-lg);
}
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li { border-bottom: 0; line-height: 1.5; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a {
    padding: 10px 22px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    float: none;
    display: block;
}
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:before { display: none; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item > a { background: var(--brand-soft); color: var(--brand); padding-left: 26px; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu > li:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item { background: transparent; }

.header-cta { margin-left: 28px; padding: 10px 22px; white-space: nowrap; }

/* Sticky state: keep the page from jumping when the bar becomes fixed */
header#pq-header.pq-header-default .pq-bottom-header.pq-header-sticky { z-index: 999; animation: slideDown 0.3s ease; }
body.has-sticky-header { padding-top: 84px; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* Mobile header */
@media (max-width: 1023px) {
    header#pq-header .pq-bottom-header { min-height: 68px; }
    header#pq-header .pq-bottom-header .navbar { padding: 8px 0; min-height: 68px; }
    header#pq-header .pq-bottom-header .navbar .navbar-brand { line-height: 52px; margin-right: auto; }
    header#pq-header .pq-bottom-header .navbar .navbar-brand img { width: 48px; }
    .header-cta { display: none; }
    body.has-sticky-header { padding-top: 68px; }

    header#pq-header .pq-bottom-header .navbar-toggler {
        background: var(--brand);
        color: #fff;
        border: 0;
        border-radius: 6px;
        width: 44px;
        height: 44px;
        padding: 0;
        margin: 0;
        font-size: 18px;
        line-height: 44px;
        float: none;
    }
    header#pq-header .pq-bottom-header .navbar-toggler:focus { box-shadow: 0 0 0 3px var(--brand-soft); }

    header#pq-header .pq-bottom-header .navbar .navbar-collapse {
        top: 100%;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        border-top: 1px solid var(--line);
        padding: 6px 0 10px;
    }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li { border-bottom: 1px solid var(--line); margin: 0; }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li:last-child { border-bottom: 0; }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li a { padding: 14px 18px; font-size: 16px; }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li > a:hover,
    header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover > a { background: transparent; color: var(--brand); }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-item:hover > a { color: var(--brand); }

    /* Hover must not open sub-menus on touch devices; tap toggles .open instead */
    header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu { display: none; }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li.open > .sub-menu {
        display: block;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        padding: 4px 0 8px;
        background: var(--grey-color);
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li { border-bottom: 0; }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu > li > a { background: transparent; padding: 10px 18px 10px 34px; font-size: 15px; color: var(--secondary-color); }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu > li > a:hover,
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu > li.current-menu-item > a { color: var(--brand); background: transparent; padding-left: 34px; }

    header#pq-header .pq-bottom-header .navbar .navbar-nav li i.pq-submenu-icon {
        position: absolute;
        right: 0;
        top: 0;
        width: 54px;
        height: 52px;
        line-height: 52px;
        text-align: center;
        margin: 0;
        font-size: 12px;
        opacity: 0.8;
        cursor: pointer;
        transition: transform 0.2s;
    }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li.open > i.pq-submenu-icon { transform: rotate(180deg); color: var(--brand); }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-ancestor > .pq-submenu-icon,
    header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover > .pq-submenu-icon { color: var(--dark-color); }
}

/* --------------------------------------------------------------------------
   Breadcrumb banner (inner pages)
   -------------------------------------------------------------------------- */
.pq-breadcrumb { padding: 64px 0; }
.pq-breadcrumb .pq-breadcrumb-title h1 { font-size: 42px; line-height: 1.2; margin-bottom: 10px; }
.pq-breadcrumb-container .breadcrumb li { font-size: 14px; color: rgba(255, 255, 255, 0.75); }
.pq-breadcrumb-container .breadcrumb li.active { color: #7fd0ff; }
.pq-breadcrumb-container .breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.5); }

/* --------------------------------------------------------------------------
   Home: hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: 130px 0 110px;
    color: #fff;
    background: #0b1620 url(../images/banner-bg-2.jpg) center 30% / cover no-repeat;
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 20, 32, 0.94) 0%, rgba(8, 20, 32, 0.8) 45%, rgba(8, 20, 32, 0.35) 100%);
}
.hero .container { position: relative; }
.hero-kicker { display: inline-block; color: #7fd0ff; font-family: var(--title-fonts); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.hero h1 { color: #fff; font-size: 52px; line-height: 1.12; font-weight: 700; margin-bottom: 22px; }
.hero p { font-size: 18px; line-height: 1.65; color: rgba(255, 255, 255, 0.85); max-width: 600px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 32px; margin: 44px 0 0; padding: 26px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.hero-points li { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--title-fonts); font-weight: 500; font-size: 15px; }
.hero-points i { color: #7fd0ff; font-size: 18px; }

/* --------------------------------------------------------------------------
   Home: pillars (three business areas)
   -------------------------------------------------------------------------- */
.pillar-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    color: inherit;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.pillar-media { aspect-ratio: 16 / 8; overflow: hidden; }
.pillar-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pillar-card:hover .pillar-media img { transform: scale(1.04); }
.pillar-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.pillar-icon, .svc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 22px;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.pillar-body h3 { font-size: 22px; margin-bottom: 10px; }
.pillar-body p { margin-bottom: 16px; }
.pillar-list { list-style: none; padding: 0; margin: 0 0 20px; }
.pillar-list li { position: relative; padding-left: 20px; font-size: 15px; line-height: 1.5; margin-bottom: 6px; color: #3d4752; }
.pillar-list li:before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.pillar-link, .svc-link { margin-top: auto; color: var(--brand); font-family: var(--title-fonts); font-weight: 600; font-size: 15px; }
.pillar-link i, .svc-link i { margin-left: 6px; font-size: 12px; transition: transform 0.25s; }
.pillar-card:hover .pillar-link i, .svc-card:hover .svc-link i { transform: translateX(4px); }

.pillar-primary { border-color: var(--brand); box-shadow: 0 10px 40px rgba(0, 126, 187, 0.16); }
.pillar-primary .pillar-media { aspect-ratio: 16 / 7; }
.pillar-primary .pillar-body { padding: 32px; }
.pillar-primary .pillar-icon { background: var(--brand); color: #fff; }
.pillar-primary h3 { font-size: 28px; }
.pillar-primary .pillar-list { columns: 2; column-gap: 24px; }

/* --------------------------------------------------------------------------
   Service cards (telecom row, about page values)
   -------------------------------------------------------------------------- */
.svc-card, .value-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; color: inherit; }
.svc-card h3, .value-card h3 { font-size: 20px; margin-bottom: 10px; }
.svc-card p, .value-card p { font-size: 15px; margin-bottom: 18px; }

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */
.stats { padding: 70px 0; }
.stats .container { position: relative; z-index: 1; }
.stat i { font-size: 30px; color: #7fd0ff; margin-bottom: 12px; display: block; }
.stat-value { font-family: var(--title-fonts); font-size: 46px; font-weight: 700; line-height: 1.1; color: #fff; }
.stat p { color: rgba(255, 255, 255, 0.75); margin: 6px 0 0; font-size: 15px; }

/* --------------------------------------------------------------------------
   Software and consulting lists
   -------------------------------------------------------------------------- */
.support-card { height: 100%; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.support-head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px; }
.support-head .svc-icon { margin-bottom: 0; }
.support-head h3 { font-size: 24px; margin-bottom: 6px; }
.support-head p { margin: 0; font-size: 15px; }
.support-list { list-style: none; padding: 0; margin: 0; }
.support-list li + li { border-top: 1px solid var(--line); }
.support-list a { display: flex; align-items: center; gap: 16px; padding: 14px 4px; color: inherit; }
.support-list a > i:first-child { width: 36px; text-align: center; font-size: 18px; color: var(--brand); flex-shrink: 0; }
.support-list a span { display: flex; flex-direction: column; flex: 1; }
.support-list strong { font-family: var(--title-fonts); font-weight: 600; color: var(--dark-color); font-size: 16px; }
.support-list small { font-size: 14px; line-height: 1.5; color: var(--secondary-color); }
.support-list .arrow { font-size: 12px; color: #b3bcc6; transition: transform 0.25s, color 0.25s; }
.support-list a:hover strong { color: var(--brand); }
.support-list a:hover .arrow { transform: translateX(4px); color: var(--brand); }
.support-list.compact a { padding: 11px 4px; }

/* --------------------------------------------------------------------------
   Why us
   -------------------------------------------------------------------------- */
.why-us h2 { margin-bottom: 16px; }
.check-list { list-style: none; padding: 0; margin: 26px 0 30px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: rgba(255, 255, 255, 0.85); margin-bottom: 14px; }
.check-list li strong { color: #fff; }
.check-list i { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); color: #fff; font-size: 12px; display: inline-flex; align-items: center; justify-content: center; margin-top: 3px; }
.why-media img, .about-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.why-media img { aspect-ratio: 4 / 3; object-fit: cover; }

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */
.step { height: 100%; padding: 30px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step-num { display: inline-block; font-family: var(--title-fonts); font-size: 14px; font-weight: 700; color: var(--brand); letter-spacing: 2px; margin-bottom: 14px; }
.step h4 { margin-bottom: 8px; }
.step p { font-size: 15px; margin: 0; }

/* --------------------------------------------------------------------------
   Partners
   -------------------------------------------------------------------------- */
.partner-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.partner-logo { display: flex; align-items: center; justify-content: center; height: 88px; padding: 16px 20px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.partner-logo img { max-height: 44px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: 0.75; transition: filter 0.25s, opacity 0.25s; }
.partner-logo:hover img { filter: none; opacity: 1; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { padding: 60px 0; background: var(--dark-color); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: 28px; margin-bottom: 8px; }
.cta-inner p { color: rgba(255, 255, 255, 0.7); margin: 0; }
.cta-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cta-phone { color: #fff; font-family: var(--title-fonts); font-weight: 600; font-size: 18px; }
.cta-phone i { color: #7fd0ff; margin-right: 6px; }
.cta-phone:hover { color: #7fd0ff; }

/* --------------------------------------------------------------------------
   Service pages
   -------------------------------------------------------------------------- */
.service-page { padding: 80px 0; }
.service-hero { aspect-ratio: 16 / 7; overflow: hidden; border-radius: var(--radius); margin-bottom: 30px; }
.service-hero img { width: 100%; height: 100%; object-fit: cover; }
.service-title { font-size: 34px; margin-bottom: 14px; }
.service-subtitle { font-size: 24px; margin: 40px 0 20px; }
.feature-box { display: flex; gap: 14px; height: 100%; padding: 22px; background: var(--grey-color); border-radius: var(--radius); }
.feature-icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.feature-box h4 { font-size: 17px; margin-bottom: 6px; }
.feature-box p { font-size: 15px; margin: 0; }
.audience-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.audience-list li { display: flex; align-items: center; gap: 10px; color: #3d4752; }
.audience-list i { color: var(--brand); font-size: 12px; }
.service-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 44px; padding: 28px 30px; background: var(--brand-soft); border-radius: var(--radius); }
.service-cta h4 { font-size: 20px; margin-bottom: 4px; }
.service-cta p { margin: 0; }

.service-sidebar { position: sticky; top: 104px; }
.pq-widget { padding: 26px; margin-bottom: 24px; background: var(--grey-color); border-radius: var(--radius); }
.pq-widget-title { font-size: 18px; margin-bottom: 16px; }
.pq-widget.pq-widget-port .menu li { margin-bottom: 8px; }
.pq-widget.pq-widget-port .menu li a { padding: 12px 42px 12px 18px; font-size: 15px; border-radius: 6px; transition: background 0.25s, color 0.25s; }
.pq-widget.pq-widget-port .menu li > a:before { top: 50%; transform: translateY(-50%); right: 18px; }
.pq-widget.pq-widget-port .menu li a:hover { background: var(--brand-soft); color: var(--brand); }
.pq-widget.pq-widget-port .menu li.current-menu-item a { background: var(--brand); color: #fff; }
.sidebar-contact p { font-size: 15px; }
.footer-contact { list-style: none; padding: 0; margin: 0 0 20px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 10px; font-size: 15px; }
.footer-contact i { color: var(--brand); margin-top: 5px; width: 16px; text-align: center; flex-shrink: 0; }
.sidebar-contact .footer-contact a { color: var(--dark-color); }
.sidebar-contact .footer-contact a:hover { color: var(--brand); }

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */
.about-intro h2 { margin-bottom: 18px; }
.about-media img { aspect-ratio: 1 / 1; object-fit: cover; }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-page { padding: 80px 0; }
.contact-info { height: 100%; padding: 40px 36px; border-radius: var(--radius); color: rgba(255, 255, 255, 0.8); }
.contact-info h2 { font-size: 28px; margin-bottom: 30px; }
.contact-block { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-block:last-child { margin-bottom: 0; }
.contact-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: rgba(255, 255, 255, 0.1); color: #7fd0ff; display: inline-flex; align-items: center; justify-content: center; font-size: 17px; }
.contact-block h4 { color: #fff; font-size: 17px; margin-bottom: 4px; }
.contact-block p { margin: 0; font-size: 15px; line-height: 1.7; }
.contact-block a { color: #fff; }
.contact-block a:hover { color: #7fd0ff; }

.contact-form-card { padding: 40px 36px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 26px; }
.contact-form label { display: block; font-family: var(--title-fonts); font-size: 14px; font-weight: 500; color: var(--dark-color); margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--dark-color);
    background: var(--grey-color);
    border: 1px solid var(--line);
    border-radius: 6px;
    margin: 0;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.contact-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235b6673' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; background: #fff; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.contact-form .pq-button { margin-top: 6px; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-alert { padding: 14px 18px; margin-bottom: 20px; background: #fdecea; border: 1px solid #f5c2c0; border-radius: 6px; color: #8a1f17; font-size: 15px; }
.map-embed iframe { display: block; width: 100%; height: 400px; border: 0; }

/* Thank you */
.thank-you { padding: 90px 0; }
.thank-card { max-width: 640px; margin: 0 auto; text-align: center; padding: 50px 36px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.thank-icon { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; background: #e3f6ea; color: #1f8a4c; font-size: 28px; margin-bottom: 22px; }
.thank-card h2 { font-size: 28px; margin-bottom: 14px; }
.thank-card p { margin-bottom: 26px; }

/* Partners page */
.partners-page { padding: 80px 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
#pq-footer .pq-footer-top { padding: 70px 0 40px; }
#pq-footer .widget { margin-bottom: 30px; }
#pq-footer .footer-logo img { width: 64px; margin-bottom: 18px; background: #fff; border-radius: 50%; padding: 4px; }
#pq-footer .widget p { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.72); margin-bottom: 20px; }
#pq-footer .footer-title { font-size: 17px; margin-bottom: 18px; color: #fff; }
#pq-footer .widget ul.menu li { margin-bottom: 9px; }
#pq-footer .widget ul.menu li a { font-size: 15px; color: rgba(255, 255, 255, 0.72); }
#pq-footer .widget ul.menu li a:hover { color: #7fd0ff; }
#pq-footer .footer-contact li { color: rgba(255, 255, 255, 0.72); }
#pq-footer .footer-contact i { color: #7fd0ff; }
#pq-footer .footer-contact a { color: rgba(255, 255, 255, 0.85); }
#pq-footer .footer-contact a:hover { color: #7fd0ff; }
#pq-footer .pq-copyright-footer { padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }
#pq-footer .copyright { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.footer-social { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; justify-content: flex-end; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: #fff; font-size: 15px; }
.footer-social a:hover { background: var(--brand); }

/* Floating contact buttons */
.float-btn {
    position: fixed;
    bottom: 20px;
    z-index: 900;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s;
}
.float-btn:hover { color: #fff; transform: scale(1.06); }
.float-whatsapp { right: 20px; background: #25d366; }
.float-call { left: 20px; background: var(--brand); font-size: 20px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
    header#pq-header .pq-bottom-header .navbar .navbar-nav li { margin-right: 20px; }
    .header-cta { margin-left: 16px; padding: 10px 18px; }
    .partner-logos { grid-template-columns: repeat(4, 1fr); }
    .hero h1 { font-size: 46px; }
}

@media (max-width: 991px) {
    section { padding: 70px 0; }
    h2 { font-size: 30px; }
    .hero { padding: 90px 0 80px; }
    .hero h1 { font-size: 40px; }
    .pillar-primary .pillar-list { columns: 1; }
    .service-sidebar { position: static; }
    .service-page, .contact-page { padding: 60px 0; }
    .contact-info { padding: 32px 26px; }
    .contact-form-card { padding: 30px 24px; }
    .footer-social { justify-content: flex-start; margin-top: 12px; }
    #pq-footer .pq-footer-top { padding: 56px 0 24px; }
}

@media (max-width: 767px) {
    body { font-size: 15px; }
    section { padding: 56px 0; }
    h2 { font-size: 27px; }
    .section-head { margin-bottom: 32px; }
    .section-head p { font-size: 16px; }
    .lead { font-size: 17px; }
    .hero { padding: 70px 0 60px; background-position: 65% 30%; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .hero-points { gap: 10px 20px; margin-top: 32px; padding-top: 20px; }
    .hero-points li { font-size: 14px; }
    .pq-breadcrumb { padding: 44px 0; }
    .pq-breadcrumb .pq-breadcrumb-title h1 { font-size: 30px; }
    .pillar-body, .pillar-primary .pillar-body { padding: 22px 20px 24px; }
    .pillar-primary h3 { font-size: 24px; }
    .svc-card, .value-card, .step, .support-card { padding: 24px 20px; }
    .support-head h3 { font-size: 21px; }
    .stats { padding: 50px 0; }
    .stat-value { font-size: 36px; }
    .partner-logos { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .partner-logo { height: 76px; }
    .cta-band { padding: 48px 0; }
    .cta-inner h2 { font-size: 24px; }
    .service-hero { aspect-ratio: 16 / 9; margin-bottom: 22px; }
    .service-title { font-size: 28px; }
    .service-subtitle { font-size: 21px; margin-top: 30px; }
    .audience-list { grid-template-columns: 1fr; }
    .service-cta { padding: 22px; }
    .pq-widget { padding: 20px; }
    .thank-card { padding: 36px 22px; }
    .map-embed iframe { height: 300px; }
    .float-btn { width: 48px; height: 48px; font-size: 24px; bottom: 16px; }
    .float-whatsapp { right: 16px; }
    .float-call { left: 16px; }
}

/* Form controls: explicit height so the theme's select styling cannot clip text */
.contact-form input, .contact-form select { height: 50px; line-height: 1.4; }
.contact-form select { color: var(--dark-color); }

/* Mobile menu: neutralise desktop line-height/floats inherited from the rules above */
@media (max-width: 1023px) {
    header#pq-header .pq-bottom-header .navbar .navbar-nav li { line-height: normal; float: none; display: block; }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li.open > .sub-menu { margin: 0; overflow: hidden; }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li { float: none; display: block; width: 100%; }
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a,
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item > a { float: none; display: block; padding: 10px 18px 10px 34px !important; }
}
@media (max-width: 1023px) {
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item,
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li:hover { padding: 0; margin: 0; background: transparent; }
}

/* --------------------------------------------------------------------------
   Master-copy additions (Sept 2026)
   -------------------------------------------------------------------------- */
.section-head-light p { color: rgba(255, 255, 255, 0.8); }
a.pq-section-sub-title:hover { color: var(--brand-dark); }
.hero p + p { margin-top: -14px; }

/* Home: core services, telecom emphasis */
.svc-card-primary { border-color: var(--brand); box-shadow: 0 10px 40px rgba(0, 126, 187, 0.14); }
.svc-card-primary .svc-icon { background: var(--brand); color: #fff; }
.svc-card-wide h3 { font-size: 22px; }

.telecom-card { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.telecom-media { aspect-ratio: 16 / 6; overflow: hidden; }
.telecom-media img { width: 100%; height: 100%; object-fit: cover; }
.telecom-body { padding: 28px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.telecom-body h3 { font-size: 24px; margin-bottom: 16px; }
.telecom-body .check-grid { margin-bottom: 26px; }
.telecom-body .pq-button { margin-top: auto; align-self: flex-start; }
.telecom-more { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; align-items: center; margin-top: 32px; font-family: var(--title-fonts); font-weight: 500; }
.telecom-more a { color: var(--dark-color); }
.telecom-more a i { color: var(--brand); margin-right: 6px; }
.telecom-more a:hover { color: var(--brand); }
.telecom-more .telecom-all { color: var(--brand); font-weight: 600; }
.telecom-more .telecom-all i { margin: 0 0 0 6px; font-size: 12px; }

/* Check grids (plain capability lists) */
.check-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; }
.check-grid li { display: flex; align-items: flex-start; gap: 10px; color: #3d4752; line-height: 1.5; }
.check-grid li i { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font-size: 10px; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }

/* Development process steps */
.process-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.process-steps li { display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 10px; background: var(--grey-color); border-radius: 999px; font-family: var(--title-fonts); font-weight: 500; color: var(--dark-color); }
.process-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 13px; font-weight: 600; }

/* Why CGN cards on the blue band */
.why-card { height: 100%; padding: 28px 26px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius); color: rgba(255, 255, 255, 0.85); }
.why-card > i { font-size: 26px; color: #fff; margin-bottom: 16px; display: block; }
.why-card h4 { color: #fff; margin-bottom: 8px; }
.why-card p { margin: 0; font-size: 15px; }
.why-card-cta { background: #fff; border-color: #fff; color: var(--secondary-color); }
.why-card-cta h4 { color: var(--dark-color); }
.why-card-cta p { margin-bottom: 18px; }
.why-card-cta .pq-button { padding: 10px 22px; }

/* Who we serve / approach lists */
.serve-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; }
.serve-list li { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-family: var(--title-fonts); font-weight: 500; color: var(--dark-color); }
.serve-list li i { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font-size: 11px; display: inline-flex; align-items: center; justify-content: center; }
.about-offices { display: flex; align-items: center; gap: 10px; margin-top: 8px; font-family: var(--title-fonts); font-weight: 500; color: var(--dark-color); }
.about-offices i { color: var(--brand); }

/* About: vision and mission */
.vision-card { height: 100%; padding: 36px 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.vision-card .pq-section-sub-title { display: block; }
.vision-card h3 { font-size: 22px; margin-bottom: 10px; }
.vision-card p { margin: 0; }

/* Category overview pages */
.category-page { padding: 80px 0; }

/* Contact: enquiry guidance */
.enquiry-guide { margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.enquiry-guide h4 { color: #fff; font-size: 17px; margin-bottom: 14px; }
.enquiry-guide h5 { color: #7fd0ff; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.enquiry-guide ul { list-style: none; padding: 0; margin: 0; }
.enquiry-guide li { position: relative; padding-left: 14px; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.8); margin-bottom: 3px; }
.enquiry-guide li:before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: #7fd0ff; }
.contact-page .section-head { margin-bottom: 40px; }

/* Footer additions */
#pq-footer .widget-about .footer-title { margin-bottom: 6px; }
#pq-footer .footer-tagline { color: #fff; font-family: var(--title-fonts); font-weight: 500; margin-bottom: 10px; }
#pq-footer .footer-services-line { font-size: 14px; }
#pq-footer .footer-services-line span { margin: 0 6px; color: rgba(255, 255, 255, 0.35); }
#pq-footer .footer-title a { color: inherit; }
#pq-footer .footer-title a:hover { color: #7fd0ff; }
#pq-footer .footer-contact li span { color: rgba(255, 255, 255, 0.72); }
#pq-footer .widget + .widget { margin-top: 6px; }

/* Legal pages */
.legal-page { padding: 70px 0; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-updated { font-size: 14px; color: var(--secondary-color); margin-bottom: 24px; }
.legal-content h3 { font-size: 21px; margin: 32px 0 10px; }
.legal-content ul { padding-left: 20px; margin-bottom: 18px; }
.legal-content li { margin-bottom: 6px; }

/* Overview link in dropdowns */
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.menu-overview a { font-weight: 600; color: var(--brand); }
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.menu-overview { border-bottom: 1px solid var(--line); margin-bottom: 4px; padding-bottom: 4px; }

@media (max-width: 991px) {
    .serve-list, .check-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .serve-list, .check-grid { grid-template-columns: 1fr; }
    .telecom-body { padding: 22px 20px 24px; }
    .telecom-more { flex-direction: column; gap: 12px; }
    .vision-card { padding: 26px 22px; }
    .why-card { padding: 24px 20px; }
    .hero p + p { margin-top: -8px; }
}
@media (max-width: 575px) {
    .process-steps li { width: 100%; }
}
/* Theme adds a bullet before every link inside footer widgets; not wanted on contact lines */
#pq-footer .footer-contact li a:before, #pq-footer .footer-contact li:before { display: none; content: none; }
#pq-footer .footer-contact li a { padding: 0; margin: 0; }
footer#pq-footer .widget ul.footer-contact li a:before { display: none; content: none; }
footer#pq-footer .widget ul.footer-contact li a { padding-left: 0; display: inline; position: static; }

/* Partner logos: flexible grid so any count fills rows evenly and centres the last row */
.partner-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.partner-logo { flex: 0 0 calc((100% - 5 * 16px) / 6); }
.partner-logo img { max-height: 46px; filter: none; opacity: 1; }
@media (max-width: 1199px) { .partner-logo { flex-basis: calc((100% - 3 * 16px) / 4); } }
@media (max-width: 767px)  { .partner-logo { flex-basis: calc((100% - 12px) / 2); } .partner-logos { gap: 12px; } }

/* Footer: company links sit under the tagline as an inline row */
#pq-footer .footer-company-links { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-wrap: wrap; gap: 6px 0; }
#pq-footer .footer-company-links li { position: relative; padding-right: 14px; margin-right: 14px; }
#pq-footer .footer-company-links li:after { content: ""; position: absolute; right: 0; top: 50%; width: 1px; height: 12px; background: rgba(255, 255, 255, 0.25); transform: translateY(-50%); }
#pq-footer .footer-company-links li:last-child { padding-right: 0; margin-right: 0; }
#pq-footer .footer-company-links li:last-child:after { display: none; }
footer#pq-footer .widget ul.footer-company-links li a { padding: 0; position: static; display: inline; font-size: 14px; color: rgba(255, 255, 255, 0.85); }
footer#pq-footer .widget ul.footer-company-links li a:before { display: none; content: none; }
footer#pq-footer .widget ul.footer-company-links li a:hover { color: #7fd0ff; }
@media (min-width: 1200px) { #pq-footer .widget-about { padding-right: 30px; } }
/* Footer company links: simple divider between items, no wrapping quirks */
#pq-footer .footer-company-links { gap: 6px 0; margin-top: 6px; }
#pq-footer .footer-company-links li { padding: 0; margin: 0; line-height: 1.4; }
#pq-footer .footer-company-links li:after { display: none; }
#pq-footer .footer-company-links li + li { margin-left: 12px; padding-left: 12px; border-left: 1px solid rgba(255, 255, 255, 0.25); }
/* Footer contact: label on one line, number on the next, never mid-number wraps */
footer#pq-footer .widget ul.footer-contact li span { display: block; }
footer#pq-footer .widget ul.footer-contact li span a { display: block; white-space: nowrap; color: #fff; }
/* Footer company links: two-column list, theme li rules overridden by specificity */
footer#pq-footer .widget ul.footer-company-links { display: grid; grid-template-columns: max-content max-content; gap: 6px 28px; margin: 8px 0 0; padding: 0; }
footer#pq-footer .widget ul.footer-company-links li { margin: 0; padding: 0; border: 0; line-height: 1.5; }
footer#pq-footer .widget ul.footer-company-links li + li { margin: 0; padding: 0; border: 0; }
footer#pq-footer .widget ul.footer-company-links li a { font-size: 15px; }

/* Footer company links: single row, visible separators */
#pq-footer p.footer-company-links { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 0; margin: 14px 0 0; font-size: 15px; }
#pq-footer p.footer-company-links a { color: rgba(255, 255, 255, 0.85); white-space: nowrap; }
#pq-footer p.footer-company-links a:hover { color: #7fd0ff; }
#pq-footer p.footer-company-links .sep { color: rgba(255, 255, 255, 0.6); margin: 0 10px; }

/* Microsoft Teams glyph (inline SVG, follows the icon colour) */
.icon-teams { display: inline-block; width: 16px; height: 16px; vertical-align: -3px; }
header#pq-header .pq-top-header .pq-header-social ul li a .icon-teams { width: 15px; height: 15px; }
.footer-social a .icon-teams { width: 16px; height: 16px; vertical-align: middle; }

/* Service pages: explanatory blocks after the capability lists */
.detail-blocks { display: grid; gap: 18px; }
.detail-block { padding: 22px 24px; border-left: 3px solid var(--brand); background: var(--grey-color); border-radius: 0 var(--radius) var(--radius) 0; }
.detail-block h4 { font-size: 17px; margin-bottom: 8px; }
.detail-block p { margin: 0; font-size: 15px; line-height: 1.7; }
@media (min-width: 992px) { .detail-blocks { grid-template-columns: repeat(3, 1fr); } .detail-block { padding: 22px 20px; } }
/* Stats band: optional heading above the numbers */
.stats .section-head { margin-bottom: 30px; }
.stats .stat-value { font-size: 40px; }
@media (max-width: 767px) { .stats .stat-value { font-size: 30px; } }

/* About: why choose us cards, reach band, office cards */
.why-choose-card { height: 100%; padding: 26px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.25s, box-shadow 0.25s; }
.why-choose-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.why-choose-card .svc-icon { width: 46px; height: 46px; font-size: 19px; margin-bottom: 14px; }
.why-choose-card h4 { font-size: 17px; margin-bottom: 8px; }
.why-choose-card p { margin: 0; font-size: 15px; line-height: 1.65; }
.stats .col-lg-2 .stat-value { font-size: 32px; }
.stats .col-lg-2 .stat p { font-size: 14px; }
.office-card { height: 100%; padding: 26px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.office-flag { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); margin-bottom: 14px; }
.office-card h4 { font-size: 17px; margin-bottom: 8px; }
.office-card p { font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.office-card a { font-family: var(--title-fonts); font-weight: 500; color: var(--dark-color); }
.office-card a i { color: var(--brand); margin-right: 6px; }
.office-card a:hover { color: var(--brand); }
@media (max-width: 767px) { .stats .col-lg-2 .stat-value { font-size: 26px; } }

/* Hero: global connectivity image, overlay tuned for its blue tones */
.hero { background: #061423 url(../images/hero-connectivity.jpg) center 40% / cover no-repeat; }
.hero:before { background: linear-gradient(90deg, rgba(4, 16, 30, 0.93) 0%, rgba(4, 16, 30, 0.78) 42%, rgba(4, 16, 30, 0.28) 100%); }
@media (max-width: 767px) {
    .hero { background-position: 60% 40%; }
    .hero:before { background: linear-gradient(180deg, rgba(4, 16, 30, 0.9) 0%, rgba(4, 16, 30, 0.72) 100%); }
}

/* About page: one body size everywhere (intro, cards, presence, stats labels) */
.about-intro p, .about-presence p, .why-choose .section-head p,
.why-choose-card p, .office-card p, .stats .stat p { font-size: 16px; line-height: 1.7; }
.why-choose-card h4, .office-card h4 { font-size: 18px; }
.stats .col-lg-2 .stat p { font-size: 15px; }

/* ==========================================================================
   Typography refresh: Manrope headings, Inter body
   ========================================================================== */
:root { --body-fonts: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif; --title-fonts: 'Manrope', 'Inter', system-ui, sans-serif; }
body { font-family: var(--body-fonts); font-size: 15.5px; letter-spacing: -0.005em; }
h1, h2, h3, h4, h5, h6, .pq-button, .pq-section-sub-title, .hero-kicker, .stat-value, .serve-list li, .hero-points li, .cta-phone, .office-card a, .telecom-more, .process-steps li, .support-list strong, .contact-form label { font-family: var(--title-fonts); }
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }
h4, h5, h6 { font-weight: 600; letter-spacing: -0.01em; }
.hero h1 { font-weight: 800; letter-spacing: -0.025em; }
.pq-section-sub-title { font-weight: 700; letter-spacing: 1.6px; }
.pq-button { font-weight: 600; letter-spacing: 0; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li a { font-family: var(--title-fonts); font-weight: 600; font-size: 14.5px; }
.pq-breadcrumb .pq-breadcrumb-title h1 { letter-spacing: -0.02em; }

/* Inner-page banner: shorter so content starts higher */
.pq-breadcrumb { padding: 42px 0; }
.pq-breadcrumb .pq-breadcrumb-title h1 { font-size: 34px; margin-bottom: 6px; }
.pq-breadcrumb-container .breadcrumb li { font-size: 13px; }

/* Footer: smaller, quieter type */
#pq-footer .pq-footer-top { padding: 54px 0 26px; }
#pq-footer .footer-logo img { width: 52px; margin-bottom: 12px; }
#pq-footer .footer-title { font-size: 14px; letter-spacing: 0.02em; margin-bottom: 12px; }
#pq-footer .widget-about .footer-title { font-size: 16px; }
#pq-footer .footer-tagline { font-size: 13.5px; margin-bottom: 8px; }
#pq-footer .widget ul.menu li { margin-bottom: 6px; }
#pq-footer .widget ul.menu li a { font-size: 13.5px; line-height: 1.5; }
#pq-footer .widget ul.menu li a:before { top: 8px; }
#pq-footer .footer-contact li { font-size: 13.5px; margin-bottom: 8px; }
#pq-footer p.footer-company-links { font-size: 13.5px; margin-top: 10px; }
#pq-footer p.footer-company-links .sep { margin: 0 8px; }
#pq-footer .pq-copyright-footer { padding: 14px 0; }
#pq-footer .copyright { font-size: 12.5px; }
.footer-social a { width: 32px; height: 32px; font-size: 13px; }
.footer-social a .icon-teams { width: 14px; height: 14px; }

/* Contact page: compact enough to fit a desktop viewport */
.contact-page { padding: 44px 0 50px; }
.contact-info { padding: 28px 28px 24px; }
.contact-info h2 { font-size: 24px; margin-bottom: 10px; }
.contact-intro { font-size: 14.5px; margin-bottom: 22px !important; }
.contact-block { margin-bottom: 16px; gap: 12px; }
.contact-icon { width: 36px; height: 36px; font-size: 14px; border-radius: 8px; }
.contact-block h4 { font-size: 15px; margin-bottom: 2px; }
.contact-block p { font-size: 14px; line-height: 1.55; }
.enquiry-guide { margin-top: 18px; padding-top: 16px; }
.enquiry-guide h4 { font-size: 15px; margin-bottom: 8px; }
.enquiry-guide h5 { font-size: 13px; margin-bottom: 4px; }
.enquiry-guide li { font-size: 13px; line-height: 1.5; }
.contact-form-card { padding: 26px 28px 24px; }
.contact-form-card h3 { font-size: 22px; margin-bottom: 4px; }
.contact-form-card > p { font-size: 14.5px; margin-bottom: 16px; }
.contact-form .row { --bs-gutter-y: 0.75rem; }
.contact-form label { font-size: 13px; margin-bottom: 4px; }
.contact-form input, .contact-form select { height: 42px; padding: 8px 14px; font-size: 14.5px; }
.contact-form textarea { min-height: 96px; padding: 10px 14px; font-size: 14.5px; }
.contact-form .pq-button { margin-top: 2px; padding: 10px 24px; }
.map-embed iframe { height: 320px; }
@media (max-width: 767px) {
    .pq-breadcrumb { padding: 34px 0; }
    .pq-breadcrumb .pq-breadcrumb-title h1 { font-size: 28px; }
}

/* Slimmer navigation bar (72px) */
header#pq-header .pq-bottom-header { min-height: 72px; }
header#pq-header .pq-bottom-header .navbar .navbar-brand { line-height: 72px; }
header#pq-header .pq-bottom-header .navbar .navbar-brand img { width: 52px; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li { line-height: 72px; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu { top: 72px; }
body.has-sticky-header { padding-top: 72px; }
.header-cta { padding: 9px 20px; }
.contact-page { padding: 32px 0 44px; }
.contact-page .container > .row { align-items: start; }
footer#pq-footer .pq-footer-top .widget h4.footer-title { font-size: 14px; line-height: 1.4; margin-bottom: 12px; }
footer#pq-footer .pq-footer-top .widget-about h4.footer-title { font-size: 16px; }
/* Contact: both cards share one height; guidance moved under the message field */
.contact-page .container > .row { align-items: stretch; }
.contact-info, .contact-form-card { height: 100%; }
.contact-info { display: flex; flex-direction: column; }
.contact-info .contact-block:last-child { margin-bottom: 0; }
.form-hint { display: block; margin-top: 6px; font-size: 12.5px; line-height: 1.5; color: var(--secondary-color); }
.contact-form textarea { min-height: 78px; }
.form-hint { margin-top: 4px; }
.contact-form-card > p { margin-bottom: 12px; }
.contact-info { padding: 24px 28px 22px; }
.contact-intro { margin-bottom: 16px !important; }
.contact-block { margin-bottom: 14px; }
.contact-form textarea { height: 88px; min-height: 88px; }

/* ==========================================================================
   Compact type scale: body text matches the footer size (13.5px);
   headings step down proportionally.
   ========================================================================== */
body { font-size: 13.5px; line-height: 1.65; }
p { margin-bottom: 14px; }
h1 { font-size: 32px; }
h2 { font-size: 27px; line-height: 1.25; }
h3 { font-size: 19px; }
h4 { font-size: 15px; }
h5 { font-size: 14px; }
.lead, .hero p, .section-head p, .about-intro p, .about-presence p, .why-choose .section-head p,
.why-choose-card p, .office-card p, .stats .stat p, .svc-card p, .value-card p, .support-list small,
.detail-block p, .feature-box p, .check-grid li, .audience-list li, .serve-list li, .why-card p,
.cta-inner p, .legal-content, .contact-block p, .contact-intro, .contact-form-card > p, .thank-card p { font-size: 13.5px; }
.hero h1 { font-size: 40px; }
.hero p { font-size: 14.5px; }
.hero-points li { font-size: 13px; }
.hero-kicker, .pq-section-sub-title { font-size: 11.5px; letter-spacing: 1.5px; }
.section-head h2, .why-us h2, .who-we-serve h2, .about-intro h2, .about-presence h2 { font-size: 27px; }
.cta-inner h2 { font-size: 22px; }
.pq-breadcrumb .pq-breadcrumb-title h1 { font-size: 30px; }
.service-title { font-size: 26px; }
.service-subtitle { font-size: 19px; }
.svc-card h3, .value-card h3, .support-head h3, .telecom-body h3, .vision-card h3 { font-size: 17px; }
.svc-card-wide h3 { font-size: 18px; }
.support-list strong { font-size: 14px; }
.feature-box h4, .detail-block h4, .why-choose-card h4, .office-card h4, .step h4, .why-card h4, .contact-block h4 { font-size: 14.5px; }
.stat-value, .stats .stat-value { font-size: 34px; }
.stats .col-lg-2 .stat-value { font-size: 28px; }
.stats .col-lg-2 .stat p, .stats .stat p { font-size: 13px; }
.pq-button { font-size: 13.5px; padding: 10px 22px; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li a { font-size: 13.5px; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a { font-size: 13.5px; }
header#pq-header .pq-top-header { font-size: 12.5px; }
.contact-form label { font-size: 12.5px; }
.contact-form input, .contact-form select, .contact-form textarea { font-size: 13.5px; }
.contact-form input, .contact-form select { height: 40px; }
.contact-info h2 { font-size: 21px; }
.contact-form-card h3 { font-size: 19px; }
.form-hint { font-size: 12px; }
.svc-icon, .pillar-icon { width: 46px; height: 46px; font-size: 19px; }
.process-steps li { font-size: 13.5px; }
.legal-content h3 { font-size: 17px; }
.pq-widget-title { font-size: 15px; }
@media (max-width: 767px) {
    .hero h1 { font-size: 28px; }
    h2, .section-head h2 { font-size: 23px; }
    .pq-breadcrumb .pq-breadcrumb-title h1 { font-size: 26px; }
}

/* About: marker sits left of the office heading */
.office-card h4 { display: flex; align-items: center; gap: 10px; }
.office-flag { width: 30px; height: 30px; border-radius: 8px; font-size: 13px; margin: 0; flex-shrink: 0; }

/* Footer: offices under the logo, no Contact column */
.footer-offices { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 6px 0 4px; }
.footer-office h5 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.footer-office h5 i { color: #7fd0ff; margin-right: 4px; font-size: 12px; }
.footer-office p { font-size: 13px; line-height: 1.55; color: rgba(255, 255, 255, 0.7); margin: 0 0 4px; }
.footer-office a { font-size: 13px; font-family: var(--title-fonts); font-weight: 600; color: #fff; }
.footer-office a i { color: #7fd0ff; margin-right: 4px; font-size: 11px; }
.footer-office a:hover { color: #7fd0ff; }
#pq-footer .footer-email { font-size: 13px; margin: 8px 0 0; color: rgba(255, 255, 255, 0.7); }
#pq-footer .footer-email i { color: #7fd0ff; margin-right: 4px; }
#pq-footer .footer-email a { color: #fff; }
#pq-footer .footer-email a:hover { color: #7fd0ff; }
@media (min-width: 1200px) { #pq-footer .widget-about { padding-right: 48px; } }
@media (max-width: 575px) { .footer-offices { grid-template-columns: 1fr; } }
footer#pq-footer .widget .footer-office p, footer#pq-footer .widget p.footer-email, footer#pq-footer .widget p.footer-tagline { font-size: 13px; }
footer#pq-footer .widget p.footer-email a { font-size: 13px; }

/* ==========================================================================
   Footer v3: brand + offices left, services right, one-line bottom bar
   ========================================================================== */
#pq-footer .pq-footer-top { padding: 48px 0 36px; }
#pq-footer .widget { margin-bottom: 0; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
#pq-footer .footer-brand .footer-logo img { width: 48px; margin: 0; }
footer#pq-footer .pq-footer-top .widget-about h4.footer-title { font-size: 15px; margin: 0 0 2px; }
footer#pq-footer .widget p.footer-tagline { font-size: 12.5px; margin: 0; color: rgba(255, 255, 255, 0.6); }
.footer-office { position: relative; padding-left: 14px; border-left: 2px solid rgba(127, 208, 255, 0.5); margin-bottom: 16px; }
.footer-office-label { display: block; font-family: var(--title-fonts); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #7fd0ff; margin-bottom: 3px; }
footer#pq-footer .widget .footer-office p { font-size: 13px; line-height: 1.55; color: rgba(255, 255, 255, 0.75); margin: 0 0 3px; }
.footer-office a, #pq-footer a.footer-email { display: inline-flex; align-items: center; gap: 7px; font-family: var(--title-fonts); font-size: 13px; font-weight: 600; color: #fff; }
.footer-office a i, #pq-footer a.footer-email i { color: #7fd0ff; font-size: 11px; }
.footer-office a:hover, #pq-footer a.footer-email:hover { color: #7fd0ff; }
#pq-footer a.footer-email { margin-top: 2px; }
footer#pq-footer .pq-footer-top .widget h4.footer-title { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255, 255, 255, 0.9); margin-bottom: 12px; }
#pq-footer .widget ul.menu li { margin-bottom: 7px; }
#pq-footer .widget ul.menu li a { font-size: 13px; line-height: 1.45; }
#pq-footer .widget ul.menu li a:before { top: 7px; width: 4px; height: 4px; }
#pq-footer .pq-copyright-footer { padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px 24px; flex-wrap: wrap; }
#pq-footer .copyright { font-size: 12.5px; color: rgba(255, 255, 255, 0.55); }
#pq-footer p.footer-company-links { margin: 0; font-size: 12.5px; }
#pq-footer p.footer-company-links a { color: rgba(255, 255, 255, 0.75); }
#pq-footer p.footer-company-links .sep { margin: 0 7px; color: rgba(255, 255, 255, 0.3); }
.footer-social { margin: 0; }
.footer-social a { width: 30px; height: 30px; font-size: 12.5px; }
@media (max-width: 991px) {
    .footer-bottom { justify-content: center; text-align: center; }
    .footer-bottom .footer-social { width: 100%; justify-content: center; }
}

/* Contact: info tooltip beside the requirement label */
.label-with-tip { display: flex; align-items: center; gap: 6px; }
.label-with-tip label { margin: 0; }
.tip { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; color: var(--brand); cursor: help; outline: none; }
.tip i { font-size: 14px; }
.tip-box {
    position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%);
    width: 300px; padding: 12px 14px; background: var(--dark-color); color: rgba(255, 255, 255, 0.9);
    font-size: 12.5px; line-height: 1.55; border-radius: 8px; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transition: opacity 0.15s, visibility 0.15s; z-index: 20; text-align: left;
}
.tip-box:after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--dark-color); }
.tip-box strong { color: #fff; }
.tip-box span { display: block; }
.tip-box span + span { margin-top: 6px; }
.tip:hover .tip-box, .tip:focus .tip-box, .tip:focus-within .tip-box { opacity: 1; visibility: visible; }
@media (max-width: 575px) { .tip-box { left: 0; transform: none; width: min(300px, 80vw); } .tip-box:after { left: 8px; transform: none; } }
/* Tooltip must never widen the page: anchor to the label row and cap to the viewport */
.label-with-tip { position: relative; }
.tip { position: static; }
.tip-box { left: 0; transform: none; width: max-content; max-width: min(320px, calc(100vw - 40px)); }
.tip-box:after { left: 116px; transform: none; }

/* Hero v3: high-resolution night skyline (Unsplash, free licence) + subtle connection arcs */
.hero { background: #06131f url(../images/hero-city.jpg) center 55% / cover no-repeat; }
.hero:before { background: linear-gradient(90deg, rgba(4, 16, 30, 0.92) 0%, rgba(4, 16, 30, 0.72) 40%, rgba(4, 16, 30, 0.22) 100%); }
.hero:after {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 640' preserveAspectRatio='xMidYMid slice'%3E%3Cg fill='none' stroke='%237fd0ff' stroke-width='1.2' stroke-opacity='0.55'%3E%3Cpath d='M700 520 Q 900 120 1120 400'/%3E%3Cpath d='M860 560 Q 1040 220 1300 330'/%3E%3Cpath d='M760 470 Q 1010 300 1380 500'/%3E%3Cpath d='M980 600 Q 1150 380 1290 560'/%3E%3Cpath d='M640 600 Q 880 380 1180 470'/%3E%3C/g%3E%3Cg fill='%237fd0ff'%3E%3Ccircle cx='700' cy='520' r='3.5'/%3E%3Ccircle cx='1120' cy='400' r='4'/%3E%3Ccircle cx='860' cy='560' r='3'/%3E%3Ccircle cx='1300' cy='330' r='4.5'/%3E%3Ccircle cx='760' cy='470' r='3'/%3E%3Ccircle cx='1380' cy='500' r='3.5'/%3E%3Ccircle cx='980' cy='600' r='3'/%3E%3Ccircle cx='1290' cy='560' r='3.5'/%3E%3Ccircle cx='1180' cy='470' r='4'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='0.9'%3E%3Ccircle cx='1120' cy='400' r='1.5'/%3E%3Ccircle cx='1300' cy='330' r='1.8'/%3E%3Ccircle cx='1180' cy='470' r='1.5'/%3E%3C/g%3E%3C/svg%3E") center / cover no-repeat;
}
.hero .container { z-index: 1; }
@media (max-width: 767px) {
    .hero { background-position: 62% 55%; }
    .hero:before { background: linear-gradient(180deg, rgba(4, 16, 30, 0.9) 0%, rgba(4, 16, 30, 0.7) 100%); }
    .hero:after { opacity: 0.35; }
}

/* Why CGN: navy background, six matching cards */
.why-us.bg-brand { background: #0b2545; }
.why-us .why-card { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12); }
.why-us .why-card > i { color: #7fd0ff; }
.why-link { display: inline-block; margin-top: 6px; font-family: var(--title-fonts); font-weight: 600; color: #7fd0ff; white-space: nowrap; }
.why-link i { font-size: 11px; margin-left: 4px; }
.why-link:hover { color: #fff; }

/* Stats band: light, on-palette strip instead of the black circuit-board block */
.stats.pq-bg-dark { background: linear-gradient(180deg, #eef6fb 0%, #e3f0f8 100%); padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats.pq-bg-img-2:before { display: none; }
.stats .stat i { color: var(--brand); opacity: 0.9; }
.stats .stat-value, .stats .col-lg-2 .stat-value { color: var(--brand-dark); }
.stats .stat p, .stats .col-lg-2 .stat p { color: var(--secondary-color); }
.stats .section-head .pq-section-sub-title { color: var(--brand) !important; }

/* Dropdown items: colour change plus a left accent strip on hover; no shift, no background */
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a { border-left: 3px solid transparent; padding-left: 19px; transition: color 0.2s, border-color 0.2s; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:focus,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item > a { background: transparent; color: var(--brand); padding-left: 19px; border-left-color: var(--brand); }
@media (max-width: 1023px) {
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a,
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
    header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item > a { padding: 10px 18px 10px 31px !important; }
}
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu > li:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-parent { padding: 0; margin: 0; transform: none; background: transparent; }
/* Dropdown hover: keep the soft background tint along with the colour and left strip */
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:focus,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item > a { background: var(--brand-soft); }
/* Dropdown panel: square-ish corners, no top strip */
header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu { border-radius: 0 0 4px 4px; border-top: 0; padding: 6px 0; }
/* Dropdown panel: thin grey rule separating it from the navbar, no gap above the first item */
header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu { border-top: 1px solid var(--line); padding-top: 0; }
/* Dropdown: the breathing room at top and bottom belongs to the first/last items, so hover fills it */
header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu { padding: 0; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li:first-child a { padding-top: 16px; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li:last-child a { padding-bottom: 16px; border-radius: 0 0 4px 4px; }
/* Dropdown: uniform item height, no extra space at top or bottom */
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li:first-child a { padding-top: 10px; }
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li:last-child a { padding-bottom: 10px; }
