/* --- RESET & BASICS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- UTILITIES --- */
.highlight {
    color: #b3ff00;
}

/* NEW: REVEAL ANIMATION CLASSES */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- ANTI-COPY PROTECTION --- */
.no-copy {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* --- BUTTONS & SPACING --- */
.hero-btns {
    display: flex;
    flex-wrap: wrap; 
    gap: 15px; 
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #b3ff00;
    color: #000;
    border-radius: 5px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #b3ff00;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
}

nav .btn {
    padding: 10px 20px;       
    font-size: 0.75rem;       
    border-width: 1px;        
    white-space: nowrap;      
}

.btn:hover {
    background: transparent;
    color: #b3ff00;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

section {
    padding: 6rem 10%;
}

h2.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2.section-title span {
    color: #b3ff00;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background: rgba(5, 32, 30, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
}

.logo a { display: block; }
.logo img { height: 50px; width: auto; transition: transform 0.3s; }
.logo img:hover { transform: scale(1.05); }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 2.5rem; }

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover { color: #b3ff00; }

.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: white; transition: 0.3s; }
.close-menu-btn { display: none; font-size: 1.5rem; color: #888; cursor: pointer; text-align: right; margin-bottom: 2rem; border-bottom: 1px solid #333; padding-bottom: 1rem; }

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
    padding-top: 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(179, 255, 0, 0.05), transparent 70%);
    z-index: -1;
}

.hero-text { flex: 1.2; padding-right: 3rem; }

.hero-badge {
    display: inline-block;
    background: rgba(179, 255, 0, 0.1);
    color: #b3ff00;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-left: 3px solid #b3ff00;
}

.hero-text h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 800; }

.premium-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cccccc;
    max-width: 550px;
    margin-bottom: 2.5rem;
    border-left: 3px solid #b3ff00;
    padding-left: 1.5rem;
}

.hero-img { flex: 1; position: relative; }
.hero-img img {
    width: 100%;
    height: 500px;        
    object-fit: cover;    
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 20px 20px 0px rgba(179, 255, 0, 0.25);
    transition: all 0.3s ease;
}

.hero-img img:hover {
    box-shadow: 20px 20px 0px rgba(179, 255, 0, 0.4);
    transform: translate(-5px, -5px);
}

/* --- STATS BAR --- */
.stats-bar {
    background: #111;
    padding: 3rem 10%;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.stat-item { text-align: center; }
.stat-item h3 { font-size: 2.5rem; color: #b3ff00; margin-bottom: 0.5rem; }
.stat-item p { font-size: 0.9rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }

/* --- SERVICES --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.service-card { background: #151515; padding: 3rem 2rem; border-radius: 8px; border: 1px solid #222; transition: 0.4s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: #b3ff00; transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-10px); background: #1a1a1a; }
.icon-box { font-size: 2rem; color: #b3ff00; margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-card p { color: #999; }

/* --- PORTFOLIO & SKELETON LOADER --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.portfolio-item { position: relative; height: 400px; overflow: hidden; border-radius: 8px; cursor: pointer; }

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0;
}

.portfolio-img.loaded {
    opacity: 1;
}

.loading-skeleton {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.loading-skeleton::after {
    content: "";
    position: absolute;
    top: -150%;
    left: 0;
    width: 100%;
    height: 150%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(179, 255, 0, 0.03) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.portfolio-item:hover .portfolio-img.loaded { transform: scale(1.05); }
.portfolio-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem; background: linear-gradient(to top, #000, transparent); transform: translateY(20px); opacity: 0; transition: all 0.4s; z-index: 2; }
.portfolio-item:hover .portfolio-info { transform: translateY(0); opacity: 1; }

/* --- CONTACT --- */
.cta-section { background: linear-gradient(90deg, #1a1a1a, #0f0f0f); text-align: center; }
.contact-container { max-width: 600px; margin: 0 auto; text-align: left; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: #888; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 1rem; background: #0f0f0f; border: 1px solid #333; color: #fff; border-radius: 8px; font-size: 1rem; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #b3ff00; }

/* --- FOOTER --- */
footer {
    background: rgba(5, 32, 30, 0.95); 
    padding: 5rem 5%;
    border-top: 1px solid #1a1a1a;
    display: block;
    text-align: center;
}

.footer-centered-content { max-width: 800px; margin: 0 auto; }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
    .nav-cta { display: none; }
    .hamburger { display: block; margin-left: auto; }
    .nav-links { position: fixed; right: -100%; top: 0; height: 100vh; width: 70%; background-color: #0f0f0f; flex-direction: column; align-items: flex-start; padding: 4rem 2rem; transition: 0.4s ease-in-out; box-shadow: -5px 0 15px rgba(0,0,0,0.5); border-left: 1px solid #222; z-index: 2000; }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 1.5rem 0; width: 100%; }
    .nav-links a { font-size: 1.2rem; display: block; width: 100%; }
    .close-menu-btn { display: block; width: 100%; }
    nav { padding: 1rem 5%; }
    .logo img { height: 40px; }
    .hero { flex-direction: column; text-align: center; }
    .hero-text { padding-right: 0; margin-bottom: 3rem; }
    .hero-img { width: 100%; }
    .hero-text h1 { font-size: 2.5rem; }
    .premium-intro { text-align: left; font-size: 1rem; padding-left: 1rem; }
    .hero-btns { justify-content: center; } 
    .stats-bar { flex-direction: column; gap: 2rem; }
    .portfolio-grid { grid-template-columns: 1fr; }
}