:root {
    --primary-color: #0046ad;
    --secondary-color: #002d72;
    --accent-color: #00c6ff;
    --text-color: #ffffff;
    --bg-dark: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 70, 173, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
}

.logo-container {
    width: 220px;
    height: auto;
    margin-bottom: 0.5rem;
}

#main-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: invert(1);
}

.company-name {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.status-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 70, 173, 0.4);
    animation: fadeIn 1s ease-out;
}

.tagline {
    font-size: 1.25rem;
    max-width: 600px;
    color: #ccc;
    margin-bottom: 2rem;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    background: var(--card-hover);
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.1);
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    font-weight: 600;
}

.footer {
    padding: 2rem 0;
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.animate-pulse {
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(0, 198, 255, 0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 35px rgba(0, 198, 255, 0.6)); }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo-container {
        width: 140px;
        height: 140px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}
