:root {
  --turuncu: #ff8a1f;
  --lacivert: #152333;
  --koyu: #0b1520;
  --yazi: #1d2935;
  --gri: #69737c;
  --zemin: #f3f5f6;
  --beyaz: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: var(--yazi);
  background: var(--zemin);
  font-family: Arial, Helvetica, sans-serif;
}


/* ÜST MENÜ */

.ust-menu {
  width: calc(100% - 60px);
  max-width: 1500px;
  min-height: 88px;
  padding: 16px 24px;
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: rgba(24, 36, 49, 0.78);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(13px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  text-decoration: none;
}

.logo-sekil {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--turuncu);
  border: 3px solid var(--turuncu);
  font-size: 0;
  transform: rotate(45deg);
}

.logo-sekil::after {
  content: "Y";
  font-size: 25px;
  font-weight: 900;
  transform: rotate(-45deg);
}

.logo strong,
.logo small {
  display: block;
}

.logo strong {
  font-size: 19px;
  letter-spacing: 1.5px;
}

.logo small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  letter-spacing: 1.25px;
}

nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

nav a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 4px;
  left: 0;
  background: var(--turuncu);
  transition: 0.25s;
}

nav a:hover {
  color: white;
}

nav a:hover::after {
  width: 100%;
}

.menu-iletisim {
  padding: 14px 20px;
  color: white;
  background: var(--turuncu);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s;
}

.menu-iletisim:hover {
  background: #e8750b;
}


/* ANA EKRAN */

.giris {
  width: 100%;
  min-height: 100vh;
  padding: 215px 7% 90px;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  background:
    linear-gradient(
      90deg,
      rgba(8, 20, 31, 0.94) 0%,
      rgba(8, 20, 31, 0.75) 48%,
      rgba(8, 20, 31, 0.25) 100%
    ),
    url("https://i.postimg.cc/ZR60HGfH/488617989-10235090319022209-3622038099666770072-n.jpg");;
  background-position: center;
  background-size: cover;
}

.giris::after {
  content: "";
  width: 86%;
  height: 1px;
  position: absolute;
  bottom: 55px;
  left: 7%;
  background: rgba(255, 255, 255, 0.25);
}

.giris-yazi {
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.ust-baslik {
  margin-bottom: 24px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
}

.ust-baslik::before {
  content: "";
  width: 44px;
  height: 3px;
  display: inline-block;
  margin-right: 14px;
  vertical-align: middle;
  background: var(--turuncu);
}

h1 {
  max-width: 1100px;
  color: white;
  font-size: clamp(67px, 9vw, 135px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -6px;
  text-transform: uppercase;
}

h1 span {
  color: white;
  -webkit-text-stroke: 0;
}

.aciklama {
  max-width: 650px;
  margin: 35px 0 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.8;
}

.butonlar {
  max-width: 650px;
  margin: 28px 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.ana-buton,
.ikinci-buton {
  min-height: 55px;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s;
}

.ana-buton {
  color: var(--lacivert);
  background: white;
}

.ana-buton::after {
  content: "→";
  width: 39px;
  height: 39px;
  margin-left: 15px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--turuncu);
  border-radius: 8px;
  font-size: 19px;
}

.ana-buton:hover {
  transform: translateY(-2px);
}

.ikinci-buton {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.ikinci-buton:hover {
  border-color: var(--turuncu);
  background: rgba(255, 255, 255, 0.08);
}

.ozellikler {
  max-width: 650px;
  margin: 30px 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ozellikler span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  font-size: 11px;
}

.giris-gorsel {
  display: none;
}


/* HİZMETLER */

.hizmetler {
  padding: 105px 6%;
  color: var(--yazi);
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 138, 31, 0.09),
      transparent 25%
    ),
    var(--zemin);
}

.bolum-baslik {
  width: min(1400px, 100%);
  margin: 0 auto 30px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 45px;
  border: 1px solid #e4e7e9;
  border-radius: 25px;
  background: white;
  box-shadow: 0 20px 55px rgba(24, 36, 49, 0.07);
}

.turuncu-baslik {
  width: fit-content;
  margin-bottom: 17px;
  padding: 9px 14px;
  color: #e8750b;
  background: #fff1e4;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.bolum-baslik h2 {
  max-width: 680px;
  color: var(--yazi);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -3px;
  text-transform: none;
}

.bolum-aciklama {
  color: var(--gri);
  font-size: 16px;
  line-height: 1.8;
}

.hizmet-kartlari {
  width: min(1400px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.hizmet-karti {
  min-height: 260px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  color: var(--yazi);
  border: 1px solid #e2e5e7;
  border-radius: 20px;
  background: white;
  box-shadow: 0 13px 35px rgba(24, 36, 49, 0.05);
  transition: 0.25s;
}

.hizmet-karti::after {
  content: "→";
  width: 40px;
  height: 40px;
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--lacivert);
  border-radius: 50%;
  transition: 0.25s;
}

.hizmet-karti:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(24, 36, 49, 0.12);
}

.hizmet-karti:hover::after {
  background: var(--turuncu);
  transform: rotate(-35deg);
}

.kart-numara {
  color: var(--turuncu);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.kart-cizgi {
  width: 45px;
  height: 3px;
  margin: 32px 0;
  background: var(--turuncu);
}

.hizmet-karti h3 {
  margin-bottom: 13px;
  padding-right: 45px;
  color: var(--yazi);
  font-size: 21px;
  text-transform: none;
}

.hizmet-karti p {
  max-width: 310px;
  padding-right: 25px;
  color: var(--gri);
  font-size: 14px;
  line-height: 1.7;
}


/* TABLET */

@media (max-width: 1050px) {
  nav {
    display: none;
  }

  h1 {
    font-size: clamp(65px, 11vw, 100px);
  }

  .bolum-baslik {
    grid-template-columns: 1fr;
  }

  .hizmet-kartlari {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* TELEFON */

@media (max-width: 650px) {
  .ust-menu {
    width: calc(100% - 24px);
    min-height: 74px;
    top: 12px;
    padding: 12px 17px;
  }

  .logo-sekil {
    width: 38px;
    height: 38px;
  }

  .logo-sekil::after {
    font-size: 21px;
  }

  .logo strong {
    font-size: 15px;
  }

  .logo small {
    font-size: 6px;
  }

  .menu-iletisim {
    display: none;
  }

  .giris {
    min-height: 850px;
    padding: 155px 6% 100px;
    align-items: center;
    background:
  linear-gradient(rgba(8, 20, 31, 0.72), rgba(8, 20, 31, 0.94)),
  url("https://i.postimg.cc/ZR60HGfH/488617989-10235090319022209-3622038099666770072-n.jpg")
  center center / cover no-repeat;
  }

  .ust-baslik {
    font-size: 10px;
    letter-spacing: 2px;
  }

  h1 {
    font-size: 55px;
    line-height: 0.92;
    letter-spacing: -3px;
  }

  .aciklama,
  .butonlar,
  .ozellikler {
    margin-left: 0;
  }

  .aciklama {
    font-size: 15px;
  }

  .butonlar {
    flex-direction: column;
    align-items: stretch;
  }

  .ana-buton,
  .ikinci-buton {
    width: 100%;
  }

  .ozellikler {
    gap: 7px;
  }

  .hizmetler {
    padding: 65px 5%;
  }

  .bolum-baslik {
    padding: 28px 23px;
    border-radius: 18px;
  }

  .bolum-baslik h2 {
    font-size: 39px;
    letter-spacing: -2px;
  }

  .hizmet-kartlari {
    grid-template-columns: 1fr;
  }

  .hizmet-karti {
    min-height: 235px;
  }/* KURUMSAL / HAKKIMIZDA */

  }

.kurumsal {
  padding: 110px 6%;
  color: #1d2935;
  background: #ffffff;
}

.kurumsal-icerik {
  width: min(1400px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 75px;
}

.kurumsal-foto {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(24, 36, 49, 0.17);
}

.kurumsal-foto::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      transparent 55%,
      rgba(7, 18, 28, 0.75)
    );
}

.kurumsal-foto img {
  width: 100%;
  height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.foto-etiket {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 11px 16px;
  color: white;
  background: #ff8a1f;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.mini-baslik {
  width: fit-content;
  margin-bottom: 20px;
  padding: 9px 14px;
  color: #e8750b;
  background: #fff1e4;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
}

.kurumsal-yazi h2 {
  max-width: 760px;
  margin-bottom: 30px;
  color: #1d2935;
  font-size: clamp(45px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -3px;
}

.kurumsal-yazi > p {
  max-width: 730px;
  margin-bottom: 17px;
  color: #69737c;
  font-size: 16px;
  line-height: 1.85;
}

.kurumsal-ozet {
  margin: 37px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e1e5e7;
  border-bottom: 1px solid #e1e5e7;
}

.kurumsal-ozet div {
  padding: 24px 18px;
  border-right: 1px solid #e1e5e7;
}

.kurumsal-ozet div:last-child {
  border-right: none;
}

.kurumsal-ozet strong,
.kurumsal-ozet span {
  display: block;
}

.kurumsal-ozet strong {
  margin-bottom: 7px;
  color: #ff8a1f;
  font-size: 21px;
}

.kurumsal-ozet span {
  color: #69737c;
  font-size: 12px;
}

.kurumsal-buton {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 9px 10px 9px 21px;
  color: white;
  background: #152333;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.kurumsal-buton span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  background: #ff8a1f;
  border-radius: 8px;
  font-size: 20px;
}

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

  .kurumsal-foto,
  .kurumsal-foto img {
    min-height: 520px;
    height: 520px;
  }
}

@media (max-width: 600px) {
  .kurumsal {
    padding: 70px 5%;
  }

  .kurumsal-foto,
  .kurumsal-foto img {
    min-height: 420px;
    height: 420px;
  }

  .kurumsal-yazi h2 {
    font-size: 41px;
    letter-spacing: -2px;
  }

  .kurumsal-ozet {
    grid-template-columns: 1fr;
  }

  .kurumsal-ozet div {
    border-right: none;
    border-bottom: 1px solid #e1e5e7;
  }

  .kurumsal-ozet div:last-child {
    border-bottom: none;
  }
}
/* ÜRÜNLERİMİZ */

.urunler-bolumu {
  padding: 110px 6%;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 126, 20, 0.13),
      transparent 32%
    ),
    #101c2b;
}

.urunler-bolumu * {
  box-sizing: border-box;
}

.urunler-kapsayici {
  width: min(1400px, 100%);
  margin: auto;
}

.urunler-ust {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 55px;
}

.urunler-mini {
  display: inline-block;
  margin: 0 0 18px;
  padding: 11px 18px;
  color: #ff7a14;
  background: rgba(255, 122, 20, 0.12);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.urunler-ust h2 {
  margin: 0;
  color: white;
  font-size: clamp(45px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -4px;
}

.urunler-ust > p {
  margin: 0;
  color: #aeb8c4;
  font-size: 17px;
  line-height: 1.8;
}

.urunler-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.urun-karti {
  position: relative;
  display: block;
  overflow: hidden;
  color: #1d2935;
  background: white;
  border-radius: 22px;
  text-decoration: none;
  transition: 0.3s ease;
}

.urun-karti:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}

.urun-gorsel {
  position: relative;
  height: 285px;
  padding: 20px;
  background: radial-gradient(circle, white 0%, #eef1f4 75%);
}

.urun-gorsel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.35s ease;
  filter: drop-shadow(0 18px 15px rgba(15, 28, 40, 0.2));
}

.urun-karti:hover .urun-gorsel img {
  transform: scale(1.07);
}

.urun-numara {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  min-width: 45px;
  padding: 9px 11px;
  color: white;
  background: #ff7a14;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.urun-bilgi {
  padding: 22px 24px 25px;
}

.urun-bilgi h3 {
  margin: 0 0 8px;
  color: #1d2935;
  font-size: 19px;
}

.urun-bilgi p {
  margin: 0;
  color: #74808c;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .urunler-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .urunler-bolumu {
    padding: 75px 25px;
  }

  .urunler-ust {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .urunler-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .urun-gorsel {
    height: 235px;
  }
}

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

  .urun-gorsel {
    height: 280px;
  }
}
/* GALERİ */

.galeri-bolumu {
  padding: 110px 6%;
  color: #1d2935;
  background:
    radial-gradient(
      circle at bottom left,
      rgba(255, 122, 20, 0.1),
      transparent 30%
    ),
    #f1f3f4;
}

.galeri-bolumu * {
  box-sizing: border-box;
}

.galeri-kapsayici {
  width: min(1400px, 100%);
  margin: auto;
}

.galeri-ust {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 55px;
}

.galeri-mini {
  display: inline-block;
  margin: 0 0 18px;
  padding: 11px 18px;
  color: #ff7a14;
  background: #ffeadb;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.galeri-ust h2 {
  margin: 0;
  color: #1d2935;
  font-size: clamp(45px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -4px;
}

.galeri-ust > p {
  margin: 0;
  color: #65717d;
  font-size: 17px;
  line-height: 1.8;
}

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 20px;
}

.galeri-kart {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #101c2b;
  box-shadow: 0 16px 40px rgba(25, 38, 51, 0.15);
}

.galeri-buyuk {
  grid-column: span 2;
  grid-row: span 2;
}

.galeri-dis {
  grid-column: 1 / -1;
}

.galeri-kart::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 20, 31, 0.88),
    transparent 60%
  );
}

.galeri-kart img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.galeri-kart:hover img {
  transform: scale(1.06);
}

.galeri-kart span {
  position: absolute;
  z-index: 2;
  left: 25px;
  bottom: 22px;
  color: white;
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .galeri-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .galeri-dis {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .galeri-bolumu {
    padding: 75px 20px;
  }

  .galeri-ust {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .galeri-ust h2 {
    letter-spacing: -2px;
  }

  .galeri-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .galeri-buyuk {
    grid-column: auto;
    grid-row: auto;
  }

  .galeri-dis {
    grid-column: auto;
  }
}
.foto-pencere {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
  background: rgba(5, 13, 22, 0.94);
  cursor: zoom-out;
}

.foto-pencere img {
  width: auto !important;
  height: auto !important;
  max-width: 90vw !important;
  max-height: 85vh !important;
  object-fit: contain !important;
  border-radius: 15px;
}
}
}

.foto-kapat {
  position: absolute;
  top: 20px;
  right: 28px;
  border: 0;
  color: white;
  background: transparent;
  font-size: 48px;
  cursor: pointer;
}
/* İLETİŞİM */

.iletisim-bolumu {
  padding: 110px 6%;
  color: white;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 122, 20, 0.2),
      transparent 32%
    ),
    #101c2b;
}

.iletisim-bolumu * {
  box-sizing: border-box;
}

.iletisim-kapsayici {
  width: min(1400px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.iletisim-mini {
  display: inline-block;
  margin: 0 0 22px;
  padding: 11px 18px;
  color: #ff7a14;
  background: rgba(255, 122, 20, 0.15);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.iletisim-baslik h2 {
  max-width: 750px;
  margin: 0 0 28px;
  font-size: clamp(45px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -4px;
}

.iletisim-baslik > p {
  max-width: 650px;
  margin: 0;
  color: #aeb8c3;
  font-size: 17px;
  line-height: 1.8;
}

.iletisim-butonlar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 38px;
}

.iletisim-buton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.whatsapp-buton {
  gap: 25px;
  color: #101c2b;
  background: white;
}

.whatsapp-buton span {
  padding: 10px 14px;
  color: white;
  background: #ff7a14;
  border-radius: 9px;
  font-size: 20px;
}

.telefon-buton {
  color: white;
  border: 1px solid #526071;
}

.iletisim-buton:hover {
  transform: translateY(-3px);
}

.iletisim-kartlar {
  display: grid;
  gap: 18px;
}

.iletisim-kart {
  position: relative;
  padding: 35px;
  overflow: hidden;
  background: #182638;
  border: 1px solid #2d3c4f;
  border-radius: 20px;
}

.iletisim-numara {
  position: absolute;
  top: 22px;
  right: 25px;
  color: #ff7a14;
  font-size: 14px;
  font-weight: 800;
}

.iletisim-kart p {
  margin: 0 0 18px;
  color: #ff7a14;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.iletisim-kart > a {
  color: white;
  font-size: 25px;
  font-weight: 800;
  text-decoration: none;
}

.iletisim-kart address {
  max-width: 520px;
  color: white;
  font-style: normal;
  font-size: 18px;
  line-height: 1.8;
}

.iletisim-kart .harita-link {
  display: inline-block;
  margin-top: 22px;
  color: #ff7a14;
  font-size: 15px;
}

.site-footer {
  padding: 25px 6%;
  color: #8e9aa7;
  background: #0a1420;
  text-align: center;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 800px) {
  .iletisim-bolumu {
    padding: 75px 20px;
  }

  .iletisim-kapsayici {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .iletisim-baslik h2 {
    letter-spacing: -2px;
  }

  .iletisim-butonlar {
    flex-direction: column;
  }

  .iletisim-buton {
    width: 100%;
  }
}
/* ANA SAYFA VİDEO GEÇİŞLERİ */

.giris {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-video-alani {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #08141f;
  pointer-events: none;
}

.hero-video-alani .hero-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: heroVideoDonus 25s infinite;
}

/* Her video 6 saniye arayla görünür */

.hero-video:nth-child(1) {
  animation-delay: 0s;
}

.hero-video:nth-child(2) {
  animation-delay: 5s;
}

.hero-video:nth-child(3) {
  animation-delay: 10s;
}

.hero-video:nth-child(4) {
  animation-delay: 15s;
}

.hero-video:nth-child(5) {
  animation-delay: 20s;-
}

@keyframes heroVideoDonus {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  2% {
    opacity: 1;
  }

  18% {
    opacity: 1;
  }

  22% {
    opacity: 0;
    transform: scale(1);
  }

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

.hero-video-karartma {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(8, 20, 31, 0.94) 0%,
    rgba(8, 20, 31, 0.72) 55%,
    rgba(8, 20, 31, 0.45) 100%
  );
}

.giris-yazi,
.giris-gorsel {
  position: relative;
  z-index: 2;
}

@media (max-width: 650px) {
  .hero-video-alani .hero-video {
    object-position: center;
  }

  .hero-video-karartma {
    background: linear-gradient(
      rgba(8, 20, 31, 0.62),
      rgba(8, 20, 31, 0.94)
    );
  }
}
.hero-ilerleme {
  height: 3px;
  position: absolute;
  right: 7%;
  bottom: 32px;
  left: 7%;
  z-index: 4;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.hero-ilerleme span {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #ff8a1f;
  transform-origin: left;
  animation: videoIlerleme 5s linear infinite;
}

@keyframes videoIlerleme {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 650px) {
  .hero-ilerleme {
    right: 6%;
    bottom: 22px;
    left: 6%;
  }
}
.sabit-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  padding: 12px 19px 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  border-radius: 50px;
  background: #25d366;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.sabit-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-4px);
}

.whatsapp-ikon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 19px;
}

@media (max-width: 650px) {
  .sabit-whatsapp {
    right: 15px;
    bottom: 15px;
    padding: 10px;
  }

  .whatsapp-yazi {
    display: none;
  }

  .whatsapp-ikon {
    width: 42px;
    height: 42px;
  }
}
.sabit-whatsapp {
  width: 62px !important;
  height: 62px !important;
  padding: 0 !important;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: grid !important;
  place-items: center;
  border-radius: 50% !important;
  background: #25d366;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.sabit-whatsapp svg {
  width: 33px;
  height: 33px;
  fill: white;
}

.sabit-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-4px) scale(1.06);
}

@media (max-width: 650px) {
  .sabit-whatsapp {
    width: 56px !important;
    height: 56px !important;
    right: 15px;
    bottom: 15px;
  }

  .sabit-whatsapp svg {
    width: 30px;
    height: 30px;
  }
}
 .sabit-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  padding: 12px 19px 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  border-radius: 50px;
  background: #25d366;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.sabit-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-4px);
}

.whatsapp-ikon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 19px;
}

@media (max-width: 650px) {
  .sabit-whatsapp {
    right: 15px;
    bottom: 15px;
    padding: 10px;
  }

  .whatsapp-yazi {
    display: none;
  }

  .whatsapp-ikon {
    width: 42px;
    height: 42px;
  }
}
.hero-video-etiketleri {
  position: absolute;
  right: 6%;
  bottom: 38px;
  z-index: 4;
}

.hero-video-etiketleri span {
  position: absolute;
  right: 0;
  bottom: 0;
  width: max-content;
  padding: 9px 15px;
  color: #fff;
  background: rgba(10, 25, 40, 0.78);
  border-left: 3px solid #ff851b;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  animation: heroEtiketDonus 25s infinite;
}

.hero-video-etiketleri span:nth-child(2) {
  animation-delay: 5s;
}

.hero-video-etiketleri span:nth-child(3) {
  animation-delay: 10s;
}

.hero-video-etiketleri span:nth-child(4) {
  animation-delay: 15s;
}

.hero-video-etiketleri span:nth-child(5) {
  animation-delay: 20s;
}

@keyframes heroEtiketDonus {
  0%, 18% {
    opacity: 1;
    transform: translateY(0);
  }

  22%, 100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (max-width: 650px) {
  .hero-video-etiketleri {
    right: 18px;
    bottom: 28px;
  }

  .hero-video-etiketleri span {
    font-size: 10px;
    padding: 7px 10px;
  }
}
@media (max-width: 650px) {
  .giris {
    min-height: 100svh;
    padding: 115px 20px 85px;
  }

  .giris-yazi {
    width: 100%;
    max-width: 100%;
  }

  .giris-yazi h1 {
    font-size: clamp(47px, 13vw, 66px);
    line-height: 0.91;
    letter-spacing: -2px;
  }

  .giris-yazi > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .giris-butonlar {
    display: grid;
    width: 100%;
    gap: 12px;
  }

  .giris-butonlar a {
    width: 100%;
    justify-content: center;
  }

  .giris-ozellikler {
    gap: 8px;
    flex-wrap: wrap;
  }
}
.urun-karti {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.urun-karti::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: #ff851b;
  transition: width 0.3s ease;
}

.urun-karti img {
  transition: transform 0.4s ease;
}

.urun-karti:hover {
  transform: translateY(-9px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
}

.urun-karti:hover::after {
  width: 100%;
}

.urun-karti:hover img {
  transform: scale(1.09);
}

@media (max-width: 650px) {
  .urun-karti:hover {
    transform: none;
  }

  .urun-karti:active {
    transform: scale(0.97);
  }
}
@keyframes kartGiris {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

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

@supports (animation-timeline: view()) {
  .urun-karti,
  .hizmet-karti,
  .galeri-kart,
  .iletisim-kart {
    animation: kartGiris linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .urun-karti,
  .hizmet-karti,
  .galeri-kart,
  .iletisim-kart {
    animation: none;
  }
}
.sabit-whatsapp::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(37, 211, 102, 0.65);
  border-radius: 50%;
  pointer-events: none;
  animation: whatsappNabiz 2s ease-out infinite;
}

@keyframes whatsappNabiz {
  0% {
    opacity: 0.8;
    transform: scale(0.85);
  }

  70% {
    opacity: 0;
    transform: scale(1.3);
  }

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

@media (prefers-reduced-motion: reduce) {
  .sabit-whatsapp::before {
    animation: none;
  }
}
html {
  scrollbar-width: thin;
  scrollbar-color: #ff851b #0d1b2a;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #0d1b2a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#ff9a3c, #ff6f00);
  border: 3px solid #0d1b2a;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff9a3c;
}
.hero-video-etiketleri {
  right: 110px;
}

@media (max-width: 650px) {
  .hero-video-etiketleri {
    right: 18px;
    bottom: 92px;
  }
}
section[id] {
  scroll-margin-top: 125px;
}

@media (max-width: 650px) {
  section[id] {
    scroll-margin-top: 90px;
  }
}
.yukari-cik {
  position: fixed;
  right: 31px;
  bottom: 100px;
  z-index: 9998;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: white;
  background: #0d1b2a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  font-size: 25px;
  text-decoration: none;
  transition: 0.25s ease;
}

.yukari-cik:hover {
  color: white;
  background: #ff851b;
  transform: translateY(-4px);
}

@media (max-width: 650px) {
  .yukari-cik {
    right: 20px;
    bottom: 84px;
    width: 46px;
    height: 46px;
  }
}
.site-footer {
  position: relative;
  padding: 32px 20px;
  overflow: hidden;
  color: #aeb9c5;
  background: #081522;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(500px, 70%);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff851b,
    transparent
  );
  transform: translateX(-50%);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.3px;
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}
.giris {
  background-color: #0d1b2a;
  background-image:
    linear-gradient(
      rgba(7, 20, 32, 0.72),
      rgba(7, 20, 32, 0.82)
    ),
    url("https://i.postimg.cc/ZR60HGfH/488617989-10235090319022209-3622038099666770072-n.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.iletisim-kart,
.iletisim-kart * {
  opacity: 1 !important;
  filter: none !important;
}

.iletisim-kart > p,
.iletisim-numara,
.iletisim-kart a[href^="tel:"],
.harita-link {
  color: #ff851b !important;
}

.iletisim-kart address {
  color: #dce5ee !important;
  font-weight: 500;
}
.urun-karti,
.hizmet-karti,
.galeri-kart,
.iletisim-kart {
  animation: none !important;
  opacity: 1 !important;
  filter: none !important;
}
.metin-cerceve {
  padding: 18px 20px;
  color: #586775;
  background: #f8fafc;
  border: 1px solid #dce3e9;
  border-left: 4px solid #ff851b;
  border-radius: 12px;
  line-height: 1.7;
  box-shadow: 0 10px 25px rgba(13, 27, 42, 0.06);
}
.foto-pencere {
  overflow: hidden;
}

.foto-pencere img {
  width: min(94vw, 250px) !important;
  height: 92vh !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  transform: scale(1.3) !important;
  transform-origin: center;
}

@media (max-width: 400px) {
  .foto-pencere img {
    width: 96vw !important;
    height: 86vh !important;
    transform: scale(1.4) !important;
  }
}
.foto-pencere {
  background-color: #07131f !important;
  background-image:
    linear-gradient(rgba(255, 133, 27, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 133, 27, 0.045) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 133, 27, 0.18), transparent 52%) !important;
  background-size: 45px 45px, 45px 45px, auto !important;
}

.foto-pencere::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(255, 133, 27, 0.3);
  border-radius: 26px;
  pointer-events: none;
  box-shadow:
    inset 0 0 45px rgba(255, 133, 27, 0.06),
    0 0 30px rgba(255, 133, 27, 0.08);
}

.foto-pencere img {
  border: 2px solid rgba(255, 133, 27, 0.7) !important;
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.75),
    0 0 0 8px rgba(255, 255, 255, 0.035),
    0 0 55px rgba(255, 133, 27, 0.22) !important;
}

.foto-kapat {
  transition: transform 0.25s ease, background 0.25s ease;
}

.foto-kapat:hover {
  background: #ff5f00;
  transform: rotate(90deg) scale(1.08);
}
.foto-pencere {
  background-color: #07131f !important;
  background-image:
    linear-gradient(rgba(255, 133, 27, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 133, 27, 0.045) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 133, 27, 0.18), transparent 52%) !important;
  background-size: 45px 45px, 45px 45px, auto !important;
}

.foto-pencere::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(255, 133, 27, 0.3);
  border-radius: 26px;
  pointer-events: none;
  box-shadow:
    inset 0 0 45px rgba(255, 133, 27, 0.06),
    0 0 30px rgba(255, 133, 27, 0.08);
}

.foto-pencere img {
  border: 2px solid rgba(255, 133, 27, 0.7) !important;
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.75),
    0 0 0 8px rgba(255, 255, 255, 0.035),
    0 0 55px rgba(255, 133, 27, 0.22) !important;
}

.foto-kapat {
  transition: transform 0.25s ease, background 0.25s ease;
}

.foto-kapat:hover {
  background: #ff5f00;
  transform: rotate(90deg) scale(1.08);
}
.foto-pencere img {
  width: min(78vw, 760px) !important;
  height: min(78vw, 760px) !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transform: scale(1.08) !important;
}

@media (max-width: 300px) {
  .foto-pencere img {
    width: 88vw !important;
    height: 88vw !important;
    transform: scale(1.08) !important;
  }
}
.foto-pencere {
  perspective: 1300px;
}

.foto-pencere img {
  transform:
    perspective(1300px)
    rotateX(3deg)
    rotateY(-5deg)
    scale(1.06) !important;

  transform-style: preserve-3d;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.foto-pencere img:hover {
  transform:
    perspective(1300px)
    rotateX(-2deg)
    rotateY(5deg)
    scale(1.1) !important;

  box-shadow:
    -25px 35px 90px rgba(0, 0, 0, 0.75),
    15px -10px 45px rgba(255, 133, 27, 0.25) !important;
}

@media (max-width: 650px) {
  .foto-pencere img {
    transform: perspective(1000px) rotateX(2deg) rotateY(-3deg)
      scale(1.05) !important;
  }
}
.foto-pencere img {
  width: min(68vw, 680px) !important;
  height: min(68vw, 680px) !important;
  object-fit: contain !important;
  transform: none !important;
  filter: none !important;
  image-rendering: auto;
}

.foto-pencere img:hover {
  transform: scale(1.02) !important;
}
/* ÜRÜN KARTLARINI ZORLA GÖSTER */
#urunler-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  margin-top: 45px;
}

#urunler-grid .urun-karti {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
}

@media (max-width: 900px) {
  #urunler-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 550px) {
  #urunler-grid {
    grid-template-columns: 1fr;
  }
}
/* Ürün fotoğrafının beyaz zeminini kartla birleştir */
#urunler-grid .urun-gorsel {
  background: #ffffff !important;
}

#urunler-grid .urun-gorsel img {
  display: block;
  width: 100%;
  height: 280px;
  padding: 22px;
  object-fit: contain;
  background: #ffffff !important;
}
.site-footer {
  padding: 55px 20px 25px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 126, 20, 0.12), transparent 45%),
    #091827;
  border-top: 1px solid rgba(255, 126, 20, 0.35);
}

.footer-imza {
  width: min(720px, 100%);
  margin: 0 auto 38px;
}

.footer-mini {
  display: inline-block;
  margin-bottom: 22px;
  color: #ff7e14;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
}

.footer-isimler {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.footer-kisi {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 20px;
}

.isim-harfi {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #ff8a1f, #d75b00);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(255, 126, 20, 0.25);
  font-weight: 900;
}

.isim-ayrac {
  width: 1px;
  height: 42px;
  background: linear-gradient(
    transparent,
    rgba(255, 126, 20, 0.8),
    transparent
  );
}

.footer-telif {
  margin: 0;
  padding-top: 22px;
  color: #91a0af;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

@media (max-width: 600px) {
  .footer-isimler {
    flex-direction: column;
    gap: 16px;
  }

  .isim-ayrac {
    width: 120px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 126, 20, 0.8),
      transparent
    );
  }

  .footer-kisi {
    width: 220px;
    font-size: 18px;
    text-align: left;
  }
}
.site-footer {
  padding: 70px 20px 25px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 126, 20, 0.13), transparent 42%),
    #091827;
  border-top: 1px solid rgba(255, 126, 20, 0.35);
}

.footer-imza {
  width: min(760px, 100%);
  margin: 0 auto 45px;
}

.footer-cizgi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
}

.footer-cizgi > span {
  width: 90px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff7e14
  );
}

.footer-cizgi > span:last-child {
  background: linear-gradient(
    90deg,
    #ff7e14,
    transparent
  );
}

.footer-logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #ff7e14;
  border: 2px solid #ff7e14;
  transform: rotate(45deg);
  font-size: 23px;
  font-weight: 900;
}

.footer-logo::first-letter {
  transform: rotate(-45deg);
}

.footer-logo {
  line-height: 1;
}

.footer-isimler {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  font-size: clamp(24px, 4vw, 38px);
}

.footer-isimler strong {
  font-weight: 850;
  letter-spacing: -1px;
}

.footer-isimler > span {
  color: #ff7e14;
  font-weight: 400;
}

.footer-soz {
  margin: 17px 0 0;
  color: #c7d0d9;
  font-size: 16px;
  letter-spacing: 0.3px;
}

.footer-konum {
  margin: 25px 0 0;
  color: #ff7e14;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
}

.footer-konum span {
  margin: 0 8px;
  color: #ffffff;
}

.footer-telif {
  margin: 0;
  padding-top: 23px;
  color: #7e8d9c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 55px;
  }

  .footer-isimler {
    flex-direction: column;
    gap: 7px;
  }

  .footer-isimler > span {
    font-size: 20px;
  }

  .footer-soz {
    max-width: 300px;
    margin: 18px auto 0;
    line-height: 1.7;
  }

  .footer-cizgi > span {
    width: 55px;
  }
}
/* ÇALIŞMA SÜRECİ */
.calisma-sureci {
  padding: 105px 6%;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 126, 20, 0.12), transparent 32%),
    #091827;
}

.surec-kapsayici {
  width: min(1400px, 100%);
  margin: auto;
}

.surec-baslik {
  max-width: 720px;
  margin-bottom: 60px;
}

.surec-baslik > p {
  display: inline-block;
  margin: 0 0 18px;
  padding: 10px 17px;
  color: #ff7e14;
  background: rgba(255, 126, 20, 0.13);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
}

.surec-baslik h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -3px;
}

.surec-baslik > span {
  color: #aeb9c4;
  font-size: 17px;
  line-height: 1.7;
}

.surec-adimlari {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.surec-adim {
  position: relative;
  min-height: 300px;
  padding: 35px 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.surec-adim::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  background: rgba(255, 126, 20, 0.08);
  border-radius: 50%;
}

.surec-adim:hover {
  transform: translateY(-8px);
  border-color: #ff7e14;
}

.surec-numara {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #ff7e14;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.surec-ikon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  color: #ffffff;
  background: #ff7e14;
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(255, 126, 20, 0.22);
  font-size: 25px;
  font-weight: 900;
}

.surec-adim h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 15px;
  font-size: 21px;
}

.surec-adim p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #aeb9c4;
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 950px) {
  .surec-adimlari {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .calisma-sureci {
    padding: 75px 24px;
  }

  .surec-baslik {
    margin-bottom: 40px;
  }

  .surec-baslik h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .surec-adimlari {
    grid-template-columns: 1fr;
  }

  .surec-adim {
    min-height: 260px;
  }
}
/* SIK SORULAN SORULAR */
.sss-bolumu {
  padding: 110px 6%;
  color: #172534;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 126, 20, 0.1), transparent 30%),
    #f2f5f7;
}

.sss-kapsayici {
  width: min(1400px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.sss-sol {
  position: sticky;
  top: 120px;
}

.sss-mini {
  display: inline-block;
  margin: 0 0 20px;
  padding: 10px 18px;
  color: #ff7412;
  background: #ffeadb;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
}

.sss-sol h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.92;
  letter-spacing: -4px;
}

.sss-aciklama {
  max-width: 460px;
  margin: 28px 0;
  color: #687583;
  font-size: 16px;
  line-height: 1.8;
}

.sss-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  color: #ffffff;
  background: #132435;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.sss-whatsapp span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #ff7e14;
  border-radius: 9px;
  font-size: 20px;
}

.sss-listesi {
  display: grid;
  gap: 14px;
}

.sss-kart {
  padding: 0 28px;
  background: #ffffff;
  border: 1px solid #dce2e7;
  border-radius: 17px;
  box-shadow: 0 15px 40px rgba(23, 37, 52, 0.06);
  overflow: hidden;
}

.sss-kart summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 850;
}

.sss-kart summary::-webkit-details-marker {
  display: none;
}

.sss-kart summary span {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #ff7e14;
  border-radius: 50%;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.sss-kart[open] summary span {
  transform: rotate(45deg);
}

.sss-kart p {
  margin: 0;
  padding: 0 65px 28px 0;
  color: #687583;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 850px) {
  .sss-kapsayici {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sss-sol {
    position: static;
  }
}

@media (max-width: 600px) {
  .sss-bolumu {
    padding: 75px 22px;
  }

  .sss-sol h2 {
    font-size: 46px;
    letter-spacing: -2px;
  }

  .sss-kart {
    padding: 0 20px;
  }

  .sss-kart summary {
    min-height: 80px;
    font-size: 16px;
  }

  .sss-kart p {
    padding-right: 0;
  }