/* Refakat Hizmetleri Widget Styles */
@import url('evde-hasta-bakim-style.css');

/* Refakat Hizmetleri Özel Renkler */
.refakat-hizmetleri .refakat-hero {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
}

.refakat-btn {
    background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%) !important;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3) !important;
}

.refakat-btn:hover {
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4) !important;
}

.refakat-btn-secondary {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.refakat-badge {
    background: rgba(245, 158, 11, 0.1) !important;
    color: #F59E0B !important;
}

/* İstatistik Kartları */
.refakat-stats {
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.refakat-stat .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
}

/* Refakat Türleri */
.refakat-turleri {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFBEB 0%, #ffffff 100%);
}

.turler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tur-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.tur-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
}

.tur-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
}

.tur-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 8px 40px;
    font-size: 13px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    z-index: 10;
}

.tur-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tur-card:hover .tur-image img {
    transform: scale(1.1);
}

.tur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tur-card:hover .tur-overlay {
    opacity: 1;
}

.refakat-tur .tur-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F59E0B;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.tur-card:hover .tur-icon {
    transform: scale(1);
}

.tur-content {
    padding: 30px 25px;
}

.tur-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.tur-content > p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.tur-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tur-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #5a6c7d;
    position: relative;
    padding-left: 25px;
}

.tur-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-weight: 700;
}

/* Hizmet Detayları */
.refakat-hizmet-detaylari {
    padding: 100px 0;
    background: #ffffff;
}

.hizmet-detay-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detay-text {
    padding: 20px 0;
}

.detay-desc {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin: 20px 0 35px 0;
}

.detay-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checklist-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.refakat-check {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.check-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.check-content p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

.detay-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.detay-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.badge-text {
    flex: 1;
}

.badge-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.badge-subtitle {
    font-size: 14px;
    color: #5a6c7d;
}

/* Refakatçi Özellikleri */
.refakat-ozellikler {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFBEB 0%, #ffffff 100%);
}

.ozellikler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.ozellik-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.ozellik-card:hover {
    border-color: #F59E0B;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
}

.ozellik-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.refakat-ozellik .ozellik-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #F59E0B;
}

.ozellik-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.ozellik-card p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* Süreç */
.refakat-surec {
    padding: 100px 0;
    background: #ffffff;
}

.surec-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.step-content p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

.step-arrow {
    font-size: 32px;
    color: #F59E0B;
    font-weight: 700;
    margin: 0 20px;
    flex-shrink: 0;
}

/* CTA Section */
.refakat-cta {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%) !important;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .turler-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tur-card.featured {
        transform: scale(1);
    }
    
    .tur-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .hizmet-detay-content {
        gap: 40px;
    }
    
    .detay-image img {
        height: 400px;
    }
    
    .ozellikler-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .surec-steps {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .step-item {
        flex: 0 0 calc(50% - 15px);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .refakat-stats {
        margin-top: 0;
        padding: 40px 0;
    }
    
    .refakat-turleri,
    .refakat-hizmet-detaylari,
    .refakat-ozellikler,
    .refakat-surec {
        padding: 60px 0;
    }
    
    .turler-grid {
        margin-top: 40px;
    }
    
    .tur-image {
        height: 200px;
    }
    
    .tur-content {
        padding: 25px 20px;
    }
    
    .hizmet-detay-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .detay-image img {
        height: 300px;
    }
    
    .image-badge {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
    }
    
    .badge-title {
        font-size: 18px;
    }
    
    .ozellikler-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .surec-steps {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    
    .step-item {
        flex: 1;
        width: 100%;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.tur-card,
.ozellik-card,
.step-item {
    animation: fadeInScale 0.6s ease-out;
}

.tur-card:nth-child(2) {
    animation-delay: 0.1s;
}

.tur-card:nth-child(3) {
    animation-delay: 0.2s;
}
