/* ================================================
   BOZA SECURITY - REBUILT WEBSITE
   Colors: Dark Grey | Silver/White | Neon Green
   Performance Optimized - Minimal Animations
   ================================================ */

:root {
    --dark: #0a0e12;
    --dark-light: #1a1f26;
    --silver: #c0c0c0;
    --white: #f5f5f5;
    --green: #00ff41;
    --green-dark: #00cc34;
    --text: #e0e0e0;
    --text-light: #a0a0a0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(92%, 1200px);
    margin: 0 auto;
}

a {
    text-decoration: none;
}

/* ================================================
   HEADER
   ================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 18, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
}

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

.logo-img {
    width: 120px;
    height: auto;
    background: transparent;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    transition: 0.3s;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

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

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav a {
    color: var(--silver);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

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

/* ================================================
   HERO
   ================================================ */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 90px 0;
    margin-top: 0;
}

.hero-tag {
    display: inline-block;
    color: var(--green);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 56px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero h1 strong {
    color: var(--green);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--silver);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-text {
    font-size: 15px;
    color: var(--text);
    max-width: 700px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-green {
    background: var(--green);
    color: var(--dark);
}

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--dark-light);
    color: var(--white);
    border: 1px solid var(--silver);
}

.btn-white:hover {
    background: var(--silver);
    color: var(--dark);
}

/* ================================================
   SECTIONS
   ================================================ */
section {
    padding: 80px 0;
}

section h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--text);
    margin-bottom: 60px;
    font-size: 15px;
}

/* ================================================
   ABOUT
   ================================================ */
.about {
    background: var(--dark-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-grid img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about h3 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about p {
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    color: var(--text);
    padding: 0.75rem;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding-left: 2rem;
    position: relative;
}

.feature::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    color: var(--green);
    font-weight: 700;
}

/* ================================================
   SERVICES
   ================================================ */
.services {
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-item {
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s;
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: var(--green);
    box-shadow: 0 8px 24px rgba(0, 255, 65, 0.08);
}

.service-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-item h3 {
    color: var(--green);
    font-size: 16px;
    margin: 1rem 1rem 0.5rem;
    font-weight: 700;
}

.service-item p {
    color: var(--text);
    font-size: 14px;
    margin: 0 1rem 1rem;
    line-height: 1.6;
}

/* ================================================
   CONTACT
   ================================================ */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-box {
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s;
}

.contact-box:hover {
    border-color: var(--green);
    box-shadow: 0 8px 24px rgba(0, 255, 65, 0.08);
}

.contact-box h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-box a {
    color: var(--green);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-box a:hover {
    color: var(--green-dark);
}

.contact-box p {
    color: var(--text);
    font-size: 14px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--dark-light);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
    background: transparent;
}

.footer p {
    color: var(--text);
    font-size: 14px;
}

/* ================================================
   MOBILE
   ================================================ */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .nav.active {
        max-height: 400px;
    }

    .nav a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

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

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

    section {
        padding: 50px 0;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-tag {
        font-size: 11px;
    }

    section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

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

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