/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 320px;
    height: 150px;
    border-radius: 0.5rem; /* kare fotoğraf görünümü */
    overflow: hidden;
    margin-bottom: 1rem;
}

.square-photo .service-img {
    width: 101%;
    height: 101%;
    object-fit: cover;
    display: block;
}

/* Lightbox styles */
#lightbox { position: fixed; inset:0; z-index:12000; display:flex; align-items:center; justify-content:center; }
#lightbox .lb-backdrop { position:absolute; inset:0; background:rgba(0,0,0,0.7); }
#lightbox .lb-content { position:relative; background:white; padding:1rem; border-radius:8px; max-width:90%; max-height:90%; box-shadow:var(--shadow-lg); display:flex; flex-direction:column; align-items:center; }
#lightbox .lb-content img { max-width:680px; max-height:60vh; object-fit:contain; border-radius:6px; }
#lightbox .lb-close { margin-top:0.75rem; padding:0.5rem 0.75rem; border-radius:6px; border:none; background:var(--primary-color); color:white; cursor:pointer; }

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.25rem 0;
    color: var(--text-light);
}