/* Services Page Specific Styles */
.services-section {
    padding: 15vh 20px 100px;
    min-height: calc(100vh - 200px);
    text-align: center;
}

.services-header-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
}

.services-title {
    font-family: var(--font-body);
    font-size: clamp(3rem, 12vw, 8rem);
    text-transform: uppercase;
    color: #000;
    line-height: 1;
    letter-spacing: 5px;
    position: relative;
    z-index: 2;
}

/* Yellow corners for Services matching About/Gallery */
.services-header-wrapper::before,
.services-header-wrapper::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 8px solid var(--secondary-color);
    z-index: 1;
}

.services-header-wrapper::before {
    top: -10px;
    left: -20px;
    border-right: none;
    border-bottom: none;
}

.services-header-wrapper::after {
    bottom: -10px;
    right: -20px;
    border-left: none;
    border-top: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: left;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-text {
    color: #666;
    line-height: 1.7;
}