/* ========================================
   NEXT LEVEL BUSINESS SOLUTIONS
   Minimal. Bold. Gold & Teal.
   ======================================== */

:root {
    --teal: #1a3a4a;
    --teal-dark: #0d2633;
    --navy: #080f18;
    --gold: #c9a84c;
    --gold-light: #dcc06e;
    --gold-dark: #a88b38;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-400: #94a3b8;
    --gray-600: #4a5568;
    --gray-800: #1e293b;
    --font: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.15; font-weight: 800; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; }
.section-dark { background: var(--navy); }

/* Utility */
.text-gold { color: var(--gold); }

.text-shimmer {
    background: linear-gradient(120deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

/* Tags */
.tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.tag-dark {
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--gold-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.4), 0 0 60px rgba(201, 168, 76, 0.15);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform 0.3s ease; }
.btn-ghost:hover .btn-arrow { transform: translateX(4px); }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(8, 15, 24, 0.9);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img { height: 48px; transition: all 0.3s ease; }
.navbar.scrolled .nav-logo img { height: 38px; }

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 6px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    margin-left: 12px;
}

.nav-cta:hover {
    background: var(--gold-light);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--navy);
    overflow: hidden;
    padding: 140px 28px 60px;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.1); }
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 12px var(--gold); }
    50% { box-shadow: 0 0 24px var(--gold), 0 0 48px rgba(201,168,76,0.3); }
}

.hero h1 {
    font-size: clamp(2.8rem, 6.5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    animation: fadeUp 0.8s ease 0.15s both;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    max-width: 540px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeUp 0.8s ease 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.45s both;
}

/* Hero Stats Bar */
.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    animation: fadeUp 0.8s ease 0.6s both;
}

.hero-stat { text-align: center; }

.hero-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.5px;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 4px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   ABOUT (Split Layout)
   ======================================== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.split-left h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--gray-800);
    letter-spacing: -0.5px;
}

.split-right p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-points {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--teal);
}

.point-line {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    flex-shrink: 0;
}

/* ========================================
   SERVICES
   ======================================== */
.section-head {
    margin-bottom: 56px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.svc-card {
    padding: 40px 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s ease;
    position: relative;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.svc-card:hover {
    background: rgba(201, 168, 76, 0.05);
}

.svc-card:hover::after {
    transform: scaleX(1);
}

.svc-featured {
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.12);
}

.svc-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.svc-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.svc-card p {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ========================================
   PORTAL
   ======================================== */
.portal-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.portal-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--gray-800);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.portal-text p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.portal-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.pill {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(26, 58, 74, 0.06);
    border: 1px solid rgba(26, 58, 74, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.pill:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* Portal Card (Mockup) */
.portal-card {
    background: var(--navy);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.1);
    box-shadow: 0 20px 60px rgba(8, 15, 24, 0.4), 0 0 40px rgba(201, 168, 76, 0.06);
}

.portal-card-header {
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pch-dots {
    display: flex;
    gap: 6px;
}

.pch-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.pch-dots span:nth-child(1) { background: #ff5f57; }
.pch-dots span:nth-child(2) { background: #ffbd2e; }
.pch-dots span:nth-child(3) { background: #28ca42; }

.portal-card-body { padding: 24px; }

.pcb-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
}

.pcb-search svg { opacity: 0.4; }

.pcb-row {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.pcb-stat {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 10px;
}

.pcb-stat strong {
    display: block;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 800;
}

.pcb-stat span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pcb-items { display: flex; flex-direction: column; gap: 8px; }

.pcb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
}

.pcb-badge {
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.pcb-fed { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.pcb-state { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.pcb-local { background: rgba(168, 85, 247, 0.15); color: #c084fc; }

.pcb-line {
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    flex: 1;
}

.pcb-line.light { background: rgba(255,255,255,0.04); flex: 0.6; }
.w80 { max-width: 80%; }
.w70 { max-width: 70%; }
.w90 { max-width: 90%; }
.w50 { max-width: 50%; }
.w40 { max-width: 40%; }
.w60 { max-width: 60%; }

/* ========================================
   INDUSTRIES
   ======================================== */
.ind-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ind-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: default;
}

.ind-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.ind-item span {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.ind-item:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.ind-item:hover svg { color: var(--navy); opacity: 1; }
.ind-item:hover span { color: var(--navy); }

.ind-more {
    border-style: dashed;
    border-color: rgba(201, 168, 76, 0.2);
}

.ind-more:hover {
    background: var(--gold);
    border-style: solid;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-block {
    position: relative;
    z-index: 2;
}

.cta-block h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.cta-block p {
    color: rgba(255,255,255,0.45);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--gray-800);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cd-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--gray-600);
}

.cd-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--off-white);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--off-white);
    transition: all 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-400);
}

.contact-form textarea { resize: vertical; min-height: 100px; }

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--navy);
    padding: 48px 0 32px;
    border-top: 1px solid rgba(201, 168, 76, 0.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-logo { height: 42px; margin-bottom: 10px; }

.footer-brand p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    transition: all 0.3s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding-top: 24px;
}

.footer-bottom span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children reveal */
.stagger-reveal > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-reveal.active > *:nth-child(1) { transition-delay: 0s; }
.stagger-reveal.active > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-reveal.active > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-reveal.active > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-reveal.active > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-reveal.active > *:nth-child(6) { transition-delay: 0.4s; }
.stagger-reveal.active > *:nth-child(7) { transition-delay: 0.48s; }

.stagger-reveal.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portal-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .portal-visual { max-width: 480px; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: all 0.4s ease;
        box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    }

    .nav-menu.active { right: 0; }

    .nav-link { padding: 12px 16px; width: 100%; color: rgba(255,255,255,0.5); }
    .nav-cta { margin-left: 0; margin-top: 16px; text-align: center; justify-content: center; }

    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-stats {
        gap: 32px;
        flex-wrap: wrap;
    }

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

    .footer-brand p { margin: 0 auto; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; letter-spacing: -0.5px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .ind-grid { flex-direction: column; }
    .ind-item { justify-content: center; }
}
