/* Pure Fusion Designs - Custom Styles */

/* ============================================
   Industries Trust Bar
   ============================================ */
.industries-bar {
    text-align: center;
    padding: 1em 0;
}

.industries-heading {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    margin-bottom: 1.2em;
    font-weight: 400;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8em;
    margin-bottom: 1em;
}

.industry-tag {
    display: inline-block;
    padding: 0.5em 1.2em;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    font-size: 0.85em;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.industry-tag i {
    margin-right: 0.5em;
    opacity: 0.8;
}

.industries-subtext {
    font-size: 0.85em;
    opacity: 0.6;
    margin-top: 0.8em;
    font-style: italic;
}

/* ============================================
   Case Studies
   ============================================ */
.case-study {
    margin-bottom: 2.5em;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.5em;
}

.case-study:last-of-type {
    margin-bottom: 1.5em;
}

.case-study-header {
    margin-bottom: 1em;
}

.case-study-industry {
    display: inline-block;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 0.4em;
}

.case-study-industry i {
    margin-right: 0.4em;
}

.case-study-header h3 {
    font-size: 1.2em;
    margin: 0;
}

.case-study-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5em;
}

.case-study-detail h4 {
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 0.5em;
}

.case-study-detail p {
    font-size: 0.95em;
    line-height: 1.6;
}

.case-study-note {
    font-size: 0.85em;
    opacity: 0.6;
    margin-top: 1em;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    margin-top: 1.5em;
}

.testimonial {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 1.5em;
}

.testimonial blockquote {
    border: none;
    margin: 0;
    padding: 0;
    font-style: normal;
}

.testimonial blockquote p {
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 1em;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    font-size: 0.85em;
}

.testimonial-author strong {
    margin-bottom: 0.2em;
}

.testimonial-author span {
    opacity: 0.7;
}

.testimonials-note {
    font-size: 0.85em;
    opacity: 0.6;
    margin-top: 1.5em;
    text-align: center;
}

/* ============================================
   Process Steps
   ============================================ */
.process-steps section {
    text-align: center;
}

.process-steps h3 {
    font-size: 1.1em;
}

/* ============================================
   Contact form
   ============================================ */
#contact-form .field {
    margin-bottom: 1em;
}

#contact-form input[required]:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

#contact-form input[required]:valid {
    border-color: #27ae60;
}

#contact .contact h3 {
    margin-bottom: 0.5em;
}

#contact .contact .actions {
    margin-top: 0.75em;
}

/* ============================================
   About section
   ============================================ */
#about p {
    margin-bottom: 1em;
}

/* ============================================
   Responsive
   ============================================ */
@media screen and (max-width: 980px) {
    .case-study-body {
        grid-template-columns: 1fr;
        gap: 1em;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
}

@media screen and (max-width: 736px) {
    .process-steps section {
        padding: 1.5em 0;
    }

    .industry-tags {
        gap: 0.5em;
    }

    .industry-tag {
        font-size: 0.8em;
        padding: 0.4em 0.8em;
    }

    .case-study {
        padding-left: 1em;
    }

    .testimonial {
        padding: 1.2em;
    }
}
