* { font-family: 'Inter', sans-serif; }
body { color: #333; line-height: 1.6; }
a { text-decoration: none; transition: all 0.3s; }
.hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 80px 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
.service-card { background: white; border-radius: 16px; padding: 30px 20px; text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,0.08); transition: all 0.3s; height: 100%; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 40px rgba(0,0,0,0.15); }
.service-icon { width: 80px; height: 80px; border-radius: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 36px; margin-bottom: 20px; background: linear-gradient(135deg, #667eea, #764ba2); color: white; }
.fixed-contact-bar { position: fixed; right: 15px; bottom: 15px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.contact-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 4px 15px rgba(0,0,0,0.2); font-size: 24px; }
.contact-btn:hover { transform: scale(1.15); color: white; }
.contact-phone { background: #dc3545; }
.contact-whatsapp { background: #25D366; }
.contact-telegram { background: #0088cc; }
.contact-mail { background: #0d6efd; }
.contact-cta { background: linear-gradient(135deg, #667eea, #764ba2); color: white; padding: 30px; border-radius: 16px; margin-top: 30px; }
.contact-cta h3 { color: white; }
.slug-content h2 { color: #0d6efd; margin-top: 30px; }
.breadcrumb { background: #f8f9fa; padding: 12px 20px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.breadcrumb a { color: #0d6efd; }
.form-control, .form-select { padding: 12px 15px; border-radius: 10px; border: 2px solid #e9ecef; }
.form-control:focus { border-color: #0d6efd; }
.btn-primary { box-shadow: 0 4px 15px rgba(13,110,253,0.3); }
footer { background: #1a1a2e; }
@media (max-width: 768px) {
    .hero { padding: 50px 0; }
    .hero .btn { width: 100%; margin-bottom: 10px; }
    .fixed-contact-bar { right: 10px; bottom: 10px; gap: 6px; }
    .contact-btn { width: 48px; height: 48px; font-size: 20px; }
    .navbar-collapse { background: white; margin-top: 15px; padding: 15px; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.08); }
}