/**
 * BoxStory Services Page Styles
 * =============================
 * Styles for the services landing page
 */

/* Value Proposition Section */
.value-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 3rem 0;
    margin-bottom: 4rem;
    border-radius: 1.25rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 0.125rem solid transparent;
}

.value-card:hover {
    transform: translateY(-0.375rem);
    box-shadow: 0 0.75rem 1.75rem rgba(58, 183, 149, 0.15);
    border-color: var(--color-aqua);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-aqua) 0%, var(--color-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.value-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 0.125rem solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--color-aqua) 0%, var(--color-navy) 100%);
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.12);
    border-color: var(--color-aqua);
}

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 5.625rem;
    height: 5.625rem;
    object-fit: contain;
    border-radius: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
}

.service-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

/* Benefits Section in Cards */
.benefits-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
    border-radius: 0.75rem;
    padding: .5rem;
    margin: .5rem 0;
}

.benefits-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-title i {
    color: var(--color-aqua);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 0.6rem 0;
    color: #374151;
    font-size: 0.95rem;
    display: flex;
    align-items: start;
    line-height: 1.5;
}

.benefits-list li::before {
    content: "\2713";
    color: var(--color-aqua);
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Service Actions */
.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.service-btn {
    padding: 0.875rem 2rem;
    border-radius: 0.625rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-btn-primary {
    background: linear-gradient(135deg, var(--color-aqua) 0%, var(--color-navy) 100%);
    color: white;
    box-shadow: 0 0.25rem 0.75rem rgba(58, 183, 149, 0.3);
}

.service-btn-primary:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(58, 183, 149, 0.4);
    color: white;
}

.service-btn-secondary {
    background: white;
    color: var(--color-navy);
    border: 0.125rem solid var(--color-navy);
}

.service-btn-secondary:hover {
    background: var(--color-navy);
    color: white;
}

/* Growing Together Section */
.growing-together {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-aqua) 100%);
    padding: 4rem 0;
    margin-top: 5rem;
    color: white;
    border-radius: 1.25rem;
}

.growing-together h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.growing-together p {
    font-size: 1.15rem;
    opacity: 0.95;
    line-height: 1.7;
}

.growth-features {
    margin-top: 3rem;
}

.growth-feature {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(0.625rem);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 0.125rem solid rgba(255, 255, 255, 0.2);
}

.growth-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(0.5rem);
    border-color: rgba(255, 255, 255, 0.4);
}

.growth-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.growth-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.growth-feature-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: var(--color-navy);
    padding: 1rem 3rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 1rem rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(255, 255, 255, 0.4);
    color: var(--color-navy);
}

@media (max-width: 48rem) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-actions {
        flex-direction: column;
    }

    .growing-together h2 {
        font-size: 1.75rem;
    }
}
