/* Services Page Styles */

/* Hero Section - Tutarlı diğer sayfalarla */
.hero-section {
    background: var(--card-bg) !important;
    color: var(--text) !important;
    padding: 2rem 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.25) !important;
    border: 2px solid var(--border);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Container */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Services Section */
.services-section {
    padding: 40px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text);
}

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

/* Service Card */
.service-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-placeholder {
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-placeholder img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.5;
}

/* Service Content */
.service-content {
    padding: 1.5rem;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.service-icon {
    margin-right: 12px;
    flex-shrink: 0;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.service-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Service Features */
.service-features {
    margin-bottom: 1.5rem;
}

.features-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Service Price */
.service-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1rem;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.empty-icon {
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

/* Service Advantages */
.service-advantages {
    background: var(--background);
    padding: 40px 0;
}

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

.advantage-card {
    text-align: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
}

.advantage-icon {
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.advantage-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section - Hero gibi kart stili */
.cta-section {
    background: var(--card-bg) !important;
    color: var(--text) !important;
    padding: 2rem 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.25) !important;
    border: 2px solid var(--border);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .service-card {
        margin: 0 1rem;
    }
    
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 1.5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 1rem 1rem;
    }
    
    .services-section {
        padding: 30px 0;
    }
    
    .service-advantages {
        padding: 30px 0;
    }
    
    .cta-section {
        padding: 1rem 1rem;
    }
    
    .services-container {
        padding: 0 15px;
    }
    
    .service-content {
        padding: 1rem;
    }
}
