:root {
    --primary-cyan: #00AEEF;
    --secondary-blue: #0072BC;
    --accent-red: #ED1C24;
    --dark-bg: #0a0f18;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --font-main: 'Outfit', sans-serif;
}

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

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

/* Background Image with Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg-cold-room.png') no-repeat center center/cover;
    filter: brightness(0.6) blur(2px);
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 24, 0.8) 0%, rgba(0, 174, 239, 0.2) 100%);
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1000px;
    padding: 3rem;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 2.5rem;
}

.brand-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 174, 239, 0.3));
}

/* Hero Section */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.accent {
    color: var(--primary-cyan);
    background: linear-gradient(90deg, var(--primary-cyan), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.hero-subtitle strong {
    color: var(--primary-cyan);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.2rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-cyan);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-cyan);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(237, 28, 36, 0.1);
    border: 1px solid rgba(237, 28, 36, 0.2);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Form Styling */
.notify-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
}

.notify-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.2rem;
    color: white;
    font-family: inherit;
    outline: none;
}

.notify-form button {
    background: var(--primary-cyan);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: #0093ca;
    transform: scale(1.02);
}

/* Footer Info */
.footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* Animations */
@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.animation-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animation-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

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

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

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .notify-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .notify-form input {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}
