:root {
    --black: #0a0a0a;
    --white: #f5f5f0;
    --cream: #e8e4dc;
    --orange: #ff4d00;
    --gray: #1a1a1a;
    --gray-light: #2a2a2a;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Space Mono', monospace;
    --font-accent: 'Syne', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); overflow-x: hidden; }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.25rem;
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
}

.mobile-menu-links li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-menu-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-links li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-menu-links li:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu-links a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--orange);
}

.mobile-menu-contact {
    margin-top: 3rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.45s;
}

.mobile-menu.active .mobile-menu-contact {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-contact a {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--cream);
    text-decoration: none;
    margin: 0.5rem 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mobile-menu-contact a:hover {
    color: var(--orange);
    opacity: 1;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

/* Service Hero */
.service-hero {
    padding: 12rem 4rem 6rem;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(255, 77, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 77, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.service-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
}

.service-hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}

.service-hero-text h1 .highlight {
    color: var(--orange);
}

.service-hero-text p {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--cream);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--black);
    background: var(--orange);
    padding: 1.5rem 3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--white);
}

.service-hero-image {
    position: relative;
    height: 500px;
    background: var(--gray);
    overflow: hidden;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--orange);
    opacity: 0.3;
    pointer-events: none;
}

/* Service Details */
.service-details {
    padding: 8rem 4rem;
    background: var(--gray);
}

.service-details-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--orange);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--orange);
}

.service-details h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.detail-card {
    padding: 2.5rem;
    background: var(--black);
    border-left: 2px solid var(--orange);
}

.detail-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.detail-card p {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.7;
}

/* Service Types */
.service-types {
    padding: 8rem 4rem;
}

.service-types-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-types h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 4rem;
    text-align: center;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.type-card {
    padding: 3rem;
    background: var(--gray);
    text-align: center;
    transition: all 0.3s ease;
}

.type-card:hover {
    background: var(--gray-light);
    transform: translateY(-5px);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.type-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.type-card p {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.7;
}

/* Service CTA */
.service-cta {
    padding: 10rem 4rem;
    text-align: center;
    position: relative;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 77, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.service-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 2rem;
    position: relative;
}

.service-cta p {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--cream);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}

/* Footer */
footer {
    padding: 6rem 4rem;
    background: var(--gray);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.6;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--cream);
    opacity: 0.6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--orange);
}

.footer-contact-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--cream);
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-hero-image {
        height: 400px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .service-hero {
        padding: 10rem 2rem 4rem;
    }

    .service-details,
    .service-types,
    .service-cta {
        padding: 4rem 2rem;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
