.heating-hero-overlay {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8) 0%, rgba(185, 28, 28, 0.7) 50%, rgba(153, 27, 27, 0.6) 100%);
}

.thermal-gradient {
    background: linear-gradient(45deg, #fef3c7, #fed7aa, #fecaca);
}

.cool-gradient {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe, #93c5fd);
}

.trust-badge {
    background: linear-gradient(135deg, #065f46, #047857, #059669);
}

.service-card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.service-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.thermal-text {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emergency-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .8;
    }
}

.equipment-icon {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-form-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-banner {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary-heating {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.btn-primary-heating:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.3);
}

.hero .btn-secondary-heating {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.hero .btn-secondary-heating:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-secondary-heating {
    background: rgba(255, 255, 255, 0.1);
    color: #b91c1c;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    border: 1px solid #b91c1c;
    cursor: pointer;
}

.btn-secondary-heating:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-1px);
    color: white;
}

.price-highlight {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
}

.temperature-gauge {
    background: conic-gradient(from 180deg, #3b82f6, #06b6d4, #10b981, #fbbf24, #f59e0b, #dc2626);
    border-radius: 50%;
    padding: 4px;
}

.temperature-gauge-inner {
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-left: 4px solid #dc2626;
}

.team-member-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    border-color: #dc2626;
    box-shadow: 0 10px 25px -3px rgba(220, 38, 38, 0.1);
}

[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
    color: inherit;
}

.mobile-menu-slide {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-slide.open {
    transform: translateX(0);
}

.service-detail-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.service-detail-expand.expanded {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.read-more-content {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.read-more-content.expanded {
    max-height: 2000px;
}

.working-hours {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border: 1px solid #f59e0b;
}

@media (max-width: 768px) {
    .service-card-hover {
        margin-bottom: 1rem;
    }
    
    .btn-primary-heating,
    .btn-secondary-heating {
        width: 100%;
        justify-content: center;
    }
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}


.prose {
    color: #374151;
}

.prose h2 {
    color: #111827;
    font-weight: 700;
}

.prose p {
    margin-bottom: 1.5rem;
}

.prose ul {
    margin-bottom: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .service-card-hover {
        margin-bottom: 1rem;
    }
    
    .btn-primary-heating,
    .btn-secondary-heating {
        width: 100%;
        justify-content: center;
    }
}