/* =============================
   SERVICE BOX (HİZMET KUTUSU) BİLEŞENİ
============================= */
.service-box {
    text-align: center;
    padding: 20px;
    background-color: var(--pure-white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Hizmet kutusunun üstündeki ikon alanı */
.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px auto; /* Üst 0, sağ/sol auto, alt 25px */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-radius: 50%; /* Daire şekli için */
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 36px;
    color: var(--accent-orange);
    transition: all 0.3s ease;
}

.service-box:hover .service-icon {
    background-color: var(--accent-orange);
}

.service-box:hover .service-icon i {
    color: var(--pure-white);
    transform: scale(1.1);
}

/* Hizmet başlığı */
.service-title {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Hizmet açıklaması */
.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--neutral-gray);
}