/* ==========================================
   HİZMETLER SAYFALARI - MODERN MİNİMALİST
   ===========================================*/

/* Hero Section - Modern Minimalist */
.hizmet-hero {
    background: linear-gradient(135deg, rgba(0, 139, 62, 0.03) 0%, rgba(0, 169, 79, 0.05) 100%);
    padding: 60px 0 40px;
    position: relative;
    border-bottom: 1px solid rgba(0, 169, 79, 0.1);
}

.hizmet-hero h1 {
    color: #2a2a2a;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.hizmet-hero .lead {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    display: inline-flex;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb-custom a {
    color: #00A94F;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.breadcrumb-custom a:hover {
    color: #008B3E;
}

.breadcrumb-custom span {
    color: #999;
    margin: 0 10px;
}

/* Content Section */
.hizmet-content {
    padding: 60px 0;
    background: white;
}

.hizmet-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
}

.hizmet-text strong {
    color: #008B3E;
    font-weight: 700;
}

/* Liste Stil */
.hizmet-liste {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.hizmet-liste li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.05rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.hizmet-liste li:hover {
    padding-left: 50px;
    background: rgba(0, 139, 62, 0.03);
}

.hizmet-liste li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #008B3E, #00A94F);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

/* CTA Link Cards */
.cta-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.cta-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #008B3E, #00A94F);
    transition: all 0.5s ease;
    z-index: 0;
}

.cta-card:hover::before {
    left: 0;
}

.cta-card:hover {
    border-color: #00A94F;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 169, 79, 0.2);
    color: white;
}

.cta-card i {
    font-size: 2.5rem;
    color: #00A94F;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.cta-card:hover i {
    color: white;
}

.cta-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.cta-card:hover h5 {
    color: white;
}

.cta-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Icon Boxes */
.icon-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 5px solid #00A94F;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.icon-box:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 169, 79, 0.15);
}

.icon-box i {
    font-size: 3rem;
    color: #00A94F;
    margin-bottom: 20px;
    display: block;
}

.icon-box h4 {
    color: #008B3E;
    font-weight: 700;
    margin-bottom: 15px;
}

.icon-box p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Back to Home Card */
.back-home-card {
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c5a 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.back-home-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.back-home-card .btn {
    background: white;
    color: #FF6B35;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
}

.back-home-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hizmet-hero h1 {
        font-size: 1.8rem;
    }

    .hizmet-hero .lead {
        font-size: 1rem;
    }

    .cta-links {
        grid-template-columns: 1fr;
    }

    .icon-box {
        padding: 25px;
    }

    .icon-box i {
        font-size: 2.2rem;
    }
}