/* Brand Colors from Logo */
:root {
    --logo-red: #E33E38;
    --logo-navy: #2E3192;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background-color: #000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* Background Image with Fixed Effect */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('baku-skyline.png') no-repeat center center/cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.content-wrapper {
    max-width: 900px;
    width: 90%;
    text-align: center;
    padding: 40px 20px;
}

.main-logo {
    max-width: 320px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    background: rgba(255, 255, 255, 0.95); /* Makes logo pop against dark bg */
    padding: 15px 25px;
    border-radius: 10px;
}

.status-pill {
    background: var(--logo-red);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3rem;
    margin: 25px 0;
    line-height: 1.2;
}

.highlight {
    color: var(--logo-red);
}

.company-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Area */
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s ease;
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--logo-red);
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

footer {
    font-size: 0.85rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Responsive Scaling */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .contact-grid { flex-direction: column; }
    .main-logo { max-width: 250px; }
}