/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



:root{
  --accent:#f17300;
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --border:rgba(2,6,23,.10);
  --shadow: 0 24px 70px rgba(2,6,23,.10);
  --shadow2: 0 14px 40px rgba(2,6,23,.10);
  --nav-h: 84px;
  --max: 1220px;
}



/* ====== NAVBAR (sticky + glass) ====== */
.navbar{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(2,6,23,.08);
}

.nav-inner{
  height: var(--nav-h);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

/* BRAND */
.brand{ min-width: 190px; }
.brand a{ display:flex; align-items:center; text-decoration:none; }
.brand img{
  height: 64px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(2,6,23,.12));
}

/* Desktop links */
.nav-links{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(2,6,23,.08);
  background: rgba(255,255,255,.62);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(2,6,23,.06);
}

.nav-links a,
.drop-btn{
  appearance:none;
  border:0;
  background: transparent;
  font: inherit;
  cursor:pointer;
  text-decoration:none;

  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .25px;

  padding: 10px 12px;
  border-radius: 999px;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  outline: none;
}

/* hover glow */
.nav-links a::before,
.drop-btn::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 999px;
  background: radial-gradient(120px 60px at 50% 50%, rgba(241,115,0,.22), transparent 60%);
  opacity: 0;
  transition: opacity .15s ease;
  z-index:-1;
}

.nav-links a:hover,
.drop-btn:hover{
  background: rgba(241,115,0,.10);
  color: #111;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(241,115,0,.12);
}
.nav-links a:hover::before,
.drop-btn:hover::before{ opacity: 1; }

.nav-links a:focus-visible,
.drop-btn:focus-visible{
  box-shadow: 0 0 0 4px rgba(241,115,0,.20);
}

.nav-links a.is-active{
  background: linear-gradient(135deg, rgba(241,115,0,.18), rgba(255,154,47,.14));
  color: #111;
  border: 1px solid rgba(241,115,0,.20);
}

/* Dropdown */
.dropdown{ position:relative; }
.drop-btn .chev{ font-size: 12px; opacity: .85; transform: translateY(1px); }

.dropdown-menu{
  position:absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(2,6,23,.10);
  box-shadow: var(--shadow);
  display:none;
  transform-origin: top left;
  animation: pop .16s ease-out;
}

@keyframes pop{
  from{ opacity:0; transform: translateY(-6px) scale(.98); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}

.dropdown-menu a{
  width:100%;
  border-radius: 12px;
  padding: 11px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color: var(--accent);
  font-weight: 800;
}

.dropdown-menu a:hover{
  background: rgba(2,6,23,.04);
  color:#111;
}

.dropdown.open .dropdown-menu{ display:block; }

/* Right actions */
.actions{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 160px;
  justify-content: flex-end;
}

.action-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.8);
  box-shadow: 0 14px 34px rgba(2,6,23,.07);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  text-decoration:none;
}
.action-btn i{ color: var(--accent); }
.action-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(2,6,23,.10);
  background: rgba(255,255,255,.95);
}

/* Burger */
.burger{
  display:none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 34px rgba(2,6,23,.08);
  cursor:pointer;
  padding: 10px;
  position: relative;
  overflow:hidden;
}
.burger::before{
  content:"";
  position:absolute;
  inset:-30%;
  background: radial-gradient(circle at 30% 25%, rgba(241,115,0,.20), transparent 50%);
  opacity:.75;
  pointer-events:none;
}
.burger span{
  display:block;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
  margin: 6px 0;
  transition: transform .18s ease, opacity .18s ease;
  position: relative;
  z-index: 1;
}
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

/* Mobile overlay + panel */
.overlay{
  position: fixed;
  inset:0;
  background: rgba(2,6,23,.45);
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease;
  z-index: 999;
}
.overlay.active{ opacity:1; pointer-events:auto; }

.mobile-panel{
  position: fixed;
  top: calc(var(--nav-h) + 10px);
  left: 12px;
  right: 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(2,6,23,.10);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity:0;
  pointer-events:none;
  transition: transform .18s ease, opacity .18s ease;
  z-index: 1001;
  overflow:hidden;
}
.mobile-panel.active{
  transform: translateY(0);
  opacity:1;
  pointer-events:auto;
}

.mobile-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(2,6,23,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.72));
}
.mobile-header b{ font-size: 13px; letter-spacing:.2px; }

.mobile-links{
  padding: 12px 12px 10px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.m-item{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.08);
  background: rgba(241,115,0,.06);
  color: var(--accent);
  font-weight: 900;
  text-decoration:none;
  letter-spacing: .2px;
  transition: transform .12s ease, background-color .12s ease, color .12s ease;
}
.m-item:hover{
  background: rgba(241,115,0,.10);
  color:#111;
  transform: translateY(-1px);
}

.m-drop{ cursor:pointer; user-select:none; }

.m-sub{
  display:none;
  padding: 4px 6px 8px 6px;
  margin-top: -2px;
}
.m-sub a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 11px 12px;
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.08);
  background: rgba(255,255,255,.92);
  text-decoration:none;
  color: var(--accent);
  font-weight: 900;
  margin-top: 8px;
  transition:.12s;
}
.m-sub a:hover{ background: rgba(2,6,23,.04); color:#111; }

.m-meta{
  display:flex;
  gap: 8px;
  padding: 10px 12px 14px;
  border-top: 1px solid rgba(2,6,23,.08);
  background: rgba(255,255,255,.75);
}

.pill{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow2);
  text-decoration:none;
  color:#111;
  font-weight: 900;
  font-size: 13px;
}
.pill i{ color: var(--accent); }

/* Responsive */
@media (max-width: 920px){
  .nav-links{ display:none; }
  .actions .action-btn{ display:none; }
  .burger{ display:inline-block; }
}
@media (max-width: 420px){
  .mobile-panel{ left: 10px; right: 10px; top: calc(var(--nav-h) + 8px); }
  .brand img{ height: 58px; }
  .burger{ width: 44px; height: 44px; }
}




.catalog-section {
  padding: 50px 20px;
  padding-top: 100px;
  background: #fff;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.catalog-section h2 {
  font-size: 28px;
  color: #f17300;
  margin-bottom: 35px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.catalog-item {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.catalog-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f17300;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.catalog-item:hover::before {
  transform: scaleX(1);
}

.catalog-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.catalog-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #f17300;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(241, 115, 0, 0.25);
}

.catalog-item img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.catalog-item:hover img {
  transform: scale(1.03);
}

.catalog-item p {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  line-height: 1.5;
  min-height: 45px;
  letter-spacing: 0.2px;
}

/* Büyük tablet */
@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .catalog-item img {
    height: 360px;
  }
}

/* Tablet ve mobil */
@media (max-width: 768px) {
  .catalog-section {
    padding: 35px 14px;
    padding-top: 90px;
  }

  .catalog-section h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .catalog-item {
    padding: 10px;
    border-radius: 14px;
  }

  .catalog-badge {
    top: 10px;
    left: 10px;
    font-size: 11px;
    padding: 5px 8px;
  }

  .catalog-item img {
    height: 240px;
    border-radius: 10px;
  }

  .catalog-item p {
    font-size: 13px;
    margin-top: 10px;
    min-height: 38px;
  }
}

/* Küçük telefon */
@media (max-width: 480px) {
  .catalog-grid {
    gap: 10px;
  }

  .catalog-item img {
    height: 200px;
  }

  .catalog-item p {
    font-size: 12px;
  }
}

/* Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.image-modal.show {
  display: flex;
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.close-modal {
  position: absolute;
  top: 18px;
  right: 28px;
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
}

/* watsapp */
.hk-wa-button{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

/* mesaj balonu */
.hk-wa-bubble{
  max-width: 240px;
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
  border: 1px solid rgba(0,0,0,.06);

  display: flex;
  flex-direction: column;
  gap: 4px;

  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.hk-wa-bubble strong{
  font-size: 13px;
  color: #111;
  line-height: 1.3;
}

.hk-wa-bubble span{
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

/* ikon alanı */
.hk-wa-icon{
  width: 56px;
  height: 56px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: linear-gradient(135deg,#25D366,#1ebe5d);
  box-shadow: 0 14px 35px rgba(0,0,0,.22);

  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* pulse */
.hk-wa-icon::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.38);
  animation: hkWaPulse 2s infinite;
  z-index: -1;
}

@keyframes hkWaPulse{
  0%{ transform: scale(1); opacity: .75; }
  70%{ transform: scale(1.75); opacity: 0; }
  100%{ opacity: 0; }
}

.hk-wa-icon svg{
  width: 26px;
  height: 26px;
}

.hk-wa-text{
  display: none;
}

/* hover */
.hk-wa-button:hover .hk-wa-bubble{
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0,0,0,.20);
}

.hk-wa-button:hover .hk-wa-icon{
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

/* mobil */
@media (max-width: 768px){
  .hk-wa-button{
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .hk-wa-bubble{
    max-width: 180px;
    padding: 10px 12px;
  }

  .hk-wa-bubble strong{
    font-size: 12px;
  }

  .hk-wa-bubble span{
    font-size: 11px;
  }

  .hk-wa-icon{
    width: 50px;
    height: 50px;
  }

  .hk-wa-icon svg{
    width: 23px;
    height: 23px;
  }
}

/* çok küçük ekranlarda sadece ikon */
@media (max-width: 480px){
  .hk-wa-bubble{
    display: none;
  }
}

/* ===== FOOTER ===== */

#footer{
background:linear-gradient(180deg,#ffffff,#f7f7f7);
padding:0 20px 20px;
border-top:1px solid rgba(0,0,0,.08);
font-family:"Poppins",sans-serif;
position:relative;
overflow:hidden;
}

/* üst turuncu çizgi */

.footer-top-line{
width:100%;
height:4px;
background:linear-gradient(90deg,#f17300,#ff9f43,#f17300);
margin-bottom:25px;
}

/* ana yapı */

.footer-wrapper{

max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:30px;

position:relative;

}

/* sosyal medya masaüstü */

.footer-social{

position:absolute;

right:0;
top:-10px;

display:flex;
gap:10px;

}

.footer-social a{

width:38px;
height:38px;

display:flex;
align-items:center;
justify-content:center;

border-radius:10px;

background:#fff;
color:#f17300;

border:1px solid rgba(0,0,0,.08);

transition:.3s;

}

.footer-social a:hover{

background:#f17300;
color:#fff;

transform:translateY(-3px);

}

/* logo */

.footer-logo img{

height:70px;
display:block;
margin-bottom:8px;

filter:drop-shadow(0 10px 20px rgba(0,0,0,.08));

}

.footer-logo p{

font-size:14px;
color:#444;

}

/* bağlantılar */

.footer-links{

display:flex;
flex-direction:column;
gap:10px;

}

.footer-links a{

text-decoration:none;
color:#555;

font-size:14px;

transition:.3s;

}

.footer-links a:hover{

color:#f17300;
transform:translateX(3px);

}

/* iletişim */

.footer-info{

display:flex;
flex-direction:column;
gap:10px;

}

.footer-info p{

display:flex;
align-items:center;
gap:10px;

margin:0;

color:#222;
font-size:14px;

}

.footer-info i{

color:#f17300;
width:18px;

}

/* alt satır */

.footer-bottom{

max-width:1200px;
margin:25px auto 0;

padding-top:15px;

border-top:1px solid rgba(0,0,0,.1);

text-align:center;

font-size:13px;
color:#555;

}

/* ===== MOBİL ===== */

@media(max-width:768px){

.footer-wrapper{

grid-template-columns:1fr 1fr 1fr;
gap:15px;

}

/* sosyal medya artık iletişimin altına gelsin */

.footer-social{

position:static;

grid-column:3;

margin-top:10px;

justify-content:flex-start;

}

.footer-social a{

width:30px;
height:30px;

}

.footer-logo img{

height:50px;

}

.footer-logo p{

font-size:11px;

}

.footer-links a{

font-size:11px;

}

.footer-info p{

font-size:11px;

}

}
