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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    color: #c0c0c0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #4a4a4a;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff0000 0%, #ffffff 30%, #ffffff 70%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #c0c0c0;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.98);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
    z-index: 1;
    border: 1px solid #4a4a4a;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
}

.dropdown-content a {
    color: #c0c0c0;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Main Content */
main {
    margin-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff0000 0%, #ffffff 30%, #ffffff 70%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #c0c0c0;
}

/* Sections */
section {
    padding: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid #4a4a4a;
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* About Section */
.about {
    background-color: #0a0a0a;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c0c0c0;
    max-width: 800px;
}

/* Services Grid */
.services-preview {
    background-color: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #4a4a4a;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.price {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Button */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Contact Section */
.contact {
    background-color: #0a0a0a;
}

.contact-form {
    max-width: 600px;
    margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #4a4a4a;
    color: #c0c0c0;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(192, 192, 192, 0.5);
}

.contact-form button {
    cursor: pointer;
}

/* Service Detail Pages */
.service-detail {
    min-height: 70vh;
    padding: 4rem 0;
}

.service-detail h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.price-large {
    font-size: 1.5rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
    font-weight: 300;
}

.service-content {
    margin: 3rem 0;
    line-height: 1.8;
}

.editable-section {
    min-height: 200px;
    color: #c0c0c0;
    font-size: 1.1rem;
}

/* Portfolio Grid */
.portfolio {
    min-height: 70vh;
    padding: 4rem 0;
}

.portfolio h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #4a4a4a;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.portfolio-item a {
    display: block;
    text-decoration: none;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.client-name {
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.9);
    color: #c0c0c0;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: #000000;
    border-top: 1px solid #4a4a4a;
    padding: 2rem 0;
    text-align: center;
    color: #c0c0c0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

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

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

    h2 {
        font-size: 2rem;
    }

    .service-detail h1,
    .portfolio h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }
}
