/* Additional styles for Sharede Vision website */

/* Page Header */
.page-header {
    padding: 12rem 0 3.5rem;
    color: var(--white);
    text-align: center;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--purple);
}

/* Process Steps */
.process-steps {
    margin-top: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-step-icon {
    font-size: 2rem;
    color: var(--teal);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.process-step-content h3 {
    margin-bottom: 0.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
    color: var(--purple);
    margin-bottom: 1rem;
}

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.value-item h3 {
    margin-bottom: 1rem;
    color: var(--purple);
}

/* Contact Form */
.contact-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-benefits {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-benefits h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-direct, .contact-cta {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-direct h3 {
    margin-bottom: 1rem;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-logo {
    height: 100px;
    background-color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.bg-light {
    background-color: var(--light-gray);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .page-header {
        padding: 7rem 0 3rem;
    }
}

@media (max-width: 576px) {
    .value-item, .feature-box, .process-item {
        padding: 1.5rem;
    }
}

