/* ===================================
   DARK THEME OVERRIDES
   =================================== */

/* ============================================
   MAGNETIC DOCK — Sabit iletişim widget'ı
   ============================================ */


.md-dock {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #00000061;
    backdrop-filter: brightness(1.5) blur(10px);
    -webkit-backdrop-filter: brightness(1.5) blur(10px);
    padding: 14px 10px;
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
}

@keyframes md-enter {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.md-dock::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.md-item {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    position: relative;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-radius 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    animation: md-item-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--md-delay) both;
}

@keyframes md-item-enter {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.92);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.md-item:hover {
    transform: scale(1.15) translateX(-3px);
    background: rgba(255, 255, 255, 0.95);
    color: #0d1b4a;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.md-item.md-featured {
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.md-item.md-featured:hover {
    background: #fff;
    color: #25D366;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.md-tooltip {
    position: absolute;
    right: calc(100% + 18px);
    top: 50%;
    background: #fff;
    color: #0d1b4a;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-50%) translateX(6px);
    transition:
        opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.md-tooltip::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #fff;
}

.md-item:hover .md-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.md-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 1.5px solid #25D366;
    opacity: 0.5;
    animation: md-pulse-anim 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    pointer-events: none;
}

@keyframes md-pulse-anim {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .md-dock {
        right: 12px;
        gap: 10px;
        padding: 10px 7px;
        border-radius: 22px;
    }

    .md-item {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 13px;
    }

    .md-item:hover {
        border-radius: 15px;
    }

    .md-tooltip {
        display: none;
    }
}

/* ===== PROJECT ITEM-7 HOVER ===== */

/* Resim zoom */
.project-item-7 .project-thumb img {
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-item-7:hover .project-thumb img {
    transform: scale(1.05);
}

/* Tüm kartı kaplayan tıklanabilir link */
.project-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: 24px;
    text-decoration: none;
}

/* Sağ üst ok butonu — başlangıçta küçük ve görünmez */
.project-hover-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transform: scale(0.7) rotate(-45deg);
    transition:
        opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        border-color 0.3s ease;
}

.project-item-7:hover .project-hover-btn {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.project-hover-overlay:hover .project-hover-btn {
    background: var(--tl-color-theme-primary);
    border-color: var(--tl-color-theme-primary);
}

/* Başlık linki */
.project-item-7 .project-content .title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-item-7:hover .project-content .title a {
    color: var(--tl-color-theme-primary);
}

/* ===== PROJECT THUMB LOGO ===== */
.project-thumb-logo {
    position: absolute;
    top: 24px;
    left: 28px;
    z-index: 3;
}

.project-thumb-logo img {
    width: 147px !important;
    object-fit: contain !important;
    height: 10vh !important;
    border-radius: 0px !important;
    display: block;
}

@media (max-width: 767px) {
    .project-thumb-logo {
        top: 16px;
        left: 16px;
    }

    .project-thumb-logo img {
        height: 32px;
    }
}

/* Header line overlay: scroll yapılınca gizle */
.header:has(.primary-header.fixed) .header-line-overlay {
    display: none;
}

:root {
    --tl-color-heading-primary: #fdf8f0;
    --tl-color-text-body: #fdf8f0;
    --tl-color-bg-1: #1a1a1d;
    --tl-color-grey-1: #7a7a82;
    --tl-color-grey-2: #a0a0a8;
    --tl-color-border-1: #2a2a30;
    --tl-color-common-white: #fdf8f0;
    --dark-bg-primary: #0f0f11;
    --dark-bg-secondary: #131315;
    --dark-bg-card: #1a1a1d;
}

/* Base */
body {
    background-color: var(--dark-bg-primary);
    color: var(--tl-color-text-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--tl-color-heading-primary);
}

p {
    color: var(--tl-color-text-body);
}

/* Section backgrounds */
.tl-bg-color {
    background-color: var(--dark-bg-secondary) !important;
}

.bg-grey {
    background-color: var(--dark-bg-card) !important;
}

/* ===== ABOUT SECTION ===== */
.about-section-2 {
    background-color: var(--dark-bg-secondary);
}

/* ===== SKILL SECTION ===== */
.skill-section {
    background-color: var(--dark-bg-primary);
}

.skill-text {
    color: rgba(255, 255, 255, 0.03);
}

.skill-left-content .skill-desc p {
    color: var(--tl-color-text-body);
}

.skill-left-content .skills-items .skills-item .title {
    color: var(--tl-color-heading-primary);
}

.skill-left-content .skills-items .skills-item .progress {
    background-color: #252528;
}

.skill-left-content .skills-items .skills-item {
    border-color: #2a2a30;
}

/* ===== FAQ / ACCORDION ===== */
.faq-section {
    background-color: var(--dark-bg-secondary);
}

.faq-content .faq-accordion .accordion-item {
    background-color: var(--dark-bg-card);
    border-color: #2a2a30;
}

.faq-content .faq-accordion .accordion-item .accordion-button {
    background-color: var(--dark-bg-card);
    color: var(--tl-color-heading-primary);
}

.faq-content .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--dark-bg-card);
    color: var(--tl-color-theme-primary);
}

.faq-content .faq-accordion .accordion-item .accordion-body {
    background-color: var(--dark-bg-card);
    color: var(--tl-color-text-body);
}

/* ===== BANNER PROCESS ===== */
.banner-process-area {
    background-color: var(--dark-bg-primary);
}

.elementor-banner-process-item {
    border-color: #2a2a30 !important;
}

.banner-process-caption .number {
    color: rgba(255, 255, 255, 0.1);
}

.banner-process-caption .banner-process-title a {
    color: var(--tl-color-heading-primary);
}

.banner-process-caption .banner-process-content {
    color: var(--tl-color-text-body);
}

/* ===== PROJECT SECTION ===== */
.project-section-3 {
    background-color: var(--dark-bg-secondary);
}

.project-item-3 .project-content {
    background-color: var(--dark-bg-card);
}

.project-item-3 .project-content .title a {
    color: var(--tl-color-heading-primary);
}

.project-item-3 .project-content ul li a {
    color: var(--tl-color-text-body);
}

.project-item-3 .project-content span {
    color: var(--tl-color-text-body);
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    background-color: var(--dark-bg-primary);
    border-color: #2a2a30;
}

.counter-section.counter-1 {
    border-top-color: #2a2a30;
    border-bottom-color: #2a2a30;
}

.counter-item {
    border-color: #2a2a30 !important;
}

.counter-item .title {
    color: var(--tl-color-heading-primary);
}

.counter-item .sub-title {
    color: var(--tl-color-heading-primary);
}

.counter-item p {
    color: var(--tl-color-text-body);
}

.counter-text {
    color: rgba(255, 255, 255, 0.03);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section-3 {
    background-color: var(--dark-bg-secondary);
}

.testi-top-content {
    border-color: #2a2a30 !important;
}

.testi-top-content .right-content p {
    color: var(--tl-color-text-body);
}

.testi-item {
    background-color: var(--dark-bg-card);
    border-color: #2a2a30 !important;
}

.testi-item p {
    color: var(--tl-color-text-body);
}

.testi-item .testi-author .name {
    color: var(--tl-color-heading-primary);
}

.testi-item .testi-author .name span {
    color: var(--tl-color-text-body);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background-color: var(--dark-bg-secondary);
}

.blog-section {
    overflow-anchor: none;
}

.blog-carousel-2 .swiper-slide .post-card {
    /* background-color: var(--dark-bg-card); */
}

.post-card .post-content {
    /* background-color: var(--dark-bg-card); */
}

.post-card .post-content .title a {
    color: var(--tl-color-heading-primary);
}

.post-card .post-content .title a:hover {
    color: var(--tl-color-theme-primary);
}

.post-card .post-content p {
    color: var(--tl-color-text-body);
}

.post-card .post-content .post-meta li {
    color: var(--tl-color-text-body);
}

.post-card .post-content .post-meta li span {
    color: var(--tl-color-theme-primary);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background-color: var(--dark-bg-secondary);
}

.newsletter-wrap .section-heading h2,
.newsletter-wrap .section-heading h4 {
    color: var(--tl-color-heading-primary);
}

.newsletter-wrap .section-heading p {
    color: var(--tl-color-text-body);
}

.newsletter-wrap .newsletter-form .form-control {
    background-color: var(--dark-bg-card);
    border-color: #2a2a30;
    color: var(--tl-color-heading-primary);
}

.newsletter-wrap .newsletter-form .form-control::-webkit-input-placeholder {
    color: var(--tl-color-grey-1);
}

.newsletter-wrap .newsletter-form .form-control:-moz-placeholder {
    color: var(--tl-color-grey-1);
}

.newsletter-wrap .newsletter-form .form-control::-moz-placeholder {
    color: var(--tl-color-grey-1);
}

.newsletter-wrap .newsletter-form .form-control:-ms-input-placeholder {
    color: var(--tl-color-grey-1);
}

/* ===== SECTION HEADING ===== */
.section-heading .section-title {
    color: var(--tl-color-heading-primary);
}

.section-heading .sub-heading {
    color: var(--tl-color-theme-primary);
}

.section-heading:not(.white-content) .section-title span {
    -webkit-text-stroke-color: var(--tl-color-heading-primary);
}

/* ===== SERVICE ITEM ===== */
.service-item {
    background-color: var(--dark-bg-card) !important;
    border-color: #2a2a30 !important;
}

.service-item .service-top .title,
.service-item .service-top .title a {
    color: var(--tl-color-heading-primary);
}

.service-item p {
    color: var(--tl-color-text-body);
}

.service-item-3 .service-content {
    background-color: var(--dark-bg-card);
}

.service-item-3 .service-content .title a {
    color: var(--tl-color-heading-primary);
}

.service-item-3 .service-content p {
    color: var(--tl-color-text-body);
}

/* ===== SIDEBAR ===== */
#sidebar-area {
    background-color: #0f0f11;
}

#sidebar-area .side-menu-about .title {
    color: var(--tl-color-heading-primary);
}

#sidebar-area .side-menu-list li,
#sidebar-area .side-menu-list li a {
    color: var(--tl-color-text-body);
    border-color: #2a2a30;
}

/* ===== MOBILE MENU ===== */
.mobile-side-menu {
    background-color: #0f0f11;
}

/* ===== POPUP SEARCH ===== */
#popup-search-box {
    background-color: #131315;
}

#popup-search-box input {
    background-color: transparent;
    color: var(--tl-color-heading-primary);
    border-color: #2a2a30;
}

/* ===== SCROLL PERCENTAGE ===== */
#scroll-percentage {
    background-color: var(--dark-bg-card);
    color: var(--tl-color-heading-primary);
}

/* ===== FOOTER ===== */
.footer-section {
    background-color: #0a0a0c;
}

.footer-section .footer-widget p {
    color: var(--tl-color-text-body);
}

.footer-section .footer-list li a {
    color: var(--tl-color-text-body);
}

.footer-section .footer-list li a:hover {
    color: var(--tl-color-theme-primary);
}

.footer-section .footer-address .number,
.footer-section .footer-address .mail {
    color: var(--tl-color-text-body);
}

.copyright-area {
    background-color: #080809;
    border-top-color: #1e1e22;
}

.copyright-area p {
    color: var(--tl-color-grey-1);
}

.footer-text span {
    color: rgba(255, 255, 255, 0.03);
}

/* ===== PRELOADER ===== */
/* ===== PRELOADER ===== */
.preloader {
    background: radial-gradient(ellipse 80% 60% at 50% 42%, #1c1710 0%, #0f0f11 65%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    clip-path: none !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* Subtle gold radial glow */
.prl-glow-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 500px at 50% 42%, rgba(202,160,92,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Corner decorations */
.prl-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: prl-corner-in 0.8s 0.5s ease forwards;
}
.prl-tl { top: 36px;  left: 44px;  border-top: 1px solid rgba(202,160,92,0.35); border-left: 1px solid rgba(202,160,92,0.35); }
.prl-tr { top: 36px;  right: 44px; border-top: 1px solid rgba(202,160,92,0.35); border-right: 1px solid rgba(202,160,92,0.35); }
.prl-bl { bottom: 36px; left: 44px;  border-bottom: 1px solid rgba(202,160,92,0.35); border-left: 1px solid rgba(202,160,92,0.35); }
.prl-br { bottom: 36px; right: 44px; border-bottom: 1px solid rgba(202,160,92,0.35); border-right: 1px solid rgba(202,160,92,0.35); }

@keyframes prl-corner-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Center content */
.prl-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* Logo */
.prl-logo {
    animation: prl-in 1s cubic-bezier(0.4, 0, 0.2, 1) both;
    filter: drop-shadow(0 0 32px rgba(202,160,92,0.18));
}
.prl-logo img {
    width: 240px;
    height: auto;
    display: block;
}

@keyframes prl-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Ornament: line — diamond — line */
.prl-ornament {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 250px;
    animation: prl-in 1s 0.12s ease both;
}
.prl-orn-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(202,160,92,0.55));
}
.prl-orn-line-r {
    background: linear-gradient(90deg, rgba(202,160,92,0.55), transparent);
}
.prl-orn-diamond {
    width: 5px;
    height: 5px;
    background: #daa72a;
    transform: rotate(45deg);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(202,160,92,0.7);
}

/* Tagline */
.prl-tagline {
      font-size: 12px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgb(255 255 255 / 22%);
    margin: -10px 0 0;
    font-family: inherit;
    animation: prl-in 1s 0.22s ease both;
}

/* Progress bar */
.prl-line-wrap {
    width: 280px;
    animation: prl-in 1s 0.32s ease both;
}

.preloader-gutters {
    position: static !important;
    width: 100% !important;
    height: 2px !important;
    background: rgba(202,160,92,0.12) !important;
    border-radius: 4px !important;
    overflow: visible !important;
    display: flex !important;
    z-index: auto !important;
}

.preloader-gutters .bar {
    flex: 1 !important;
    height: 100% !important;
    background: transparent !important;
    position: relative !important;
    overflow: hidden !important;
}

.preloader-gutters .inner-bar {
    background: linear-gradient(90deg, #a07840 0%, #daa72a 50%, #f0d4a0 100%) !important;
    height: 100% !important;
    box-shadow: 3px 0 10px rgba(202,160,92,0.85) !important;
    border-radius: 0 4px 4px 0 !important;
}

/* ===== PROGRESS BAR ===== */
.progress {
    background-color: #252528 !important;
}

/* ===== SWIPER NAV ===== */
.swiper-nav {
    background-color: var(--dark-bg-card) !important;
    color: var(--tl-color-heading-primary) !important;
    border-color: #2a2a30 !important;
}

.swiper-nav:hover {
    background-color: var(--tl-color-theme-primary) !important;
}

/* ===== BORDER OVERRIDES ===== */
.border-top,
.border-bottom,
.border {
    border-color: #2a2a30 !important;
}

/* ===== ABOUT COUNTER ===== */
.counter-content h3 {
    color: var(--tl-color-heading-primary);
}

.counter-content p {
    color: var(--tl-color-text-body);
}

/* ===== ABOUT DESC ===== */
.about-desc p {
    color: var(--tl-color-text-body);
}

/* ===== TESTI TOP RATING ===== */
.testi-top-content .left-content .rating {
    color: var(--tl-color-heading-primary);
}

/* ===== SECTION SHAPE ===== */
.section-heading-wrap .shape img {
    opacity: 0.15;
}

/* ===== GALLERY SECTION ===== */
.gallary-section-2 {
    background-color: var(--dark-bg-primary);
}

/* ===== SKILL SECTION SHAPE ===== */
.skill-section .shape-1 img {
    opacity: 0.06;
}

/* ===== PROJECT-7 HOVER — TEMİZ OVERRIDE ===== */

/* Resim zoom */
.project-item-7 .project-thumb img {
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) !important;
    transform: scale(1) !important;
}

.project-item-7:hover .project-thumb img {
    transform: scale(1.06) !important;
}

/* Overlay — sadece tıklanabilir alan, arka plan animasyonu yok */
.project-hover-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 4 !important;
    border-radius: 24px !important;
    background: rgba(0, 0, 0, 0) !important;
    display: block !important;
    transition: background 0.65s ease !important;
}

.project-item-7:hover .project-hover-overlay {
    background: rgba(0, 0, 0, 0.28) !important;
}

/* Ok butonu — başlangıçta görünmez, sağ üstte */
.project-hover-btn {
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 18px !important;
    opacity: 0 !important;
    transform: scale(0.65) rotate(-45deg) !important;
    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        border-color 0.3s ease !important;
}

.project-item-7:hover .project-hover-btn {
    opacity: 1 !important;
    transform: scale(1) rotate(0deg) !important;
}

.project-item-7:hover .project-hover-overlay:hover .project-hover-btn {
    background: var(--tl-color-theme-primary) !important;
    border-color: var(--tl-color-theme-primary) !important;
}

/* Başlık renk geçişi */
.project-item-7 .project-content .title a {
    transition: color 0.35s ease !important;
}

.project-item-7:hover .project-content .title a {
    color: var(--tl-color-theme-primary) !important;
}

/* ===== ÇALIŞMA SÜRECİMİZ ===== */
.steps-section {
    --brand: #dcaa2d;
    --brand-soft: rgba(202, 160, 92, 0.10);
    --ink: #fdf8f0;
    --text: #fdf8f0;
    --muted: #9f9fa4;
    --line: #2a2a30;
    --bg: #0f0f11;
    --bg-soft: #1a1a1d;
    --transition: 450ms cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.steps-section .wave-field {
    position: absolute;
    right: -100px;
    top: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 30%, rgba(202, 160, 92, 0.06), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(202, 160, 92, 0.04), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: spFloatWave 8s ease-in-out infinite;
}

@keyframes spFloatWave {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 20px);
    }
}

.steps-container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.steps-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 6fr);
    gap: 50px;
    min-height: 675px;
    align-items: stretch;
}

.steps-section .title-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding-top: 20px;
}

.steps-section .title-text h4 {
    margin: 0;
    font-size: 44px;
    font-weight: normal;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.steps-section .title-text .accent {
    color: var(--brand);
    font-weight: 600;
    display: inline-block;
}

.steps-section .lead-text {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 360px;
}

.steps-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    background: var(--brand);
    color: #fff;
    padding: 6px 6px 6px 24px;
    border-radius: 16px;
    height: 50px;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--brand);
}

.steps-section .cta-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #a3832e;
    transform: translateX(-100%);
    transition: transform var(--transition);
    z-index: 0;
}

.steps-section .cta-button:hover::before {
    transform: translateX(0);
}

.steps-section .cta-button .label {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.steps-section .cta-button .arrow {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #0a0a0a;
    transform: rotate(-45deg);
    transition: transform var(--transition);
}

.steps-section .cta-button:hover .arrow {
    transform: rotate(0deg);
}

.steps-section .content-field {
    position: relative;
}

.steps-section .circle-stage {
    position: relative;
    width: 675px;
    height: 675px;
    max-width: 100%;
}

.steps-section .ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--line);
    -webkit-mask-image: linear-gradient(135deg, black 0%, black 35%, transparent 65%, transparent 100%);
    mask-image: linear-gradient(135deg, black 0%, black 35%, transparent 65%, transparent 100%);
}

.steps-section .nodes {
    position: absolute;
    inset: 0;
}

.steps-section .node {
    position: absolute;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.steps-section .node .node-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    display: grid;
    place-items: center;
    transition: all var(--transition);
    z-index: 2;
}

.steps-section .node .icon-default,
.steps-section .node .icon-active {
    position: absolute;
    width: 36px;
    height: 36px;
    color: #c8c8c8;
    transition: opacity var(--transition);
}

.steps-section .node .icon-active {
    opacity: 0;
    color: #fff;
}

.steps-section .node:hover .node-inner,
.steps-section .node.is-active .node-inner {
    background: var(--brand);
    border-color: var(--brand);
}

.steps-section .node:hover .icon-default,
.steps-section .node.is-active .icon-default {
    opacity: 0;
}

.steps-section .node:hover .icon-active,
.steps-section .node.is-active .icon-active {
    opacity: 1;
}

.steps-section .ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--brand);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.steps-section .node.is-active .ripple {
    animation: spRipple 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.steps-section .node.is-active .ripple:nth-child(2) {
    animation-delay: 0.8s;
}

.steps-section .node.is-active .ripple:nth-child(3) {
    animation-delay: 1.6s;
}

@keyframes spRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

.steps-section .node-label {
  position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    transition: color var(--transition);
    pointer-events: none;
}

.steps-section .node:hover .node-label,
.steps-section .node.is-active .node-label {
    color: var(--brand);
}

.steps-section .image-stage {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.steps-section .image-slide {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 700ms ease, transform 700ms ease;
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.5);
}

.steps-section .image-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.steps-section .image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.steps-section .image-slide::after {
    content: attr(data-step);
    position: absolute;
    top: 24px;
    left: 24px;
   background: #00000061;
    backdrop-filter: brightness(1.5) blur(10px);
    -webkit-backdrop-filter: brightness(1.5) blur(10px);
    color: #ffffff;
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    backdrop-filter: blur(4px);
}

.steps-section .text-panel {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(calc(-50% + 80px));
    max-width: 480px;
    z-index: 5;
}

.steps-section .text-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
    pointer-events: none;
}

.steps-section .text-slide.is-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.steps-section .text-slide .step-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
}

.steps-section .text-slide .step-meta::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--brand);
}

.steps-section .text-slide h4 {
    color: var(--brand);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.steps-section .text-slide p {
    font-size: 17px;
    line-height: 1.55;
    color: var(--text);
    margin: 0;
}

.steps-section .carousel-nav {
    display: none;
    gap: 14px;
    margin-top: 24px;
    justify-content: center;
}

.steps-section .nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(202, 160, 92, 0.2);
    background: var(--brand-soft);
    color: var(--brand);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 16px;
}

.steps-section .nav-btn:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

@media (max-width: 1100px) {
    .steps-wrapper {
        grid-template-columns: 1fr;
    }

    .steps-section .circle-stage {
        margin: 0 auto;
    }

    .steps-section .text-panel {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 30px auto 0;
        max-width: 100%;
        text-align: center;
    }

    .steps-section .text-slide {
        position: absolute;
    }

    .steps-section .text-slide.is-active {
        position: relative;
    }

    .steps-section .text-slide .step-meta {
        justify-content: center;
    }

    .steps-section .lead-text {
        max-width: 100%;
    }
}

@media (max-width: 720px) {
    .steps-container {
        padding: 0 20px;
    }

    .steps-section .title-text h4 {
        font-size: 28px;
    }

    .steps-section .circle-stage {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        max-width: 420px;
    }

    .steps-section .ring,
    .steps-section .nodes,
    .steps-section .image-stage {
        display: none;
    }

    .steps-section .text-panel {
        margin-top: 0;
    }

    .steps-section .text-slide h4 {
        font-size: 24px;
    }

    .steps-section .text-slide p {
        font-size: 15px;
    }

    .steps-section .mobile-image {
        display: block;
        width: 100%;
        aspect-ratio: 16/10;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .steps-section .mobile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .steps-section .carousel-nav {
        display: flex;
    }
}

@media (min-width: 721px) {
    .steps-section .mobile-image {
        display: none;
    }
}

/* ===== STEPS: ring arkada, node'lar önde ===== */
.steps-section .ring {
    z-index: 1;
}

.steps-section .nodes {
    z-index: 3;
}

.steps-section .image-stage {
    z-index: 2;
}

.steps-section .node {
    z-index: 3;
}

.steps-section .node .node-inner {
    z-index: 4;
}

.steps-section .ripple {
    z-index: 3;
}

/* ===== STEPS: ring kesin arkada, node'lar kesin önde ===== */
.steps-section .circle-stage {
    isolation: isolate;
}

.steps-section .ring {
    z-index: 1 !important;
    position: absolute !important;
}

.steps-section .image-stage {
    z-index: 2 !important;
    position: absolute !important;
}

.steps-section .nodes {
    z-index: 3 !important;
    position: absolute !important;
}

.steps-section .node {
    z-index: 4 !important;
    position: absolute !important;
}

.steps-section .node .node-inner {
    z-index: 5 !important;
    position: relative !important;
}

.steps-section .ripple {
    z-index: 3 !important;
}

/* Node'lar circle-stage dışına taşabilsin */
.steps-section .circle-stage,
.steps-section .nodes {
    overflow: visible !important;
}
/* image-slide::after — overflow:hidden ile çevre içinde kalacak pozisyon */
.steps-section .image-slide::after {
    top: 55px !important;
    left: 55px !important;
}

/* =============================================
   FOOTER — .footer-field
   ============================================= */
.footer-field {
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
    z-index: 10;
}

.footer-field .circle-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.08;
    background: linear-gradient(180deg, #daa72a 0%, #F5D78E 100%);
    animation: footerRotateLeft 30s linear infinite;
}

.footer-field .circle-deco .inner-mask {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: #0f0f11;
    border-radius: 50%;
}

.footer-field .circle-deco.left {
    left: 12%;
    top: 60%;
    width: 1400px;
    height: 1400px;
    transform: translateX(-50%);
}

.footer-field .circle-deco.right {
    right: -32%;
    top: -80%;
    width: 1000px;
    height: 1000px;
    animation: footerRotateRight 30s linear infinite;
}

@keyframes footerRotateLeft {
    from { transform: translateX(-50%) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg); }
}
@keyframes footerRotateRight {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.footer-field .footer-ct {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.footer-field .footer-wr {
    position: relative;
}

/* Vertical animated lines */
.footer-field .v-line {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    z-index: 5;
}
.footer-field .v-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: -100px;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(202,160,92,0.8), rgba(255,255,255,0));
    animation: footerLightDown 4s ease-in-out infinite;
}
.footer-field .v-line.l-left   { left: 40px; }
.footer-field .v-line.l-left::before  { animation-delay: 0s; }
.footer-field .v-line.l-center { left: 50%; transform: translateX(-50%); }
.footer-field .v-line.l-center::before { animation-delay: 1.5s; }
.footer-field .v-line.l-right  { right: 50px; }
.footer-field .v-line.l-right::before { animation-delay: 3s; }

@keyframes footerLightDown {
    0%   { top: -100px; }
    100% { top: 100%; }
}

/* Horizontal animated lines */
.footer-field .h-line {
    position: absolute;
    left: 0;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}
.footer-field .h-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(202,160,92,0.9), rgba(255,255,255,0));
    animation: footerLightRight 5s ease-in-out infinite;
}
.footer-field .h-line.top    { top: 0; }
.footer-field .h-line.bottom { bottom: 0; }
.footer-field .h-line.bottom::before { animation-delay: 2.5s; }

@keyframes footerLightRight {
    0%   { left: -100px; }
    100% { left: 100%; }
}

/* Inner footer card */
.footer-field .footer-inner {
    /* background: linear-gradient(282deg, #daa72a 1.85%, #5C3510 89.94%); */
    background: black;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 80px 75px 50px;
    position: relative;
    gap: 60px;
}

/* ---------- LEFT SIDE ---------- */
.footer-field .information-field {
    display: flex;
    flex-direction: column;
    gap: 50px;
    min-width: 0;
}

.footer-field .logo-field {
    display: block;
    text-decoration: none;
}

.footer-field .logo-field img {
    width: 260px;
    height: auto;
    max-width: 100%;
}

.footer-field .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-field .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    color: #fff;
}

.footer-field .contact-item .icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: #fff;
}

.footer-field .contact-item .fi-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    opacity: 0.9;
    color: #fff;
}

.footer-field .contact-item .fi-text {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.footer-field .contact-item.address .fi-text {
    font-size: 17px;
    line-height: 26px;
    font-weight: 400;
    max-width: 480px;
}

/* Social media */
.footer-field .social-media-field {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-field .social-media-field a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    text-decoration: none;
    transition: color 350ms ease;
    display: block;
    line-height: 1;
}

.footer-field .social-media-field a:hover { color: #fff; }

.footer-field .social-media-field a svg {
    width: 22px;
    height: 22px;
}

/* Bottom links row */
.footer-field .legal-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
   margin-top: 36px;
}

.footer-field .legal-links a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    transition: opacity 350ms ease;
}

.footer-field .legal-links a:hover { opacity: 0.5; }

/* ---------- RIGHT SIDE ---------- */
.footer-field .right-field {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    min-width: 0;
}

.footer-field .cta-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-field .fi-cta-title {
    color: #fff;
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: -0.64px;
    max-width: 500px;
}

.footer-field .fi-cta-title span {
    display: block;
    opacity: 0.45;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
}

.footer-field .fi-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 999px;
    width: fit-content;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    transition: background 350ms ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-field .fi-cta-btn:hover {
    background: rgba(255,255,255,0.28);
    color: #fff;
}

.footer-field .fi-cta-btn svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

/* Pages field */
.footer-field .pages-field {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    padding: 30px 0;
    overflow: hidden;
    flex-wrap: wrap;
}

.footer-field .pages-field a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 999px;
    transition: background 350ms ease, color 350ms ease;
    white-space: nowrap;
}

.footer-field .pages-field a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.footer-field .fi-copyright {
    display: flex;
    padding: 0;
    margin-top: 20px;
}

.fi-copyright.design {
    justify-content: flex-end;
    margin-top: 0;
    align-items: center;
    gap: 8px;
}

.fi-copyright.design p {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fi-copyright.design .design-credit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.fi-copyright.design .design-credit:hover {
    opacity: 1;
}

.fi-copyright.design .design-credit span {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 1px;
    transition: border-color 0.3s ease;
}

.fi-copyright.design .design-credit:hover span {
    border-color: rgba(255,255,255,0.8);
}
.footer-field .fi-copyright p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 22px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1440px) {
    .footer-field .footer-inner {
        padding: 60px 40px 40px;
        gap: 40px;
    }
    .footer-field .logo-field img { width: 220px; }
    .footer-field .contact-item .fi-text { font-size: 22px; line-height: 30px; }
    .footer-field .contact-item.address .fi-text { font-size: 15px; line-height: 24px; }
    .footer-field .fi-cta-title { font-size: 26px; line-height: 34px; }
    .footer-field .information-field { gap: 40px; }
}

@media (max-width: 1024px) {
    .footer-field .footer-inner {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 50px 40px;
    }
    .footer-field .v-line { display: none; }
    .footer-field .pages-field {
        justify-content: flex-start;
        gap: 8px;
        padding: 20px 0;
    }
    .footer-field .pages-field a {
        padding: 6px 12px;
        font-size: 14px;
    }
    .footer-field .h-line { display: none; }
    .footer-field .fi-copyright { justify-content: flex-start; }
}

@media (max-width: 720px) {
    .footer-field .footer-ct { padding: 0; }
    .footer-field .footer-inner {
        border-radius: 0;
        padding: 30px;
        gap: 30px;
    }
    .footer-field .logo-field img { width: 180px; }
    .footer-field .contact-grid { gap: 20px; }
    .footer-field .contact-item { gap: 12px; }
    .footer-field .contact-item .icon { width: 28px; height: 28px; }
    .footer-field .contact-item .fi-text { font-size: 18px; line-height: 26px; }
    .footer-field .contact-item.address .fi-text { font-size: 14px; line-height: 22px; }
    .footer-field .fi-cta-title { font-size: 22px; line-height: 30px; }
    .footer-field .fi-cta-btn { padding: 12px 20px; font-size: 15px; }
    .footer-field .social-media-field { gap: 18px; }
    .footer-field .pages-field { padding: 0; }
    .footer-field .legal-links { gap: 10px 16px; margin-top: 15px; }
    .footer-field .legal-links a { font-size: 12px; }
    .footer-field .fi-copyright p { font-size: 12px; }
}

/* =============================================
   KARİYER FORMU
   ============================================= */
.kariyer-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kariyer-form .form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--tl-color-text-body);
    opacity: 0.85;
}

.kariyer-form .form-group .req {
    color: var(--tl-color-theme-primary);
}

.kariyer-form input[type="text"],
.kariyer-form input[type="email"],
.kariyer-form input[type="tel"],
.kariyer-form select,
.kariyer-form textarea {
    width: 100%;
    background: var(--dark-bg-card);
    border: 1px solid var(--tl-color-border-1);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--tl-color-text-body);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.kariyer-form input::placeholder,
.kariyer-form textarea::placeholder {
    color: var(--tl-color-grey-1);
}

.kariyer-form input:focus,
.kariyer-form select:focus,
.kariyer-form textarea:focus {
    border-color: var(--tl-color-theme-primary);
    box-shadow: 0 0 0 3px rgba(202, 160, 92, 0.12);
}

.kariyer-form select option {
    background: var(--dark-bg-card);
    color: var(--tl-color-text-body);
}

.kariyer-form textarea {
    resize: vertical;
    min-height: 130px;
}

/* CV Yükleme */
.file-upload-wrap {
    position: relative;
}

.file-upload-wrap input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    padding: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dark-bg-card);
    border: 1.5px dashed var(--tl-color-border-1);
    border-radius: 12px;
    padding: 18px 22px;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    color: var(--tl-color-grey-2);
    font-size: 15px;
}

.file-upload-label i {
    font-size: 22px;
    color: var(--tl-color-theme-primary);
}

.file-upload-wrap:hover .file-upload-label,
.file-upload-wrap input:focus + .file-upload-label {
    border-color: var(--tl-color-theme-primary);
    background: var(--dark-bg-secondary);
}

/* KVKK checkbox */
.kvkk-check .checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.kvkk-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--tl-color-theme-primary);
    cursor: pointer;
}

.kvkk-check .check-text {
    font-size: 13px;
    color: var(--tl-color-grey-2);
    line-height: 1.6;
}

.kvkk-check .check-text a {
    color: var(--tl-color-theme-primary);
    text-decoration: underline;
}

/* Form mesaj */
.kariyer-form .form-msg {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.kariyer-form .form-msg.success {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.kariyer-form .form-msg.error {
    background: rgba(220, 53, 69, 0.12);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

/* ============================================
   VİDEOLAR SAYFASI
   ============================================ */

.ibigil-videos-section.space {
    padding-top: 100px;
    padding-bottom: 100px;
}

.ibigil-video-card {
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1d;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ibigil-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 36px rgba(202, 160, 92, 0.18);
}

.ibigil-video-aspect {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.ibigil-video-aspect iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ============================================
   PAGE HEADER — BG-IMG CSS FALLBACK
   JS data-background çalışmadığında devreye girer
   ============================================ */
.page-header .bg-img {
    background-image: url('../img/bg-img/page-header-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================
   POPUP SEARCH — YENİ TASARIM
   ============================================ */

/* main.css'teki eski stilleri sıfırla */
#popup-search-box {
    background: transparent !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    z-index: 99999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 400ms ease, visibility 400ms ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: none !important;
}

#popup-search-box.toggled {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.psb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.psb-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    padding: 0 30px;
    transform: translateY(24px);
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
}

#popup-search-box.toggled .psb-inner {
    transform: translateY(0);
}

/* Kapat butonu */
.psb-close {
    position: absolute;
    top: 36px;
    right: 44px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 300ms ease;
}

.psb-close:hover {
    background: rgba(202, 160, 92, 0.15);
    border-color: rgba(202, 160, 92, 0.4);
    color: #daa72a;
}

/* Üst etiket */
.psb-label {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 22px;
    font-family: inherit;
}

/* Input */
.psb-form {
    width: 100%;
}

.psb-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0 20px;
    transition: border-color 300ms ease, box-shadow 300ms ease;
}

.psb-input-wrap:focus-within {
    border-color: rgba(202, 160, 92, 0.5);
    box-shadow: 0 0 0 4px rgba(202, 160, 92, 0.07);
}

.psb-icon {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    margin-right: 14px;
}

#popup-search-box #popup-search {
    flex: 1;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #f0ece6 !important;
    font-size: 26px !important;
    font-weight: 300 !important;
    padding: 24px 0 !important;
    letter-spacing: -0.3px;
    width: 100%;
    font-family: inherit;
}

#popup-search-box #popup-search::placeholder {
    color: rgba(255, 255, 255, 0.2) !important;
    font-size: 26px !important;
}

.psb-submit {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, #daa72a 0%, #5C3510 100%);
    border: none;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 300ms ease, transform 300ms ease;
}

.psb-submit:hover {
    opacity: 0.85;
    transform: translateX(2px);
}

/* Hızlı erişim */
.psb-quick {
    margin-top: 36px;
}

.psb-quick-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 14px;
    display: block;
}

.psb-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.psb-quick-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 300ms ease;
    background: rgba(255, 255, 255, 0.03);
}

.psb-quick-links a i {
    font-size: 12px;
    color: rgba(202, 160, 92, 0.7);
}

.psb-quick-links a:hover {
    border-color: rgba(202, 160, 92, 0.35);
    color: #daa72a;
    background: rgba(202, 160, 92, 0.06);
}

/* Eski .box-inner-wrap'i gizle */
#popup-search-box .box-inner-wrap {
    display: none !important;
}

@media (max-width: 600px) {
    #popup-search-box #popup-search { font-size: 20px !important; }
    #popup-search-box #popup-search::placeholder { font-size: 20px !important; }
    .psb-close { top: 20px; right: 20px; }
    .psb-inner { padding: 0 20px; }
}


/* ===== HIZLI İLETİŞİM POPUP ===== */
.contact-pop-box {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 6, 8, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.contact-pop-box.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-pop-dialog {
    position: relative;
    width: min(100%, 600px);
    padding: 40px 38px 32px;
    border-radius: 24px;
    border: 1px solid rgba(202, 160, 92, 0.18);
    background: linear-gradient(145deg, #111010 0%, #181410 60%, #1c1810 100%);
    box-shadow: 0 32px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(202,160,92,0.08);
    color: #fdf8f0;
    overflow: hidden;
    transform: translateY(28px) scale(0.97);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1), opacity 0.4s ease;
}
.contact-pop-box.show .contact-pop-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Köşe glow */
.contact-pop-dialog::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,160,92,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.contact-pop-dialog::after {
    content: "";
    position: absolute;
    left: -80px; bottom: -80px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,160,92,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Kapat butonu */
.contactPopClose {
    position: absolute;
    top: 16px; right: 16px;
    width: 42px; height: 42px;
    border: 1px solid rgba(202,160,92,0.2);
    border-radius: 50%;
    background: rgba(202,160,92,0.06);
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}
.contactPopClose:hover {
    background: rgba(202,160,92,0.18);
    border-color: rgba(202,160,92,0.55);
    color: #daa72a;
    transform: rotate(90deg);
}

/* Başlık */
.contact-pop-head {
    position: relative;
    z-index: 1;
    margin-bottom: 26px;
}
.contact-pop-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #daa72a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.contact-pop-head h3 {
    margin: 0 0 10px;
    color: #fdf8f0;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-right: 40px;
}
.contact-pop-head p {
    margin: 0;
    color: rgba(253,248,240,0.6);
    font-size: 14px;
    line-height: 1.7;
}

/* Form */
.contact-pop-form {
    position: relative;
    z-index: 1;
}
.contact-pop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}
.contact-pop-form .form-group { margin: 0; }
.contact-pop-form .form-group.full { grid-column: 1 / -1; }

.contact-pop-form .form-control {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(202,160,92,0.15);
    background: rgba(255,255,255,0.04);
    color: #fdf8f0;
    padding: 0 16px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.contact-pop-form .form-control:focus {
    border-color: rgba(202,160,92,0.55);
    background: rgba(202,160,92,0.05);
    box-shadow: 0 0 0 4px rgba(202,160,92,0.08);
}
.contact-pop-form .form-control::placeholder { color: rgba(253,248,240,0.35); }
.contact-pop-form textarea.form-control {
    height: auto;
    min-height: 100px;
    padding-top: 14px;
    resize: vertical;
}

/* Butonlar */
.contact-pop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.cpop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}
.cpop-btn-primary {
    background: linear-gradient(135deg, #daa72a 0%, #5C3510 100%);
    color: #fff;
}
.cpop-btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(202,160,92,0.3);
    color: #fff;
}
.cpop-btn-outline {
    background: transparent;
    border: 1px solid rgba(202,160,92,0.3);
    color: rgba(253,248,240,0.85);
}
.cpop-btn-outline:hover {
    border-color: rgba(202,160,92,0.7);
    background: rgba(202,160,92,0.08);
    color: #daa72a;
    transform: translateY(-2px);
}

.form-messages {
    margin: 0;
    font-size: 13px;
    color: rgba(202,160,92,0.9);
    min-height: 18px;
}

/* Alt link */
.contact-pop-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(253,248,240,0.45);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 4px;
}
.contact-pop-link:hover {
    color: #daa72a;
    transform: translateX(4px);
}

/* Mobil */
@media (max-width: 767px) {
    .contact-pop-box { padding: 16px; }
    .contact-pop-dialog { padding: 28px 20px 22px; border-radius: 18px; }
    .contact-pop-grid { grid-template-columns: 1fr; }
    .contact-pop-actions { flex-direction: column; }
    .cpop-btn { width: 100%; }
}



/* ===== HİZMET DETAY SIDEBAR ===== */

.service-details-left-content .service-category-list,
.service-details-left-content .service-details-cta {
    display: none !important;
}

/* Hizmet listesi */
.sdl-nav-card {
    background: #131315;
    border: 1px solid #222226;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
}

.sdl-nav-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fdf8f0;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #222226;
}

.sdl-nav-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sdl-nav-card ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    font-size: 15px;
    color: rgba(253,248,240,0.55);
    text-decoration: none;
    border-bottom: 1px solid #1c1c1f;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.sdl-nav-card ul li:last-child a {
    border-bottom: none;
}

.sdl-nav-card ul li a::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.25s ease;
    color: #daa72a;
}

.sdl-nav-card ul li a:hover {
    color: #fdf8f0;
    padding-left: 6px;
}

.sdl-nav-card ul li a:hover::after {
    opacity: 1;
}

.sdl-nav-card ul li.active a {
    color: #daa72a;
    font-weight: 600;
}

.sdl-nav-card ul li.active a::after {
    opacity: 1;
}

/* CTA kartı */
.sdl-cta-card {
    background: #131315;
    border: 1px solid #222226;
    border-top: 2px solid #daa72a;
    border-radius: 16px;
    padding: 30px;
}

.sdl-cta-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fdf8f0;
    line-height: 1.3;
    margin: 0 0 10px;
}

.sdl-cta-card > p {
    font-size: 14px;
    color: rgba(253,248,240,0.45);
    margin: 0 0 24px;
    line-height: 1.6;
}

.sdl-cta-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #fdf8f0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.sdl-cta-phone i {
    font-size: 16px;
    color: #daa72a;
}

.sdl-cta-phone:hover {
    color: #daa72a;
}

.sdl-cta-mail {
    display: block;
    font-size: 13px;
    color: rgba(253,248,240,0.4);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.sdl-cta-mail:hover {
    color: rgba(202,160,92,0.8);
}

.sdl-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(272deg, #ecc743, #daa72a);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: opacity 0.25s ease, transform 0.25s ease;
    font-family: inherit;
    border: none;
    cursor: pointer;
}

.sdl-cta-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    color: #fff;
}

/* ============================================================
   ANA SAYFA: tüm sarı/altın tonları beyaza çevir
   Yalnızca <body class="home-page"> kapsamında geçerlidir;
   diğer sayfalar etkilenmez. (Bu dosya en son yüklendiği için
   buradaki kurallar tüm sarı kuralların üzerine yazar.)
   ============================================================ */

/* 1) Tema değişkeni: değişkene bağlı tüm aksan/çizgi/hover/ikon dolgusu beyaza döner */
.home-page {
    --tl-color-theme-primary: #ffffff;
}

/* 2) "Bize Ulaşın" header butonu: sarı gradyan -> beyaz; yazı/ok okunur kalsın */
.home-page .header .primary-header-inner .header-right-wrap .header-btn,
.home-page .header .primary-header-inner .header-right-wrap .header-btn:hover {
    background: #ffffff;
    color: #1c1c1d;
}
.home-page .header .primary-header-inner .header-right-wrap .header-btn .icons {
    color: #1c1c1d;
}

/* 3) Primary butonların ikon dairesi artık beyaz; içindeki ok kaybolmasın */
.home-page .tl-primary-btn .icon {
    color: #1c1c1d;
}

/* 4) Sidebar (menü) elmas ikonu: altın gradyanlı SVG -> beyaz */
.home-page .sidebar-icon .sidebar-trigger svg {
    filter: brightness(0) invert(1);
}

/* 5) Preloader: elmas süsü ve ilerleme çubuğu -> beyaz */
.home-page .prl-orn-diamond {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}
.home-page .preloader-gutters .inner-bar {
    background: #ffffff !important;
}

/* 6) Footer süs dairesi: altın gradyan -> beyaz */
.home-page .footer-field .circle-deco {
    background: #ffffff;
}

/* 7) Arama pop-up'ı (psb-*): altın -> beyaz, yazılar okunur kalsın */
.home-page .psb-close:hover,
.home-page .psb-quick-links a:hover {
    color: #ffffff;
}
.home-page .psb-submit {
    background: #ffffff;
    color: #1c1c1d;
}

/* 8) İletişim pop-up'ı (cpop-* / contact-pop-*): altın -> beyaz, yazılar okunur kalsın */
.home-page .contact-pop-kicker,
.home-page .cpop-btn-outline:hover,
.home-page .contact-pop-link:hover {
    color: #ffffff;
}
.home-page .cpop-btn-primary {
    background: #ffffff;
    color: #1c1c1d;
}

/* 9) Header butonu hover durumunda ok yine altın oluyordu -> koyu yap */
.home-page .header .primary-header-inner .header-right-wrap .header-btn:hover .icons {
    color: #1c1c1d;
}

/* 10) "Çalışma Sürecimiz" (steps-section) kendi altın değişkenini tanımlıyor -> beyaz */
.home-page .steps-section {
    --brand: #ffffff;
    --brand-soft: rgba(255, 255, 255, 0.10);
}
/* Steps CTA butonu: zemin beyaz olunca beyaz yazı kaybolur -> yazı/etiket koyu */
.home-page .steps-section .cta-button,
.home-page .steps-section .cta-button .label {
    color: #1c1c1d;
}
/* Steps CTA butonunun hover dolgusu: altın -> beyaz */
.home-page .steps-section .cta-button::before {
    background: #ffffff;
}
