@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;600&display=swap');

:root {
    --bg: #0D0D0D;
    --acc: #7FFF00; /* Acid Green */
    --text: #FFFFFF;
    --text-dim: rgba(255,255,255,0.6);
    --font-h: 'Bebas Neue', cursive;
    --font-b: 'Outfit', sans-serif;
    --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-b);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 { font-family: var(--font-h); text-transform: uppercase; letter-spacing: 2px; }
p { font-size: 1.1rem; font-weight: 300; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.acc { color: var(--acc); }

/* Navigation */
nav {
    position: fixed; top: 0; width: 100%; padding: 40px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100; transition: 0.3s ease;
}
.logo { font-family: var(--font-h); font-size: 2rem; letter-spacing: 1px; }

/* Hero */
.hero {
    height: 100vh; width: 100%;
    position: relative; display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}
.hero-bg {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to bottom, rgba(13,13,13,0.7), rgba(13,13,13,0.85)), url('stock-background.png') no-repeat center center;
    background-size: cover; z-index: -1;
}
.hero-content { max-width: 1000px; }
.hero h1 { font-size: clamp(80px, 15vw, 180px); line-height: 0.85; margin-bottom: 30px; }
.hero p { font-size: 1.2rem; letter-spacing: 0.4em; margin-bottom: 20px; color: var(--text-dim); text-transform: uppercase; }

/* Buttons */
.btn {
    padding: 22px 50px; font-family: var(--font-h); font-size: 1.3rem;
    text-decoration: none; text-transform: uppercase; transition: 0.4s var(--transition);
    display: inline-block; cursor: pointer; border: none;
}
.btn-primary { background: var(--acc); color: #000; }
.btn-primary:hover { background: #fff; transform: translateY(-5px); box-shadow: 0 15px 30px rgba(127, 255, 0, 0.2); }

/* Service Spread */
.section { padding: 180px 0; }
.split-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; align-items: center; }
.reverse { grid-template-columns: 1.1fr 1fr; }

.img-box { height: 85vh; overflow: hidden; border-radius: 2px; }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s var(--transition); }
.split-grid:hover .img-box img { transform: scale(1.05); }

.text-box { max-width: 500px; }
.text-box h2 { font-size: 80px; line-height: 1; margin: 15px 0 30px; }

/* Review Section */
.reviews { padding: 180px 5%; text-align: center; border-top: 1px solid #222; }
.stars-img { height: 40px; margin-bottom: 40px; }
.testimonial { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 300; line-height: 1.4; max-width: 900px; margin: 0 auto 40px; color: #fff; }
.author { font-family: var(--font-h); font-size: 1.2rem; letter-spacing: 3px; color: var(--acc); }

/* Footer */
footer { padding: 140px 5% 60px; border-top: 1px solid #222; background: #000; }
.footer-wrap { display: flex; justify-content: space-between; align-items: flex-end; }

/* Mobile */
@media (max-width: 1024px) {
    .split-grid { grid-template-columns: 1fr; gap: 50px; }
    .reverse { grid-template-columns: 1fr; }
    .img-box { height: 50vh; }
    .text-box h2 { font-size: 60px; }
}
