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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background: #1a1a2e;
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    color: #fff;
    padding: 1em 2em;
    box-shadow: 0 4px 15px rgba(0, 200, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #00c8ff 0%, #ff006e 100%) 1;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3em;
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 2em;
}

header h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 1em;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #00c8ff 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

header .tagline {
    text-align: center;
    color: #00c8ff;
    font-style: italic;
    font-size: 0.9em;
    margin-top: -0.5em;
    margin-bottom: 1em;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5em;
    margin-left: auto;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    padding: 0.5em 1em;
    border-radius: 5px;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

main {
    padding: 3em 2em;
    background: #1a1a2e;
    margin: 2em auto 8em auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 200, 255, 0.15);
    border: 2px solid transparent;
    background-image: linear-gradient(#1a1a2e, #1a1a2e), linear-gradient(90deg, #00c8ff 0%, #ff006e 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

main h2 {
    color: #00c8ff;
    font-size: 2.5em;
    margin-bottom: 1.5em;
    border-bottom: 3px solid #ff006e;
    padding-bottom: 0.5em;
}

main h3 {
    color: #00c8ff;
    font-size: 1.5em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

main p {
    margin-bottom: 1.2em;
    text-align: justify;
    font-size: 1.05em;
    color: #e0e0e0;
}

main ul {
    list-style-position: inside;
    margin-bottom: 1.5em;
}

main li {
    margin-bottom: 0.8em;
    padding-left: 1.5em;
    border-left: 3px solid #00c8ff;
}

.hero {
    background: linear-gradient(135deg, #0f0f1e 0%, #2a2a3e 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #00c8ff 0%, #ff006e 100%) 1;
    color: #fff;
    padding: 3em;
    border-radius: 10px;
    margin-bottom: 2em;
    text-align: center;
}

.hero p {
    font-size: 1.2em;
    margin: 0;
}

.company-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin: 2em 0;
}

.info-box {
    background: linear-gradient(135deg, #2a2a3e 0%, #1f1f2e 100%);
    padding: 1.5em;
    border-radius: 8px;
    border-left: 4px solid #00c8ff;
    color: #e0e0e0;
}

.info-box h4 {
    color: #00c8ff;
    margin-bottom: 0.5em;
}

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

.service-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1f1f2e 100%);
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 200, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #00c8ff;
    border-left: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 110, 0.3);
}

.service-card h4 {
    color: #00c8ff;
    margin-bottom: 0.5em;
    font-size: 1.2em;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin: 2em 0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    color: #00c8ff;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.8em;
    border: 2px solid #00c8ff;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #2a2a3e;
    color: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff006e;
    box-shadow: 0 0 5px rgba(255, 0, 110, 0.5);
}

.contact-form button {
    margin-top: 1.5em;
    padding: 1em;
    background: linear-gradient(90deg, #00c8ff 0%, #ff006e 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.5);
}

.contact-details {
    background: linear-gradient(135deg, #2a2a3e 0%, #1f1f2e 100%);
    padding: 2em;
    border-radius: 8px;
    border-left: 4px solid #ff006e;
    color: #e0e0e0;
}

.contact-details h3 {
    color: #ff006e;
    margin-top: 0;
}

.contact-details p {
    margin-bottom: 1em;
}

.map-placeholder {
    background: #1a1a2e;
    padding: 2em;
    border-radius: 5px;
    text-align: center;
    color: #00c8ff;
    margin-top: 1.5em;
    border: 2px dashed #00c8ff;
}

footer {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    color: #fff;
    text-align: center;
    padding: 2em 0;
    margin-top: 3em;
    box-shadow: 0 -4px 15px rgba(0, 200, 255, 0.2);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #00c8ff 0%, #ff006e 100%) 1;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }
    
    nav {
        flex-direction: column;
        gap: 1em;
    }
    
    main {
        margin-bottom: 6em;
        padding: 2em 1.5em;
    }
    
    .company-info,
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    main h2 {
        font-size: 1.8em;
    }
}
