/* Hizmet Sayfaları Stilleri */

/* Logo link stilini düzenle */
.logo a {
    text-decoration: none;
}

/* Hizmet Hero Bölümü */
.service-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

/* Hizmet Detay Bölümü */
.service-details {
    padding: 80px 0;
    background-color: #fff;
}

.service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-info h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.service-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.service-feature {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature-icon {
    margin-right: 20px;
    min-width: 50px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-text h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Çalışma Süreci */
.service-process {
    flex: 1;
    min-width: 300px;
}

.service-process h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.service-process h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 2px;
    height: 100%;
    background: #ddd;
    z-index: 0;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    z-index: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Proje Teklif Formu */
.project-proposal {
    background-color: var(--light-color);
    padding: 80px 0;
}

.proposal-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.proposal-info {
    flex: 1;
    min-width: 300px;
}

.proposal-info p {
    margin-bottom: 30px;
}

.proposal-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.benefit {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 150px;
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.benefit i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.proposal-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.proposal-form .form-group select {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    font-size: 1rem;
    transition: var(--transition);
    appearance: none;
    cursor: pointer;
}

.proposal-form .form-group select:focus {
    border-bottom-color: var(--primary-color);
    outline: none;
}

.proposal-form .form-group select:focus ~ label,
.proposal-form .form-group select:valid ~ label {
    top: -10px;
    left: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* İlgili Hizmetler */
.related-services {
    padding: 80px 0;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.related-service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.related-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.related-service-icon {
    background: var(--primary-color);
    color: white;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-service-icon i {
    font-size: 3rem;
}

.related-service-content {
    padding: 20px;
    text-align: center;
}

.related-service-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.related-service-content a {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.related-service-content a:hover {
    color: var(--secondary-color);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .service-content,
    .proposal-content {
        flex-direction: column;
    }
    
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }
    
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-info h2,
    .service-process h2 {
        font-size: 1.8rem;
    }
    
    .benefit {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .service-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .service-hero-content p {
        font-size: 1rem;
    }
    
    .feature-icon {
        min-width: 40px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
} 