.services-premium-section {
    padding: 60px 0 20px;
    /* Alt padding 100 -> 20 yapıldı */
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
}

.services-reference-grid {
    display: grid;
    grid-template-columns: 240px 1fr 340px;
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

.services-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-center-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.services-right-column {
    display: flex;
    flex-direction: column;
    margin-left: -80px;
    margin-top: 60px;
    gap: 20px;
}

.service-image-card {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-premium-section.animate .services-left-column .service-image-card {
    animation: slideInFromLeft 1s ease-out;
}

.services-premium-section.animate .services-left-column .service-image-card:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-image-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: transparent;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.services-left-column .service-image-card:first-child::before {
    top: -50px;
    left: -50px;
    opacity: 0.6;
}

.service-image-rectangle::before {
    bottom: -50px;
    right: -50px;
    opacity: 0.6;
}

.service-image-card:hover {
    transform: translateY(-8px);
    border-color: rgba(193, 18, 31, 0.15);
}

.services-bottom-text {
    position: relative;
    width: 100%;
    padding: 0;
}

.services-premium-section.animate .services-bottom-text {
    animation: slideInFromBottom 1s ease-out 0.6s backwards;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-bottom-text-original {
    position: relative;
    width: 100%;
    padding: 0;
    margin-left: 80px;
}

.bottom-text-content {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.65);
    text-align: left;
}

.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-image-card:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-image-card:hover .image-overlay {
    opacity: 1;
}

.image-label {
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 700;
}

.service-text-content {
    position: relative;
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
}

.text-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(193, 18, 31, 0.12);
    border: 1px solid rgba(193, 18, 31, 0.35);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #C1121F;
    margin-bottom: 20px;
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.text-badge i {
    color: #C1121F;
    font-size: 0.5rem;
    animation: blink 1.5s ease-in-out infinite;
}

.text-card-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.text-card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 25px;
}

.btn-chaos {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #C1121F 0%, #9D0208 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(193, 18, 31, 0.5);
    box-shadow: 0 10px 30px rgba(193, 18, 31, 0.3);
    transition: all 0.4s ease;
}

.btn-chaos:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(193, 18, 31, 0.2);
}

.service-list-content {
    position: relative;
    width: 100%;
    padding: 0;
}

.services-premium-section.animate .service-list-content {
    animation: slideInFromBottomList 1s ease-out 0.3s backwards;
}

@keyframes slideInFromBottomList {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-list-content-original {
    position: relative;
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
    margin-top: -10px;
}

.list-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.chaos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chaos-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.75);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.chaos-list li:last-child {
    border-bottom: none;
}

.chaos-list li i {
    color: #C1121F;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.chaos-list li:hover {
    padding-left: 10px;
    color: #1a1a1a;
}

.chaos-list li:hover i {
    transform: scale(1.3);
    filter: drop-shadow(0 0 8px rgba(193, 18, 31, 0.3));
}

.service-stats-card-modern {
    position: relative;
    width: 100%;
    padding: 35px 30px;
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 80px;
    overflow: hidden;
}

.services-premium-section.animate .service-stats-card-modern {
    animation: slideInFromRight 1s ease-out 0.4s backwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-stats-card-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0 0 18px 0;
    transition: all 0.6s ease;
}

.service-stats-card-modern:hover::after {
    width: 120px;
    height: 120px;
    background: transparent;
}

.service-stats-card-modern:hover {
    transform: translateY(-5px);
    border-color: rgba(193, 18, 31, 0.2);
}

.service-stats-card-modern .stats-number-big {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.service-stats-card-modern .stat-big {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(65, 105, 225, 0.6));
}

.service-stats-card-modern .stat-plus {
    font-size: 3rem;
    font-weight: 700;
    color: #4169E1;
    margin-top: -15px;
}

.service-stats-card-modern .stats-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.service-stats-card-modern .stats-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.65);
}

.stats-number-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 15px;
}

.stat-big {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #C1121F 0%, #DC2F02 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(193, 18, 31, 0.2));
}

.stat-plus {
    font-size: 2.2rem;
    font-weight: 700;
    color: #C1121F;
    margin-top: -10px;
}

.stats-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.65);
}


@keyframes floatUpSlow {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}


@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(193, 18, 31, 0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(193, 18, 31, 0);
        transform: scale(1.05);
    }
}

.services-badge i {
    animation: rocket 2s ease-in-out infinite;
}

@keyframes rocket {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-5px) rotate(-10deg);
    }

    75% {
        transform: translateY(-3px) rotate(10deg);
    }
}

.services-main-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #C1121F 0%, #DC2F02 50%, #C1121F 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.services-main-desc {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto;
}

.services-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    position: relative;
}

.service-block {
    position: relative;
    padding: 45px 40px;
    cursor: pointer;
    overflow: hidden;
    animation: floatRandom 8s ease-in-out infinite;
}

.service-block::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: transparent;
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 24px;
    z-index: -1;
}

.service-block:hover::after {
    opacity: 1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.service-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: transparent;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.service-block:hover .service-glow {
    opacity: 1;
    width: 300px;
    height: 300px;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(193, 18, 31, 0.08);
    line-height: 1;
    transition: all 0.6s ease;
}

.service-block:hover .service-number {
    color: rgba(193, 18, 31, 0.2);
    transform: scale(1.2) rotate(10deg);
}

.service-icon-premium {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 18, 31, 0.1);
    border: 2px solid rgba(193, 18, 31, 0.3);
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-icon-premium i {
    font-size: 2rem;
    color: #C1121F;
    transition: all 0.6s ease;
}

.service-block:hover .service-icon-premium {
    transform: scale(1.15) rotate(360deg);
    background: rgba(193, 18, 31, 0.2);
    box-shadow: 0 0 30px rgba(193, 18, 31, 0.2);
}

.service-block:hover .service-icon-premium i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(193, 18, 31, 0.3));
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    transition: all 0.4s ease;
}

.service-block:hover .service-title {
    color: #C1121F;
    transform: translateX(5px);
}

.service-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.service-features-premium {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features-premium li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.service-features-premium li i {
    color: #C1121F;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-block:hover .service-features-premium li {
    padding-left: 8px;
}

.service-block:hover .service-features-premium li i {
    transform: scale(1.3);
    filter: drop-shadow(0 0 5px rgba(193, 18, 31, 0.3));
}

.service-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(193, 18, 31, 0.1);
    border: 1px solid rgba(193, 18, 31, 0.3);
    border-radius: 10px;
    color: #C1121F;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    margin-top: 15px;
}

.service-link-premium:hover {
    background: rgba(193, 18, 31, 0.2);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(193, 18, 31, 0.3);
}

.service-link-premium i {
    transition: transform 0.4s ease;
}

.service-link-premium:hover i {
    transform: translateX(5px);
}

.service-large {
    grid-column: span 6;
}

.service-medium {
    grid-column: span 4;
}

.service-small {
    grid-column: span 3;
}

.service-block:nth-child(1) {
    animation-delay: 0s;
    grid-column: 1 / 7;
}

.service-block:nth-child(2) {
    animation-delay: 0.3s;
    grid-column: 7 / 11;
    transform: translateY(60px);
}

.service-block:nth-child(3) {
    animation-delay: 0.6s;
    grid-column: 11 / 14;
    transform: translateY(-40px);
}

.service-block:nth-child(4) {
    animation-delay: 0.9s;
    grid-column: 1 / 5;
    transform: translateY(40px);
}

.service-block:nth-child(5) {
    animation-delay: 1.2s;
    grid-column: 5 / 11;
    transform: translateY(-30px);
}

.service-block:nth-child(6) {
    animation-delay: 1.5s;
    grid-column: 11 / 14;
    transform: translateY(50px);
}

.service-block:nth-child(7) {
    animation-delay: 1.8s;
    grid-column: 1 / 6;
    transform: translateY(-20px);
}

.service-block:nth-child(8) {
    animation-delay: 2.1s;
    grid-column: 6 / 10;
    transform: translateY(70px);
}


@media (max-width: 1200px) {
    .services-reference-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .services-left-column,
    .services-center-column,
    .services-right-column {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .service-image-card {
        height: 400px;
    }

    .service-image-rectangle {
        height: 300px;
        margin-left: 0;
    }

    .service-stats-card-modern {
        margin-left: 0;
    }

    .services-bottom-text {
        margin-left: 0;
    }
}

@media (max-width: 968px) {
    .services-premium-section {
        padding: 100px 0 120px;
        min-height: auto;
    }

    .text-card-title {
        font-size: 2.4rem;
    }

    .service-image-card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .services-premium-section {
        padding: 80px 0 100px;
    }

    .services-reference-grid {
        gap: 25px;
    }

    .text-card-title {
        font-size: 2rem;
    }

    .text-card-desc {
        font-size: 0.95rem;
    }

    .list-card-title {
        font-size: 1.4rem;
    }

    .stat-big {
        font-size: 3.5rem;
    }

    .service-image-card {
        height: 300px;
    }

    .service-text-content,
    .service-list-content,
    .service-stats-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .text-card-title {
        font-size: 1.8rem;
    }

    .stat-big {
        font-size: 3.5rem;
    }

    .stat-plus {
        font-size: 2rem;
    }
}