/* Service Section Header Restore */
.about-header-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .about-header-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 60px;
    }

    .about-title-box {
        flex: 1;
        max-width: 500px;
    }

    /* Remove default margin from h2 to ensure precise bottom alignment */
    .about-header-row .section-header h2 {
        margin-bottom: 0;
    }

    .about-intro-text {
        flex: 1;
        max-width: 500px;
        /* Removed padding-bottom to align with the bottom of the title */
    }
}

.about-intro-text p {
    font-size: 16px;
    color: var(--text-earthy);
    line-height: 1.6;
    margin: 0;
}

/* Service Grid 3-Column Override */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Ensure Service Cards look consistent */
.service-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    /* Slightly taller to accommodate content */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: var(--primary-color);
    /* Deep Forest Green base */
}

.service-image {
    width: 100%;
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.2);
    /* Reduce image focus */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
    filter: brightness(0.4) contrast(1.1);
    /* Further reduce focus on hover */
}

/* Highlight Text Content */
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, var(--primary-color) 0%, rgba(26, 46, 26, 0.8) 50%, transparent 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

.service-item:hover .service-content {
    padding-bottom: 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
}

.service-content h3 {
    color: #FFFAF6;
    /* Warm off-white */
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-focus {
    color: var(--white) !important;
    font-size: 14px !important;
    font-weight: 600;
    display: inline-block;
    padding: 6px 14px;
    background: rgba(184, 196, 180, 0.15);
    /* Soft Mint tint */
    border-left: 3px solid var(--mint-accent);
    border-radius: 4px;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.service-item:hover .service-focus {
    background: rgba(38, 64, 37, 0.3);
}

/* View More / Toggle Logic */
.services-grid .service-item:nth-child(n+4) {
    display: none;
}

.services-grid.expanded .service-item:nth-child(n+4) {
    display: block;
}