/* Kısa Kod CSS Alanı (Izgara Görünümü) */
.hizmetler-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px auto;
    padding: 20px 10px;
    justify-content: center;
    box-sizing: border-box;
}

.hizmetler-grid-item {
    box-sizing: border-box;
}

.hizmet-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
    position: relative;
    border: 1px solid #eaeaea;
    height: 100%;
    z-index: 1;
}

.hizmet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hizmet-card-image-wrap {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.hizmet-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.hizmet-card-icon {
    position: absolute;
    top: 170px;
    left: 20px;
    width: 60px;
    height: 60px;
    /* Görseldeki yeşil turkuaz tonuna yakın */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    z-index: 2;
}

.hizmet-card-content {
    padding: 40px 20px 20px 20px;
    background: #f8fafc;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hizmet-card-content h3 {
    margin: 0 0 10px 0;
    color: inherit;
    font-family: inherit;
}

.hizmet-card-content .hizmet-card-excerpt {
    margin: 0 0 20px 0;
    color: inherit;
    font-family: inherit;
}

.hizmet-card-content p {
    margin: 0;
}

.hizmet-card-more {
    margin-top: auto;
    color: #fff;
    background: #5dc6ba;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 4px;
    transition: all 0.3s;
}

.hizmet-card:hover .hizmet-card-more {
    background: #f7b731;
    color: #fff;
}

/* Single Şablon CSS Alanı (Hizmet Detay) */
.hizmetler-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.hizmetler-top-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.hizmetler-sidebar {
    width: 300px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.hizmetler-sidebar-title {
    background: #5dc6ba;
    /* Başlık turkuaz */
    color: #fff;
    padding: 0 20px;
    height: 48px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    text-transform: capitalize;
    margin: 0;
}

.hizmetler-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hizmetler-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f1f1f1;
}

.hizmetler-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.hizmetler-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 48px;
    text-decoration: none;
    color: #4b6781;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    background: #fff;
}

.hizmetler-menu li a .chevron {
    font-size: 18px;
    background: #fff;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1;
    font-weight: bold;
}

.hizmetler-menu li.active a {
    background: #1a3b5c;
    color: #fff;
}

.hizmetler-menu li.active a .chevron {
    background: #f7b731;
    /* Görseldeki turuncu/Sarı ok butonu */
    color: #fff;
}

.hizmetler-menu li:hover:not(.active) a {
    background: #f1f3f5;
    color: #1a3b5c;
}

.hizmetler-menu li:hover a .chevron {
    color: #555;
}

.hizmetler-hero-main {
    flex: 1;
    min-width: 0;
    background: transparent;
    border-radius: 4px;
}

.hizmetler-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 4px;
}

.hizmetler-hero-icon {
    position: absolute;
    bottom: -40px;
    left: 40px;
    width: 80px;
    height: 80px;
    /* Ana sayfadaki ikon kutusu turuncu/Sarı */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    z-index: 2;
}

.hizmetler-full-details {
    width: 100%;
    margin-top: 60px;
    /* offset the hero icon overlap */
}

.hizmetler-subtitle {
    font-size: 14px;
    color: #4b6781;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.hizmetler-title {
    margin: 0 0 20px 0;
    text-transform: uppercase;
    color: inherit;
    font-family: inherit;
}

.hizmetler-text {
    width: 100%;
    color: inherit;
    font-family: inherit;
}

.hizmetler-text p {
    margin-bottom: 15px;
}

/* Mobil Uyumlu */
@media (max-width: 768px) {
    .hizmetler-top-section {
        flex-direction: column-reverse;
        /* Mobilde fotoğrafı menünün ÜSTÜNE alır */
    }

    .hizmetler-sidebar,
    .hizmetler-hero-main {
        width: 100%;
        flex: none;
        /* Flex davranışını sıfırlar */
        display: block;
    }

    .hizmetler-hero {
        height: 250px;
        min-height: 250px;
        width: 100%;
        display: block !important;
        margin-bottom: 30px;
        /* Fotoğrafla menü arası boşluk */
    }

    .hizmetler-full-details {
        margin-top: 50px;
    }
}

/* ---------- KART ANİMASYONLARI (HOVER EFEKTLERİ) ---------- */
.anim-zoom:hover .hizmet-card-image {
    transform: scale(1.1);
}

.anim-bw .hizmet-card-image {
    filter: grayscale(100%);
}

.anim-bw:hover .hizmet-card-image {
    filter: grayscale(0%);
}

.anim-blur .hizmet-card-image {
    filter: blur(4px);
    transform: scale(1.05);
    /* Bulanıklıktan dolayı kenar taşmalarını gizlemek için */
}

.anim-blur:hover .hizmet-card-image {
    filter: blur(0px);
    transform: scale(1.05);
}

.anim-shine .hizmet-card-image-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 1;
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.anim-shine:hover .hizmet-card-image-wrap::before {
    left: 150%;
}

.anim-overlay .hizmet-card-image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(93, 198, 186, 0.75);
    /* Flu Turkuaz / Mavi Ton */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.anim-overlay:hover .hizmet-card-image-wrap::after {
    opacity: 1;
}

/* ---------- İKON DÖNİŞ ANİMASYONU ---------- */
.hizmet-card-icon div,
.hizmetler-hero-icon div {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-spin-hover.hizmet-card:hover .hizmet-card-icon div,
.icon-spin-hover.hizmetler-hero:hover .hizmetler-hero-icon div {
    transform: rotate(360deg);
}

/* ---------- SWIPER SLIDER EKLENTİ STİLLERİ ---------- */
.hizmetler-wrapper.is-slider {
    padding: 10px 0px 50px 0px;
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

.hizmetler-swiper .swiper-pagination-bullet-active {
    background-color: #5dc6ba;
}

.hizmetler-swiper .swiper-button-next,
.hizmetler-swiper .swiper-button-prev,
.hizmetler-wrapper.is-slider .swiper-button-next,
.hizmetler-wrapper.is-slider .swiper-button-prev {
    color: #5dc6ba;
}

.hizmetler-swiper {
    padding: 40px 0px;
    /* Sadece y ekseninde de olsa 40px boşluk vererek hover animasyonlarının/gölgelerin kesilmesini önler */
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: block;
}

.hizmetler-wrapper.is-slider .swiper-button-next {
    right: 0px;
}

.hizmetler-wrapper.is-slider .swiper-button-prev {
    left: 0px;
}

.hizmetler-swiper .swiper-slide {
    height: auto;
}

/* Link */
.swiper-wrapper .swiper-slide a {
    margin-top: 14px;
}

/* ---------- STYLE 2 (Modern / Minimal) ---------- */
.card-style-2 {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    justify-content: center;
}

.card-style-2 .hizmet-card-content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.card-style-2 .hizmet-card-icon-modern {
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.card-style-2:hover .hizmet-card-icon-modern {
    transform: translateY(-10px);
}

.card-style-2 h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-style-2 .hizmet-card-excerpt {
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-style-2 .hizmet-card-more-modern {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.card-style-2 .hizmet-card-more-modern::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.card-style-2:hover .hizmet-card-more-modern::after {
    width: 100%;
}

/* ---------- STYLE 3 (Overlay) ---------- */
.card-style-3 {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    /* Fixed height for overlay effect */
    position: relative;
}

.card-style-3 .hizmet-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 0.7s ease;
    background-size: cover;
    background-position: center;
}

.card-style-3 .hizmet-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.card-style-3:hover .hizmet-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.card-style-3:hover .hizmet-card-image {
    transform: scale(1.1);
}

.card-style-3 .hizmet-card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-style-3 .hizmet-card-icon-overlay {
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 4;
}

.card-style-3 .hizmet-card-icon-overlay img {
    border-radius: 0;
    box-shadow: none;
}

.card-style-3:hover .hizmet-card-icon-overlay {
    transform: translateY(0);
}

.card-style-3 h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 10px 0;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.card-style-3:hover h3 {
    transform: translateY(0);
}

.card-style-3 .hizmet-card-hidden-content {
    max-height: 250px;
    /* Let it grow but clip if needed */
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card-style-3:hover .hizmet-card-hidden-content {
    height: auto;
    opacity: 1;
    margin-top: 15px;
}

.card-style-3 .hizmet-card-excerpt {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    display: block;
}

.card-style-3 .hizmet-card-more-overlay {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    width: max-content;
    margin-bottom: 10px;
}

.card-style-3 .hizmet-card-more-overlay:hover {
    background: #fff;
    color: #333;
}

/* ---------- STYLE 4 (Zarif Çerçeveli / Elegant) ---------- */
.card-style-4 {
    border: none;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-style-4:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.card-style-4 .hizmet-card-top {
    position: relative;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
}

.card-style-4 .hizmet-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.card-style-4:hover .hizmet-card-image {
    transform: scale(1.08) rotate(1deg);
}

.card-style-4 .hizmet-card-icon-floating {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-style-4 .hizmet-card-icon-floating img {
    border-radius: 0;
    box-shadow: none;
    max-width: 35px;
    height: auto;
}

.card-style-4:hover .hizmet-card-icon-floating {
    transform: translateY(-5px) scale(1.05);
}

.card-style-4 .hizmet-card-content {
    padding: 25px 10px 10px 10px;
    background: transparent;
}

.card-style-4 h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
    transition: color 0.3s ease;
}

.card-style-4 .hizmet-card-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-style-4 .hizmet-card-more-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
    text-decoration: none;
}

.card-style-4:hover .hizmet-card-more-link {
    gap: 15px;
}

.card-style-4 .hizmet-card-more-link span {
    font-size: 18px;
    height: 18px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- STYLE 5 (Dinamik Kesim / Cyber & SaaS) ---------- */
.card-style-5 {
    border: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.card-style-5:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.card-style-5 .hizmet-card-clip-wrapper {
    height: 250px;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #f1f1f1;
}

.card-style-5:hover .hizmet-card-clip-wrapper {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.card-style-5 .hizmet-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.card-style-5:hover .hizmet-card-image {
    transform: scale(1.1);
}

.card-style-5 .hizmet-card-content {
    padding: 0 30px 30px 30px;
    margin-top: -65px;
    /* İçeriğin başlangıcı */
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-style-5 .hizmet-card-icon-diagonal {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    align-self: flex-end;
    /* Sağ tarafa yaslamak için */
    margin-bottom: 5px;
    /* Başlığı aşağıya itmek için boşluk eklendi */
    transform: translateY(-40px);
    /* Sadece ikonu çok daha yukarı uçurup tam kesişim noktasına aldım */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-style-5 .hizmet-card-icon-diagonal img {
    border-radius: 0;
    box-shadow: none;
    max-width: 40px;
    height: auto;
}

.card-style-5:hover .hizmet-card-icon-diagonal {
    transform: translateY(-50px) scale(1.1);
    /* Tıklama/Gelme anında resmin içine doğru zıplar */
}

.card-style-5 h3 {
    font-size: 22px;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 12px;
    color: #2c3e50;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
    /* Çizgi için alan */
}

.card-style-5 h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background-color: #5dc6ba;
    /* Ana turkuaz tema rengi */
    border-radius: 3px;
    transition: width 0.4s ease;
}

.card-style-5:hover h3::after {
    width: 60px;
    /* Mouse gelince soldan sağa ilerleyen çizgi */
}

.card-style-5 .hizmet-card-excerpt {
    color: #555;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 15px;
    /* Decreased gap between excerpt and button */
    flex-grow: 1;
}

.card-style-5 .hizmet-card-more-diagonal {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 12px 25px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.card-style-5:hover .hizmet-card-more-diagonal {
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* ---------- STYLE 6 (Numaralandırılmış / Minimal Süreç Kartı) ---------- */
.card-style-6 {
    border: none;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    padding: 35px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    min-height: 250px;
}

.card-style-6.hizmet-card {
    border-bottom: 4px solid #eaeaea;
    /* Hoverda renklenecek alt çizgi */
}

.card-style-6:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-bottom-color: currentColor;
    /* List bg color'ı JS ile de verilebilir ama CSS current color trick yapsa daha iyi */
}

.card-style-6 .hizmet-card-numbering {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 55px;
    font-weight: 900;
    opacity: 0.15;
    line-height: 1;
    font-family: inherit;
    transition: all 0.4s ease;
}

.card-style-6:hover .hizmet-card-numbering {
    opacity: 0.8;
    transform: scale(1.1);
}

.card-style-6 .hizmet-card-content {
    background: transparent;
    padding: 0;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-style-6 h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    padding-right: 50px;
    /* Rakamla çakışmaması için */
}

.card-style-6 .hizmet-card-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-style-6 .hizmet-card-bottom-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    margin-top: auto;
}

.card-style-6 .hizmet-card-more-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: margin-left 0.3s ease;
}

.card-style-6:hover .hizmet-card-more-text {
    margin-left: 5px;
}

.card-style-6 .hizmet-card-arrow-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    transform: translateX(-15px);
}

.card-style-6 .hizmet-card-arrow-icon span {
    font-size: 20px;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-style-6:hover .hizmet-card-arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- STYLE 7 (Minimal Pro Animasyonlu Kart) ---------- */
.card-style-7 {
    border: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden !important;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
    padding: 40px 20px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

.card-style-7:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.card-style-7 .hizmet-card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
    opacity: 0.1;
}

.card-style-7:hover .hizmet-card-decoration {
    height: 100%;
}

.card-style-7 .hizmet-card-icon-container {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
}

.card-style-7:hover .hizmet-card-icon-container {
    transform: scale(1.15) translateY(-5px);
}

.card-style-7 .hizmet-card-icon-img {
    width: 50px;
    height: 50px;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.card-style-7 .hizmet-card-bg-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 80px;
    font-weight: 900;
    opacity: 0.35;
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.card-style-7:hover .hizmet-card-bg-number {
    opacity: 0.7;
    transform: scale(1.15) rotate(5deg) translateY(-5px) translateX(-5px);
}

.card-style-7 .hizmet-card-content {
    background: transparent;
    padding: 0;
    z-index: 2;
    flex-grow: 0;
}

.card-style-7 h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #2c3e50;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.card-style-7 .hizmet-title-snake-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    overflow: hidden;
    background: transparent;
    border-radius: 4px;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-style-7:hover .hizmet-title-snake-wrapper {
    transform: translateY(5px);
}

.card-style-7 .hizmet-title-snake-wrapper span {
    position: absolute;
    display: block;
    opacity: 0;
    transition: opacity 0.3s;
}

.card-style-7:hover .hizmet-title-snake-wrapper span {
    opacity: 1;
}

.card-style-7 .snake-top {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--snake-color, #5dc6ba));
    animation: snakeTop 2s linear infinite;
}

.card-style-7 .snake-right {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--snake-color, #5dc6ba));
    animation: snakeRight 2s linear infinite;
    animation-delay: 0.5s;
}

.card-style-7 .snake-bottom {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, var(--snake-color, #5dc6ba));
    animation: snakeBottom 2s linear infinite;
    animation-delay: 1s;
}

.card-style-7 .snake-left {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, var(--snake-color, #5dc6ba));
    animation: snakeLeft 2s linear infinite;
    animation-delay: 1.5s;
}

@keyframes snakeTop {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

@keyframes snakeRight {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

@keyframes snakeBottom {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}

@keyframes snakeLeft {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}

/* ---------- STYLE 8 (Glassmorphism & Grid Reveal) ---------- */
.card-style-8 {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-style-8 .hizmet-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 0;
}

.card-style-8:hover .hizmet-card-bg {
    transform: scale(1.1);
}

.card-style-8 .hizmet-card-gradient {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.card-style-8 .hizmet-card-glass-panel {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 25px;
    transition: background 0.4s ease;
}

.card-style-8:hover .hizmet-card-glass-panel {
    background: rgba(255, 255, 255, 0.2);
}

.card-style-8 .glass-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-style-8 .glass-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.card-style-8 .glass-icon img {
    border-radius: 0;
    box-shadow: none;
    max-width: 40px;
    height: auto;
}

.card-style-8 h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.card-style-8 .glass-body-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-style-8:hover .glass-body-wrapper {
    grid-template-rows: 1fr;
}

.card-style-8 .glass-body-inner {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
}

.card-style-8:hover .glass-body-inner {
    opacity: 1;
    padding-top: 20px;
}

.card-style-8 .hizmet-card-excerpt {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-style-8 .glass-btn {
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    transition: gap 0.3s;
    width: max-content;
    margin-top: auto;
}

.card-style-8 .glass-btn:hover {
    filter: brightness(1.1);
}

.card-style-8:hover .glass-btn {
    gap: 15px;
}

.card-style-8 .glass-btn span {
    font-size: 18px;
    height: 18px;
    display: flex;
    align-items: center;
}

/* ---------- STYLE 9 (3D Flip Card / Arkaya Dönen Kart) ---------- */
.card-style-9 {
    background-color: transparent;
    height: 380px;
    perspective: 1000px;
    /* 3D effect için kamera açısı */
    border: none;
    box-shadow: none;
    display: block;
    text-decoration: none;
}

.card-style-9 .hizmet-card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.card-style-9:hover .hizmet-card-flip-inner {
    transform: rotateY(180deg);
}

.card-style-9 .hizmet-card-front,
.card-style-9 .hizmet-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FRONT */
.card-style-9 .hizmet-card-front {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Yazıyı aşağı itiyorum */
    align-items: flex-start;
    /* Yazıyı sola yaslıyorum */
    padding: 30px;
}

.card-style-9 .hizmet-card-front .hizmet-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.card-style-9 .hizmet-card-front .hizmet-card-overlay {
    position: absolute;
    top: 30%;
    /* Üst kısmı resimde aydınlık bırakılır */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
    opacity: 0.8;
}

.card-style-9:hover .hizmet-card-overlay {
    opacity: 1;
}

.card-style-9 .hizmet-card-front-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.card-style-9 .hizmet-card-front-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BACK */
.card-style-9 .hizmet-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.card-style-9 .hizmet-card-back-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.card-style-9 .hizmet-card-back h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 15px;
}

.card-style-9 .hizmet-card-back h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.card-style-9 .hizmet-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

.card-style-9 .hizmet-card-btn-3d {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.card-style-9 .hizmet-card-btn-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ---------- STYLE 10 (Neon Işık / Cyberpunk Dark Mode) ---------- */
.card-style-10 {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 16px;
    height: 350px;
    background: #0f1016;
    /* Çok koyu boşluk arkaplanı */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

.card-style-10:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.card-style-10 .hizmet-card-neon-border {
    position: absolute;
    inset: -4px;
    /* Dışarıya minimal taşar */
    z-index: -1;
    overflow: hidden;
    border-radius: 18px;
    /* İç hatlarla uyumlu olması için kavisli */
}

.card-style-10 .hizmet-card-neon-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Dönen alan animasyonu */
    background: conic-gradient(transparent, transparent, transparent, var(--neon-color, #5dc6ba));
    animation: spin-neon-rotate 4s linear infinite;
    opacity: 0.2;
    transition: opacity 0.4s ease;
}

.card-style-10:hover .hizmet-card-neon-border::before {
    opacity: 1;
    animation: spin-neon-rotate 1.5s linear infinite;
    /* Üzerine gelince döngü hızlanır! */
}

@keyframes spin-neon-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.card-style-10 .hizmet-card-dark-inner {
    position: absolute;
    inset: 3px;
    /* Dış sınırı bırakıp içten renk vererek çerçeveyi belirgin yaparım */
    background: #14161f;
    border-radius: 13px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.card-style-10 .neon-icon-wrapper {
    margin-bottom: 25px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-style-10:hover .neon-icon-wrapper {
    transform: scale(1.15) translateY(-5px);
}

.card-style-10 h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.card-style-10 .hizmet-card-excerpt {
    color: #8c93a8;
    /* Çok koyuya şık ve hafif lila tonlu açık gri */
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-style-10 .neon-more-btn {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.card-style-10:hover .neon-more-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: currentColor;
    /* İkon rengini çeker */
    gap: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.card-style-10 .neon-more-btn span {
    font-size: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- STYLE 11 (Liquid Mask Reveal / Sihirli Patlayan Küre) ---------- */
.card-style-11 {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 16px;
    height: 380px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Minimal Kutu Gölgesi */
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-style-11:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-style-11 .hizmet-card-normal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.card-style-11 .icon-normal {
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.card-style-11:hover .icon-normal {
    transform: scale(0.9);
}

.card-style-11 .hizmet-card-normal h3 {
    color: #222;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.card-style-11 .excerpt-normal {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* YAYILAN KATMAN (Hover Durumunda Patlayan Daire Maskesi) */
.card-style-11 .hizmet-card-reveal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-size: cover;
    background-position: center;
    /* Maske Daire (Sağ Alt Köşede Buton Gibi Bekleyen Nokta) */
    clip-path: circle(30px at calc(100% - 45px) calc(100% - 45px));
    -webkit-clip-path: circle(30px at calc(100% - 45px) calc(100% - 45px));
    transition: clip-path 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-style-11:hover .hizmet-card-reveal {
    /* Hover olunca tüm ekranı kaplayacak kadar büyür */
    clip-path: circle(150% at calc(100% - 45px) calc(100% - 45px));
    -webkit-clip-path: circle(150% at calc(100% - 45px) calc(100% - 45px));
}

.card-style-11 .reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.95;
    /* Özel rengi güçlü bir şekilde gösterir */
    transition: opacity 0.4s ease;
}

.card-style-11:hover .reveal-overlay {
    opacity: 0.85;
    /* Arkadaki görseli biraz belirginleştirir */
}

.card-style-11 .reveal-content {
    position: relative;
    z-index: 3;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    /* Hover olana kadar gizli */
}

.card-style-11:hover .reveal-content {
    opacity: 1;
    transform: translateY(0);
}

.card-style-11 .reveal-content h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.card-style-11 .excerpt-reveal {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-style-11 .btn-reveal {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.card-style-11 .btn-reveal span {
    font-size: 20px;
}

/* ART (PLUS) IKONU (Sürekli Görünür ve Üzerindeyken Döner) */
.card-style-11 .expand-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 3;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-style-11 .expand-hint span {
    font-size: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-style-11:hover .expand-hint {
    transform: rotate(225deg);
    /* Plustan X veya OK şeklinde döner */
}

/* Genel Kart İkonu (Sol Üst) */
.hizmet-card {
    position: relative;
    /* ensure it is positioned to hold absolute icon */
}

.hizmet-genel-ikon {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    background: transparent;
    padding: 5px;
    border-radius: 4px;
}

.hizmet-genel-ikon img {
    max-width: 40px;
    height: auto;
    display: block;
}