/* ==========================
        VARIABLES 
===========================*/
:root {
  /* COLORS */
  --white: #fff;
  --black: #000;

  --primary-color: #3e8981;
  --primary-green: #57c1b5;
  --secondary-color: #838383;

  --gray-light: #d9d9d9;
  --gray-muted: #c6c6c6;

  --background-green-drk: rgba(37, 81, 76, 1);
  --background-gray-drk: #373737;
  --background-gray-lgt: #5d5d5d;

  --border-gray: #9c9c9c9c;

  /* FONTS */
  --primary-font: "Jost";
  --secondary-font: "Kalnia";

  --font-bold: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 700;
}

body {
  font-family: var(--primary-font), sans-serif;
}


.container {
  max-width: 1128px;
}

/* 1920 ve üstü */
@media (min-width: 1960px) {
  .container {
  max-width: 1440px !important;
  }
}

/* 2560 ve üstü (4K / ultrawide) */
@media (min-width: 2560px) {
  .container {
    max-width: 1600px !important;
  }
}



@media screen and (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* ==========================
      GENERAL ELEMENTS 
===========================*/
h1,
h2,
h3,
h4,
h5,
h6,
.subtitle-1,
.subtitle-2,
.body-1,
.body-2,
.button,
.caption,
.overline,
a {
  color: var(--black);
}
h1 {
  font-size: 48px;
  font-weight: var(--font-regular);
}
h2 {
  font-size: 36px;
  font-weight: var(--font-medium);
}
h3 {
  font-size: 32px;
  font-weight: var(--font-medium);
}
h4 {
  font-size: 24px;
  font-weight: var(--font-bold);
}
h5 {
  font-size: 20px;
  font-weight: var(--font-medium);
}
h6 {
  font-size: 20px;
  font-weight: var(--font-regular);
}
.subtitle-1 {
  font-size: 16px;
  font-weight: var(--font-medium);
}
.subtitle-2 {
  font-size: 14px;
  font-weight: var(--font-medium);
}
.body-1 {
  font-size: 16px;
  font-weight: var(--font-regular);
}
.body-2 {
  font-size: 14px;
  font-weight: var(--font-regular);
}
.button {
  font-size: 14px;
  font-weight: var(--font-bold);
}
.caption {
  font-size: 12px;
  font-weight: var(--font-regular);
}
.overline {
  font-size: 10px;
  font-weight: var(--font-light);
}
.first-section {
  padding-top: 200px !important;
  margin-top: 0 !important;
}
@media screen and (max-width: 769px) {
  .first-section {
    padding-top: 160px !important;
    margin-top: 0 !important;
  }
}
/* ==========================
        SITE HEADER 
===========================*/
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 9999;
  background-color: transparent;
  display: flex;
  justify-content: center;
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-left,
.header-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-left {
  justify-content: flex-start;
}
.header-right {
  justify-content: flex-end;
}
.site-header img {
  height: 60px;
  width: auto;
  display: block;
  transition: filter 0.3s ease;
}
.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
}

.logo-wrapper img {
  height: 60px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.logo-dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.site-header a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  width: 165px;
}
.header-search button {
  background: none;
  border: none;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  text-transform: uppercase;
}
.header-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  width: 80px;
}
.header-search::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: var(--white);
}
.header-language {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

/* HOVER */
.site-header a:hover {
  color: var(--primary-green);
}
.header-search:hover > button {
  color: var(--primary-green);
}
.header-search:hover::after {
  background: var(--primary-green);
  color: var(--primary-green);
}

/* ACTIVE */
.header-search.active > button {
  color: var(--primary-green) !important;
}
.header-search.active::after {
  background: var(--primary-green) !important;
  color: var(--primary-green) !important;
}
.site-header a.active {
  color: var(--primary-green) !important;
}

/* RESPONSIVE */
.header-left img {
  width: 36px;
  height: 24px;
}
.header-right img {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 769px) {
  .header-left a:has(img),
  .header-right a:has(img) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .site-header a:not(:has(img)) {
    display: none;
  }
  .header-search,
  .header-language {
    display: none;
  }
  .header-left,
  .header-right {
    flex: 1 1 0;
    gap: 8px;
  }
  .header-left a:has(img),
  .header-right a:has(img) {
    display: inline-block;
  }
  .divider-before::before {
    content: "";
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background-color: var(--white);
  }
}

/* SCROLLED */
.site-header {
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
.site-header.scrolled .logo-white {
  opacity: 0;
}

.site-header.scrolled .logo-dark {
  opacity: 1;
}
.site-header a,
.site-header .header-language,
.site-header .header-search button {
  transition: color 0.3s ease;
}

.header-search::after {
  transition: background-color 0.3s ease;
}
.site-header.scrolled {
  background-color: #ffffff;
  position: fixed;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled a,
.site-header.scrolled .header-language,
.site-header.scrolled .header-search button {
  color: #333333;
}
.site-header .language-dropdown a{
    color: var(--white);
}

.site-header.scrolled .header-search::after {
  background: #333333;
}

.site-header.scrolled a:hover,
.site-header.scrolled .header-search:hover > button {
  color: var(--primary-green);
}
.site-header.scrolled .header-left img:not(.logo-white):not(.logo-dark),
.site-header.scrolled .header-right img {
  filter: brightness(0);
}

@media screen and (max-width: 768px) {
  .site-header.scrolled .header-right a:last-child::before {
    background-color: #333333;
  }
  .divider-before::before {
    content: "";
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background-color: var(--white);
    transition: background-color 0.3s ease;
  }

  .site-header.scrolled .header-right a:last-child::before {
    background-color: #333333;
  }
}

/* ==========================
        INNER HEADER 
===========================*/
.site-header.inner-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition:
    top 0.3s ease,
    background-color 0.3s ease;
}

.site-header.inner-header a,
.site-header.inner-header .header-language,
.site-header.inner-header .header-search button {
  color: #333333;
  text-transform: uppercase;
}
.site-header.inner-header .header-search input {
  color: var(--black);
}

.site-header.inner-header .header-search::after {
  background: #333333;
}

.site-header.inner-header .logo-white {
  opacity: 0;
}

.site-header.inner-header .logo-dark {
  opacity: 1;
}

.site-header.inner-header a:hover,
.site-header.inner-header .header-search:hover > button {
  color: var(--primary-green);
}

.site-header.inner-header .header-left img:not(.logo-white):not(.logo-dark),
.site-header.inner-header .header-right img {
  filter: brightness(0);
}
.site-header.inner-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  transition: top 0.3s ease;
}

@media screen and (max-width: 768px) {
  .site-header.inner-header .header-right a:last-child::before {
    background-color: #333333;
  }
}
.header-search:hover::after,
.site-header.scrolled .header-search:hover::after,
.site-header.inner-header .header-search:hover::after {
  background-color: var(--primary-green);
}

.header-language {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}


.header-language .language-dropdown {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background-color: var(--background-gray-drk);
  border-radius: 6px;
  list-style: none;
  margin: 0;
  padding:0;
  min-width: 60px;
  z-index: 999;
}
.site-header.scrolled .language-dropdown a{
    color:var(--white);
}
.site-header .language-dropdown a{
    color: var(--white);
}


.header-language.active .language-dropdown {
  display: block;
}
/* ==========================
        MENU 
===========================*/
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
  background-color: var(--background-green-drk);
  height: 700px;
  z-index: 999999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.nav-menu.active {
  transform: translateX(0);
}
.menu-logo {
  text-align: center;
  padding-top: 64px;
}
.menu-logo img {
  max-width: auto;
  height: 60px;
}
.menu-list {
  width: 100%;
  padding: 0 32px;
}
.menu-close {
  display: block;
  text-align: left;
  padding-bottom: 24px;
}
.menu-close img {
  width: 48px;
  height: 48px;
}
.menu-list > a:nth-child(2) {
  border-top: 0.5px solid var(--secondary-color);
}
.menu-list > a:not(.menu-close) {
  display: block;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--secondary-color);
  text-decoration: none;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}
.menu-social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 0 35px;
  padding-bottom: 70px;
}
.menu-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.menu-social img {
  width: 24px;
  height: 24px;
}

/* ==========================
        SLIDER 
===========================*/
.main-slider {
  position: relative;
  height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url(../../assets/img/slider-overlay.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.slide .container {
  margin: 0 auto;
}
.slider-content {
  position: relative;
  max-width: 360px;
  z-index: 1;
}
.slider-content h2 {
  font-size: 36px;
  font-weight: 400;
  font-family: var(--secondary-font);
  color: var(--white);
}

/* DOTS */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 1;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.25);
}
.slider-dot.active {
  background: var(--primary-green);
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .slider-content h2 {
    font-size: 28px;
    line-height: 44px;
    max-width: 244px;
  }
}

/* ==========================
        PROJECTS 
===========================*/
.projects {
  margin-top: 80px;
}
.projects-inner{
    padding-bottom:120px;
}
.projects-inner .load-more-btn.mobile{
    margin-top:0;
}
.big img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
/* CARD */
.card-img {
  position: relative;
  overflow: hidden;
}
/* OVERLAY BASE */
.proje-overlay {
  position: absolute;
  top: 20px;
  left: 0;
  padding: 14px 22px;
  color: var(--white);
  transition: 0.3s ease;
  border-radius: 2px;
}

/* BEJ */
.proje-overlay--bej {
  background: rgba(190, 160, 130, 0.45);
  backdrop-filter: blur(10px);
}

/* BEYAZ */
.proje-overlay--beyaz {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
}

/* TEXT */
.proje-overlay span h5 {
  display: block;
  line-height: 1.2;
  color: var(--white);
}

.proje-overlay small {
  opacity: 0.9;
  margin-top: 4px;
  display: block;
  color: var(--white);
}
/* BAŞLIK */
.projects-title {
  margin-bottom: 20px;
}

/* AÇIKLAMA */
.projects-desc {
  margin: 0 auto 20px;
  line-height: 1.5;
  max-width: 744px;
}
.projects-desc.musteri{
    max-width: none;
}
.projects.inner-page .baslik {
  padding-bottom: 80px;
}
.clients .clients-subtitle-wrap {
  margin-bottom: 0;
}

/* LINK */
.projects .button,
.products .button,
.clients .button {
  color: #5d5d5d;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  transition:
    color 0.5s ease,
    border-color 0.5s ease;
}

/* HOVER */
.projects .button:hover, .products .button:hover, .clients .button:hover {
  color: var(--primary-green);
  border-bottom: 1px solid var(--primary-green);
}
.projects .button img, .products .button img, .clients .button img {
  content: url("../../assets/icons/btn-arrow.svg");
  transition: filter 0.7s ease;
}
.projects .button:hover img, .products .button:hover img, .clients .button:hover img {
  content: url("../../assets/icons/btn-arrow-active.svg");
}


/* HOVER (SADECE RENK DEĞİŞİR) */
.card-img:hover .proje-overlay {
  transform: none;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px);
  color: #000 !important;
}

.card-img:hover .proje-overlay span h5,
.card-img:hover .proje-overlay small {
  color: #000 !important;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  /* TÜM GÖRSELLER EŞİT */
  .card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }
  .big img {
    height: 240px;
  }
  .projects-title {
    font-size: 36px;
  }
  .projects-desc {
    font-size: 20px;
  }
  .projects-desc br {
    display: none;
  }
  .projects-inner{
    padding-bottom:20px;
}
}

/* ==========================
        PRODUCTS 
===========================*/
/* CARD FIX SIZE */
.product-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 360 / 450; /* 🔥 en temiz çözüm */
}

/* IMAGE FULL COVER */
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 kırp ama bozma */
  display: block;
}

.product-overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 300px;
  height: 96px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(228, 222, 210, 0.2);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  color: #000;
}

.product-overlay span h4 {
  font-weight: var(--font-medium);
  margin-bottom: 2px;
}

.product-overlay small {
  opacity: 0.8;
}

/* HOVER EFFECT */
.product-card:hover .product-overlay {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
}

/* TEXT HOVER */
.product-card:hover .product-overlay span h4,
.product-card:hover .product-overlay small h6 {
  color: #fff;
}

.product-overlay {
  transition: all 0.3s ease;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  /* overlay mobilde küçülsün */
  .product-overlay {
    width: 85%;
    height: auto;
    padding: 10px;
  }

  .product-overlay span {
    font-size: 13px;
  }

  .product-overlay small {
    font-size: 11px;
  }
}

/* ==========================
    PROJECT-PRODUCT NAV 
===========================*/
.inner-top-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.next-prev {
  display: flex;
  align-items: center;
  gap: 12px;
}
.desktop-only {
  display: inline;
}
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: inline;
  }
}

/* ==========================
        CLIENTS 
===========================*/
.clients-subtitle h4 {
  color: var(--background-gray-drk);
}

/* ==========================
        FOOTER 
===========================*/
.site-footer {
  color: var(--white);
}

.footer-top,
.footer-bottom {
  width: 100%;
  background-color: var(--background-gray-drk);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-gray);
  padding: 0 0 12px;
}
.footer-bottom p {
  color: var(--gray-muted);
  font-size: 16px;
  font-weight: 400;
 

}

.footer-top .container {
  display: flex;
  gap: 42px;
}

.footer-about,
.footer-quick,
.footer-social {
  display: flex;
  flex-direction: column;
}
.footer-quick a{
    transition: color 0.3s ease;
}
.footer-quick a:hover{
    color: var(--primary-green);
}
.footer-top h5 {
  padding-bottom: 16px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}
.footer-top p,
.footer-top a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0;
}
.footer-logo img {
  height: 60px;
  width: 94px;
}
.footer-about h5 {
  padding-bottom: 0;
}
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-language h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray-light);
  padding-right: 16px;
  padding-left: 4px;
  padding-bottom: 0;
}

.footer-language {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer-language img {
  width: 16px;
  height: 16px;
}
.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-social-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.footer-social img {
  width: 24px;
  height: 24px;
}
.footer-adres{
    max-width:141px;
}

/* DESKTOP */
@media (min-width: 768px) {
  .footer-top {
    padding: 48px 0;
  }
  .footer-top .container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .footer-logo .footer-language {
    display: none;
  }
  .footer-top p,
  .footer-top a {
    max-width: 152px;
  }
  .footer-about p {
    max-width: 270px;
  }
  .footer-quick a {
    padding-bottom: 4px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .footer-top .container {
    flex-direction: column;
  }
  .footer-top {
    padding: 40px 0;
  }

  .footer-about .footer-language {
    display: none;
  }

  .footer-logo {
    display: flex;
    align-items: flex-start;
    flex-direction: row !important;
    justify-content: space-between;
  }

  .footer-social-row {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
  }

  .footer-social a {
    flex: unset;
  }
}

/* DROPDOWN */
.footer-language {
  position: relative;
  cursor: pointer;
}

.language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--background-gray-drk);
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  list-style: none;
  padding: 8px 10px;
  margin: 0;
  min-width: 120px;
  z-index: 100;
}

.language-dropdown li a {
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 8px ;
}
.site-footer .language-dropdown li a {
  color: var(--gray-light);
}

.language-dropdown li a:hover {
  background-color: var(--background-gray);
  border-radius: 4px;
}

.footer-language.active .language-dropdown {
  display: block;
}

.footer-language.active .arrow-icon {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

/* ==========================
        PROJELER SAYFASI 
===========================*/
/* GENEL ALAN */
.uygulama {
  background: #f3f3f3;
  padding: 48px 0;
}

/* BAŞLIK */
.uyg-baslik {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #3e8981;
  margin-bottom: 16px;
}

/* QUOTE */
.uyg-quote {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  margin-bottom: 16px;
  max-width: 460px;
}

/* TEXT */
.uyg-text {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin-bottom: 24px;
  max-width: 484px;
}

/* BUTON */
.uyg-btn {
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #5d5d5d;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  border-bottom: 1px solid #5d5d5d;
  padding-bottom: 2px;
}

/* ikon hizası */
.uyg-btn i {
  font-size: 14px;
  line-height: 1;
  color: #5d5d5d;
  font-weight: 900;
  transform: scale(1.2); /* biraz büyüt */
}

.uyg-imgs {
  display: flex;
  gap: 16px;
}

.uyg-imgs img {
  width: calc((100% - 32px) / 3); /* 3 resim + 2 gap */
  height: 289px;
  object-fit: cover;
}
.uyg-imgs.urunler img {
  width: 300px;
  height: 268px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .uygulama .row {
    position: relative;
    text-align: center;
  }

  /* SOL BLOK */
  .uygulama .col-lg-6:first-child,
  .uygulama .col-lg-5 {
    order: 1;
  }

  /* SAĞ BLOK (RESİMLER) */
  .uygulama .col-lg-6:last-child,
  .uygulama .col-lg-7 {
    position: absolute;
    left: 0;
    width: 100%;
    top: 160px; /* 🔥 BURAYI AYARLAYACAKSIN */
  }
  .uygulama .col-lg-7 {
    top: 121px;
  }
  .uyg-baslik.urunler {
    margin-bottom: 8px;
  }
  .uyg-quote.urunler {
    margin-bottom: 20px;
  }
  .uyg-text.urunler {
    margin-top: 171px;
  }

  /* ALTTAKİ TEXT AŞAĞI KAYSIN */
  .uyg-text {
    margin-top: 220px;
  }

  .uyg-btn {
    justify-content: center;
  }

  /* RESİMLER */
  .uyg-imgs {
    justify-content: center;
  }

  .uyg-imgs img {
    width: 30%;
    height: 180px;
  }

  /* FONT */
  .uyg-baslik {
    font-size: 24px;
  }

  .uyg-quote {
    font-size: 20px;
    max-width: 100%;
  }

  .uyg-text {
    font-size: 16px;
    max-width: 100%;
  }
}

.masonry-grid {
  margin-top: 10px;
}

.card-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* TÜM RESİMLER */
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DİKEY */
.img-dikey {
  height: 724px;
}

/* YATAY */
.img-yatay {
  height: 350px;
}

/* FULL (zaten ayrı kullanıyorsun ama garantiye alalım) */
.img-full {
  height: 712px;
}

/* FULL genişlik zaten .big içinde */
.big {
  width: 100%;
}

p.projects-text-line.detay {
  max-width: 100% !important;
  color: #000000;
}

section.projects-text.detay {
  background: none !important;
  padding: 0;
}

section.projects.altbosluk {
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .img-dikey {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  .img-yatay {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  .img-full {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }
  section.projects.altbosluk {
    margin-bottom: 22px;
  }
}

/* GENEL */
.proje-detay {
  padding: 80px 0;
}

/* BACK BUTON */
.proje-back {
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #5d5d5d;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  border-bottom: 1px solid #5d5d5d;
}

/* BAŞLIK */
.proje-title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 36px;
  color: #000;
}

/* AÇIKLAMA */
.proje-desc {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: normal;
  max-width: 383px;
  margin-top: 24px;
}

/* BİLGİ BLOKLARI */
.proje-info h4 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  margin-top: 12px;
  margin-bottom: 4px;
}

.proje-info p {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin-bottom: 0px;
}

/* KALIN YAZILAR */
.proje-info strong {
  font-weight: 500;
}

section.projects.detay.altbosluk {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .proje-title {
    font-size: 24px;
  }

  .proje-desc {
    margin-top: 8px;
  }

  .proje-info {
    margin-top: 40px;
  }

  .proje-info h4 {
    margin-top: 20px;
    margin-bottom: 0px;
  }

  .proje-detay {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.ozellik-list {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
}

.ozellik-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;

  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

/* küçültülmüş ve ortalanmış marker */
.ozellik-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);

  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
}

/* ==========================
        URUNLER 
===========================*/
.load-more-btn {
  text-align: center;
  margin-top: 80px;
}

.load-more-btn button {
  background-color: #3e8981;
  padding: 12px 32px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.load-more-btn span {
  color: #fff;
}
.load-more-btn.mobile {
  display: none;
}
@media (max-width: 768px) {
  .load-more-btn {
    display: none;
  }
  .load-more-btn.mobile {
    display: flex;
    margin-top: 22px;
    flex-direction: row-reverse;
  }
  .load-more-btn.mobile button {
    display: flex;
    border-radius: 50px;
    padding: 8px 20px;
    align-items: center;
    background-color: #c6c6c6;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.25);
  }
  .load-more-btn.mobile img {
    height: 20px;
    padding-right: 8px;
  }
  .toggle-buttons.mobile {
    display: flex;
    padding: 13px 11.5px;
  }
  .projects .load-more-btn.mobile {
    margin-top: 2px;
  }
}

/* ==========================
        HOW TABLE 
===========================*/

.how-table-section {
  background-color: #25514c;
  border-radius: 12px;
}

.how-table-section.uyg {
  background-color: var(--background-gray-drk);
}

.how-table {
  display: flex;
  flex-direction: row;
  padding: 48px 60px;
}

.how-table-item span {
  text-align: center;
  color: #cbece8;
  max-width: 69px;
}

.how-table-list {
  display: flex;
  flex-direction: row;
  gap: 60px;
  padding-top: 8px;
}

.how-table-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.how-table-item .how-table-line {
  height: 200px;
  position: relative;
  padding-left: 40px;
  color: #4fb0a5;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 32px;
}

.how-table-item .how-table-line .subtitle-1 {
  padding-left: 32px;
}

.how-table-item .how-table-line::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #4fb0a5;
}

.how-table-item {
  --i: 1;
  padding-top: calc(var(--i) * 40px);
}

.how-table-item:nth-child(1) {
  --i: 0;
}

.how-table-item:nth-child(2) {
  --i: 1;
}

.how-table-item:nth-child(3) {
  --i: 2;
}

.how-table-item:nth-child(4) {
  --i: 3;
}

.how-table-item:nth-child(5) {
  --i: 4;
}

.how-table-item:nth-child(6) {
  --i: 5;
}

.how-table-title {
  position: relative;
  display: inline-block;
  color: #cbece8;
  font-size: 24px;
  font-weight: 500;
  max-width: 156px;
  font-family: var(--secondary-font);
}

.how-table-title::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background-color: #4fb0a5;
  margin-top: 8px;
}
.close-table {
  position: relative;
  border-radius: 50%;
  border: none;
  background: transparent;
  backdrop-filter: blur(6px);
  color: #4fb0a5;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
  padding: 2px 10px;
  z-index: 10;
}
.table-close {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 0 60px;
  padding-top: 18px;
}
.closeable .how-table {
  padding-top: 0;
}
.table-close .uyg-btn {
  text-decoration: none;
  color: #4fb0a5;
  border-bottom: none;
}

@media (max-width: 768px) {
  .how-table-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0px;
  }

  .how-table-section .container {
    max-width: none;
  }

  .how-table {
    flex-direction: column;
    padding: 60px 0;
    align-items: center;
  }

  .how-table-title::after {
    margin: 6px auto 0;
  }

  .how-table-list {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding-top: 20px;
  }

  .how-table-item {
    flex-direction: row;
    align-items: center;
    padding-top: 0;
    gap: 12px;
    justify-content: space-between;
  }

  .how-table-item .how-table-line {
    height: auto;
    width: 120px;
    padding-left: 0;
    text-align: center;
    max-width: none;
  }

  .how-table-item .how-table-line::before {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
  }

  .how-table-item .how-table-line {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 36px;
  }

  .how-table-item .how-table-line::after {
    content: attr(data-step);
  }

  .how-table-item .subtitle-1 {
    text-align: left;
    max-width: 90px;
    text-align: center;
  }
  .table-close {
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
/* ==========================
        HOW TABLE POP
===========================*/
.uygulama .container {
  display: flex;
  flex-direction: column;
}

.uygulama .how-table-section {
  margin-top: 48px;
}
.how-table-section.closeable {
  height: 0;
  opacity: 0;
  transform: none;
  overflow: hidden;
  transition: none;
  position: relative;
  z-index: 1000;
  pointer-events: none;
  transition:
    height 0.2s ease,
    opacity 0.8s ease,
    transform 0.8s ease;
}

.how-table-section.closeable.show {
  height: auto;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.uyg-btn.active {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}

.uyg-btn img.arrow {
  transition: transform 0.4s ease;
}

.uyg-btn.active img.arrow {
  transform: rotate(180deg);
}
@media (min-width: 769px) {
  .how-table-section .table-close {
    position: relative;
    top: 30px;
  }
}
