:root {
    --bg-color: #0a0a0a;
    --card-bg: #111111;
    --accent-color: #ff4d4d;
    /* Rock Red */
    --accent-glow: 0 0 15px rgba(255, 77, 77, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.accent {
    color: var(--accent-color);
    text-shadow: var(--accent-glow);
}

.accent-text {
    color: var(--accent-color);
    text-shadow: var(--accent-glow);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 77, 77, 0.6);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(255, 77, 77, 0.05);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo .accent {
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-nav {
    background: var(--accent-color);
    color: white;
    padding: 8px 18px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--accent-glow);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-tagline {
    display: block;
    color: var(--accent-color);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.9;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.stage-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.2) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: -1;
}

.hero-img-container {
    width: 400px;
    height: 550px;
    border-radius: 10px;
    overflow: hidden;
    transform: rotate(3deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-color);
    background: #181818;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-shadow: var(--accent-glow);
}

.service-card h3 {
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Zones */
.zones {
    background-color: #0f0f0f;
}

.zones-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.zones-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.zones-list {
    margin: 30px 0;
}

.zones-list li {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.zones-list i {
    color: var(--accent-color);
}

.zones-list li.small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 15px;
}

.zones-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.zones-img img {
    width: 100%;
    display: block;
}

/* Contact */
.contact-box {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
        url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.contact-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.contact-text-side {
    flex: 1;
    text-align: left;
}

.contact-map-side {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.contact-info-blocks {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin: 30px 0;
}

.info-block {
    text-align: center;
}

.info-block i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.btn-cta {
    font-size: 1.2rem;
    padding: 18px 50px;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Floating WA */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .btn-nav {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .menu-toggle {
        margin-top: 0;
    }

    .hero {
        padding-top: 120px;
        flex-direction: column;
        text-align: center;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-overlay {
        background: rgba(10, 10, 10, 0.85);
    }

    .hero-content {
        margin-bottom: 40px;
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero p {
        margin: 0 auto 35px;
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-img-container {
        width: 280px;
        height: 380px;
        transform: rotate(0deg);
        margin: 0 auto;
    }

    .zones-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zones-list li {
        justify-content: center;
    }

    .contact-flex {
        flex-direction: column;
    }

    .contact-text-side {
        text-align: center;
    }

    .contact-info-blocks {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }

    .contact-map-side {
        width: 100%;
        height: 300px;
    }
}

/* Mobile Menu State */
.mobile-nav-active .nav-links {
    display: flex;
    position: fixed;
    top: 70px;
    /* Aligned with reduced header height on mobile */
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 60px 20px;
    gap: 30px;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    z-index: 999;
}

.mobile-nav-active .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 2px;
}