:root {
    --bs-body-bg: #09090B;
    --bs-body-color: #f3dfd1;
    --bs-primary: #ff8c00;
    --bs-primary-rgb: 255, 140, 0;
    --bs-font-sans-serif: 'Work Sans', sans-serif;
    --surface-bg: #18181B;
    --surface-border: #27272A;
    --on-surface-variant: #ddc1ae;
}

body {
    font-family: var(--bs-font-sans-serif);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    padding-top: 76px;
}

.text-primary-custom {
    color: var(--bs-primary) !important;
}

.bg-primary-custom {
    background-color: var(--bs-primary) !important;
    color: #000;
}

.btn-primary-custom {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #000;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background-color: #e67e00;
    border-color: #e67e00;
    color: #000;
}

.text-secondary-custom {
    color: var(--on-surface-variant) !important;
}

.navbar-custom {
    background-color: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-border);
}

.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #150c06;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #09090B, rgba(9, 9, 11, 0.8), transparent), url('https://lh3.googleusercontent.com/aida-public/AB6AXuDk05NRDPbSUYKFtTatTjcuZE1OnEqIOoLSI5JHS9IV7TZbp-Njl4_62TCPUNsOpUFQ9M65jia2DoIRuG57jZdENIs7lsKYI3jjKHbdE2gCFvAhuVTZm_7mzRA9WxR42RVc0JX-IE3s1ZyzQJGhXsx2RGzydll4s7iZoa15nd3q6Qxz7tOyC_Iqa8DDk1FpqujFFWxn269cq2TKJ1VcL9ntQ8Mp5epItwk06Q-3NlN4w0cLqYeRZp9y74-XPu58rH9mfbGNnkinn1iV') center/cover;
    opacity: 0.6;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(to bottom right, var(--surface-bg), #09090B);
    border: 1px solid var(--surface-border);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(255, 140, 0, 0.5);
    transform: translateY(-5px);
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: #27272A;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    border: 1px solid var(--surface-border);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background-color: #27272A;
    border: 1px solid #3f3229;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

footer {
    border-top: 2px solid rgba(255, 140, 0, 0.2);
    background-color: #09090B;
}

.nav-link {
    color: #a1a1aa !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--bs-primary) !important;
}

.footer-link {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}
.floating-whatsapp:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
    animation: none;
}
