/* =========================================
       GLOBAL VARIABLES & BASE LAYOUT
       ========================================= */
:root {
  --page-gap: 50px;
  --header-h: 230px;
  --accent: #ddf160;
}

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  height: 100%;
  margin: 0;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

body.inner-page {
  background: #fff;
  padding-top:100px;
}


.page-frame {
  padding: var(--page-gap);
  min-height: 100%;
  position: relative;
}

.work-card {
            background-color: #FFFFFF;
            color: #000000;
        }

        /* Override UIkit default background classes inside this specific block */
        .work-card .uk-background-default {
            background-color: #FFFFFF !important;
            color: #000000 !important;
        }

        /* All headings, paragraphs, text elements inherit white color */
        .work-card h1, 
        .work-card h2, 
        .work-card h3, 
        .work-card h4, 
        .work-card p, 
        .work-card .uk-article-meta,
        .work-card .uk-text-lead,
        .work-card .uk-heading-small {
            color: #000000 !important;
            font-weight: 600;
        }

        /* preserve link-like meta style but keep white with slight opacity */
        .work-card .uk-article-meta {
            color: #999 !important;
            font-weight: 400;
            font-size:1.1rem;
            letter-spacing: 0.02em;
        }

        /* Optional: lead text subtle variation but remains white */
        .work-card .uk-text-lead {
            color: #000000 !important;
            font-weight: 400;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* keep any icon or pseudo-element invisible if needed, but all clean */
        .work-card a, 
        .work-card a:hover {
            color: #ddddff;
        }

        /* custom spacing and fluid typography */
        .uk-padding-large {
            padding: 3rem 2rem;
        }
        

/* =========================================
       HEADER / NAVBAR
       ========================================= */
.site-header {
  position: fixed;
  left: var(--page-gap);
  right: var(--page-gap);
  top: var(--page-gap);
  z-index: 20;
}

/* İç sayfa override */
.inner-page .site-header {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  background: #fff;
  padding-top: 5px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 5px;
}

.inner-page .brand-logo img {
  height: 80px;
  width: auto;
}

.brand-logo img {
  height: 100px;
  width: auto;
}


/* Custom Tooltip Stili */
/* Modern Minimal Tooltip */
[data-tooltip] {
  position: relative;
  cursor: pointer;
}

[data-tooltip]:before {
  content: attr(data-tooltip);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 20px;
  padding: 6px 14px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-radius: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

[data-tooltip]:hover:before {
  opacity: 1;
  visibility: visible;
  margin-left: 25px;
}

[data-tooltip]:hover:before {
  margin-left: 20px;
}

[data-tooltip]:hover:after {
  margin-left: 10px;
}

.brand-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /* Titremeye neden olan transform kaldırıldı */
  /* transform: scale(1.05); - BU SATIRI KALDIRIN veya yorum yapın */
}

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 110px; /* Sabit yükseklik verin */
}

.brand-logo img,
.brand-logo video {
  width: auto;
  height: 100%;
  max-height: 110px;
  /* Transition kaldırıldı veya sadece opacity için bırakıldı */
  transition: opacity 0.2s ease;
  object-fit: contain;
}

.logo-static {
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.logo-animated {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.brand-logo:hover .logo-static {
  opacity: 0;
  visibility: hidden;
}

.brand-logo:hover .logo-animated {
  opacity: 1;
  visibility: visible;
}



/* BASE */
.btn-hello {
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
  padding: 0 30px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 44px;
  height: 44px;
  transition: 0.3s;
}

/* OUTLINE (HOME) */
.btn-hello.outline {
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  background: transparent;
}

.btn-hello.outline:hover {
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}

/* FILLED (WORK) */
.btn-hello.filled {
  background: var(--theme-color);
  color: #fff;
  border: 2px solid var(--theme-color);
}

.btn-hello.filled:hover {
  color: var(--theme-color);
  background: transparent;
  text-decoration: none;
}

/* SVG */
.btn-hello .hello-arrow svg {
  stroke: currentColor;
}
.uk-text-white { color:#fff !important; }
.btn-hello-sunday {
  border-radius: 9999px;
  background-color: #f58798;
  font-weight: 600;
  color: #fff;
  border: 2px solid #f58798;
  font-size: 16px;
  padding: 0 30px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 44px;
  height: 44px;
}

.btn-hello-sunday:hover {
  color: #f58798;
  background-color: transparent;
  border-color: #f58798;
  text-decoration: none;
}

.btn-hello-sunday .hello-arrow svg {
  stroke: #fff;
}

.nav-circle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #000 !important;
  padding: 0 !important;
  min-height: 0 !important;
  border: none !important;
  box-shadow: none !important;
  margin-left: 16px;
}

.uk-navbar .nav-circle-icon {
  min-height: 0 !important;
}

.nav-circle-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.nav-circle-icon:hover {
  filter: brightness(0.96);
}

.nav-circle-icon:active {
  transform: scale(0.98);
}

/* FLOATING NAV */
.floating-nav {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 999;
}

/* İç sayfa */
.inner-page .floating-nav {
  top: 38px;
}

.floating-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.inner-page .nav-inner {
  background: #ffffff;
  backdrop-filter: blur(0px) !important;
  -webkit-backdrop-filter: blur(0px) !important;
  border-radius: 999px;
  padding: 10px 22px;
  display: flex;
  gap: 24px;
  border: 1px solid #ccc;
  align-items: center;
  box-shadow: none;
}

.inner-page .nav-inner a {
  font-size: 16px;
  font-weight: 500;
  color: #666; /* iç sayfada koyu renk */
  text-decoration: none;
  position: relative;
}

.inner-page .nav-inner a:hover {
  text-decoration: none;
  color: var(--theme-color) !important; /* hoverda daha koyu veya farklı bir renk */
}

.inner-page .nav-inner a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--theme-color) !important;/* çizgi rengi */
  transition: 0.3s;
}

.inner-page .nav-inner a:hover::after {
  width: 100%;
}

.inner-page .nav-platforms a {
  opacity: 0.6;
  font-size: 13px;
  flex-shrink: 0;
}

.inner-page .nav-platforms a:hover {
  opacity: 1;
}

.inner-page .nav-label {
  font-size: 11px;
  color: var(--theme-color) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-right: 4px;
  flex-shrink: 0;
}

.inner-page .nav-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2), transparent);
  margin: 0 5px;
}

/* Ana stil (arka plan blur, açık renk linkler) */
.nav-inner {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 10px 22px;
  display: flex;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  align-items: center;
}

.nav-inner a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.nav-inner a:hover {
  text-decoration: none;
  color: #ddf160;
}

.nav-inner a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #ddf160;
  transition: 0.3s;
}

.nav-inner a:hover::after {
  width: 100%;
}

.nav-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-platforms {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.nav-platforms a {
  opacity: 0.6;
  font-size: 13px;
  flex-shrink: 0;
}

.nav-platforms a:hover {
  opacity: 1;
}

.nav-label {
  font-size: 11px;
  color: #ddf160;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-right: 4px;
  flex-shrink: 0;
}

.nav-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 0 5px;
}

@media (max-width: 1024px) {
  .floating-nav {
    display: none !important;
  }

  .mobile-menu-btn span[uk-icon] {
    transform: scale(1.2);
  }
}

/* =========================================
       HERO SECTION
       ========================================= */
.flip-char {
  display: inline-block;
  min-width: 0.1em;
  position: relative;
  transition: opacity 0.2s;
}

.char-flipping {
  animation: charAnimate 0.1s infinite;
  opacity: 0.6;
  filter: blur(1px);
}

@keyframes charAnimate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

.char-space {
  width: 0.3em;
}

.flip-board {
  display: inline-flex;
  gap: 0;
  perspective: 1000px;
  vertical-align: baseline;
}

.tick {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: inherit;
  font-weight: 700;
  color: #fff;
  min-width: 0.6em;
  text-align: center;
  position: relative;
  line-height: 1.2;
}

.flipping {
  animation: charShuffle 0.1s infinite;
  opacity: 0.7;
}

@keyframes charShuffle {
  0% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-2px) rotateX(-15deg);
  }
  100% {
    transform: translateY(0) rotateX(0deg);
  }
}

.headline .line2 {
  display: inline-block;
  margin: 0 10px;
}

/* HERO DÜZELTMESİ - height yerine min-height + padding-bottom */
.hero {
  min-height: calc(100dvh - (var(--page-gap) * 2));
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  /* İçerik ekranı aşarsa esnek davranması için */
  padding-bottom: 0;
}

.hero-inner {
  width: 100%;
}

/* HERO DÜZELTMESİ - height yerine min-height + padding-bottom */
.heroworks {

  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  /* İçerik ekranı aşarsa esnek davranması için */
  padding-bottom: 0;
}

.heroworks-inner {
  width: 100%;
}

.headline {
  margin: 0;
  font-weight: 800;
  font-size: clamp(42px, 8vw, 250px);
  line-height: 0.5;
  letter-spacing: -0.04em;
  text-align: left;
}

.headline .line1,
.headline .line2,
.headline .line3 {
  display: block;
}

.headline .line1,
.headline .line2 {
  display: block;
}

.headline .line1 {
  margin-bottom: -0.01em;
}

.static {
  color: #fff;
}

.intro-sub {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.75;
  margin: 0 0 60px 0;
  max-width: 1400px;
  color: #fff;
}

.rotator {
  position: relative;
  display: inline-block;
  height: 1em;
  line-height: 1em;
  vertical-align: baseline;
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
  overflow: visible;
}

.rotator .item {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: opacity;
}

.rotator .item.active {
  position: absolute;
  opacity: 1;
}

/* =========================================
       GENERIC SECTION HELPERS
       ========================================= */
.section {
  padding: 64px 0;
}

.section-muted {
  background: #111;
}

.uk-container {
  max-width: 1400px;
}

/* =========================================
       WORKS SECTION (MASONRY GRID)
       ========================================= */
.works {
  margin-left: calc(var(--page-gap) * -1);
  margin-right: calc(var(--page-gap) * -1);
  padding-left: 0;
  padding-right: 0;
}

.works .uk-container,
.works .uk-container-expand {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.works .uk-grid-collapse {
  margin-left: 0 !important;
}

.works-inner{
    margin-top: calc(var(--page-gap) * -1);
  margin-left: calc(var(--page-gap) * -1);
  margin-right: calc(var(--page-gap) * -1);
  padding-left: 0;
  padding-right: 0;
}

.works-inner .uk-container,
.works-inner .uk-container-expand {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.works .uk-grid-collapse {
  margin-left: 0 !important;
}

.work-card {
  margin: 0;
  overflow: hidden;
  color:#fff;
}

.work-card img {
  display: block;
  width: 100%;
  height: auto;
}

.works .meta-link {
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.works .meta-link:hover {
  opacity: 1;
  border-color: #fff;
}

.works .meta-right {
  line-height: 1.2;
}

.work-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0e0e0e;
}

.work-card img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.001);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.25));
  opacity: 0.65;
  transition: opacity 0.25s ease;
}

.work-card:hover::after {
  opacity: 0.85;
}

.work-card img {
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.work-card:hover img {
  transform: scale(1.03);
}

.work-meta {
  position: absolute;
  left: 16px;
  top: 12px;
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
  z-index: 2;
  opacity: 0.95;
}

.work-meta span {
  opacity: 0.8;
}

.work-link {
  position: absolute;
  inset: 0;
}

/* =========================================
       GLOBAL + WORKS: MOBILE RESPONSIVE
       ========================================= */
@media (max-width: 767px) {
  :root {
    --page-gap: 20px;
    --header-h: 140px;
  }

  .site-header {
    top: 14px;
    left: 14px;
    right: 14px;
  }

  .brand-logo img {
    height: 60px;
  }

  .btn-hello {
    font-size: 14px;
    padding: 0 18px;
    border-width: 2px;
    gap: 8px;
    line-height: 36px;
    height: 36px;
  }

  .nav-circle-icon {
    width: 36px;
    height: 36px;
    margin-left: 12px;
  }

  .nav-circle-icon svg {
    width: 18px;
    height: 18px;
  }

  /* HERO DÜZELTMESİ - mobilde min-height korunur, ekranı aşarsa esner */
  .hero {
    min-height: calc(100dvh - (var(--page-gap) * 2));
    /* height kaldırıldı, sadece min-height kaldı */
  }

  .hero-inner {
    padding-top: 100px;
  }

  .headline {
    font-size: clamp(32px, 12vw, 56px);
    line-height: 0.94;
  }

  .intro-sub {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 100%;
    line-height: 1.5;
  }

  .works {
    padding-left: var(--page-gap);
    padding-right: var(--page-gap);
    margin-left: 0;
    margin-right: 0;
  }

  .work-meta {
    left: 12px;
    top: 10px;
    font-size: 10px;
  }

  .works .meta-right {
    text-align: left;
    margin-top: 8px;
  }
}

/* iPhone SE / küçük ekranlar için ekstra destek (375px altı) */
@media (max-width: 480px) {
  :root {
    --page-gap: 16px;
  }

  .btn-hello {
    font-size: 12px;
    padding: 0 14px;
    gap: 6px;
    line-height: 32px;
    height: 32px;
  }

  .btn-hello .hello-arrow svg {
    width: 14px;
  }

  .nav-circle-icon {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: calc(100dvh - (var(--page-gap) * 2));
    /* min-height korunur, esnek */
  }

  .hero-inner {
    padding-top: 80px;
  }

  .headline {
    font-size: clamp(28px, 10vw, 42px);
    line-height: 1;
  }

  .intro-sub {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.work-card {
  position: relative;
}

.work-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: block;
}

/* Modal Styles */
.uk-modal-full {
  background: rgba(255, 255, 255, 0) !important;
  transition: background-color 0.5s ease-out !important;
}

.uk-modal-full.uk-open {
  background: rgba(255, 255, 255, 1) !important;
}

.uk-modal-full .uk-modal-dialog {
  opacity: 0 !important;
  transform: translateY(0px) !important;
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.2, 1, 0.3, 1) !important;
}

.uk-open > .uk-modal-dialog {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.custom-close-btn {
  opacity: 0 !important;
  transition: opacity 0.4s ease-out 0.3s !important;
}

.uk-open .custom-close-btn {
  opacity: 1 !important;
}

.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 10005;
}

.progress-bar {
  height: 100%;
  background: #000;
  width: 0%;
  transition: width 0.1s ease-out;
}

.btn-getintouch {
  border-radius: 9999px;
  font-weight: 500;
  background: #000;
  color: #fff !important;
  border: 2px solid #000;
  font-size: 14px;
  padding: 0 30px;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  line-height: 44px;
  height: 44px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.btn-getintouch:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
  text-decoration: none !important;
}

.btn-99designs {
  border-radius: 9999px;
  font-weight: 500;
  background: #313030;
  color: #fff !important;
  border: 2px solid #313030;
  font-size: 14px;
  padding: 0 30px;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  line-height: 44px;
  height: 44px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.btn-99designs:hover {
  background: #313030;
  border-color: #313030;
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* Dil butonları için özel stil - btn-getintouch teması */
.uk-subnav-pill > li > a {
  border-radius: 9999px !important;
  font-weight: 500 !important;
  background: transparent !important;
  color: #969694 !important;
  border: 2px solid #969694 !important;
  font-size: 14px !important;
  padding: 0 30px !important;
  text-transform: capitalize !important;
  display: inline-flex !important;
  align-items: center !important;
  line-height: 44px !important;
  height: 44px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

/* Hover efekti */
.uk-subnav-pill > li > a:hover {
  background: #313030 !important;
  border-color: #313030 !important;
  color:#fff !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}

/* Seçili (aktif) dil butonu */
.uk-subnav-pill > li.uk-active > a {
  background: #fe5f50 !important;
  border-color: #fe5f50 !important;
  color: #fff !important;
}

/* Butonlar arası boşluk */
.uk-subnav-pill > li {
  margin-right: 10px;
}
.custom-close-btn {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.custom-close-btn::after {
  content: "×";
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  line-height: 0;
  margin-bottom: 4px;
  font-family: sans-serif;
}

.custom-close-btn:hover {
  background: #333;
  opacity: 0.8;
}

.custom-close-btn svg {
  display: none !important;
}

.designs99-close-btn {
  width: 40px;
  height: 40px;
  background: #313030;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.designs99-close-btn::after {
  content: "×";
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  line-height: 0;
  margin-bottom: 4px;
  font-family: sans-serif;
}

.designs99-close-btn:hover {
  background: #313030;
  opacity: 0.8;
}

.designs99-close-btn svg {
  display: none !important;
}

/* Services Section */
.section-services-dynamic {
  padding: 100px 0;
  background-color: #000000;
}

.services-title {
  margin: 0;
  font-size: clamp(48px, 6vw, 77px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.service-card-dynamic {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  perspective: 1000px;
}

.service-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-name-under {
  margin-top: 15px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
}

.service-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.8) translateZ(-50px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-icon-overlay {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.service-icon-overlay img {
  width: 32px;
  height: auto;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

#modal-service-packaging .uk-modal-body {
  color: #333 !important;
}

.workflow-card {
  background: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  padding: 20px;
  border-radius: 10px;
}

.workflow-card span {
  color: #000 !important;
  font-weight: 700;
}

.workflow-card h4 {
  color: #000 !important;
  margin: 10px 0 5px 0;
}

.workflow-card p {
  color: #666 !important;
  font-size: 14px;
  line-height: 1.5;
}

.deliverables-list li {
  color: #444 !important;
  border-bottom-color: #eee !important;
}

.service-sidebar-card {
  background: #fdfdfd !important;
  border: 1px solid #eee !important;
}

.service-content-card {
  border: none !important;
  background: #ffffff;
  padding: 60px !important;
  border-radius: 20px;
}

.workflow-step {
  background: #fff;
  border-left: 1px solid #000;
  padding: 20px 25px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.workflow-step:hover {
  background: #fcfcfc;
  transform: translateX(10px);
}

.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #999;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.workflow-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px 0;
}

.workflow-step p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.deliverables-sidebar {
  background: #fafafa;
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #f0f0f0;
}

.deliverables-sidebar h4 {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #000;
}

.deliverables-list {
  padding: 0;
  list-style: none;
}

.deliverables-list li {
  font-size: 14px;
  color: #444;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.deliverables-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  margin-right: 15px;
}

.service-quote {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  color: #111;
  border-top: 1px solid #eee;
  padding-top: 40px;
  margin-top: 60px;
}

/* Service Card Hover Effects */
.service-card-dynamic:hover .service-media {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card-dynamic:hover .service-hover-img {
  opacity: 1;
  transform: scale(1) translateZ(0);
}

.service-card-dynamic:hover .service-icon-overlay img {
  filter: grayscale(0);
}

/* Services Mobile */
@media (max-width: 767px) {
  .section-services-dynamic {
    padding: 60px 0;
  }

  .service-content-card {
    padding: 32px !important;
  }

  .workflow-step {
    padding: 16px 20px;
  }

  .workflow-step:hover {
    transform: translateX(5px);
  }

  .service-quote {
    font-size: 20px;
    padding-top: 30px;
    margin-top: 40px;
  }

  .deliverables-sidebar {
    padding: 20px;
    margin-top: 20px;
  }
}

/* =========================================
       ABOUT SECTION
       ========================================= */
.uk-section-creafinch {
  background: #ddf160;
}

.about-slab.is-white {
  background: #000;
  color: #fff;
  padding: 72px 0 80px;
  margin-left: calc(var(--page-gap) * -1);
  margin-right: calc(var(--page-gap) * -1);
  overflow: hidden;
}

.about-slab .about-wrap {
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
}

.about-title {
  font-weight: 600;
  color: #000;
  letter-spacing: -0.05em;
  line-height: 1.25;
  font-size: clamp(42px, 6vw, 77px);
  max-width: 1400px;
  margin: 0 0 28px 0;
}

.about-subtitle {
  color: #000;
}

.about-marquee {
  margin-top: 28px;
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
}

.splide__track {
  overflow: visible !important;
}

.splide__list {
  display: flex;
  align-items: center;
}

.splide__slide {
  width: 640px;
  height: 520px;
  margin-right: 28px;
  transition: all 0.3s ease;
}

.splide__slide.tall {
  height: 580px;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  pointer-events: none;
}

.splide__arrows {
  display: none;
}

.splide__pagination {
  display: none;
}

.about-p {
  margin: 0;
  line-height: 1.8;
  color: #fff;
}

.about-p.lead {
  font-size: 20px;
}

.about-p.meta {
  font-size: 16px;
  opacity: 0.9;
}

/* About Responsive */
@media (max-width: 1200px) {
  .splide__slide {
    width: 380px;
    height: 280px;
  }
  .splide__slide.tall {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .about-slab.is-white {
    padding: 48px 0 56px;
  }

  .about-marquee {
    padding-left: var(--page-gap);
    padding-right: var(--page-gap);
  }

  .splide__slide {
    width: 260px;
    height: 200px;
    margin-right: 16px;
  }

  .splide__slide.tall {
    height: 220px;
  }

  .about-p.lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .about-p.meta {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .splide__slide {
    width: 220px;
    height: 170px;
  }

  .splide__slide.tall {
    height: 190px;
  }
}

/* =========================================
       NEWS SECTION
       ========================================= */
.news-section {
  margin-left: calc(var(--page-gap) * -1);
  margin-right: calc(var(--page-gap) * -1);
  padding: 100px 0;
}

.news-wrap {
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.news-title-main {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

.news-browse {
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.news-item {
  display: grid;
  grid-template-columns: 80px 1fr 40%;
  gap: 40px;
  align-items: center;
  padding: 35px 40px;
  margin-bottom: 12px;
  background: #1a1a1a;
  color: #000;
  transition: 0.3s ease;
}

.news-item.alt {
  background: #101010;
}

.news-item:hover {
  transform: translateY(-3px);
}

.news-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.news-date {
  font-size: 12px;
  color: #999;
  display: block;
  margin-bottom: 6px;
}

.news-title {
  font-size: 18px;
  margin: 0;
  color: #fff;
  font-weight: 500;
}

.news-right p {
  font-size: 14px;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}

.news-item:hover .news-title {
  text-decoration: underline;
}

/* News Mobile */
@media (max-width: 767px) {
  .news-section {
    padding: 60px 0;
    margin-left: 0;
    margin-right: 0;
  }

  .news-wrap {
    padding-left: var(--page-gap);
    padding-right: var(--page-gap);
  }

  .news-header {
    margin-bottom: 32px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .news-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .news-date {
    margin-top: 8px;
  }

  .news-title {
    font-size: 18px;
  }

  .news-right p {
    font-size: 14px;
  }
}

/* =========================================
       CONTACT SECTION
       ========================================= */
.contact-section {
  padding: 90px 0 110px;
  margin-left: calc(var(--page-gap) * -1);
  margin-right: calc(var(--page-gap) * -1);

  margin-bottom:-50px;
  padding-bottom:-50px;
}

.contact-wrap {
  width: 100%;
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
}

.contact-left,
.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-title {
  margin: 0;
  font-size: clamp(48px, 8vw, 142px);
  font-weight: 600;
  color: #ddf160;
  letter-spacing: -0.02em;
  line-height: 1;
}

.projectform-title {
  margin: 0;
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.contact-text {
  margin: 0 0 24px 0;
  max-width: 620px;
  line-height: 1.2;
  font-size: 18px;
}

.contact-meta {
  margin: 0;
  font-size: 12px;
  opacity: 0.75;
}

.contact-meta a {
  color: #fff;
  text-decoration: underline;
}

.budget-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.budget-buttons button {
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 14px;
}

.budget-buttons button:hover {
  border-color: #ddf160;
}

.budget-buttons button.active {
  background: #ddf160;
  color: #000;
  border-color: #ddf160;
}

.budget-wrapper {
  margin-top: 20px;
  padding: 25px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  width: 100%;
  box-sizing: border-box;
}

.budget-legend {
  padding: 0 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.budget-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

fieldset {
  border: none;
}

.contact-form {
  width: 100%;
  margin-top: 60px;
}

.contact-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
}


.project-wrapper {
  margin-top: 20px;
  padding: 25px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.project-legend {
  padding: 0 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.project-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.project-buttons button {
  padding: 12px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
  font-size: 14px;
}

.project-buttons button:hover {
  border-color: #ddf160;
}

.project-buttons button.active {
  background: #ddf160;
  color: #000;
  border-color: #ddf160;
  transform: scale(1.02);
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 4px 10px;
  color: #fff;
  font-size: 18px;
  border-radius: 0;
  outline: none;
  appearance: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-bottom-color: var(--accent);
}

.contact-submit {
  align-self: flex-end;
  margin-top: 10px;
  border-radius: 30px;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  font-size: 24px;
  padding: 8px 22px;
  cursor: pointer;
  text-transform: uppercase;
}

.contact-submit:hover {
  background: var(--accent);
  color: #000;
}

.inner-section {
  padding:100px 100px 80px 100px;
  margin-left: calc(var(--page-gap) * -1);
  margin-right: calc(var(--page-gap) * -1);
}

/* Contact Mobile */
@media (max-width: 767px) {

.inner-section {
  padding:40px 20px 40px 20px;
  margin-left: calc(var(--page-gap) * -1);
  margin-right: calc(var(--page-gap) * -1);
}

  .contact-section {
    padding:40px 20px 40px 20px;
  }

  .contact-wrap {
    padding-left: var(--page-gap);
    padding-right: var(--page-gap);
  }

  .contact-title {
    font-size: clamp(42px, 12vw, 80px);
  }
  .projectform-title {
    font-size: clamp(42px, 12vw, 80px);
  }
  .contact-text {
    max-width: none;
    font-size: 16px;
    line-height: 1.4;
  }

  .contact-right {
    margin-top: 32px;
  }

  .contact-form {
    margin-top: 32px;
  }

  .contact-input,
  .contact-select,
  .contact-textarea {
    font-size: 16px;
  }

  .contact-submit {
    font-size: 20px;
    padding: 6px 18px;
  }

  .budget-buttons {
    gap: 8px;
  }

  .budget-buttons button {
    padding: 8px 14px;
    font-size: 13px;
  }

  .budget-wrapper {
    padding: 18px;
  }

  .project-buttons {
    grid-template-columns: 1fr;
  }

  .project-buttons button {
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
.inner-section {
  padding:0 0 0 0;
  margin-left: calc(var(--page-gap) * -1);
  margin-right: calc(var(--page-gap) * -1);
}
  .contact-section {
    padding: 40px 0 56px;
  }

  .contact-title {
    font-size: clamp(36px, 10vw, 60px);
  }

  .projectform-title {
    font-size: clamp(42px, 12vw, 80px);
  }

  .contact-text {
    font-size: 14px;
  }

  .contact-submit {
    font-size: 18px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.uk-background-creafinch {
  background: #000000 !important;
  color:#fff;
}

.uk-background-theme {
  background: var(--theme-color) !important;
  color: #fff;
}


/* style.css */

/* 1. Gradient overlay'i kaldır */
.uk-thumbnav > * > *::after {
    display: none !important;
}

/* 2. Seçilmemiş thumbnail'ler için opacity */
.uk-thumbnav > * > * {
    opacity: 0.5 !important;
    display: inline-block !important;
    border-radius: 12px !important; /* Radius değerinizi buraya yazın */
    overflow: hidden !important;     /* Border'ın radius'a uyması için */
}

/* 3. Görselin kendisi de radius alsın */
.uk-thumbnav > * > * img {
    border-radius: 12px !important;  /* Radius değeriniz */
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 4. Hover efekti */
.uk-thumbnav > * > :hover {
    opacity: 0.8 !important;
}

/* 5. Aktif (seçili) thumbnail - border ve radius birlikte */
.uk-thumbnav > .uk-active > * {
    opacity: 1 !important;
    box-shadow: 0 0 5px rgba(0,0,0,0.3) !important;
    /* Border radius zaten yukarıda tanımlandı */
}

/* 6. Aktif olanın görseline radius koru */
.uk-thumbnav > .uk-active > * img {
    border-radius: 9px !important;  /* Border kalınlığı nedeniyle 3px eksik (12-3=9) */
}