:root {
    --daihatsu-red: #ED1B24;
    --astra-blue: #002C5F;
    --dark-bg: #0f172a;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    perspective: 1000px;
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

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

.red-blob {
    background: radial-gradient(circle, var(--daihatsu-red) 0%, transparent 70%);
    width: 600px;
    height: 600px;
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.dark-blob {
    background: radial-gradient(circle, var(--astra-blue) 0%, transparent 70%);
    width: 500px;
    height: 500px;
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 50px) scale(1.1); }
    100% { transform: translate(-50px, 150px) scale(0.9); }
}

/* Glass Container */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    font-size: 0.875rem;
    color: var(--daihatsu-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.astra-badge {
    background: rgba(0, 44, 95, 0.3);
    border: 1px solid var(--astra-blue);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Content */
.content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
    border: 1px solid var(--glass-border);
}

.status-pill .dot {
    width: 8px;
    height: 8px;
    background-color: var(--daihatsu-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--daihatsu-red);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(237, 27, 36, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(237, 27, 36, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(237, 27, 36, 0); }
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, var(--daihatsu-red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
}

.description strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Services */
.services {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-item .icon {
    width: 20px;
    height: 20px;
    color: var(--daihatsu-red);
}

/* Contact */
.contact-section {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    background: var(--daihatsu-red);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(237, 27, 36, 0.39);
}

.btn:hover {
    background: #d31820;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 27, 36, 0.23);
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .glass-container {
        padding: 2rem;
    }
    
    .header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .title {
        font-size: 2.25rem;
    }
    
    .services {
        flex-wrap: wrap;
    }
    
    .contact-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
