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

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background-color: #111111;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.navbar-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #5DD9E8;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 5rem;
    background: linear-gradient(135deg, #5DD9E8 0%, #4BC9D8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.hero::before {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 20px;
}

.hero::after {
    width: 400px;
    height: 400px;
    bottom: 50px;
    right: 20px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    min-height: 150px;
}

.cursor {
    animation: blink 0.7s infinite;
    margin-left: 4px;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 400px;
    animation: fadeIn 1s ease-out 2.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: logoEnter 1s ease-out forwards;
}

@keyframes logoEnter {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Services Section */
.services {
    padding: 3rem 1.5rem;
    background: #111111;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-underline {
    width: 100px;
    height: 6px;
    background: linear-gradient(to right, #5DD9E8, #4BC9D8);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    border: 2px solid #5DD9E8;
    border-radius: 1rem;
    padding: 2rem;
    background: #111111;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    animation: cardEnter 0.6s ease-out forwards;
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    border-color: #5DD9E8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: #5DD9E8;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 300;
}

/* Contact Section */
.contact {
    min-height: 100vh;
    background: linear-gradient(135deg, #5DD9E8 0%, #4BC9D8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem 1.5rem;
}

#contact-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-content {
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeIn 1.5s ease-out forwards;
}

.contact-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.5s ease;
    margin-bottom: 2rem;
}

.contact-button:hover {
    background: #ffffff;
    color: #5DD9E8;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text {
    font-size: 0.875rem;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-size: 0.875rem;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
        min-height: 100px;
    }

    .hero-logo {
        order: -1;
    }

    .navbar-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

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

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
