
/* Header */

.footer-left {
  position: relative;
  margin-top: 50px;
  padding: 30px 15px 20px;
  text-align: center;
  max-width: 100%;
  background: #1e1e1e; /* Gri arka plan */
  isolation: isolate;
  color: #bbb; /* Yazı rengi */
}

/* Modern çizgi efekti */
.footer-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0) 100%);
  opacity: 0.5;
  z-index: 1;
}

/* İç yazılar için */
.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  margin: 6px 0;
  z-index: 2;
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-left {
    padding: 25px 10px 15px;
  }

  .footer-left p {
    font-size: 13px;
  }
}

.kodem-link {
  color: #bbb;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  background: linear-gradient(90deg, #2ecc71, #a9f7cd);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: kodemParlama 12s ease-in-out infinite;
}

@keyframes kodemParlama {
  0%, 10% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.kodem-link:hover {
  opacity: 0.85;
}


.neas-text-wrapper {
  display: inline-block;
  font-weight: 600;
  color: #bbb;
  position: relative;
}

.neas-text-wrapper::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: #4a6580;
  animation: underlineSweep 10s ease-in-out infinite;
}

@keyframes underlineSweep {
  0%, 10%, 100% {
    width: 0;
    opacity: 0;
  }
  30%, 60% {
    width: 100%;
    opacity: 1;
  }
  80% {
    width: 0;
    opacity: 0;
  }
}

.neas-text-wrapper:hover {
  color: #4a6580;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background: linear-gradient(to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,1) 20%,
        rgba(255,255,255,0) 100%
    );
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    overflow: visible;
}

/* Scroll sonrası header */
.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Header iç container */
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    overflow: visible;
}

/* Logo */
.logo img {
    height: 70px;
    transition: height 0.3s ease;
}
.site-header.scrolled .logo img {
    height: 60px;
}

/* Navigation */
.main-nav {
    position: relative;
    overflow: visible;
}

/* Navigation listesi */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

/* Her bir menü öğesi */
.nav-list li {
    position: relative;
    height: 100%;
}

/* Menü linkleri */
.nav-list a {
    text-decoration: none;
    color: #1c2230;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #2e7d68;
}

/* Dropdown ok simgesi */
.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.has-dropdown > a {
    display: inline-block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-weight: 500;
    color: #1c2230;
    line-height: 1.2;
    transition: color 0.3s ease;
    height: 100%;
    position: relative;
}

.has-dropdown > a::after {
    content: ' ▼';
    font-size: 0.6rem;
    margin-left: 4px;
    vertical-align: middle;
}

.has-dropdown > a:hover {
    color: #2e7d68;
}

/* Dropdown menü */
.dropdown {
    position: absolute; /* FIXED değil */
    top: 100vh;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    border-radius: 4px;
    display: none;
    min-width: 220px;
    z-index: 999;
    list-style: none;
    margin: 0;
}

/* Dropdown iç linkler */
.dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #1c2230;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.dropdown li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #2e7d68;
    transition: width 0.3s ease;
}

.dropdown li a:hover {
    color: #2e7d68;
}
.dropdown li a:hover::after {
    width: 100%;
}

/* Dropdown hover ile gösterilir */
.has-dropdown:hover .dropdown {
    display: block;
}



.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(0); /* yukarı kaymasını engeller */
  z-index: 9999; /* sayfa üzerindeki her şeyin üstünde */
}


/* Hamburger Menü (Mobil) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1c2230;
    transition: all 0.3s ease;
}

/* Mobil Logo */
/* Desktop'ta gizle */
.mobile-logo {
  display: none;
}

/* Mobilde görünür yap */
@media (max-width: 992px) {
  .mobile-logo {
    display: flex; /* flex veya block olabilir */
    justify-content: center;
    padding: 1.5rem 0 1rem 0;
    border-top: 1px solid #ddd; /* İstersen altına ince çizgi */

    /* Görsel ayarları */
  }

  .mobile-logo img {
    width: 80px; /* İstediğin genişlik */
    height: 80px; /* Kare yapısı */
    object-fit: contain;
    border-radius: 50%; /* Yuvarlak logo için */
    opacity: 0.95;
  }
}






.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
footer{
    background-color: #111010;
    margin-top: 20px;
    
}
.f-item-con{
    padding: 1.5rem 4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 2rem;
}
footer .app-name{
    color: white;
    border-left: 4px solid var(--theme-col);
    padding-left: 1.5rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}
.app-name .app-initial{
    color: var(--theme-col);
}
footer .app-info p{
    color: white;
    padding-left: 1.65rem;
}

footer .footer-title{ 
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: white;
    border-left: 4px solid var(--theme-col);
    padding-left: 1.5rem;
    height: fit-content;
}
footer ul{ 
    padding-left: 1.75rem;
    color: white;
    font-size: 0.875rem/* 14px */;
    line-height: 1.25rem;
    margin-top: .5rem;
}
footer ul li{ 
    margin: .25rem 0;
    cursor: pointer;
    color: #d4d4d4;
    width: fit-content;
}
footer ul li:hover{
    color: white;
}
footer .help-sec{
    grid-column-start: 2;
}
footer .cr-con{
    background-color: #232127;
    color: white;
    padding: 1rem 4rem;
    text-align: center;
}
.g-i-t{
    display: grid;
    grid-column-start: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}
.g-i-t form{
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
form .g-inp{
    padding: .25rem .5rem;
    font-size: 16px;
}
.g-inp textarea{
    height: 150px;
}
.f-btn{
    padding: .25rem 1rem;
    background-color: var(--theme-col);
    border-radius: .25rem;
    font-size: 16px;
    color: white;
    font-weight: 500;
}
:root{
  --theme-col: #017E90; /* TekSöz rengi */
}

footer .app-name{
  color: white;
  border-left: 4px solid var(--theme-col);
  padding-left: 1.5rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.app-name .app-initial{
  color: var(--theme-col);
}





















.hero-full-bg {
  width: 100vw;
   min-height: 100vh;
  background-image: url('../img/urunler-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 0px;
}

.hero-full-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* karartma efekti */
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta {
  background: #e0c199;
  color: #000;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta:hover {
  background: #cfb080;
}


/* Responsive ayar – mobilde yeniden oranlanır */
@media screen and (max-width: 768px) {
  .hero-full-bg {
    margin-top: 580;               /* mobilde 580px boşluk olmasın */
    min-height: 100vh;
    background-size: cover;
    background-position: center;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-top: 600px;   
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 15px;
    
  }

  .cta {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}








.kategori-giris {
  padding: 80px 20px;
}
.kategori-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.kategori-left {
  flex: 1 1 50%;
}
.kategori-left h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.kategori-left p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.katalog-indir {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.katalog-btn {
  background: #5b7c8b;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.katalog-btn:hover {
  background: #004e6e;
}
.kategori-right {
  flex: 1 1 40%;
  text-align: center;
}
.kategori-right img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.teklif-text h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.teklif-text p {
  font-size: 1rem;
  margin-bottom: 15px;
}
/* RESPONSIVE */
@media screen and (max-width: 992px) {
  .kategori-flex {
    flex-direction: column;
    text-align: center;
  }
  .kategori-left, .kategori-right {
    flex: 1 1 100%;
  }
  .katalog-indir {
    justify-content: center;
  }
  .kategori-left h2 {
    font-size: 1.8rem;
  }
  .kategori-left p,
  .teklif-text p {
    font-size: 1rem;
  }
  .teklif-text h3 {
    font-size: 1.2rem;
  }
  .cta.alt {
    font-size: 0.95rem;
  }
}





.populer-kapilar {
  background: #ffffff;
  padding: 80px 20px;
}
.section-title {
  font-size: 2.2rem;
  color: #1e1e1e;
  text-align: center;
  margin-bottom: 10px;
}
.section-desc {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.kapilar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .kapilar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .kapilar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .kapilar-grid {
    grid-template-columns: 1fr;
  }
}
.kapilar-card {
  background: #fdfdfd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.kapilar-card:hover {
  transform: translateY(-5px);
}
.card-img {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
}
.card-content {
  padding: 20px;
  flex: 1;
}
.card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #1e1e1e;
}
.card-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}
.detay-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #006290;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
  font-weight: 600;
}
.detay-btn:hover {
  background: #004e6e;
}










/* MODERN KATEGORİLER CSS */
.modern-kategoriler {
  padding: 80px 20px;
}

.modern-kategoriler .section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 10px;
  color: #111827;
}

.modern-kategoriler .section-desc {
  text-align: center;
  color: #4b5563;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px;
}

.kategori-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.kategori-box.sol {
  flex-direction: row;
}

.kategori-box.sag {
  flex-direction: row-reverse;
}

.kategori-img {
  flex: 1;
  height: 450px;
  
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.kategori-icerik {
  flex: 1;
  padding: 20px;
}

.kategori-icerik h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1f2937;
}

.kategori-icerik p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 20px;
}

.kategori-icerik a {
  display: inline-block;
  text-decoration: none;
  background-color: #e0c199;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.kategori-icerik a:hover {
  background-color: #cfb080;
}

.kategori-bilgilendirme {
  text-align: center;
  margin-top: 60px;
}

.kategori-bilgilendirme p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #374151;
}

.kategori-bilgilendirme .cta.alt {
  padding: 10px 24px;
  background-color: #006290;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.kategori-bilgilendirme .cta.alt:hover {
  background-color: #004e70;
}






