:root {
    --primary-blue: #3a80ba;
    --dark-navy: #13305b;
    --light-bg: #f8fbfd;
    --text-main: #334155;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: rgba(19, 48, 91, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background & Animated Shapes */
.uc-background {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f7fa 0%, #e1eef5 100%);
    overflow: hidden;
    padding: 2rem;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float 10s ease-in-out infinite alternate;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(58, 128, 186, 0.2);
    top: -100px;
    left: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(19, 48, 91, 0.15);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(30px) scale(1.05); }
}

/* Glassmorphism Panel */
.glass-panel {
    position: relative;
    z-index: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 40px var(--glass-shadow);
    padding: 4rem 3rem;
    max-width: 650px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(19, 48, 91, 0.15);
}

/* Content Styles */
.logo-container {
    margin-bottom: 2.5rem;
}

.logo-container img {
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.05));
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.02);
}

.status-badge {
    display: inline-block;
    background: rgba(58, 128, 186, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(58, 128, 186, 0.2);
}

h1 {
    color: var(--dark-navy);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

p.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Elements */
.action-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.action-box h3 {
    color: var(--dark-navy);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.action-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-navy);
    color: white;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(19, 48, 91, 0.2);
}

.contact-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(58, 128, 186, 0.3);
}

.contact-btn svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

/* Footer */
.uc-footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    .glass-panel {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    .logo-container img {
        max-width: 200px;
    }
    .glass-panel {
        padding: 2.5rem 1.5rem;
    }
    .action-box {
        padding: 1.5rem;
    }
}
