/* ============================================
   SERVICE MEGA MENU - Header hover menü
   ============================================ */

.single-service-menu .icon img {
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
}

.single-service-menu.get-consultation .icon {
    background: #c8102e;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-service-menu.get-consultation:hover .icon {
    background: #1C2539;
}

/* ============================================
   HOME CARDS - Slider Altı Kartlar
   ============================================ */

.rts-home-cards-area {
    padding-bottom: 50px;
}

.rts-home-single-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: 0px 20px 60px rgba(28, 37, 57, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.rts-home-single-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--card-accent, #c8102e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.rts-home-single-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 30px 70px rgba(28, 37, 57, 0.12);
}

.rts-home-single-card:hover::after {
    transform: scaleX(1);
}

.rts-home-single-card .card-icon {
    min-width: 58px;
    height: 58px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rts-home-single-card .card-icon span {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Red Hat Display', sans-serif;
}

.rts-home-single-card .card-content .title {
    font-size: 20px;
    font-weight: 700;
    color: #1C2539;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: 'Red Hat Display', sans-serif;
}

.rts-home-single-card .card-content .disc {
    font-size: 15px;
    line-height: 1.6;
    color: #5D666F;
    margin: 0;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .rts-home-cards-area {
        margin-top: -30px !important;
        padding-bottom: 40px;
    }
    .rts-home-single-card {
        padding: 25px 20px;
        gap: 18px;
    }
    .rts-home-single-card .card-icon {
        min-width: 48px;
        height: 48px;
    }
    .rts-home-single-card .card-icon span {
        font-size: 18px;
    }
    .rts-home-single-card .card-content .title {
        font-size: 18px;
    }
}

@media only screen and (max-width: 575px) {
    .rts-home-cards-area {
        margin-top: -20px !important;
    }
    .rts-home-single-card {
        padding: 20px 16px;
        gap: 14px;
    }
    .rts-home-single-card .card-icon {
        min-width: 44px;
        height: 44px;
        border-radius: 8px;
    }
    .rts-home-single-card .card-content .title {
        font-size: 16px;
    }
}

/* ============================================
   SERVICE ICON FIX - İkon boyutu sınırlama
   ============================================ */

.single-service-signle-wrapper .icons img {
    max-width: 60px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ============================================
   SERVICE DETAIL PAGE - Hizmet detay sayfası
   ============================================ */

.breadcrumb-service-details {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.breadcrumb-service-details::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 37, 57, 0.9) 0%, rgba(28, 37, 57, 0.7) 100%);
}

.breadcrumb-service-details .title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    font-family: 'Red Hat Display', sans-serif;
    position: relative;
    z-index: 1;
}

.breadcrumb-service-details .disc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.breadcrumb-service-details .page-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.breadcrumb-service-details .page-list li.active {
    color: #fff;
    position: relative;
    z-index: 1;
}

.service-details-left-area .thumbnail {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.service-details-left-area .thumbnail img {
    width: 100%;
    border-radius: 8px;
}

.service-details-left-area h3.title {
    font-size: 28px;
    font-weight: 700;
    color: #1C2539;
    margin-bottom: 20px;
    font-family: 'Red Hat Display', sans-serif;
}

.service-details-left-area .disc {
    color: #5D666F;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Sidebar */
.rts-single-wized {
    background: #F8F9FA;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.rts-single-wized .wized-header {
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.rts-single-wized .wized-header h5.title {
    font-size: 18px;
    font-weight: 700;
    color: #1C2539;
    margin: 0;
    font-family: 'Red Hat Display', sans-serif;
}

.rts-single-wized .wized-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rts-single-wized .wized-body ul li {
    margin-bottom: 0;
}

.rts-single-wized .wized-body ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    color: #5D666F;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.rts-single-wized .wized-body ul li a:hover,
.rts-single-wized .wized-body ul li a.active {
    background: #c8102e;
    color: #fff;
}

.rts-single-wized .wized-body ul li a:hover i,
.rts-single-wized .wized-body ul li a.active i {
    color: #fff;
}

/* Contact sidebar widget */
.rts-single-wized.contact-widget {
    background: #1C2539;
    text-align: center;
}

.rts-single-wized.contact-widget h5.title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Red Hat Display', sans-serif;
}

.rts-single-wized.contact-widget .phone-number {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    text-decoration: none;
}

.rts-single-wized.contact-widget .rts-btn {
    margin-top: 10px;
}

/* Features grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

@media only screen and (max-width: 575px) {
    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

.service-features-grid .single-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 8px;
}

.service-features-grid .single-feature .icon {
    min-width: 45px;
    height: 45px;
    background: #c8102e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-features-grid .single-feature .icon i {
    color: #fff;
    font-size: 18px;
}

.service-features-grid .single-feature .info h6 {
    font-size: 15px;
    font-weight: 700;
    color: #1C2539;
    margin-bottom: 5px;
}

.service-features-grid .single-feature .info p {
    font-size: 13px;
    color: #5D666F;
    margin: 0;
    line-height: 1.5;
}

/* Service detail responsive */
@media only screen and (max-width: 991px) {
    .breadcrumb-service-details .title {
        font-size: 32px;
    }
    .service-details-left-area h3.title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 575px) {
    .breadcrumb-service-details .title {
        font-size: 26px;
    }
    .breadcrumb-service-details {
        padding: 50px 0;
    }
}
