/* Start custom CSS for html, class: .elementor-element-94f9372 *//* Kraus Garage Door - Emergency Repair Page Styles */
.kraus-emergency-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.kraus-emergency-page * {
    box-sizing: border-box;
}

.kraus-emergency-page a {
    color: #DC2626;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.kraus-emergency-page a:hover {
    color: #991B1B;
    text-decoration: underline;
}

/* Hero Section */
.kraus-emergency-hero {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
}

.kraus-emergency-hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
}

.kraus-emergency-hero .sub {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.kraus-emergency-hero .btn {
    display: inline-block;
    background: white;
    color: #DC2626;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid #DC2626;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255,255,255,0.4);
    }
}

.kraus-emergency-hero .btn:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.kraus-emergency-hero .phone {
    color: white;
    font-size: 1.5em;
    font-weight: 700;
    text-decoration: none;
    margin-left: 20px;
}

.kraus-emergency-hero .phone:hover {
    color: #f9fafb;
}

.kraus-emergency-hero .note {
    margin-top: 20px;
    font-size: 1.1em;
    opacity: 0.95;
    font-weight: 600;
}

/* Urgent Banner */
.kraus-emergency-urgent {
    background: #FEE2E2;
    border: 3px solid #DC2626;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    text-align: center;
}

.kraus-emergency-urgent h2 {
    color: #7F1D1D;
    font-size: 2em;
    margin-bottom: 15px;
}

.kraus-emergency-urgent p {
    color: #991B1B;
    font-size: 1.15em;
    margin-bottom: 10px;
}

.kraus-emergency-urgent p:last-child {
    margin-bottom: 0;
}

/* Section Styles */
.kraus-emergency-section {
    padding: 60px 0;
}

.kraus-emergency-section h2 {
    font-size: 2.5em;
    color: #DC2626;
    margin-bottom: 20px;
    font-weight: 700;
}

.kraus-emergency-section h3 {
    font-size: 1.8em;
    color: #991B1B;
    margin: 30px 0 15px;
    font-weight: 600;
}

.kraus-emergency-section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #4B5563;
}

.kraus-emergency-section strong {
    color: #1F2937;
    font-weight: 600;
}

/* Lists */
.kraus-emergency-section ul,
.kraus-emergency-section ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.kraus-emergency-section ul li,
.kraus-emergency-section ol li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05em;
    color: #4B5563;
    border-bottom: 1px solid #E5E7EB;
}

.kraus-emergency-section ul li:last-child,
.kraus-emergency-section ol li:last-child {
    border-bottom: none;
}

.kraus-emergency-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #DC2626;
    font-weight: bold;
    font-size: 1.3em;
}

.kraus-emergency-section ol {
    counter-reset: item;
}

.kraus-emergency-section ol li {
    counter-increment: item;
}

.kraus-emergency-section ol li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    color: white;
    background: #DC2626;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
}

/* Divider */
.kraus-emergency-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #DC2626, transparent);
    margin: 50px 0;
    border: none;
}

/* Case Study Box */
.kraus-emergency-case {
    background: #FEF3C7;
    padding: 40px;
    border-left: 5px solid #F59E0B;
    border-radius: 12px;
    margin: 40px 0;
}

.kraus-emergency-case h3 {
    color: #92400E;
    font-size: 1.6em;
    margin: 0 0 15px 0;
}

.kraus-emergency-case p {
    color: #78350F;
    font-size: 1.1em;
    font-style: italic;
}

.kraus-emergency-case .author {
    font-style: normal;
    font-weight: 600;
    color: #DC2626;
    margin-top: 15px;
}

/* Warning Signs */
.kraus-emergency-signs {
    background: #FEE2E2;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #DC2626;
    margin: 30px 0;
}

.kraus-emergency-signs h3 {
    color: #7F1D1D;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.kraus-emergency-signs ul li {
    color: #991B1B;
    font-weight: 500;
    font-size: 1.1em;
    padding: 15px 0 15px 40px;
}

.kraus-emergency-signs ul li:before {
    content: "⚠";
    font-size: 1.5em;
}

/* Process Steps */
.kraus-emergency-process {
    background: #F9FAFB;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.kraus-emergency-process h3 {
    color: #DC2626;
    font-size: 1.5em;
    margin: 25px 0 10px;
}

.kraus-emergency-process h3:first-of-type {
    margin-top: 0;
}

.kraus-emergency-process p {
    margin-bottom: 10px;
}

/* Benefits Grid */
.kraus-emergency-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.kraus-emergency-benefit {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s;
}

.kraus-emergency-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.3);
}

.kraus-emergency-benefit h3 {
    color: white;
    font-size: 1.3em;
    margin: 0 0 10px 0;
}

.kraus-emergency-benefit p {
    color: white;
    opacity: 0.95;
    margin: 0;
    font-size: 1em;
}

/* Quote Box */
.kraus-emergency-quote {
    background: #DBEAFE;
    padding: 40px;
    border-left: 5px solid #3B82F6;
    border-radius: 12px;
    margin: 40px 0;
}

.kraus-emergency-quote p {
    color: #1E40AF;
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 15px;
}

.kraus-emergency-quote .author {
    font-style: normal;
    font-weight: 600;
    color: #DC2626;
    font-size: 1em;
}

/* Prevention Box */
.kraus-emergency-prevention {
    background: #D1FAE5;
    padding: 40px;
    border-left: 5px solid #10B981;
    border-radius: 12px;
    margin: 40px 0;
}

.kraus-emergency-prevention h2 {
    color: #065F46;
    margin-bottom: 20px;
}

.kraus-emergency-prevention p {
    color: #047857;
    font-size: 1.1em;
}

/* Service Areas */
.kraus-emergency-areas {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #FEE2E2;
}

.kraus-emergency-areas h2 {
    margin-bottom: 25px;
}

.kraus-emergency-areas p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #4B5563;
}

.kraus-emergency-areas .highlight {
    background: #FEE2E2;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    color: #DC2626;
    text-align: center;
    font-size: 1.2em;
}

/* FAQ Section */
.kraus-emergency-faq {
    background: #F9FAFB;
    padding: 60px 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.kraus-emergency-faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.kraus-emergency-faq h3 {
    color: #DC2626;
    font-size: 1.3em;
    margin: 30px 0 10px;
}

.kraus-emergency-faq h3:first-of-type {
    margin-top: 0;
}

.kraus-emergency-faq p {
    margin-bottom: 20px;
}

/* Contact Info Box */
.kraus-emergency-contact {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
    margin: 40px 0;
    text-align: center;
}

.kraus-emergency-contact h2 {
    margin-bottom: 30px;
}

.kraus-emergency-contact .contact-item {
    margin: 20px 0;
    font-size: 1.2em;
}

.kraus-emergency-contact .contact-item strong {
    color: #DC2626;
    display: block;
    margin-bottom: 5px;
}

.kraus-emergency-contact .availability {
    background: #FEE2E2;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    font-size: 1.3em;
    font-weight: 700;
    color: #DC2626;
}

/* Final CTA */
.kraus-emergency-final-cta {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 12px;
    margin: 40px 0;
}

.kraus-emergency-final-cta h2 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.kraus-emergency-final-cta p {
    color: white;
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.kraus-emergency-final-cta .btn {
    background: white;
    color: #DC2626;
}

.kraus-emergency-final-cta .phone {
    color: white;
    font-size: 1.5em;
    font-weight: 700;
}

.kraus-emergency-final-cta address {
    font-style: normal;
    margin-top: 20px;
    opacity: 0.9;
}

.kraus-emergency-final-cta .availability {
    margin-top: 20px;
    font-size: 1.3em;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .kraus-emergency-hero h1 {
        font-size: 2em;
    }
    
    .kraus-emergency-hero .sub {
        font-size: 1.1em;
    }
    
    .kraus-emergency-section h2 {
        font-size: 1.8em;
    }
    
    .kraus-emergency-section h3 {
        font-size: 1.4em;
    }
    
    .kraus-emergency-benefits {
        grid-template-columns: 1fr;
    }
    
    .kraus-emergency-hero .phone {
        display: block;
        margin: 15px 0 0 0;
    }
}/* End custom CSS */