/* ══════════════════════════════════════════════════
   Axis LGX Theme — main.css
   Matches the approved mockup exactly
══════════════════════════════════════════════════ */

/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:    #0d1b2a;
    --navy2:   #1a2e44;
    --orange:  #e8600a;
    --orange2: #f07030;
    --light:   #f4f6f8;
    --text:    #1a2e44;
    --muted:   #5a6e82;
    --border:  #d8e3ec;
    --white:   #ffffff;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
    background: var(--white);
}

img { max-width: 100%; display: block; }
a   { color: var(--orange); }
a:hover { text-decoration: none; }

/* ── Container ───────────────────────────────────── */
.lgx-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ══════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════ */
.lgx-topbar {
    background: var(--navy);
    color: #8aaabf;
    font-size: 12px;
    padding: 7px 0;
    line-height: 1.4;
}
.lgx-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.lgx-topbar-left { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.lgx-topbar-right { display: flex; align-items: center; gap: 6px; }
.lgx-topbar-item  { display: flex; align-items: center; gap: 6px; }
.lgx-topbar a     { color: #8aaabf; text-decoration: none; }
.lgx-topbar a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════ */
.lgx-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 500;
    transition: box-shadow .25s;
}
.lgx-header.scrolled { box-shadow: 0 2px 18px rgba(0,0,0,.09); }

.lgx-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

/* Logo */
.lgx-logo { text-decoration: none !important; display: flex; align-items: center; flex-shrink: 0; }
.lgx-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1.5px;
    line-height: 1;
}
.lgx-logo-text span { color: var(--orange); }
.lgx-logo img       { height: 44px; width: auto; }

/* Desktop menu */
.lgx-nav-desktop  { flex: 1; display: flex; justify-content: center; }
.lgx-nav-menu {
    list-style: none;
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    align-items: center;
}
.lgx-nav-menu li a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    border-radius: 4px;
    text-decoration: none;
    transition: color .2s, background .2s;
}
.lgx-nav-menu li a:hover,
.lgx-nav-menu li.current-menu-item > a {
    color: var(--orange);
    background: rgba(232,96,10,.06);
}

/* Nav CTA */
.lgx-nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lgx-nav-cta {
    background: var(--orange);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background .2s;
    display: block;
}
.lgx-nav-cta:hover { background: #cf5208; }

/* Hamburger */
.lgx-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
}
.lgx-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .3s;
}

/* Mobile menu */
.lgx-nav-mobile {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--white);
    padding-bottom: 12px;
}
.lgx-nav-mobile.open { display: block; }
.lgx-mobile-menu { list-style: none; }
.lgx-mobile-menu li a {
    display: block;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}
.lgx-mobile-menu li a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.lgx-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    cursor: pointer;
    border: 1.5px solid transparent;
    text-decoration: none !important;
    transition: background .2s, color .2s, border-color .2s;
    white-space: nowrap;
    letter-spacing: .3px;
    line-height: 1;
}
.lgx-btn-orange       { background: var(--orange); color: #fff !important; border-color: var(--orange); }
.lgx-btn-orange:hover { background: #cf5208; border-color: #cf5208; }
.lgx-btn-ghost        { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.35); }
.lgx-btn-ghost:hover  { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.lgx-btn-navy         { background: var(--navy); color: #fff !important; border-color: var(--navy); }
.lgx-btn-navy:hover   { background: var(--navy2); }
.lgx-mt { margin-top: 28px; }

/* ══════════════════════════════════════════════════
   SECTION SCAFFOLDING
══════════════════════════════════════════════════ */
.lgx-sec       { padding: 72px 0; }
.lgx-sec-white { background: var(--white); }
.lgx-sec-light { background: var(--light); }
.lgx-sec-navy  { background: var(--navy); }

.lgx-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 9px;
}
.lgx-eyebrow-dim { color: #3f6680; }

.lgx-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.08;
    margin-bottom: 36px;
    letter-spacing: .5px;
}
.lgx-h2-white { color: var(--white); }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.lgx-hero {
    background: var(--navy);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.lgx-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, var(--navy) 52%, var(--navy2) 100%);
}
.lgx-hero-pattern {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 44%;
    background: repeating-linear-gradient(
        45deg,
        transparent 0px,
        transparent 20px,
        rgba(232,96,10,.045) 20px,
        rgba(232,96,10,.045) 40px
    );
}
.lgx-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
}
.lgx-hero-tag {
    display: inline-block;
    background: rgba(232,96,10,.18);
    color: var(--orange2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 22px;
    text-transform: uppercase;
}
.lgx-hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 62px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.04;
    max-width: 640px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.lgx-hero-h1 em { color: var(--orange); font-style: normal; }
.lgx-hero-p {
    color: #8aaabf;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.78;
}
.lgx-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════ */
.lgx-statsbar { background: var(--orange); padding: 20px 0; }
.lgx-statsbar-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
    gap: 8px;
}
.lgx-stat-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.lgx-stat-l {
    font-size: 12px;
    color: rgba(255,255,255,.82);
    margin-top: 4px;
}

/* ══════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════ */
.lgx-svc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}
.lgx-svc-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px 26px 26px;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}
.lgx-svc-card:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 24px rgba(232,96,10,.1);
}
.lgx-svc-icon {
    width: 48px;
    height: 48px;
    background: rgba(232,96,10,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--orange);
}
.lgx-svc-icon svg { width: 24px; height: 24px; fill: var(--orange); }
.lgx-svc-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
}
.lgx-svc-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.lgx-card-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: letter-spacing .2s;
}
.lgx-svc-card:hover .lgx-card-link { letter-spacing: 1px; }

/* ══════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
.lgx-about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.lgx-about-img {
    background: var(--navy2);
    border-radius: 8px;
    height: 380px;
    position: relative;
    overflow: hidden;
}
.lgx-about-watermark {
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 84px;
    font-weight: 700;
    color: rgba(255,255,255,.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    letter-spacing: 6px;
    text-transform: uppercase;
    pointer-events: none;
}
.lgx-about-hatch {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent 0px,
        transparent 24px,
        rgba(232,96,10,.055) 24px,
        rgba(232,96,10,.055) 48px
    );
}
.lgx-about-badge {
    position: absolute;
    bottom: 22px;
    right: 22px;
    background: var(--orange);
    color: var(--white);
    padding: 14px 18px;
    border-radius: 6px;
    text-align: center;
    z-index: 2;
}
.lgx-ab-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}
.lgx-ab-txt { font-size: 12px; line-height: 1.4; margin-top: 4px; }

.lgx-about-desc { font-size: 15px; color: var(--muted); line-height: 1.82; margin-bottom: 22px; }

.lgx-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lgx-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.lgx-chk {
    width: 20px;
    height: 20px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.lgx-chk::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(0px, -1px);
}

/* ══════════════════════════════════════════════════
   QUOTE FORM
══════════════════════════════════════════════════ */
.lgx-quote-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 14px;
}
.lgx-quote-row-group {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 18px 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    position: relative;
    padding-top: 28px;
}
.lgx-quote-group-label {
    position: absolute;
    top: -11px;
    left: 20px;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
}
.lgx-qf-full { grid-column: 1 / -1; }
.lgx-qf { display: flex; flex-direction: column; gap: 7px; }
.lgx-qf-btn { display: flex; align-items: flex-end; }
.lgx-qf label {
    font-size: 11px;
    font-weight: 700;
    color: #3f6680;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.lgx-qf input,
.lgx-qf select {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--white);
    padding: 11px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Barlow', sans-serif;
    transition: border-color .2s;
    width: 100%;
}
.lgx-qf input::placeholder { color: rgba(255,255,255,.38); }
.lgx-qf select option       { background: var(--navy2); color: var(--white); }
.lgx-qf input:focus,
.lgx-qf select:focus        { outline: none; border-color: var(--orange); }

/* ══════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════ */
.lgx-why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-top: 4px;
}
.lgx-why-card { padding: 24px 14px; text-align: center; }
.lgx-why-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: rgba(232,96,10,.14);
    line-height: 1;
    margin-bottom: 10px;
}
.lgx-why-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 9px;
    line-height: 1.3;
}
.lgx-why-card p { font-size: 13px; color: var(--muted); line-height: 1.68; }

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.lgx-faq-wrap { max-width: 780px; margin: 0 auto; }
.lgx-faq      { margin-top: 8px; }
.lgx-faq-item { border-bottom: 1px solid var(--border); }
.lgx-faq-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 19px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    text-align: left;
}
.lgx-faq-btn:hover { color: var(--orange); }
.lgx-faq-ico {
    font-size: 22px;
    color: var(--orange);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform .3s;
    line-height: 1;
}
.lgx-faq-btn[aria-expanded="true"] .lgx-faq-ico { transform: rotate(45deg); }
.lgx-faq-ans {
    display: none;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.78;
    padding-bottom: 18px;
}
.lgx-faq-ans.open { display: block; }

/* ══════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════ */
.lgx-cta-band { background: var(--orange); padding: 52px 0; }
.lgx-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.lgx-cta-band h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.lgx-cta-band p { color: rgba(255,255,255,.85); font-size: 15px; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.lgx-footer { background: var(--navy); color: #7a96ad; padding: 56px 0 24px; }
.lgx-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 44px;
    margin-bottom: 40px;
}
.lgx-footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.lgx-footer-logo span { color: var(--orange); }
.lgx-footer-brand > p { font-size: 13px; line-height: 1.78; margin-bottom: 10px; }
.lgx-footer-license   { font-size: 12px; color: #3a5570; }

.lgx-footer-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.lgx-footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.lgx-footer-links a { font-size: 13px; color: #7a96ad; text-decoration: none; transition: color .18s; }
.lgx-footer-links a:hover { color: var(--orange); }
.lgx-footer-links li.current-menu-item a { color: var(--orange); }

.lgx-footer-contact { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.lgx-footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.lgx-footer-contact svg { flex-shrink: 0; margin-top: 1px; color: var(--orange); }
.lgx-footer-contact a  { color: #7a96ad; text-decoration: none; }
.lgx-footer-contact a:hover { color: var(--orange); }

.lgx-footer-bar {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
}
.lgx-footer-bar a { color: #7a96ad; text-decoration: none; }
.lgx-footer-bar a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════
   INNER PAGES (page.php / single.php)
══════════════════════════════════════════════════ */
.lgx-page-main    { min-height: 60vh; background: var(--white); }
.lgx-page-content { padding: 60px 24px 80px; max-width: 820px; }
.lgx-page-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 22px;
    line-height: 1.1;
}
.lgx-page-content p  { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }
.lgx-page-content a  { color: var(--orange); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .lgx-nav-desktop { display: none; }
    .lgx-hamburger   { display: flex; }
    .lgx-svc-grid    { grid-template-columns: 1fr 1fr; }
    .lgx-about-wrap  { grid-template-columns: 1fr; gap: 36px; }
    .lgx-about-img   { height: 240px; }
    .lgx-why-grid    { grid-template-columns: 1fr 1fr; }
    .lgx-footer-grid { grid-template-columns: 1fr 1fr; }
    .lgx-quote-row   { grid-template-columns: 1fr 1fr; }
    .lgx-qf-btn      { grid-column: 1 / -1; }
    .lgx-statsbar-grid { grid-template-columns: repeat(2,1fr); gap: 16px 8px; }
}

@media (max-width: 600px) {
    .lgx-hero-h1      { font-size: 42px; }
    .lgx-hero-inner   { padding-top: 52px; padding-bottom: 52px; }
    .lgx-svc-grid     { grid-template-columns: 1fr; }
    .lgx-why-grid     { grid-template-columns: 1fr 1fr; }
    .lgx-footer-grid  { grid-template-columns: 1fr; gap: 28px; }
    .lgx-quote-row    { grid-template-columns: 1fr; }
    .lgx-cta-inner    { flex-direction: column; text-align: center; }
    .lgx-sec          { padding: 52px 0; }
    .lgx-topbar-right { display: none; }
    .lgx-footer-bar   { flex-direction: column; text-align: center; }
    .lgx-h2           { font-size: 30px; }
    .lgx-statsbar-grid{ grid-template-columns: repeat(2,1fr); }
}
