:root {
    --primary: #3b82f6; /* Blue */
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --accent: #ffffff;
    --bg-dark: #020617; /* Slate 950 */
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-border: rgba(255, 255, 255, 0.1);
    --blue-glow: rgba(59, 130, 246, 0.3);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.9)), url('bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: zoomEffect 30s infinite alternate ease-in-out;
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.container {
    max-width: 1200px;
    width: 90%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

/* Header & Logo */
.logo-container {
    animation: fadeInDown 1s ease-out;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px var(--primary));
    animation: pulse 4s infinite ease-in-out;
}

.logo-text span {
    color: var(--primary);
}

/* Main Card */
.content-card {
    background: var(--card-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 4rem 3rem;
    border-radius: 2.5rem;
    max-width: 850px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid var(--primary-light);
    color: var(--primary-light);
    padding: 0.6rem 1.8rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2.5rem;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h1 span {
    background: linear-gradient(45deg, #ffffff, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.35rem;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
}

/* Progress Bar */
.status-container {
    margin-bottom: 3.5rem;
    text-align: left;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.status-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light), #ffffff);
    background-size: 200% 100%;
    width: 0%; /* Animated via JS */
    border-radius: 6px;
    box-shadow: 0 0 20px var(--blue-glow);
    transition: width 2s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.status-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Buttons */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px -5px var(--blue-glow);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 35px -10px var(--blue-glow);
    filter: brightness(1.1);
}

/* Footer */
footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid var(--glass-border);
    padding-top: 2.5rem;
    animation: fadeIn 2s ease-out;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.email-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info span {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon {
    color: var(--primary-light);
    font-style: normal;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wa-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary-light);
    filter: drop-shadow(0 0 5px var(--blue-glow));
    transition: transform 0.3s ease, fill 0.3s ease;
}

.social-links a:hover .wa-icon {
    fill: #ffffff;
    transform: scale(1.15);
}

.social-links a:hover {
    color: var(--primary-light);
    border-color: var(--primary-light);
    background: rgba(59, 130, 246, 0.05);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px var(--primary)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 20px var(--primary-light)); }
}

/* Responsive */
@media (max-width: 768px) {
    .content-card {
        padding: 3rem 1.5rem;
    }
    
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
