/* --- CSS VARIABLES & RESET --- */
:root {
    --primary: #DFFF00; /* Neon Lime */
    --primary-dim: #b3cc00;
    --bg: #050505;
    --surface: #111111;
    --surface-light: #1a1a1a;
    --text: #ffffff;
    --text-gray: #a1a1a1;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- NAVIGATION --- */
nav {
    position: fixed; top: 0; width: 100%; padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid #222;
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.5rem; color: var(--primary); z-index: 1001; }
.logo img { height: 45px; border: none; object-fit: contain; }

.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 0.9rem; font-weight: 600; position: relative; transition: var(--transition); }
.nav-links a.active { color: var(--primary); }
.nav-links a:hover { color: var(--primary); }

/* Hamburger */
.hamburger { display: none; cursor: pointer; z-index: 1001; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--primary); transition: 0.3s; }

@media (max-width: 768px) {
    .hamburger { display: block;}
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .nav-links {
        position: fixed; right: -100%; top: 0; flex-direction: column;
        background-color: #000; width: 80%; height: 100vh;
        text-align: center; transition: 0.3s; padding-top: 100px;
        box-shadow: -5px 0 15px rgba(223, 255, 0, 0.1);
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 25px 0; }

}

/* --- HERO SECTION --- */
.hero {
    height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.video-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1535016120720-40c6874c3b13?q=80&w=2664&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.4; z-index: -1;
}
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, transparent 20%, var(--bg) 90%); }
.hero-content { text-align: center; z-index: 2; max-width: 900px; padding: 0 20px; }
.hero-title { font-size: 5rem; line-height: 1; margin-bottom: 30px; }

/* Page Header (For sub-pages) */
.page-header {
    padding: 150px 5% 50px; text-align: center; background: #0a0a0a; border-bottom: 1px solid #222;
}
.page-header h1 { font-size: 3.5rem; color: var(--primary); margin-bottom: 15px; }

/* --- BUTTONS --- */
.btn {
    display: inline-block; padding: 15px 40px; border: 2px solid var(--primary);
    color: var(--primary); font-family: 'Oswald', sans-serif; font-size: 1.1rem;
    text-transform: uppercase; letter-spacing: 2px; transition: var(--transition);
    position: relative; overflow: hidden; margin-top: 20px; background: transparent; cursor: pointer;
}
.btn:hover { color: var(--bg); background: var(--primary); }

/* --- GRIDS & CARDS --- */
.section { padding: 80px 5%; flex: 1; }
.services-grid, .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.service-card, .pricing-card {
    background: var(--surface); padding: 40px; border: 1px solid #222;
    transition: var(--transition); position: relative;
}
.service-card:hover, .pricing-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.service-icon { font-size: 3rem; color: var(--primary); margin-bottom: 25px; }

/* Pricing Specifics */
.price-amount { font-size: 3rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; font-family: 'Oswald', sans-serif; }
.price-features li { padding: 10px 0; border-bottom: 1px solid #222; color: #ddd; }

/* Portfolio Grid */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.portfolio-item { height: 400px; position: relative; overflow: hidden; border-radius: 4px; }
.portfolio-img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; filter: grayscale(100%); }
.portfolio-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    opacity: 0; transition: 0.4s; transform: translateY(20px);
}
.portfolio-item:hover .portfolio-img { transform: scale(1.1); filter: grayscale(0%); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; transform: translateY(0); }

/* Forms */
input, textarea {
    width: 100%; padding: 15px; background: #0f0f0f; border: 1px solid #333;
    color: var(--text); outline: none; margin-bottom: 20px;
}
input:focus, textarea:focus { border-color: var(--primary); }

/* --- ADVANCED FOOTER STYLES --- */
.site-footer {
    background: #020202;
    border-top: 1px solid #1a1a1a;
    padding: 80px 5% 30px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Logo Area, Links, Socials, Contact */
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-col h4 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-size: 1rem;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a { transition: 0.3s; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* LazyWorkz Signature Style */
.lazyworkz-credit a {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.lazyworkz-credit a:hover {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(223, 255, 0, 0.6);
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

 @media (max-width: 768px){
    span{
        font-size: 22px;
    }
    
 }