﻿.bg-breadcrumb .breadcrumb-item a {
    color: #fff !important;
    text-decoration: none;
}

    .bg-breadcrumb .breadcrumb-item a:hover {
        color: #fff !important;
        text-decoration: underline;
    }
/**** banner ****/
.hero-knot-wrap {
    position: relative;
    overflow: hidden;
}

/* SADECE SAĞ ALT PARÇAYI GÖSTER */
.hero-knot-pattern {
    position: absolute;
    left: 0;
    top: 0;
    width: 260px;
    height: 260px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    opacity: 0.16;
    /* ORANTILI BÜYÜTME */
    transform: scale(1.35);
    transform-origin: top left;
}

    .hero-knot-pattern::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: 0;
        bottom: 0;
        background-image: url('/img/bannerpng/bannerYeni4_.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transform: rotate(0deg);
        filter: none;
        mix-blend-mode: normal;
    }

    /* Hafif koyu overlay */
    .hero-knot-pattern::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,.10), transparent 70% );
    }

.hero-green .container {
    position: relative;
    z-index: 2;
}
/* Tablet */
@media (max-width: 991px) {
    .hero-knot-pattern {
        transform: scale(1.15);
        opacity: 0.14;
    }
}

/* Telefon */
@media (max-width: 575px) {
    .hero-knot-pattern {
        width: 220px;
        height: 220px;
        transform: scale(1.05);
        opacity: 0.12;
    }

        .hero-knot-pattern::before {
            width: 430px;
            height: 430px;
        }
}

/* Çok küçük telefon */
@media (max-width: 380px) {
    .hero-knot-pattern {
        width: 190px;
        height: 190px;
        transform: scale(1);
        opacity: 0.11;
    }

        .hero-knot-pattern::before {
            width: 380px;
            height: 380px;
        }
}

/************** ITS Contact Modern **************/
.its-contact-page {
    position: relative;
    overflow: hidden;
}

    .its-contact-page::before {
        content: "";
        position: absolute;
        inset: 0;
        background-repeat: no-repeat;
        background-size: 520px;
        background-position: left -150px top 40px;
        opacity: .06;
        pointer-events: none;
    }

    .its-contact-page .container {
        position: relative;
        z-index: 2;
    }



.its-contact-head h1 {
    color: #123c2b;
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 12px;
}

.its-contact-head p {
    max-width: 720px;
    margin: 0 auto;
    color: #5c6d65;
    font-size: 17px;
}

.its-contact-info-card,
.its-contact-form-card,
.its-contact-map-card {
    position: relative;
    height: 100%;
    border-radius: 32px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(29,185,116,.16);
    box-shadow: 0 28px 80px rgba(12,75,49,.13);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.its-contact-info-card {
    padding: 34px;
}

.its-contact-info-item {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(29,185,116,.14);
}

    .its-contact-info-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 0;
    }

.its-contact-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #145c3c, #1db974);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    box-shadow: 0 15px 35px rgba(29,185,116,.28);
}

.its-contact-info-item h4 {
    color: #123c2b;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.its-contact-info-item a {
    color: #45584f;
    text-decoration: none;
    line-height: 1.7;
    font-weight: 600;
}

  

.its-contact-form-card {
    padding: 42px;
}

.its-contact-form-title h2 {
    color: #123c2b;
    font-size: 38px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 28px;
}

.its-form-field .form-control {
    border: 1px solid rgba(29,185,116,.16);
    border-radius: 18px;
    background: #f7fbf8;
    min-height: 62px;
    color: #123c2b;
    box-shadow: none;
}

.its-form-field textarea.form-control {
    min-height: 170px;
}


.its-contact-map-card {
    height: 460px;
    padding: 10px;
}

    .its-contact-map-card iframe {
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 24px;
        filter: saturate(.9) contrast(1.05);
    }

/* Opening Animation */
.its-contact-anim {
    opacity: 0;
    transform: perspective(1200px) translateY(90px) translateZ(-90px) rotateX(14deg) scale(.92);
    filter: blur(18px);
    transition: opacity 1s ease, transform 1.1s cubic-bezier(.16,1,.3,1), filter 1s ease;
}

    .its-contact-anim.its-contact-show {
        opacity: 1;
        transform: perspective(1200px) translateY(0) translateZ(0) rotateX(0) scale(1);
        filter: blur(0);
    }

.its-contact-show::before {
    transform: translateX(65%) rotate(18deg);
}

@media (max-width: 991px) {
    .its-contact-head h1 {
        font-size: 38px;
    }

    .its-contact-form-card {
        padding: 32px;
    }

    .its-contact-form-title h2 {
        font-size: 31px;
    }
}

@media (max-width: 575px) {
    .its-contact-head h1 {
        font-size: 31px;
    }

    .its-contact-info-card,
    .its-contact-form-card {
        padding: 26px;
        border-radius: 26px;
    }

    .its-contact-map-card {
        height: 360px;
    }
}
/************** ITS Contact Modern **************/
