.ultra-gallery {
    column-count: 4;
    column-gap: 18px;
}

@media(max-width:1200px) {
    .ultra-gallery {
        column-count: 3;
    }
}

@media(max-width:768px) {
    .ultra-gallery {
        column-count: 2;
    }
}

@media(max-width:500px) {
    .ultra-gallery {
        column-count: 1;
    }
}

.ultra-gallery img {
    width: 100%;
    margin-bottom: 18px;
    border-radius: 14px;
    cursor: pointer;
    transition: .35s;
    break-inside: avoid;
}

.ultra-gallery img:hover {
    transform: scale(1.06);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .35);
}

.ultra-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: .35s;
    z-index: 99999;
}

.ultra-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.ultra-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.ultra-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: .3s;
}

.ultra-close:hover {
    color: #ed0000;
}

.ultra-nav {
    position: absolute;
    top: 50%;
    font-size: 55px;
    color: white;
    cursor: pointer;
    user-select: none;
    transition: .3s;
}

.ultra-nav:hover {
    color: #ed0000;
}

.ultra-prev {
    left: 40px;
}

.ultra-next {
    right: 40px;
}

.gallery-pagination {
    text-align: center;
    margin-top: 30px;
}

.gallery-pagination span {
    display: inline-block;
    padding: 10px 16px;
    margin: 5px;
    background: #eee;
    cursor: pointer;
    border-radius: 8px;
    transition: .3s;
}

.gallery-pagination span:hover {
    background: #ddd;
}

.gallery-pagination span.active {
    background: #ed0000;
    color: white;
}

 .about-designer {
     position: relative;
     overflow: hidden;
 }

 /* RESİM - DUVARA YAPIŞIK */
 .designer-image {
     position: absolute;
     right: 0;
     top: 0;
     width: 450px;
 }

 /* DIAGONAL MASK (EDITORIAL STYLE) */
 .designer-image img {
     width: 100%;
     height: 350px;
     object-fit: cover;
     clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
     box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
 }

 /* YAZI */
 .about-text {
     padding-right: 400px;
     line-height: 1.8;
 }

 /* SCROLL REVEAL */
 .reveal {
     opacity: 0;
     transform: translateY(40px);
     transition: all .8s ease;
 }

 .reveal.active {
     opacity: 1;
     transform: translateY(0);
 }

 /* RESPONSIVE */
 @media(max-width:1200px) {

     .designer-image {
         position: relative;
         width: 100%;
         margin-bottom: 25px;
     }

     .about-text {
         padding-right: 0;
     }

 }
 #preloader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #fff;
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .pre-container {
     position: relative;
     width: 50px;
     height: 50px;
 }

 .spinner .double-bounce1,
 .spinner .double-bounce2 {
     width: 100%;
     height: 100%;
     border-radius: 50%;
     background-color: #eb0000;
     opacity: .6;
     position: absolute;
     top: 0;
     left: 0;
     animation: bounce 2s infinite ease-in-out;
 }

 .spinner .double-bounce2 {
     animation-delay: -1s;
 }

 @keyframes bounce {

     0%,
     100% {
         transform: scale(0)
     }

     50% {
         transform: scale(1)
     }
 }

 .extreme-social {
     position: fixed;
     left: 20px;
     bottom: 20px;
     display: flex;
     flex-direction: column;
     gap: 15px;
     z-index: 9999;
 }

 .extreme-btn {
     width: 62px;
     height: 62px;
     border-radius: 50%;
     background: #ed0000;
     display: flex;
     justify-content: center;
     align-items: center;
     text-decoration: none;
     box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
     transition: .25s cubic-bezier(.2, .8, .2, 1);
     position: relative;
 }

 .extreme-btn svg {
     width: 30px;
     height: 30px;
 }

 .extreme-btn:hover {
     transform: translateY(-6px) scale(1.1);
     box-shadow: 0 18px 40px rgba(0, 0, 0, .35), 0 0 18px rgba(237, 0, 0, .7);
 }

 .extreme-btn::after {
     content: '';
     position: absolute;
     inset: -6px;
     border-radius: 50%;
     opacity: 0;
     transition: .3s;
     box-shadow: 0 0 20px rgba(237, 0, 0, .6);
 }

 .extreme-btn:hover::after {
     opacity: 1;
 }

 .extreme-btn:active {
     transform: scale(.92);
 }

 @media(max-width:768px) {
     .extreme-btn {
         width: 54px;
         height: 54px;
     }
 }

 /* HEADER */
 * {
     box-sizing: border-box;
     -webkit-tap-highlight-color: transparent
 }

 .site-header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 999;
     --site-header-bg: rgba(20, 20, 20, 0);
     --site-header-blur: 0px;
     --site-header-border: rgba(255, 255, 255, 0);
     background: rgba(0, 0, 0, 0);
     backdrop-filter: blur(0);
     transition: background .3s ease, backdrop-filter .3s ease;
 }

 .header-inner {
     max-width: 1300px;
     margin: auto;
     padding: 14px 28px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     transform-origin: top center;
     transition: transform .25s cubic-bezier(.4, 0, .2, 1), padding .25s cubic-bezier(.4, 0, .2, 1);
 }

 .logo img {
     height: 50px;
     transition: transform .25s cubic-bezier(.4, 0, .2, 1), filter .3s ease;
 }

 .logo a {
     position: relative;
     display: inline-block
 }

 .logo a::after {
     content: '';
     position: absolute;
     left: 50%;
     bottom: -5px;
     width: 0;
     height: 2px;
     background: linear-gradient(90deg, #ff0000, #ff6a00);
     transform: translateX(-50%);
     transition: .3s;
 }

 .logo a:hover img {
     transform: scale(1.08);
     filter: drop-shadow(0 0 12px rgba(255, 0, 0, .7));
 }

 .logo a:hover::after {
     width: 70%
 }

 .nav-desktop > ul {
     list-style: none;
     display: flex;
     gap: 26px;
     margin: 0;
     padding: 0;
     align-items: center;
 }

 .nav-desktop li {
     position: relative;
 }

 .nav-desktop a,
 .nav-desktop .nav-dropdown-link {
     color: #fff;
     font-size: 13px;
     font-weight: 700;
     text-decoration: none;
     position: relative;
 }

 .nav-desktop .nav-dropdown-link {
     border: 0;
     background: transparent;
     padding: 0;
     font-family: inherit;
     letter-spacing: inherit;
     cursor: pointer;
 }

 .nav-desktop a::after,
 .nav-desktop .nav-dropdown-link::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -4px;
     width: 0;
     height: 2px;
     background: #ed0000;
     transition: .2s;
 }

 .nav-desktop a:hover,
 .nav-desktop .nav-dropdown-link:hover {
     color: #ed0000
 }

 .nav-desktop a:hover::after,
 .nav-desktop .nav-dropdown-link:hover::after {
     width: 100%
 }

 .nav-desktop li.is-active>a,
 .nav-mobile li.is-active>a,
 .nav-mobile li.is-active>.mobile-dropdown-row>.mobile-parent-link,
 .nav-dropdown.is-active>.nav-dropdown-link {
     color: #ed0000;
 }

 .nav-desktop li.is-active>a::after,
 .nav-dropdown.is-active>.nav-dropdown-link::after {
     width: 100%;
 }

 .nav-dropdown {
     position: relative;
  }

 @keyframes navDropdownSlideDown {
     0% {
         opacity: 0;
         transform: translateY(-10px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .nav-dropdown-link {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     cursor: pointer;
     transition: color .22s ease;
 }

 .nav-dropdown-link i {
     font-size: 12px;
     transition: transform .22s ease, color .22s ease;
     margin-top: 1px;
     color: rgba(255, 255, 255, .82);
  }

 .nav-dropdown:hover>.nav-dropdown-link i,
 .nav-dropdown.is-open>.nav-dropdown-link i,
 .nav-dropdown.is-active>.nav-dropdown-link i {
     transform: rotate(180deg);
     color: #ed0000;
 }

 .nav-submenu {
     list-style: none;
     display: block;
     margin: 0;
     padding: 8px 0;
     min-width: 270px;
     max-width: 320px;
     position: absolute;
     top: calc(100% + 8px);
     left: 0;
     background: var(--site-header-bg);
     border-top: 2px solid rgba(237, 0, 0, .92);
     border-left: 1px solid var(--site-header-border);
     border-right: 1px solid var(--site-header-border);
     border-bottom: 1px solid var(--site-header-border);
     border-radius: 0;
     box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
     backdrop-filter: blur(var(--site-header-blur));
     -webkit-backdrop-filter: blur(var(--site-header-blur));
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
     z-index: 30;
     overflow: visible;
     transform-origin: top left;
  }

 .nav-submenu::before {
     display: none;
  }

  .nav-submenu li {
      display: block;
      width: 100%;
  }

  .nav-submenu li + li {
      border-top: 0;
  }

  .nav-submenu a {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: .02em;
     line-height: 1.3;
     padding: 8px 14px;
     border-radius: 0;
     color: #fff;
     white-space: nowrap;
     transition: background .22s ease, color .22s ease, transform .22s ease;
  }

 .nav-submenu a::after {
     display: none;
 }

 .nav-submenu li.is-active>a,
  .nav-submenu a:hover {
     background: rgba(255, 255, 255, .05);
     color: #ed0000;
     transform: translateX(0);
  }

  .nav-submenu-dot {
     display: none;
  }

  .nav-submenu-empty {
     padding: 8px 14px;
     color: rgba(255, 255, 255, .68);
     font-size: 13px;
     font-weight: 600;
  }

 .nav-desktop .nav-dropdown:hover>.nav-submenu,
 .nav-desktop .nav-dropdown.is-open>.nav-submenu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
     animation: navDropdownSlideDown .22s ease forwards;
  }

 .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
 }

 .hamburger span {
     width: 28px;
     height: 2.5px;
     background: #fff;
     border-radius: 2px;
     transition: .3s;
 }

 .hamburger.active span:nth-child(1) {
     transform: rotate(45deg) translate(6px, 6px)
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0
 }

 .hamburger.active span:nth-child(3) {
     transform: rotate(-45deg) translate(6px, -6px)
 }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(4, 4, 4, .97) 0%, rgba(10, 10, 10, .98) 100%);
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 96px 24px 40px;
 }

 .mobile-menu-overlay.active {
     display: flex;
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
 }

 .nav-mobile {
     width: 100%;
     max-width: 380px;
     opacity: 0;
     transform: translateY(-18px);
     transition: opacity .26s ease, transform .26s ease;
  }

 .mobile-menu-overlay.active .nav-mobile {
     opacity: 1;
     transform: translateY(0);
  }

 .mobile-close {
     position: absolute;
     top: 20px;
     right: 25px;
     font-size: 42px;
     color: #fff;
     cursor: pointer;
 }

 .nav-mobile>ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 24px;
     padding: 0;
     margin: 0;
     text-align: center;
     width: auto;
  }

 .nav-mobile a {
     color: #fff;
     font-size: 24px;
     font-weight: 800;
     text-decoration: none;
 }

.mobile-dropdown-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
 }

.nav-mobile .nav-dropdown {
    width: 100%;
 }

 .mobile-parent-link {
     flex: 0 1 auto;
     border: 0;
     background: transparent;
     color: #fff;
     font-size: 23px;
     font-weight: 800;
     padding: 0;
     font-family: inherit;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     line-height: 1.2;
     transition: color .22s ease;
  }

.nav-mobile .nav-submenu {
    position: static;
    min-width: 0;
    max-width: 360px;
     width: min(100%, 360px);
     padding: 6px 0;
     margin: 16px auto 0;
     border: 1px solid rgba(255, 255, 255, .09);
     border-radius: 10px;
     box-shadow: 0 16px 32px rgba(0, 0, 0, .20);
     background: rgba(14, 14, 14, .34);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     opacity: 0;
     visibility: hidden;
     overflow: hidden;
     transform: translateY(-12px);
     display: none;
     transform-origin: top center;
     transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
 }

 .nav-mobile .nav-submenu::before {
     display: none;
 }

 .nav-mobile .nav-submenu li + li {
     border-top: 1px solid rgba(255, 255, 255, .06);
  }

  .nav-mobile .nav-submenu a {
      justify-content: flex-start;
      gap: 10px;
      font-size: 15px;
      font-weight: 600;
      color: rgba(255, 255, 255, .84);
      padding: 12px 20px;
      text-align: left;
      line-height: 1.45;
      transition: color .22s ease, background .22s ease;
  }

 .nav-mobile .nav-submenu .nav-submenu-dot {
     flex-shrink: 0;
  }

 .nav-mobile .nav-submenu li.is-active>a,
 .nav-mobile .nav-submenu a:hover {
     color: #ed0000;
      background: rgba(255, 255, 255, .04);
  }

.nav-mobile .nav-dropdown.is-open>.nav-submenu {
     display: block;
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
     animation: navDropdownSlideDown .24s ease forwards;
  }

 .nav-mobile .nav-submenu-empty {
     text-align: center;
     padding: 10px 16px;
  }

 @media(max-width:1200px) {
     .nav-desktop ul {
         gap: 20px;
     }
 }

 @media(max-width:1100px) {
     .nav-submenu {
         min-width: 190px;
     }
 }

 @media(max-width:991px) {
     .nav-desktop {
         display: none
     }

     .hamburger {
         display: flex
     }
 }
 .god-form {
     max-width: 100%;
     margin-top: 0px;
     font-family: 'Poppins', sans-serif;
 }

 .grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
 }

 .label {
     font-weight: 600;
     margin-top: 12px;
     display: block;
     font-size: 14px;
 }

 .input-wrap {
     position: relative;
     margin-top: 5px;
 }

 .input-wrap i {
     position: absolute;
     left: 14px;
     top: 50%;
     transform: translateY(-50%);
     color: #aaa;
     font-size: 14px;
 }

 .input {
     width: 100%;
     padding: 14px 14px 14px 40px;
     border-radius: 8px;
     border: 1px solid #e5e5e5;
     background: #fafafa;
     outline: none;
     transition: .2s;
     font-size: 14px;
 }

 textarea.input {
     min-height: 120px;
     resize: none;
 }

 .input:focus {
     border-color: #ff0000;
 }

 .submit {
     margin-top: 18px;
     border: none;
     padding: 13px 38px;
     border-radius: 8px;
     background: black;
     color: white;
     font-weight: 700;
     cursor: pointer;
     transition: .2s;
     outline: none !important;
     box-shadow: none !important;
 }

 .submit:hover {
     background: #ff0000;
 }

 .submit:active {
     background: #cc0000;
 }

 /* GOD WARNING */

 .warning {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%) scale(.9);
     background: #ff0000;
     color: white;
     padding: 18px 30px;
     border-radius: 10px;
     font-weight: 700;
     font-size: 16px;
     opacity: 0;
     transition: .3s;
     z-index: 9999;
 }

 .warning.show {
     opacity: 1;
     transform: translate(-50%, -50%) scale(1);
 }

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

 .contact-wrap {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 5px;
     align-items: start;
 }

 .info-panel {
     background: #fafafa;
     border-radius: 12px;
     padding: 30px;
     border: 1px solid #eee;
     font-family: 'Poppins', sans-serif;
 }

 .info-item {
     margin-bottom: 28px;
 }

 .info-title {
     font-weight: 700;
     font-size: 18px;
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .info-title i {
     color: #ff0000;
 }

 .info-text {
     font-size: 14px;
     color: #555;
     line-height: 1.6;
 }

 @media(max-width:900px) {
     .contact-wrap {
         grid-template-columns: 1fr;
     }
 }
 .fullwidth-slider {
     position: relative;
     width: 100%;
     height: 500px;
     overflow: hidden;
 }

 .fullwidth-slider .slide {
     position: absolute;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1s ease, transform 10s ease;
 }

 .fullwidth-slider .slide.active {
     opacity: 1;
     z-index: 1;
     transform: scale(1.05);
 }

 .fullwidth-slider img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .fullwidth-slider .slider-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.25);
     z-index: 2;
     pointer-events: none;
 }

 .slider-nav {
     position: absolute;
     top: 50%;
     width: 100%;
     display: flex;
     justify-content: space-between;
     transform: translateY(-50%);
     z-index: 3;
     padding: 0 20px;
     box-sizing: border-box;
 }

 .slider-nav span {
     cursor: pointer;
     background: rgba(0, 0, 0, 0.3);
     color: #fff;
     padding: 15px 20px;
     font-size: 30px;
     font-weight: bold;
     transition: background 0.3s;
 }

 .slider-nav span:hover {
     background: rgba(0, 0, 0, 0.5);
 }

 @media(max-width:768px) {
     .fullwidth-slider {
         height: 300px;
     }

     .slider-nav span {
         font-size: 24px;
         padding: 10px 15px;
     }
 }
.god-form {
    max-width: 920px;
    margin: auto;
    padding: 55px 45px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .08);
}

/* BAŞLIKLAR */
.section-title {
    font-size: 24px;
    font-weight: 900;
    margin: 60px 0 20px;
    padding-bottom: 12px;
}

.section-desc {
    color: #666;
    margin-bottom: 30px
}

/* INPUT */
.label {
    font-weight: 700;
    margin-top: 22px;
    display: block
}

.input-wrap {
    position: relative;
    margin-top: 10px
}

.input-wrap i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.input {
    width: 100%;
    padding: 18px 18px 18px 52px;
    border-radius: 12px;
    border: 2px solid #eee;
    background: #fafafa;
    font-size: 16px;
    transition: .25s;
}

.input:focus {
    outline: none;
    border-color: #ff0000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, .12);
}

textarea.input {
    min-height: 140px;
    resize: none
}

/* RADIO */
.radio-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 2px solid #eee;
    border-radius: 14px;
    margin-bottom: 14px;
    cursor: pointer;
    background: #fafafa;
    transition: .25s;
    position: relative;
}

.radio-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.radio-card::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #bbb;
}

.radio-card:hover {
    border-color: #ff0000
}

.radio-card:has(input:checked) {
    border-color: #ff0000;
    background: #fff5f5;
}

.radio-card:has(input:checked)::before {
    background: #ff0000;
    border-color: #ff0000;
}

/* BUTON */
.submit {
    width: 100%;
    margin-top: 55px;
    padding: 20px;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #000, #333);
    color: #fff;
    transition: .3s;
}

.submit:hover {
    background: linear-gradient(135deg, #ff0000, #c60000);
    transform: translateY(-2px);
}

/* KVKK */
.kvkk-wrap {
    margin-top: 35px
}

.kvkk-check {
    display: flex;
    gap: 12px;
    font-size: 14px
}

.kvkk-check input {
    width: 18px;
    height: 18px;
    accent-color: #ff0000
}

.kvkk-check a {
    color: #ff0000;
    font-weight: 700
}

/* KVKK MODAL */
.kvkk-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.kvkk-content {
    background: #fff;
    max-width: 620px;
    width: 90%;
    padding: 35px;
    border-radius: 20px;
    position: relative;
}

.kvkk-close {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 28px;
    cursor: pointer;
}

/* ALERT */
.alert-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.alert-box {
    background: #fff;
    padding: 35px;
    max-width: 420px;
    width: 90%;
    border-radius: 20px;
    text-align: center;
}

.alert-box i {
    font-size: 48px;
    color: #ff0000;
    margin-bottom: 15px;
}
.team-card {
        background: #fff;
        border-radius: 12px;
        transition: .3s;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
    }
.team-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
.team-card h4 {
        font-weight: 700;
    }

    .team-card .role {
        font-size: 14px;
    }

    .team-card .team-social a {
        font-size: 16px;
        transition: .3s;
    }

    .team-card .team-social a:hover {
        color: #ed0000;
    }

    .team-card .team-desc li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .team-img img {
        border-radius: 6px;
        /* hafif köşe */
        object-fit: cover;
        height: 200px;
        /* tüm resimler aynı boyutta */
        width: 100%;
    }

    .team-img {
        width: 100%;
        height: 300px;
        /* RESİM BÜYÜDÜ */
        overflow: hidden;
        border-radius: 8px;
    }

.team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Katilim Form Refresh */
.katilim-page .god-form {
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 44px;
    border-radius: 24px;
    border: 1px solid #ececec;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(14, 18, 28, 0.09);
}

.katilim-page .section-title {
    margin-top: 44px;
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.2px;
    color: #161616;
}

.katilim-page .section-desc {
    margin-bottom: 24px;
    color: #5d5d5d;
    font-size: 15px;
    line-height: 1.7;
}

.katilim-page .label {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 800;
    color: #1f1f1f;
}

.katilim-page .input-wrap {
    margin-top: 0;
    position: relative;
}

.katilim-page .input-wrap i {
    color: #8f8f8f;
    left: 16px;
}

.katilim-page .input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border-radius: 12px;
    border: 2px solid #efefef;
    background: #ffffff;
    color: #181818;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.katilim-page .input:focus {
    border-color: #df1111;
    box-shadow: 0 0 0 4px rgba(223, 17, 17, 0.12);
    background: #fff;
}

.katilim-page .radio-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #ececec;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.katilim-page .radio-card:hover {
    border-color: #df1111;
    background: #fff8f8;
}

.katilim-page .radio-card.is-checked {
    border-color: #df1111;
    background: #fff4f4;
}

.katilim-page .field-error {
    border-color: #d40000 !important;
    box-shadow: 0 0 0 2px rgba(212, 0, 0, 0.16) !important;
    background: #fff7f7 !important;
}

.katilim-page .kvkk-check.field-error {
    border: 2px solid #d40000;
    border-radius: 10px;
    padding: 10px 12px;
}

.katilim-page .submit {
    margin-top: 38px;
    padding: 18px 22px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 900;
    background: #1d1d1d;
    color: #fff;
    border: none;
    width: 100%;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.katilim-page .submit:hover {
    background: #c91010;
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(170, 0, 0, 0.24);
}

.katilim-page .submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.alert-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(7, 10, 16, 0.62);
    z-index: 99999;
    padding: 16px;
}

.alert-box {
    width: 100%;
    max-width: 430px;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    animation: popIn .22s ease;
}

.alert-error-box {
    background: #c70000;
    color: #fff;
    box-shadow: 0 22px 48px rgba(166, 0, 0, 0.38);
}

.alert-error-box i {
    font-size: 46px;
    color: #fff;
    margin-bottom: 10px;
}

.alert-error-box h3 {
    font-size: 26px;
    font-weight: 900;
    margin: 6px 0 8px;
    color: #fff;
}

.alert-error-box p {
    color: #fff;
    font-size: 15px;
}

.alert-error-box button {
    margin-top: 16px;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    background: #fff;
    color: #b10000;
    font-weight: 800;
}

.success-box {
    background: #171717;
    color: #fff;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.success-box i {
    font-size: 46px;
    color: #28d166;
    margin-bottom: 10px;
}

.success-box h3 {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.success-box p {
    color: #dbdbdb;
    font-size: 15px;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .katilim-page .god-form {
        padding: 36px 18px;
        border-radius: 18px;
    }

    .katilim-page .section-title {
        font-size: 22px;
        margin-top: 34px;
    }
}

/* Katilim fallback (katilim.php eskiyse) */
.contact-from-section .god-form {
    max-width: 980px;
    margin: 0 auto;
}

#katilimForm .section-title {
    margin-top: 44px;
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 900;
    color: #161616;
}

#katilimForm .section-desc {
    margin-bottom: 24px;
    color: #5d5d5d;
    font-size: 15px;
    line-height: 1.7;
}

#katilimForm .label {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 800;
}

#katilimForm .input {
    border-radius: 12px;
    border: 2px solid #efefef;
    background: #ffffff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

#katilimForm .input:focus {
    border-color: #df1111;
    box-shadow: 0 0 0 4px rgba(223, 17, 17, 0.12);
}

#katilimForm .radio-card {
    border: 2px solid #ececec;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    font-weight: 600;
}

#katilimForm .radio-card:hover {
    border-color: #df1111;
    background: #fff8f8;
}

#katilimForm .radio-card.is-checked {
    border-color: #df1111;
    background: #fff1f1;
}

#katilimForm .field-error {
    border-color: #d40000 !important;
    box-shadow: 0 0 0 3px rgba(212, 0, 0, 0.14) !important;
}

/* ===== Product Card Refine (global) ===== */
.single-product-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eef2f6;
  box-shadow: 0 6px 18px rgba(5, 25, 34, 0.07);
  overflow: hidden;
  padding-bottom: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.single-product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(5, 25, 34, 0.12);
}

.single-product-item .product-image {
  margin-bottom: 14px;
  width: 100%;
  padding: 0 !important;
}

.single-product-item .product-image a {
  display: block;
  width: 100% !important;
  background: #f4f6f9;
  line-height: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3 !important;
}

.single-product-item .product-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  transition: transform .35s ease;
}

.single-product-item:hover .product-image img {
  transform: scale(1.03);
}

.single-product-item h3 {
  margin: 0 14px 10px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #0e1f2d;
  min-height: 54px;
  max-height: 54px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-product-item .product-price {
  margin: 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: #f22323;
  margin-top: auto;
}

.single-product-item .product-price span {
  font-size: 12px;
  color: #8a95a3;
  font-weight: 600;
}

.single-product-item .cart-btn {
  margin-top: 14px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  font-size: 13px;
  line-height: 1.2;
  border-radius: 999px;
  min-height: 34px;
  width: auto !important;
  max-width: max-content;
  align-self: center;
  text-align: center;
}

.single-product-item .cart-btn i {
  margin-right: 4px;
  font-size: 12px;
}

@media (max-width: 767px) {
  .single-product-item {
    border-radius: 10px;
  }

  .single-product-item .product-image {
    padding: 0 !important;
  }

  .single-product-item .product-image a {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
  }

  .single-product-item .product-image img {
    width: 100% !important;
    height: 100% !important;
  }

  .single-product-item h3 {
    margin: 0 12px 8px;
    font-size: 18px;
    min-height: 48px;
    max-height: 48px;
  }

  .single-product-item .product-price {
    margin: 0 12px;
    font-size: 18px;
  }

  .single-product-item .cart-btn {
    padding: 6px 12px;
    font-size: 12px;
    min-height: 30px;
  }
}

/* Home Event Timeline */
.event-timeline-section {
  background: transparent;
}

.event-timeline-section .section-title h3 {
  margin-bottom: 10px;
}

.event-timeline-fullbleed {
  width: 100%;
}

.event-timeline-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.45) 0%, transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(255, 255, 255, 0.28) 0%, transparent 52%),
    linear-gradient(135deg, #ececec 0%, #dfdfdf 100%);
}



.event-timeline-shell::before {
  left: 20px;
}

.event-timeline-shell::after {
  right: 20px;
}

.timeline-logo-ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-23deg);
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}

.timeline-logo-ghost img {
  width: min(920px, 74vw);
  max-width: 100%;
  filter: grayscale(1) contrast(1.08);
}

.event-timeline-track {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  --tl-half-space: 290px;
  --tl-stick: 98px;
  --tl-gap: 120px;
  min-height: calc(var(--tl-half-space) * 2);
  padding: 36px 68px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #c51414 #d8d8d8;
  scroll-snap-type: x proximity;
}

.event-timeline-track::-webkit-scrollbar {
  height: 9px;
}

.event-timeline-track::-webkit-scrollbar-thumb {
  background: #c51414;
  border-radius: 99px;
}

.event-timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  width: var(--tl-line-width, 100%);
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: #5f5f5f;
  box-shadow: none;
}

.timeline-event {
  position: relative;
  flex: 0 0 250px;
  min-width: 250px;
  scroll-snap-align: center;
  --node-color: #ed0000;
}

.timeline-event:nth-child(6n + 1) {
  --node-color: #ed0000;
}

.timeline-event:nth-child(6n + 2) {
  --node-color: #b81414;
}

.timeline-event:nth-child(6n + 3) {
  --node-color: #4f4f4f;
}

.timeline-event:nth-child(6n + 4) {
  --node-color: #ff3a3a;
}

.timeline-event:nth-child(6n + 5) {
  --node-color: #1f1f1f;
}

.timeline-event:nth-child(6n + 6) {
  --node-color: #8a8a8a;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #e7e7e7;
  background: var(--node-color);
  transform: translate(-50%, -50%);
  box-shadow: none;
  z-index: 100;
}

.timeline-arrow {
  position: absolute;
  left: 50%;
  width: 2px;
  background: #8c8c8c;
  border-radius: 999px;
  transform: translateX(-50%);
}

.timeline-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--node-color);
  border: 2px solid #f0f0f0;
}

.timeline-event.is-top .timeline-arrow {
  top: calc(50% - var(--tl-stick));
  height: var(--tl-stick);
}

.timeline-event.is-top .timeline-arrow::after {
  top: -12px;
}

.timeline-event.is-bottom .timeline-arrow {
  top: 50%;
  height: var(--tl-stick);
}

.timeline-event.is-bottom .timeline-arrow::after {
  bottom: -12px;
}

.timeline-card {
  position: absolute;
  left: 50%;
  width: 220px;
  margin-left: -110px;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(237, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.93);
  padding: 15px 14px 12px;
  color: #161616;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 0, 0, 0.45);
  box-shadow: 0 12px 24px rgba(12, 12, 12, 0.12);
}

.timeline-event.is-top .timeline-card {
  bottom: calc(50% + var(--tl-gap));
}

.timeline-event.is-bottom .timeline-card {
  top: calc(50% + var(--tl-gap));
}

.timeline-date {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--node-color);
  margin-bottom: 8px;
  letter-spacing: 0.45px;
}

.timeline-card h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  color: #191919;
}

@media (max-width: 991px) {
  .event-timeline-track {
    --tl-stick: 86px;
    --tl-gap: 108px;
    padding: 34px 30px;
    gap: 34px;
  }

  .timeline-event {
    flex-basis: 228px;
    min-width: 228px;
  }

  .timeline-card {
    width: 196px;
    margin-left: -98px;
  }

  .timeline-event.is-top .timeline-card {
    bottom: calc(50% + var(--tl-gap));
  }
}

@media (max-width: 767px) {
  .event-timeline-section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .timeline-logo-ghost {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-24deg);
    opacity: 0.18;
    width: 700px;
    
  }

  .timeline-logo-ghost img {
    width: min(840px, 185vw);
  }

  .event-timeline-track {
    --tl-stick: 72px;
    --tl-gap: 84px;
    --tl-half-space: 245px;
    padding: 28px 18px;
    gap: 26px;
  }

  .timeline-arrow {
    width: 3px;
  }

  .timeline-event.is-top .timeline-arrow,
  .timeline-event.is-bottom .timeline-arrow {
    height: var(--tl-stick);
  }

  .timeline-event.is-top .timeline-arrow {
    top: calc(50% - var(--tl-stick));
  }

  .timeline-event.is-top .timeline-card {
    bottom: calc(50% + var(--tl-gap));
  }

  .timeline-card h4 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .timeline-logo-ghost {
    opacity: 0.22;
    width: 700px;
  }

  .timeline-logo-ghost img {
    width: min(920px, 215vw);
  }
}
