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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0d1b2a;
    color: #e0e1dd;
    overflow-x: hidden;
}

/* ---------- Splash Screen ---------- */
#splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#splash.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    animation: fadeInUp 1.2s ease;
}

.splash-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    line-height: 1.3;
    background: linear-gradient(90deg, #ff006e, #fb5607, #ffbe0b, #8338ec, #3a86ff, #ff006e);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s linear infinite, pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 24px rgba(131, 56, 236, 0.55));
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

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

.splash-tagline {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffbe0b;
    text-shadow: 0 0 18px rgba(255, 190, 11, 0.7);
    transition: opacity 0.4s ease;
}

.splash-loader {
    margin: 2rem auto 0;
    width: 56px;
    height: 56px;
    border: 5px solid rgba(224, 225, 221, 0.2);
    border-top-color: #778da9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* ---------- Main Page ---------- */
#main {
    opacity: 0;
    transition: opacity 1s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#main.visible {
    opacity: 1;
}

.company-header {
    text-align: center;
    padding: 2rem 1rem 1rem;
}

.company-header h1 {
    font-size: 2rem;
    letter-spacing: 2px;
    color: #ffffff;
}

.hero {
    display: flex;
    justify-content: center;
    padding: 1.5rem;
}

.front-pic {
    width: 100%;
    max-width: 700px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.construction {
    text-align: center;
    padding: 2.5rem 1.5rem;
    flex: 1;
}

.construction-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.construction h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #ffd166;
    margin-bottom: 1rem;
}

.construction p {
    font-size: 1.1rem;
    color: #c8c9c6;
    max-width: 520px;
    margin: 0 auto;
}

.site-footer {
    text-align: center;
    padding: 1.5rem;
    background: #1b263b;
    font-size: 0.9rem;
    color: #a9b0bb;
}

@media (max-width: 600px) {
    .splash-title { font-size: 1.7rem; }
    .company-header h1 { font-size: 1.4rem; }
    .construction h2 { font-size: 1.3rem; }
}
