/* Base Styles */
.ppf-service {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

.ppf-service h2, 
.ppf-service h3, 
.ppf-service h4 {
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.ppf-service h2 {
    font-size: 2.2rem;
    color: #1a3e6f;
    position: relative;
    padding-bottom: 15px;
}

.ppf-service h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #e8b839;
}

.ppf-service p {
    margin-bottom: 20px;
}

.ppf-service .intro {
    font-size: 1.1rem;
    color: #444;
    font-weight: 500;
}

/* Hero Image */
.ppf-service .image-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.ppf-service .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px;
}

.ppf-service .image-overlay h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: white;
}

.ppf-service .image-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.benefit-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #e8b839;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a3e6f;
}

.benefit-card h4 {
    font-size: 1.2rem;
    color: #1a3e6f;
}

/* Process Section */
.process-section {
    background: #f5f9ff;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.process-steps {
    list-style: none;
    padding-left: 0;
}

.process-steps li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: #1a3e6f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Materials Section */
.materials-section {
    margin: 50px 0;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.material-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #e8b839;
    position: relative;
}

.tech-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #1a3e6f;
    color: white;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.material-card h4 {
    color: #1a3e6f;
    margin-bottom: 10px;
    padding-right: 80px;
}

.tech-features {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-features span {
    background: #f5f9ff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.tech-features i {
    color: #e8b839;
    margin-right: 5px;
    font-size: 0.9rem;
}

/* Gallery Section */
.showcase-gallery {
    margin: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    margin: 50px 0;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 40px;
}

.accordion-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion .acc-btn {
    background: #f5f9ff;
    padding: 18px 25px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #1a3e6f;
}

.accordion .acc-btn.active {
    background: #1a3e6f;
    color: white;
}

.accordion .acc-content {
    display: none;
    padding: 20px 25px;
    background: white;
    border-top: 1px solid #eee;
}

.accordion-box .acc-content p {
    color: #222 !important;
}

.accordion .acc-content.current {
    display: block;
}

/* Sidebar Styles */
.service-sidebar {
    position: sticky;
    top: 20px;
}

.solution-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
    transition: transform 0.3s;
}

.solution-card.highlight {
    border: 2px solid #e8b839;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.popular-label {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #e8b839;
    color: #1a3e6f;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.solution-icon {
    font-size: 2rem;
    color: #1a3e6f;
    margin-bottom: 15px;
}

.solution-card h4 {
    color: #1a3e6f;
    margin-bottom: 15px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: #1a3e6f;
    font-weight: 600;
    margin-top: 15px;
    text-decoration: none;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.learn-more:hover i {
    transform: translateX(3px);
}

/* Testimonials */
.testimonial-widget {
    margin: 30px 0;
}

.testimonial-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.client-rating {
    color: #e8b839;
    margin-bottom: 15px;
}

.client-info {
    margin-top: 15px;
    font-size: 0.9rem;
}

.client-name {
    font-weight: 600;
    color: #1a3e6f;
}

.client-vehicle {
    color: #666;
    font-style: italic;
}

/* Contact Form */
.consultation-form input,
.consultation-form textarea,
.consultation-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    font-family: inherit;
}

.consultation-form textarea {
    min-height: 120px;
}

/* Certification Box */
.certification-box {
    background: #1a3e6f;
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.cert-icon {
    font-size: 2.5rem;
    color: #e8b839;
    margin-bottom: 15px;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.cert-badges img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .ppf-service h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
}