/* Services Sayfası Özel Stilleri */

/* Service Kartları */
.service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border-top: 4px solid var(--baymak-orange);
    margin-bottom: 1.5rem;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Feature Icon */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Modal Stilleri */
.modal-header {
    border-bottom: 2px solid #dee2e6;
    background: linear-gradient(135deg, var(--baymak-blue) 0%, var(--baymak-dark-blue) 100%);
}

.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-title {
    color: white;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

/* Liste Stilleri */
.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Bilgi Kutusu */
.info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--baymak-orange);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.info-box h6 {
    color: var(--baymak-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Buton Stilleri */
.btn-service {
    border: 2px solid var(--baymak-blue);
    color: var(--baymak-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--baymak-blue);
    color: white;
    transform: translateY(-2px);
}

/* Grid Düzeni */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

/* Modal İçerik Stilleri */
.modal-body h6 {
    color: var(--baymak-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-body .list-unstyled li {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
}

.modal-body .text-primary {
    color: var(--baymak-blue) !important;
}

.modal-body .text-success {
    color: #28a745 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .info-box {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        border-radius: 8px;
    }
    
    .info-box {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
}

/* Hover Efektleri */
.service-item {
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: scale(1.02);
}

/* Renk Varyasyonları - Feature Icon Background Colors */
.service-kombi .feature-icon { background: #007bff; }
.service-petek .feature-icon { background: #dc3545; }
.service-montaj .feature-icon { background: #ffc107; }
.service-klima .feature-icon { background: #17a2b8; }
.service-isipompasi .feature-icon { background: #28a745; }
.service-hidrofor .feature-icon { background: #007bff; }
.service-termosifon .feature-icon { background: #ffc107; }
.service-merkezi .feature-icon { background: #dc3545; }

/* Modal Close Button */
.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Kart İçi Stiller */
.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--baymak-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Liste Maddeleri */
.list-unstyled {
    margin-bottom: 1.5rem;
}

.list-unstyled li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

/* Buton Grupları */
.d-flex.gap-3 {
    gap: 1rem !important;
}

/* Özel stiller için */
.text-baymak {
    color: var(--baymak-blue) !important;
}

.text-baymak-orange {
    color: var(--baymak-orange) !important;
}

/* Modal backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Smooth transitions */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

/* Responsive modal */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Yazı boyutları için responsive ayarlar */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}