/* Panel Beating Page Styles */

/* Trust Badges */
.trust-badges {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.badge {
    padding: 20px;
}

.badge-icon {
    font-size: 3rem;
    color: #e94560;
    display: block;
    margin-bottom: 15px;
}

.badge h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.badge p {
    color: #666;
    font-size: 0.95rem;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background: #f9f9f9;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Introduction Section */
.intro-section {
    background: white;
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.intro-section h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* Services Grid */
.services-grid {
    margin-bottom: 60px;
}

.services-grid > h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 40px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.services-grid > h2 {
    grid-column: 1 / -1;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    color: #e94560;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #444;
    font-size: 1rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e94560;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Why Choose Section */
.why-choose-section {
    background: white;
    padding: 60px 50px;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.why-choose-section h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 40px;
    text-align: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-item {
    padding: 20px;
}

.why-item h3 {
    font-size: 1.4rem;
    color: #e94560;
    margin-bottom: 10px;
}

.why-item p {
    color: #555;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: white;
    padding: 60px 50px;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.process-section h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 40px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e94560;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.step p {
    color: #555;
    line-height: 1.6;
}

/* Service Area Section */
.service-area-section {
    background: white;
    padding: 60px 50px;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-area-section h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-align: center;
}

.service-area-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.locations-grid ul {
    list-style: none;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.locations-grid ul li {
    padding: 8px 0;
    color: #444;
    font-size: 1.05rem;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 60px 50px;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-section h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-section,
    .service-card,
    .why-choose-section,
    .process-section,
    .service-area-section,
    .faq-section,
    .cta-section {
        padding: 30px 20px;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-section .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
