* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
    animation: float 8s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #f29900;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #f29900;
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #f29900;
    top: 60%;
    left: 70%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(80px, -60px) scale(1.2);
    }
    50% {
        transform: translate(-60px, 80px) scale(0.8);
    }
    75% {
        transform: translate(100px, 40px) scale(1.1);
    }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
}

.content {
    background: transparent;
    padding: 60px 40px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.message {
    margin-bottom: 60px;
}

.message h2 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.services {
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex: 0 0 calc(25% - 23px);
    min-width: 220px;
    max-width: 250px;
}

.service-item:hover {
    background: rgba(242, 153, 0, 0.1);
    border-color: #f29900;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(242, 153, 0, 0.3);
}

.service-icon {
    font-size: 64px;
    display: block;
    color: #f29900;
}

.service-name {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.contact {
    margin-top: 40px;
}

.contact p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 12px;
}

.contact-link {
    display: inline-block;
    color: #f29900;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.contact-link:hover {
    color: #ffb340;
    transform: translateY(-2px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        padding: 40px 24px;
    }

    .logo h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .message h2 {
        font-size: 24px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-item {
        flex: 0 0 calc(50% - 10px);
        padding: 40px 30px;
    }

    .service-icon {
        font-size: 48px;
    }

    .service-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 16px;
    }

    .content {
        padding: 32px 20px;
    }

    .logo h1 {
        font-size: 32px;
    }

    .message h2 {
        font-size: 22px;
    }

    .services-grid {
        gap: 16px;
    }

    .service-item {
        flex: 0 0 calc(50% - 8px);
        padding: 30px 20px;
    }

    .service-icon {
        font-size: 40px;
    }

    .service-name {
        font-size: 14px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}
