:root {
    --primary: #1e40af; /* Deep Blue */
    --accent: #f59e0b; /* Amber */
    --bg-dark: #0f172a; /* Slate 900 */
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body, html {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    overflow: hidden;
    background: url('bg.png') no-repeat center center / cover;
}

/* Main Content */
.glass-panel {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 10vh auto;
    padding: 3rem;
    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 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: fadeIn 1.2s ease-out forwards;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.brand-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-title span {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.2);
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39);
}

.phone-button:hover {
    background: #d97706;
    transform: scale(1.02);
    box-shadow: 0 6px 20px 0 rgba(245, 158, 11, 0.5);
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.service-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: #cbd5e1;
    transition: all 0.3s;
}

.service-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-panel {
        margin: 5vh 20px;
        padding: 2rem;
    }
    .brand-title {
        font-size: 2.5rem;
    }
    .brand-title span {
        font-size: 1.8rem;
    }
    .phone-button {
        font-size: 1.25rem;
        padding: 0.8rem 1.5rem;
    }
}
