:root {
    --bcx-yellow: #edd626;
    --bcx-black: #032c35;
    --bcx-dark-grey: #021f25;
    --bcx-border: #054857;
    --text-light: #cde4e8;
    --heading-color: #fcfefd;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; scroll-behavior: smooth; }

body { background-color: var(--bcx-black); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { color: var(--heading-color); text-transform: uppercase; letter-spacing: 1px; }
.highlight { color: var(--bcx-yellow); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 1s ease-out forwards; }

.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 50px; 
    height: 100px; 
    background: rgba(3, 44, 53, 0.95); 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid var(--bcx-border); 
    backdrop-filter: blur(10px); 
}

.logo {
    display: flex;
    align-items: center;
    height: 70px; 
    width: 150px;
    position: relative;
}

.logo img { 
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) !important; 
    height: 160px !important; 
    width: auto !important; 
    max-width: none !important;
}

.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-light); text-decoration: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--bcx-yellow); text-shadow: 0 0 8px rgba(237, 214, 38, 0.5); }
.btn { border: 1px solid var(--bcx-yellow); padding: 8px 20px; border-radius: 2px; color: var(--bcx-yellow) !important; }
.btn:hover { background: var(--bcx-yellow); color: var(--bcx-dark-grey) !important; box-shadow: 0 0 15px rgba(237, 214, 38, 0.4); }

.hero { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    background-position: center; 
    background-size: cover; 
    border-bottom: 2px solid var(--bcx-yellow); 
    padding-top: 140px; 
}
.hero h1 { font-size: 4.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; color: var(--heading-color); }
.hero p { font-size: 1.15rem; max-width: 700px; margin: 0 auto 40px; color: var(--text-light); }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }
.btn-primary { background: var(--bcx-yellow); color: var(--bcx-dark-grey); padding: 15px 35px; border: none; cursor: pointer; text-decoration: none; font-size: 1rem; font-weight: bold; text-transform: uppercase; border-radius: 2px; transition: 0.3s; display: inline-block; }
.btn-primary:hover { box-shadow: 0 0 20px rgba(237, 214, 38, 0.6); transform: translateY(-2px); }
.btn-secondary { background: transparent; border: 1px solid var(--heading-color); color: var(--heading-color); padding: 15px 35px; text-decoration: none; font-size: 1rem; font-weight: bold; text-transform: uppercase; border-radius: 2px; transition: 0.3s; display: inline-block; }
.btn-secondary:hover { background: rgba(252, 254, 253, 0.1); transform: translateY(-2px); }

.about-section { padding: 100px 0; background: var(--bcx-black); text-align: center; border-bottom: 1px solid var(--bcx-border); }
.about-section .lead { color: var(--bcx-yellow); font-size: 1.4rem; font-weight: bold; margin-bottom: 30px; max-width: 900px; margin-left: auto; margin-right: auto; line-height: 1.4; }
.about-section p { max-width: 800px; margin: 0 auto 20px; color: var(--text-light); font-size: 1.1rem; }

.products-section { padding: 100px 0; background: var(--bcx-dark-grey); }
.products-section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 10px; }
.section-intro { text-align: center; margin-bottom: 60px; color: #9abebf; font-size: 1.1rem; }
.product-grid { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.product-card { background: var(--bcx-black); padding: 20px; border: 1px solid var(--bcx-border); flex: 1; min-width: 320px; max-width: 400px; transition: 0.4s; position: relative; border-radius: 4px; display: flex; flex-direction: column; justify-content: space-between; }
.product-card:hover { border-color: var(--bcx-yellow); transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.5); }
.img-container { position: relative; margin-bottom: 20px; overflow: hidden; border-radius: 2px; }
.product-card img { 
    width: 100%; 
    height: 240px; 
    object-fit: contain; 
    background-color: var(--bcx-black); 
    filter: grayscale(20%); 
    transition: 0.4s; 
}
.product-card:hover img { filter: grayscale(0%); transform: scale(1.05); }
.overlay { position: absolute; top: 10px; right: 10px; background: var(--bcx-yellow); color: var(--bcx-dark-grey); padding: 4px 10px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; }
.product-card h3 { color: var(--bcx-yellow); margin-bottom: 10px; font-size: 1.5rem; }
.product-card p { flex-grow: 1; color: var(--text-light); }
.btn-product { display: inline-block; margin-top: 20px; padding: 10px 15px; background: transparent; color: var(--bcx-yellow); border: 1px solid var(--bcx-yellow); text-decoration: none; font-size: 0.85rem; text-transform: uppercase; font-weight: bold; border-radius: 2px; transition: 0.3s; text-align: center; }
.btn-product:hover { background: var(--bcx-yellow); color: var(--bcx-dark-grey); box-shadow: 0 0 10px rgba(237, 214, 38, 0.4); }

.assetscan-section { padding: 120px 0; background: linear-gradient(135deg, var(--bcx-dark-grey) 0%, var(--bcx-black) 100%); border-top: 1px solid var(--bcx-border); }
.assetscan-section h2 { text-align: center; font-size: 3rem; margin-bottom: 10px; }
.assetscan-wrapper { display: flex; gap: 60px; margin-top: 60px; align-items: center; }
.assetscan-content { flex: 1.2; }
.assetscan-content h3 { color: var(--bcx-yellow); font-size: 1.8rem; margin-bottom: 20px; }
.assetscan-content p { color: var(--text-light); font-size: 1.15rem; margin-bottom: 30px; line-height: 1.7; }
.feature-list { list-style: none; margin-bottom: 30px; }
.feature-list li { position: relative; padding-left: 25px; margin-bottom: 20px; color: var(--heading-color); font-size: 1.05rem; line-height: 1.6; }
.feature-list li::before { content: '▹'; color: var(--bcx-yellow); position: absolute; left: 0; top: 0; font-size: 1.4rem; font-weight: bold; }
.feature-list strong { color: var(--bcx-yellow); }

.assetscan-visuals { flex: 1; display: flex; flex-direction: column; position: relative; padding-bottom: 60px; }
.main-visual { width: 100%; border-radius: 4px; border: 1px solid var(--bcx-border); box-shadow: 0 15px 40px rgba(0,0,0,0.7); z-index: 1; }
.sub-visual { width: 75%; align-self: flex-end; margin-top: -80px; border-radius: 4px; border: 2px solid var(--bcx-yellow); box-shadow: -10px 15px 40px rgba(0,0,0,0.7); z-index: 2; transition: 0.4s; }
.sub-visual:hover { transform: translateY(-10px) scale(1.02); border-color: var(--heading-color); }

.gallery-section { padding: 100px 0; background: var(--bcx-dark-grey); text-align: center; border-top: 1px solid var(--bcx-border); }
.gallery-section h2 { margin-bottom: 10px; font-size: 2.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 50px; text-align: left; }
.gallery-card { background: var(--bcx-black); border: 1px solid var(--bcx-border); border-radius: 4px; overflow: hidden; transition: 0.3s; }
.gallery-card:hover { border-color: var(--bcx-yellow); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.gallery-card img { 
    width: 100%; 
    height: 350px; 
    object-fit: contain; 
    background-color: var(--bcx-dark-grey); 
    border-bottom: 3px solid var(--bcx-yellow); 
    transition: 0.4s; 
}
.gallery-card:hover img { transform: scale(1.02); }
.gallery-info { padding: 30px; }
.gallery-info h4 { color: var(--bcx-yellow); font-size: 1.4rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.gallery-info p { color: var(--text-light); font-size: 1.05rem; line-height: 1.6; }

.contact-section { padding: 100px 0; background: var(--bcx-black); text-align: center; border-top: 1px solid var(--bcx-border); }
.contact-section h2 { margin-bottom: 40px; font-size: 2.5rem; }
.contact-wrapper { display: flex; gap: 30px; max-width: 1000px; margin: 0 auto; text-align: left; }
.contact-card, .contact-form-container { flex: 1; background: var(--bcx-dark-grey); padding: 40px; border-radius: 4px; border: 1px solid var(--bcx-border); transition: 0.3s; }
.contact-card:hover, .contact-form-container:hover { border-color: #06667b; }
.contact-card { border-left: 4px solid var(--bcx-yellow); }
.contact-card h3, .contact-form-container h3 { color: var(--bcx-yellow); margin-bottom: 20px; font-size: 1.5rem; }
.contact-card p { margin-bottom: 15px; font-size: 1.1rem; color: var(--text-light); }
.contact-card a { color: var(--heading-color); text-decoration: none; transition: 0.3s; }
.contact-card a:hover { color: var(--bcx-yellow); }

.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; background: var(--bcx-black); border: 1px solid var(--bcx-border); color: var(--heading-color); border-radius: 2px; font-family: inherit; font-size: 1rem; transition: 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--bcx-yellow); box-shadow: 0 0 8px rgba(237, 214, 38, 0.3); background: #021f25; }

footer { text-align: center; padding: 40px; background: #01161b; border-top: 1px solid var(--bcx-yellow); color: #72969b; font-size: 0.9rem; }

@media (max-width: 900px) {
    .hero h1 { font-size: 3rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .assetscan-wrapper { flex-direction: column; }
    .sub-visual { width: 100%; margin-top: 20px; box-shadow: none; align-self: center; }
    .assetscan-visuals { padding-bottom: 0; }
}

@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .btn-secondary { margin-left: 0; }
    .contact-wrapper { flex-direction: column; }
    .gallery-card img { height: 250px; }
}