:root {
    --navy-dark: #0a111a;
    --navy: #131f33;
    --navy-light: #1f3352;
    --gold: #d4b872;
    --gold-light: #eaddb6;
    --red: #d3242c;
    --green: #00994d;
    --text-main: #f4f1ea;
    --text-muted: #aeb9cc;
    --glass-bg: rgba(19, 31, 51, 0.4);
    --glass-border: rgba(212, 184, 114, 0.2);
}

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

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

/* Background Animations */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, var(--navy) 0%, var(--navy-dark) 100%);
}

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

.orb-1 {
    width: 40vw;
    height: 40vw;
    background: var(--gold);
    top: -10vw;
    left: -10vw;
    animation-delay: 0s;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: var(--navy-light);
    bottom: -15vw;
    right: -10vw;
    animation-delay: -5s;
}

.orb-3 {
    width: 30vw;
    height: 30vw;
    background: var(--red);
    top: 40%;
    left: 40%;
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5vw, 10vh) scale(1.2); }
    100% { transform: translate(-5vw, -5vh) scale(0.9); }
}

/* Layout & Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(212, 184, 114, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Typography */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.brand-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 12px rgba(212, 184, 114, 0.2);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    background: rgba(0, 153, 77, 0.2);
    color: #4dff9c;
    border: 1px solid var(--green);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 153, 77, 0.2);
}

.coming-soon {
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
}

.description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 2rem auto 0;
}

/* Centered Layout System */
.centered-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.main-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    padding: 3rem;
}

.main-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Info Grid (Contacts & Address) */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.info-section h3 {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-person h4 {
    color: #fff;
    font-size: 1.1rem;
}

.contact-person p {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-person a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-person a:hover {
    color: #fff;
}

.address-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.separator {
    color: rgba(212, 184, 114, 0.4);
}

.email-link, .website-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px dashed var(--gold);
    transition: all 0.2s ease;
}

.email-link:hover, .website-link:hover {
    color: var(--gold);
    border-bottom-style: solid;
}

/* Footer */
.footer-simple {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .main-card {
        padding: 2rem 1.5rem;
    }
    
    .brand-title {
        font-size: 3rem;
    }
    
    .contacts {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .quick-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
}
