/* Ev Temizliği Widget Styles */
@import url('evde-hasta-bakim-style.css');

/* Ev Temizliği Özel Renkler */
.ev-temizligi .temizlik-hero {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.temizlik-btn {
    background: linear-gradient(90deg, #10B981 0%, #34D399 100%) !important;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3) !important;
}

.temizlik-btn:hover {
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4) !important;
}

.temizlik-btn-secondary {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.temizlik-badge {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10B981 !important;
}

/* İstatistik Kartları */
.temizlik-stats {
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.temizlik-stat .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
}

/* Temizlik Paketleri */
.temizlik-paketler {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0FDF4 0%, #ffffff 100%);
}

.paketler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.paket-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.paket-card.featured {
    border-color: #10B981;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(90deg, #10B981 0%, #34D399 100%);
    color: #ffffff;
    padding: 8px 40px;
    font-size: 13px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.paket-card:hover {
    transform: translateY(-10px);
    border-color: #10B981;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}

.paket-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.paket-header {
    text-align: center;
    margin-bottom: 30px;
}

.temizlik-paket .paket-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
}

.paket-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.paket-desc {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0;
}

.paket-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.paket-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #5a6c7d;
    position: relative;
    padding-left: 25px;
}

.paket-features li:last-child {
    border-bottom: none;
}

.paket-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

.paket-cta {
    text-align: center;
}

.temizlik-paket-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(90deg, #10B981 0%, #34D399 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.temizlik-paket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

/* Temizlik Alanları */
.temizlik-alanlari {
    padding: 100px 0;
    background: #ffffff;
}

.alanlar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.alan-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.alan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}

.alan-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.alan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.alan-card:hover .alan-image img {
    transform: scale(1.1);
}

.alan-content {
    padding: 30px 25px;
    text-align: center;
}

.temizlik-alan .alan-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
}

.alan-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.alan-content p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* Neden Biz Section */
.temizlik-neden-biz {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0FDF4 0%, #e9ecef 100%);
}

.neden-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.neden-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.neden-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(16, 185, 129, 0.95) 0%, transparent 100%);
    padding: 40px 30px;
}

.overlay-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.overlay-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.neden-text {
    padding: 20px 0;
}

.neden-desc {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin: 20px 0 35px 0;
}

.neden-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.neden-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.temizlik-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.feature-content p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.temizlik-cta {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%) !important;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .paketler-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .paket-card.featured {
        transform: scale(1);
    }
    
    .paket-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .alanlar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .neden-content {
        gap: 40px;
    }
    
    .neden-image img {
        height: 400px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .temizlik-stats {
        margin-top: 0;
        padding: 40px 0;
    }
    
    .temizlik-paketler,
    .temizlik-alanlari,
    .temizlik-neden-biz {
        padding: 60px 0;
    }
    
    .paketler-grid {
        margin-top: 40px;
    }
    
    .paket-card {
        padding: 30px 25px;
    }
    
    .alanlar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .alan-image {
        height: 180px;
    }
    
    .alan-content {
        padding: 25px 20px;
    }
    
    .neden-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .neden-image img {
        height: 300px;
    }
    
    .overlay-text h3 {
        font-size: 24px;
    }
    
    .overlay-text p {
        font-size: 16px;
    }
}

/* Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.paket-card,
.alan-card {
    animation: slideInUp 0.6s ease-out;
}

.paket-card:nth-child(2) {
    animation-delay: 0.1s;
}

.paket-card:nth-child(3) {
    animation-delay: 0.2s;
}
