/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    /* Orizon-Inspired Dark Premium Palette */
    --bg-deep: #0E121B;
    --bg-surface: #171B25;
    --bg-glass: rgba(14, 18, 27, 0.75);

    --primary: #4BA14E;
    /* Logo Green */
    --primary-glow: rgba(75, 161, 78, 0.15);

    --accent-blue: #00D1FF;
    --accent-glow: rgba(0, 209, 255, 0.1);

    --text-main: #FFFFFF;
    --text-muted: #CACFD8;
    --text-dim: #99A0AE;

    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-glow: 1px solid rgba(0, 209, 255, 0.2);

    --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.4);
    --glass-blur: blur(12px) saturate(180%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   The Intelligence Layer (Background & Grid)
   ============================================ */

.intelligence-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image:
        radial-gradient(circle at 20% 30%, var(--accent-glow) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, var(--primary-glow) 0%, transparent 40%);
}

.intelligence-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 90%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    padding: 0.75rem 2rem;
    z-index: 1000;
    border-radius: 100px;
    border: var(--border-glass);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    top: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(14, 18, 27, 0.9);
    box-shadow: var(--shadow-premium);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.logo-tagline {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-main);
    margin-top: -0.25rem;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-deep);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

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

    .nav-link {
        font-size: 1.5rem;
    }
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--text-main);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 10rem;
    /* Increased padding to clear fixed navbar */
    padding-bottom: 6rem;
    overflow: hidden;
    text-align: center;
}



.hero .container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 18, 27, 0.5);
    z-index: 2;
}

.hero-status-board {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.status-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-family: 'Inter', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.status-indicator {
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: tech-pulse 2s infinite;
}

@keyframes tech-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

.spec-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 6px;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-main);
    letter-spacing: -3px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.hero-inquiry-box {
    margin-top: 2rem;
    background: var(--bg-surface);
    padding: 0.75rem;
    border-radius: 100px;
    border: var(--border-glass);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    backdrop-filter: var(--glass-blur);
    width: fit-content;
}

@media (max-width: 768px) {
    .hero-inquiry-box {
        flex-direction: column;
        border-radius: 20px;
        width: 100%;
        padding: 1.5rem;
    }

    .inquiry-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
    }

    .inquiry-field:last-of-type {
        border-bottom: none;
    }

    .inquiry-field input {
        width: 100%;
        text-align: center;
    }

    .hero-inquiry-box .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }
}

.inquiry-field {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.inquiry-field:last-of-type {
    border-right: none;
}

.inquiry-field label {
    display: none;
}

.inquiry-field input {
    padding: 0.5rem 0;
    border: none;
    font-size: 0.9rem;
    color: var(--text-main);
    background: transparent;
    width: 140px;
}

.inquiry-field input::placeholder {
    color: var(--text-dim);
}

.inquiry-field input:focus {
    outline: none;
}

.hero-inquiry-box .btn-primary {
    padding: 0.75rem 2rem;
    border-radius: 100px;
}

.hero-meta {
    margin-bottom: 4rem;
    padding: 1.5rem 0;
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
    display: flex;
    gap: 4rem;
}

.meta-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-right: 1.5rem;
}

.meta-value {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-main);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: #0E121B;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(250, 158, 27, 0.2);
}

.btn-secondary {
    border: var(--border-glass);
    color: var(--text-main);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   Technical Services (Phase 01)
   ============================================ */
section {
    padding: 8rem 0;
    position: relative;
    scroll-margin-top: 100px;
}

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

.section-header {
    margin-bottom: 6rem;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* [REMOVED] Operational Profile (About) */

/* [REMOVED] Technical Services */

/* ============================================
   Featured Projects (The Showcase)
   ============================================ */
/* [REMOVED] Key Verticals */

/* ============================================
   Key Verticals
   ============================================ */
.verticals {
    background: var(--bg-deep);
    padding: 10rem 0;
}

.verticals-content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.verticals-list {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.verticals-list h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

.platform-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
}

.platform-list li {
    padding: 0.75rem 1.5rem;
    background: rgba(23, 27, 37, 0.6);
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.platform-list li:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .verticals-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.vertical-card {
    background: rgba(23, 27, 37, 0.6);
    backdrop-filter: blur(12px);
    padding: 3.5rem;
    border-radius: 30px;
    border: var(--border-glass);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content in vertical cards */
    text-align: center;
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vertical-card:hover {
    transform: translateY(-10px);
    border-color: rgba(250, 158, 27, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.vertical-card:hover::before {
    opacity: 1;
}

.vertical-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-main);
    line-height: 1.3;
}

.vertical-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vertical-card ul li {
    font-size: 0.95rem;
    color: var(--text-dim);
    position: relative;
    padding-left: 1.5rem;
}

.vertical-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   Technologies / Vendor Stack
   ============================================ */
/* [REMOVED] Tech Stack */

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--bg-deep);
    padding: 10rem 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    /* Center contact info */
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    /* Stack icon and text */
    gap: 1.5rem;
    align-items: center;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-surface);
    border: var(--border-glass);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: var(--bg-deep);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.contact-details h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--bg-surface);
    padding: 4rem;
    border-radius: 40px;
    border: var(--border-glass);
    backdrop-filter: var(--glass-blur);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    color: var(--text-main);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.contact-form .btn-primary {
    width: 100%;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 1.5rem auto 2.5rem;
    border-radius: 2px;
}

.footer {
    padding: 8rem 0 4rem;
    background: var(--bg-deep);
    border-top: var(--border-glass);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 8rem;
}

.footer-col h5 {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-dim);
    transition: color 0.3s ease;
}

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

/* ============================================
   Animations & Reveals
   ============================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}