/* GOKOD — tema özelleştirmeleri */

:root {
    --theme-color1: #7b357f;
    --theme-color1-rgb: 123, 53, 127;
    --review-color: #9b6ba0;
    --link-color: #7b357f;
    --link-hover-color: #652966;
}

/* Biz Kimiz — hafif yuvarlatılmış görsel + efektler */
.about-section .image-column .inner-column.about-single-image {
    position: relative;
    padding: 16px 8px 8px 0;
}

.about-section .about-single-image__glow {
    position: absolute;
    inset: 6% 2% 2% 6%;
    border-radius: 28px;
    background: radial-gradient(
        circle at 40% 40%,
        rgba(var(--theme-color1-rgb), 0.28) 0%,
        rgba(var(--theme-color1-rgb), 0.06) 55%,
        transparent 75%
    );
    filter: blur(18px);
    z-index: 0;
    animation: about-glow-pulse 5s ease-in-out infinite;
}

.about-section .about-single-image__frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 4 / 5;
    max-height: 640px;
    box-shadow:
        0 24px 60px rgba(19, 19, 19, 0.16),
        0 0 0 6px rgba(255, 255, 255, 0.9),
        0 0 0 7px rgba(var(--theme-color1-rgb), 0.16);
    animation: about-float 6.5s ease-in-out infinite;
}

.about-section .about-single-image__frame::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(
        115deg,
        transparent 35%,
        rgba(255, 255, 255, 0.28) 48%,
        transparent 62%
    );
    transform: translateX(-120%) rotate(12deg);
    z-index: 2;
    pointer-events: none;
}

.about-section .about-single-image:hover .about-single-image__frame::before {
    animation: about-shine 1.1s ease;
}

.about-section .about-single-image__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(123, 53, 127, 0.12) 0%,
        rgba(19, 19, 19, 0) 42%,
        rgba(19, 19, 19, 0.28) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.about-section .about-single-image__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s ease;
}

.about-section .about-single-image:hover .about-single-image__frame img {
    transform: scale(1.05);
}

.about-section .about-single-image:hover .about-single-image__frame {
    animation-play-state: paused;
    box-shadow:
        0 30px 72px rgba(19, 19, 19, 0.2),
        0 0 0 6px rgba(255, 255, 255, 0.95),
        0 0 0 8px rgba(var(--theme-color1-rgb), 0.24);
}

@keyframes about-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes about-glow-pulse {
    0%,
    100% {
        opacity: 0.75;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes about-shine {
    from {
        transform: translateX(-120%) rotate(12deg);
    }
    to {
        transform: translateX(120%) rotate(12deg);
    }
}

@media (max-width: 991.98px) {
    .about-section .image-column .inner-column.about-single-image {
        padding: 8px;
    }

    .about-section .about-single-image__frame {
        max-height: 460px;
        aspect-ratio: 5 / 4;
        border-radius: 20px;
        margin-bottom: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-section .about-single-image__frame,
    .about-section .about-single-image__glow {
        animation: none;
    }
}

/* Sayfa geçişi — firma logosu */
#preloader .text-preloader-outer .text-preloading.preloader-logo-wrap {
    padding-top: 0;
    font-size: 0;
    line-height: 0;
}

#preloader .text-preloader-outer .text-preloading.preloader-logo-wrap:before {
    display: none;
}

#preloader .preloader-logo {
    display: block;
    max-width: 200px;
    width: auto;
    height: auto;
    max-height: 72px;
    object-fit: contain;
    animation: preloader-logo-pulse 1.2s ease-in-out infinite;
}

@keyframes preloader-logo-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.88;
        transform: scale(1.04);
    }
}

@media (max-width: 767.98px) {
    #preloader .preloader-logo {
        max-width: 150px;
        max-height: 56px;
    }
}

/* Kayan şerit — turuncu gradient override */
.marquee-section:before,
.marquee-section:after {
    background: linear-gradient(90deg, rgba(123, 53, 127, 0) 0%, #7b357f 55.56%);
}

/* Alt başlık ikonu — turuncu PNG yerine logo moru */
.sec-title .sub-title:before,
.banner-section .outer-box .outer-container .banner-content .inner-content .sub-title:before {
    background-image: none;
    background-color: var(--theme-color1);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.main-header .logo-box {
    flex-shrink: 0;
    max-width: 220px;
}

.main-header .logo img {
    display: block;
    max-height: 53px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sticky-header .logo img {
    max-height: 45px;
    max-width: 180px;
    object-fit: contain;
}

.mobile-menu .nav-logo img {
    max-height: 40px;
    max-width: 160px;
    object-fit: contain;
}

.main-footer .about-widget .logo img {
    max-height: 53px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
}

.main-footer .contact-widget .info span a,
.footer-style-one .contact-widget .info span a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.main-footer .contact-widget .info span a:hover,
.footer-style-one .contact-widget .info span a:hover {
    color: var(--theme-color1);
}

@media (min-width: 992px) {
    .banner-section .outer-box .outer-container .banner-content .inner-content {
        max-width: 820px;
        margin-left: auto;
        text-align: right;
    }

    .banner-section .outer-box .outer-container .banner-content .inner-content .sub-title {
        padding-left: 0;
        padding-right: 17px;
    }

    .banner-section .outer-box .outer-container .banner-content .inner-content .sub-title:before {
        left: auto;
        right: 0;
    }

    .banner-section .outer-box .outer-container .banner-content .inner-content .title {
        text-align: right;
    }

    .banner-section .outer-box .outer-container .banner-content .inner-content .bottom-box {
        justify-content: flex-end;
        align-items: flex-end;
    }

    .banner-section .outer-box .outer-container .banner-content .inner-content .bottom-box .text {
        text-align: right;
    }
}

/* Çözüm / yazılım proje kartları — maskeli zemin, foto taşmasın */
.service-block {
    display: flex;
}

.service-block .inner-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    background: transparent;
}

/* Eski :before zemini kapat — zemin artık .inner-surface */
.service-block .inner-block:has(.inner-surface) {
    padding: 0;
}

.service-block .inner-block:has(.inner-surface):before {
    content: none;
    display: none;
}

.service-block .inner-surface {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 20px 40px;
    border-radius: 40px;
    background-color: var(--theme-color-white);
    -webkit-mask-image: url("../images/resource/service-bg1.png");
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("../images/resource/service-bg1.png");
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: background-color 300ms ease;
}

.service-block .inner-block:hover .inner-surface {
    background-color: var(--theme-color-black);
}

.service-block .inner-block:hover .plus-icon {
    background-color: var(--theme-color1);
}

.service-block .inner-block:hover .plus-icon i {
    color: var(--theme-color1-text-color);
}

.service-block .inner-block:hover .number {
    color: var(--theme-color-white);
}

.service-block .inner-block:hover .btn-more span {
    color: var(--theme-color-white);
}

.service-block .inner-block:hover .content .title,
.service-block .inner-block:hover .content .title a {
    color: var(--theme-color-white);
}

.service-block .inner-block:hover .content .text {
    color: #b5b5b5;
}

.service-block .inner-surface .image {
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 10;
    width: 100%;
    flex-shrink: 0;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 28px;
    color: inherit;
    text-decoration: none;
}

.service-block .inner-surface .image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    display: block;
    /* Tema çift-görsel hover’ı tek fotoğrafı gizliyordu */
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.service-block .inner-block:hover .inner-surface .image img {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.service-block .inner-surface .content {
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
    padding-right: 4.75rem;
    max-width: 100%;
}

.service-block .inner-surface .content .text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3lh;
}

.service-block .inner-surface .number {
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    width: auto;
    max-width: none;
    text-align: right;
    line-height: 1;
}

.service-block .inner-surface .content .title {
    overflow-wrap: break-word;
    word-break: break-word;
}

.service-block .inner-surface .content .title a {
    display: inline;
}

.service-block .inner-block .plus-icon {
    z-index: 3;
}

.service-block .inner-surface .btn-more {
    position: relative;
    z-index: 2;
}

.project-block .inner-block a.image {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

/* Ana sayfa Yazılım Projelerimiz — eşit foto boyutu (referans grid mantığı) */
.software-projects-home .project-block .inner-block .image {
    aspect-ratio: 12 / 7;
    height: auto;
    min-height: 0 !important;
    overflow: hidden;
}

.software-projects-home .project-block .inner-block .image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
    display: block;
}

.software-projects-home .project-block .inner-block .image img:first-child {
    z-index: 1;
}

.software-projects-home .project-block .inner-block .image img:nth-child(2) {
    z-index: 0;
}

@media (max-width: 1399.98px) {
    .service-block .inner-surface .content {
        padding-right: 3.75rem;
    }

    .service-block .inner-surface .number {
        font-size: 48px;
        right: 16px;
        top: 36px;
    }
}

@media (max-width: 575.98px) {
    .service-block .inner-surface .content {
        padding-right: 3.25rem;
    }

    .service-block .inner-surface .number {
        font-size: 40px;
        right: 12px;
        top: 28px;
    }
}

/* Müşteri logoları — tek görsel (eski siteden aktarılan PNG'ler) */
.client-block-logo .inner-box .image-box .image {
    min-height: 60px;
}

.client-block-logo .inner-box .image-box .image img:only-child,
.client-block-logo .inner-box .image-box .image a img {
    position: relative;
    max-height: 56px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transform: none;
    filter: grayscale(100%);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-block-logo .inner-box:hover .image-box .image img:only-child,
.client-block-logo .inner-box:hover .image-box .image a img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-block-logo .inner-box .image-box .image a {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ana sayfa — Biz Kimiz üstü logo şeridi (index-2 clients-section-two) */
.home-client-logos.clients-section-two {
    padding: 40px 0 10px;
}

@media (max-width: 991.98px) {
    .home-client-logos.clients-section-two {
        padding: 30px 0 0;
    }
}

.home-client-logos + .about-section {
    padding-top: 70px;
}

@media (max-width: 991.98px) {
    .home-client-logos + .about-section {
        padding-top: 50px;
    }
}

/* Ana sayfa SSS — ortalanmış, tam genişlik başlık */
.faq-section .content-column .inner-column .sec-title .title {
    max-width: none;
}

/* Sürecimiz → SSS arası boşluk */
.work-section:has(+ .faq-section) {
    padding-bottom: 60px;
}

.work-section + .faq-section {
    padding-top: 50px;
}

.work-section + .faq-section .content-column .inner-column {
    padding-top: 0;
    padding-bottom: 50px;
}

@media (max-width: 991.98px) {
    .work-section:has(+ .faq-section) {
        padding-bottom: 40px;
    }

    .work-section + .faq-section {
        padding-top: 30px;
    }

    .work-section + .faq-section .content-column .inner-column {
        padding-bottom: 30px;
    }
}

/* Yazılım Projelerimiz → SSS arası boşluk (yarıya indirildi) */
.software-projects-home:has(+ .faq-section) {
    padding-bottom: 45px;
}

.software-projects-home + .faq-section {
    padding-top: 60px;
}

.software-projects-home + .faq-section .content-column .inner-column {
    padding-top: 39px;
}

@media (max-width: 991.98px) {
    .software-projects-home:has(+ .faq-section) {
        padding-bottom: 25px;
    }

    .software-projects-home + .faq-section {
        padding-top: 40px;
    }

    .software-projects-home + .faq-section .content-column .inner-column {
        padding-top: 0;
    }
}

/* Müşteri yorumları — referans logoları avatar alanında */
.ks-testimonial-item p {
    text-transform: none;
}

.ks-testimonial-user-wrap span {
    text-transform: none;
}

.ks-testimonial-logo-thumb {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 6px;
}

.ks-testimonial-logo-thumb img {
    object-fit: contain !important;
    background: #fff;
}

.ks-testimonial-thumb-logos .ks-testimonial-logo-main,
.ks-testimonial-thumb-logos .ks-testimonial-logo-sm {
    object-fit: contain;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
}

.ks-testimonial-thumb-logos .ks-testimonial-logo-main {
    max-height: 220px;
    width: auto;
    max-width: 100%;
}

.ks-testimonial-thumb-active {
    flex: 0 0 auto;
    margin-left: 70px;
    max-width: 280px;
    width: 100%;
}

.ks-testimonial-thumb-active .ks-testimonial-thumb {
    margin-left: 0;
    margin-top: 0;
}

@media (max-width: 991.98px) {
    .ks-testimonial-thumb-active {
        margin-left: 0;
        margin-top: 50px;
        max-width: none;
    }
}

/* SSS / yorumlar → iletişim arası boşluk */
.faq-section {
    padding-bottom: 40px;
}

.testimonial-section {
    padding-bottom: 20px;
}

/* Mutlu Müşteriler — turuncu → logo moru */
.testimonial-section .ks-testimonial-bottom {
    background: linear-gradient(289.05deg, var(--theme-color1) 16.47%, #1a0f1b 76.33%);
}

.testimonial-section .ks-testimonial-item .ratting svg path {
    fill: var(--theme-color1);
}

.testimonial-section .ks-testimonial-navigation button:hover {
    background-color: var(--theme-color1);
}

.testimonial-section .ks-testimonial-navigation button:hover svg path {
    fill: #ffffff;
}

.home-contact-section {
    margin-top: 80px;
}

/* İletişim sayfası — breadcrumb sonrası ekstra üst boşluk olmasın */
.contact-section.contact-page-section {
    margin-top: 0;
    margin-bottom: 40px;
}

.contact-section-with-details .contact-section-row {
    --bs-gutter-x: 2.5rem;
    align-items: flex-start !important;
}

.contact-section-with-details .content-column .inner-column {
    padding-right: 1rem;
}

.contact-section-with-details .contact-section-intro {
    margin-bottom: 28px;
}

.contact-section-with-details .form-column .inner-column {
    margin-left: 0;
    height: 100%;
}

.contact-section-with-details .form-box {
    height: 100%;
}

.contact-section-with-details .form-box .inner-box {
    height: 100%;
    padding-top: 2.25rem;
}

.contact-section-with-details .contact-form-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section-with-details .contact-form-title {
    margin: 0 0 0.5rem;
    color: #fff;
    font-weight: 600;
}

.contact-section-with-details .contact-form-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-section-with-details .contact-details-lead {
    margin: 0 0 1.75rem;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.contact-direct-cards {
    display: grid;
    gap: 1rem;
    max-width: 26rem;
}

.contact-direct-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-direct-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(var(--theme-color1-rgb), 0.65);
    color: #fff;
    transform: translateY(-2px);
}

.contact-direct-card__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--theme-color1);
    color: #fff;
    font-size: 1rem;
}

.contact-direct-card__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-direct-card__label {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 600;
}

.contact-direct-card__value {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    word-break: break-word;
}

.contact-direct-card__arrow {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.25s ease, transform 0.25s ease;
}

.contact-direct-card:hover .contact-direct-card__arrow {
    color: var(--theme-color1);
    transform: translateX(3px);
}

.home-contact-section + .blog-section {
    padding-top: 80px;
}

/* İletişim bölümü — sadece form düzeni */
.contact-section-form-only .contact-section-row {
    --bs-gutter-x: 3rem;
}

.contact-section-form-only .contact-section-intro {
    margin-bottom: 0;
}

.contact-section-form-only .content-column .inner-column {
    padding-right: 2rem;
}

.contact-section-form-only .contact-section-lead {
    margin: 0 0 1.75rem;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.contact-section-form-only .contact-section-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.contact-section-form-only .contact-section-points li {
    position: relative;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.contact-section-form-only .contact-section-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--theme-color1);
}

.contact-section-form-only .form-column .inner-column {
    margin-left: 0;
}

.contact-section-form-only .form-box .inner-box {
    padding-top: 2.25rem;
}

.contact-section-form-only .contact-form-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section-form-only .contact-form-title {
    margin: 0 0 0.5rem;
    color: #fff;
    font-weight: 600;
}

.contact-section-form-only .contact-form-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .contact-section-form-only .content-column .inner-column {
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    .contact-section-form-only .contact-section-lead {
        font-size: 1rem;
    }
}

.contact-flash-success {
    margin-bottom: 24px;
    padding: 14px 18px;
    border-radius: 8px;
    background: rgba(34, 197, 94, 0.15);
    color: #166534;
    font-weight: 500;
}

.contact-form-error {
    display: block;
    margin-top: 6px;
    color: #dc2626;
    font-size: 13px;
}

@media (max-width: 991.98px) {
    .faq-section {
        padding-bottom: 24px;
    }

    .home-contact-section {
        margin-top: 50px;
    }

    .home-contact-section + .blog-section {
        padding-top: 50px;
    }
}

/* Üst bar — ikon ve yazılar beyaz, hover’da mor */
.header-style-two .header-upper .inner-box .info-box .info {
    color: #ffffff;
}

.header-style-two .header-upper .inner-box .info-box .info .icon {
    color: #ffffff;
    transition: color 0.25s ease;
}

.header-style-two .header-upper .inner-box .info-box .info a {
    color: #ffffff;
    transition: color 0.25s ease;
}

.header-style-two .header-upper .inner-box .info-box .info:hover .icon,
.header-style-two .header-upper .inner-box .info-box .info a:hover,
.header-style-two .header-upper .inner-box .info-box .info:hover a {
    color: var(--theme-color1);
}

/* Menü telefon — yazı ve ikon beyaz, hover’da mor */
.header-style-two .header-lower .inner-container .right-box .header-phone_box .icon {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.header-style-two .header-lower .inner-container .right-box .header-phone_box i {
    color: #ffffff;
}

.header-style-two .header-lower .inner-container .right-box .header-phone_box .info {
    color: rgba(255, 255, 255, 0.7);
}

.header-style-two .header-lower .inner-container .right-box .header-phone_box .info strong {
    color: #ffffff;
}

.header-style-two .header-lower .inner-container .right-box .header-phone_box:hover .icon {
    border-color: var(--theme-color1);
}

.header-style-two .header-lower .inner-container .right-box .header-phone_box:hover i,
.header-style-two .header-lower .inner-container .right-box .header-phone_box:hover .info,
.header-style-two .header-lower .inner-container .right-box .header-phone_box:hover .info strong,
.header-style-two .header-lower .inner-container .right-box .header-phone_box .info strong:hover {
    color: var(--theme-color1);
}

/* İç sayfalar — siyah header, banner üstüne binmesin (ana sayfada absolute kalır) */
body:not(.page-home) .main-header.header-style-two {
    position: relative;
    background-color: #000;
}

body:not(.page-home) .main-header.header-style-two .header-upper {
    background-color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body:not(.page-home) .main-header.header-style-two .header-lower {
    background-color: #000;
}

/* Sticky menü — her zaman beyaz (iç sayfalarda da) */
body:not(.page-home) .sticky-header {
    background-color: #fff !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

body:not(.page-home) .sticky-header .main-menu .navigation > li > a {
    color: var(--theme-color-black);
}

body:not(.page-home) .sticky-header .main-menu .navigation > li:hover > a,
body:not(.page-home) .sticky-header .main-menu .navigation > li.current > a {
    color: var(--theme-color1);
}

body:not(.page-home) .sticky-header .mobile-nav-toggler span {
    color: var(--theme-color-black);
}

/* Desktop menü — aktif sayfa (bold + mor) */
.header-style-two .header-lower .inner-container .main-menu .navigation > li.current > a {
    color: var(--theme-color1);
    font-weight: 700;
}

.sticky-header .main-menu .navigation > li.current > a {
    color: var(--theme-color1);
    font-weight: 700;
}

.sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color1);
}

/* İç sayfa başlık / breadcrumb bandı — mor gradient zemin */
.page-title {
    position: relative;
    height: 240px;
    min-height: 240px;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box;
    background-image: none !important;
    background-color: var(--theme-color1);
    background: linear-gradient(
        135deg,
        #3d1940 0%,
        #652966 35%,
        var(--theme-color1) 65%,
        #9b6ba0 100%
    ) !important;
}

.page-title:before {
    display: none;
}

.page-title .auto-container {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.page-title .title-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    margin: 0;
    padding: 0;
}

.page-title .title {
    font-size: 48px;
    margin: 0 !important;
    padding: 0;
    line-height: 1.15;
}

.page-title .page-breadcrumb {
    margin: 0 !important;
    padding: 0;
}

.page-title .page-breadcrumb li {
    font-size: 16px;
    line-height: 1.4;
}

.page-title .page-breadcrumb li:after {
    top: 50%;
    transform: translateY(-50%);
}

.page-title .page-breadcrumb li a {
    color: #ffffff;
}

.page-title .page-breadcrumb li a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.page-title.style-two .page-breadcrumb li a,
.page-title.style-two .page-breadcrumb li a:hover {
    color: #ffffff;
}

/* Breadcrumb altı boşluk — 40px */
.page-title + section {
    padding-top: 40px !important;
}

.page-title + .services-section .outer-box {
    padding-top: 40px !important;
}

@media (max-width: 991.98px) {
    .page-title {
        height: 210px;
        min-height: 210px;
    }

    .page-title .title {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .page-title {
        height: 190px;
        min-height: 190px;
    }

    .page-title .title-outer {
        gap: 10px;
    }

    .page-title .title {
        font-size: 30px;
    }

    .page-title .page-breadcrumb li {
        font-size: 15px;
    }
}

/* project-block-two — kart alt gradient (turuncu → logo moru) */
.project-block-two .inner-block:before {
    background: linear-gradient(180deg, rgba(19, 19, 19, 0) 19.26%, var(--theme-color1) 97.47%) !important;
}

/* Referans kartı — tüm kart tıklanabilir, yazılar varsayılan görünür */
.project-block-two .inner-block.reference-card-link {
    display: block;
    color: var(--theme-color-white);
    text-decoration: none;
}

/*
 * Eşit kart boyutu — yüklenen kapaklar ~1200×700 (yatay).
 * Tema varsayılanı dikeydi; o oran kırpıyordu. Bu oran mevcut görünümü korur.
 */
.project-block-two .inner-block.reference-card-link .image {
    aspect-ratio: 12 / 7;
    height: auto;
    min-height: 0 !important;
}

.project-block-two .inner-block.reference-card-link .image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    object-fit: cover;
    object-position: center top;
}

.project-block-two .inner-block.reference-card-link:hover,
.project-block-two .inner-block.reference-card-link:focus,
.project-block-two .inner-block.reference-card-link:visited {
    color: var(--theme-color-white);
    text-decoration: none;
}

.project-block-two .inner-block.reference-card-link:before {
    height: 62%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.35) 38%,
        rgba(var(--theme-color1-rgb), 0.82) 72%,
        rgba(var(--theme-color1-rgb), 0.97) 100%
    ) !important;
}

.project-block-two .inner-block.reference-card-link .content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 2px 10px rgba(0, 0, 0, 0.35);
}

.project-block-two .inner-block.reference-card-link .content .cat {
    color: var(--theme-color-white);
    font-weight: 500;
}

.project-block-two .inner-block.reference-card-link .content .h4.title {
    letter-spacing: 0;
    font-weight: 700;
    color: var(--theme-color-white);
}

/* Hover — yazılar efektle kaybolsun, görsel hafif zoom */
.project-block-two .inner-block.reference-card-link:hover:before {
    height: 0;
}

.project-block-two .inner-block.reference-card-link:hover .content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
}

.project-block-two .inner-block.reference-card-link:hover .image img:first-child {
    opacity: 0;
    transform: translateX(50%) scaleX(2);
    filter: blur(10px);
}

.project-block-two .inner-block.reference-card-link:hover .image img:nth-child(2) {
    opacity: 1;
    transform: scale(1.06);
    filter: blur(0);
}

/* Referanslar — sonsuz scroll */
.reference-infinite-item {
    animation: reference-fade-in 0.45s ease both;
}

@keyframes reference-fade-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.references-infinite-sentinel {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 24px 0 8px;
}

.references-infinite-spinner {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(123, 53, 127, 0.2);
    border-top-color: var(--theme-color1);
    border-radius: 50%;
    animation: reference-spin 0.7s linear infinite;
}

@keyframes reference-spin {
    to {
        transform: rotate(360deg);
    }
}

/* CTA — turuncu yerine yeşil (#82cd4d) */
.cta-section .outer-box:before {
    background: linear-gradient(180deg, #82cd4d 0%, rgba(0, 0, 0, 0) 100%);
}

/* Mobil: JivoChat (sağ alt) ile yukarı çık butonu çakışmasın */
@media only screen and (max-width: 767.98px) {
    .back-to-top-wrapper {
        right: auto;
        left: max(16px, env(safe-area-inset-left, 0px));
    }

    .back-to-top-wrapper.back-to-top-btn-show {
        bottom: max(20px, env(safe-area-inset-bottom, 0px));
    }
}
