/* Tech Repair Page Custom Styles */

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #bf0000;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(191,0,0,0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    background: #f8f8f8;
    padding: 0.75rem 1.25rem;
    margin: 0.5rem 0.5rem 0.5rem 0;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.feature-badge:hover {
    background: #fff5f5;
    border-color: #bf0000;
    transform: scale(1.05);
}

.stat-highlight {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #bf0000 0%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #bf0000 0%, #8b0000 100%);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(191,0,0,0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    font-weight: 600;
}

.zip-checker {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.zip-input {
    padding: 1rem 1.5rem;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.1rem;
    width: 200px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    transition: border-color 0.2s;
}

.zip-input:focus {
    outline: none;
    border-color: #bf0000;
}

.check-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #bf0000 0%, #8b0000 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.check-button:hover {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}