/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 3rem;
}

.service-detail {
    text-align: center;
    padding: 80px 2rem;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

/* Header */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-bottom: 1px solid #333;
    position: relative;
}

.logo {
    height: 120px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.phone {
    color: #00ffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #888;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 15px #ff00ff;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #00ffff;
    z-index: 101;
}

/* Navigation */
.sticky-nav {
    position: sticky;
    top: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    position: relative;
}

.nav-link {
    color: #00ffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 15px #ff00ff;
}

#highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    box-shadow: 0 0 10px #00ffff;
    transition: all 0.3s ease;
    z-index: 0;
}

/* Dropdown Styles */
.has-dropdown {
    position: relative;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.has-dropdown.dropdown-open .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(17, 17, 17, 0.98);
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    border-top: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 10;
    margin: 0;
    padding: 0;
}

.has-dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 1rem 2rem;
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

.dropdown-link:hover {
    background: rgba(255, 0, 255, 0.1);
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
    padding-left: 2.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
}

.neon-text {
    font-size: 4rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #ccc;
}

.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-hero,
.contact-hero {
    min-height: 70vh;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00ffff, #0099cc);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
    text-shadow: 0 0 5px #000;
}

.btn-secondary {
    background: linear-gradient(135deg, #ff00ff, #cc00cc);
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 255, 0.4);
    text-shadow: 0 0 5px #000;
}

/* Services Section */
.services {
    padding: 80px 2rem;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: linear-gradient(135deg, #222 0%, #333 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #444;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card-icon {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ffff;
}

.card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.card p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.card-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 15px #ff00ff;
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: #00ffff;
}

/* CTA Section */
.cta-section {
    padding: 80px 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #ff00ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #ff00ff;
}

.cta-section p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: #222;
    border: 1px solid #444;
    border-radius: 10px;
    color: #eee;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #888;
    z-index: 1;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-info-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #222;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #444;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ccc;
}

.contact-info-box a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 15px #ff00ff;
}

/* Footer */
footer {
    background: #000;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-content p {
    color: #888;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        order: 3;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        order: 2;
    }

    .sticky-nav {
        display: none;
        position: relative;
        background: rgba(17, 17, 17, 0.98);
        border-top: 1px solid #333;
    }

    .sticky-nav.active {
        display: block;
    }

    .nav-container {
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-link {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #333;
    }

    #highlight {
        display: none;
    }

    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(34, 34, 34, 0.9);
        margin-top: 0.5rem;
    }

    .has-dropdown.dropdown-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        display: none;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .dropdown-link {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #444;
    }

    .neon-text {
        font-size: 2.5rem;
    }

    .hero {
        padding: 60px 1rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 80px;
        max-width: 250px;
    }

    .section-title {
        font-size: 2rem;
    }
}