/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c54329;
    --primary-dark: #a03621;
    --orange-500: #f97316;
    --bg-dark: #000000;
    --bg-light: #ffffff;
    --text-light: #ffffff;
    --text-gray: #9ca3af;
    --border-color: rgba(197, 67, 41, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background animations */
.background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    top: -200px;
    left: 25%;
}

.gradient-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orange-500), transparent);
    bottom: -200px;
    right: 25%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-50px) scale(1.1); }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(197, 67, 41, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 67, 41, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Main content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Typography */
.company-name {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Message box */
.message-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    max-width: 600px;
}

.message-box h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.message-box p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Services */
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(197, 67, 41, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(197, 67, 41, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 1.25rem;
}

.service-name {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Contact */
.contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    animation: fadeInUp 0.8s ease-out 1s both;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--orange-500);
}

.separator {
    margin: 0 0.5rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .message-box {
        padding: 1.5rem;
    }
    
    .message-box h2 {
        font-size: 1.5rem;
    }
    
    .services {
        gap: 0.75rem;
    }
    
    .service-item {
        padding: 0.5rem 1rem;
    }
    
    .contact {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .separator {
        display: none;
    }
}