:root {
    --accent-red: #B20000;
    --bright-red: #FF0000;
    --obsidian: #050505;
    --matte-black: #000000;
    --text-silver: #E0E0E0;
    --border: rgba(255, 0, 0, 0.2);
}

/* --- MINIMAL AESTHETIC CURSOR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

#cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--bright-red);
    position: fixed;
    border-radius: 50%;
    z-index: 10001;
    pointer-events: none;
}

#cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid var(--bright-red);
    position: fixed;
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transition: transform 0.15s ease-out;
    mix-blend-mode: difference;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--matte-black);
    color: var(--text-silver);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 35px;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--bright-red);
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--bright-red);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.4s;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
}

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

.mobile-menu a {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    margin: 20px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

/* --- HERO --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center horizontally */
    padding: 0 10%;
    background: #000;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Center text */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    /* Slightly wider for centered layout */
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(40px, 10vw, 100px);
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.red-gradient-text {
    background: linear-gradient(to right, #fff, var(--bright-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 3D Canvas Container */
#canvas3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

/* --- SECTIONS --- */
section {
    padding: 120px 10%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    margin-bottom: 60px;
}

.section-header p {
    color: var(--bright-red);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 42px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
}

/* --- SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.05), transparent);
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 40px rgba(178, 0, 0, 0.1);
}

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

.service-card h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
}

.service-card p {
    color: #999;
    font-size: 15px;
    line-height: 1.6;
}

/* --- MARKET INTEL (INFOGRAPHIC STYLE) --- */
.intel-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background: linear-gradient(to right, #080808, #030303);
    padding: 60px;
    border-left: 3px solid var(--bright-red);
}

.intel-item {
    flex: 1;
    min-width: 260px;
}

.intel-item h4 {
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Lexend';
    font-size: 20px;
}

.intel-item span {
    color: var(--bright-red);
    font-weight: bold;
    margin-right: 5px;
}

/* --- EQUIPMENT GRID --- */
.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gear-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Darker border */
}

.gear-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gear-card:hover .gear-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* --- CONTACT --- */
.contact-cta {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.social-link {
    text-decoration: none;
    text-align: center;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-glass {
    width: 80px;
    height: 80px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.icon-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.social-link svg {
    width: 40px;
    height: 40px;
    transition: 0.3s;
    fill: #fff;
}

/* Hover Effects */
.social-link:hover .icon-glass {
    transform: translateY(-10px) scale(1.05);
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

/* WhatsApp Hover */
.social-link:hover .wa-icon {
    fill: #25D366;
    filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.6));
}

.social-link:hover .icon-glass.wa-glass {
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2);
}

/* Instagram Hover */
.social-link:hover .ig-icon {
    fill: url(#ig-gradient);
    filter: drop-shadow(0 0 15px rgba(225, 48, 108, 0.6));
}

.social-link:hover .icon-glass.ig-glass {
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.2);
}

.social-link span {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.social-link:hover span {
    color: #fff;
    transform: translateY(5px);
}

footer {
    padding: 40px;
    text-align: center;
    font-size: 10px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    nav {
        padding: 20px 5%;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 0 5%;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        margin-top: 0;
    }

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

    section {
        padding: 80px 5%;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .intel-container {
        padding: 30px;
    }

    .contact-cta {
        gap: 30px;
    }
}