/* assets/css/hizmetler.css */

/* 1. Üst Banner Alanı */
.page-banner {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--vurgu-renki);
}

.page-banner .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.page-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 2;
}

.page-banner .banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.page-banner .banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.page-banner .banner-content h1 span {
    color: var(--vurgu-renki);
}

/* 2. Premium Hizmet Kartları */
.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-img-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.4s ease;
}

/* Öne Çıkan / Popüler Rozeti */
.service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--vurgu-renki);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(188, 163, 116, 0.4);
}

/* Canlı İkon Dairesi */
.service-card-icon {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background-color: #111111;
    color: var(--vurgu-renki);
    border: 2px solid var(--vurgu-renki);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-body {
    padding: 40px 30px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-body h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-body p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Şık İncele Butonu */
.btn-service-detail {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    width: fit-content;
    transition: color 0.3s ease;
}

.btn-service-detail i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* ==========================================================================
   DINAMIK HOVER (ETKİLEŞİM) EFEKTLERİ
   ========================================================================== */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(188, 163, 116, 0.12);
    border-color: rgba(188, 163, 116, 0.3);
}

/* Görsel hafif yaklaşır ve sinematik netlik kazanır */
.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

/* İkon gold arka plana geçer, beyazlaşır ve şık bir takla atar */
.service-card:hover .service-card-icon {
    background-color: var(--vurgu-renki);
    color: #ffffff;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 20px rgba(188, 163, 116, 0.4);
}

.service-card:hover .service-body h4 {
    color: var(--vurgu-renki);
}

.service-card:hover .btn-service-detail {
    color: var(--vurgu-renki);
}

.service-card:hover .btn-service-detail i {
    transform: translateX(8px);
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .page-banner { height: 300px; }
    .page-banner .banner-content h1 { font-size: 2.6rem; }
}
@media (max-width: 767.98px) {
    .page-banner { height: 240px; }
    .page-banner .banner-content h1 { font-size: 2rem; }
    .service-body { padding: 35px 20px 25px 20px; }
}