:root {
    --bg-color: #ffffff;
    --text-main: #111111;
    --text-muted: #777777;
    --text-light: #aaaaaa;
    --border-color: #eeeeee;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    font-weight: 400;
    color: var(--text-muted);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: #f9f9f9;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50%;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-container {
    max-width: 800px;
}

.subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 500;
}

.headline {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.line-wrap {
    overflow: hidden;
}

.text-gray {
    color: #a0a0a0;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 50px;
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--text-main);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.btn:hover {
    background-color: #25D366; /* WhatsApp color on hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    animation-play-state: paused;
}

/* Marquee */
.marquee-container {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    background-color: var(--bg-color);
    margin-top: auto;
}

.marquee-content {
    display: flex;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-main);
    text-transform: uppercase;
}

.separator {
    margin: 0 40px;
    color: var(--text-light) !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-main);
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-light);
}

.orange-dot {
    background-color: #f39c12; /* Warning orange */
}

.maintenance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff9f0;
    color: #e67e22;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid #fdebd0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-contact {
        display: none; /* Hide on mobile to save space */
    }
    
    .hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .headline {
        letter-spacing: -1px;
    }
    
    .description {
        font-size: 1.05rem;
    }
    
    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
