:root{
 
  --bg:#ffffff;
  --surface:#ffffff;
  --card:#ffffff;
  --text:#111827;        
  --muted:#6b7280;     
  --brand:#2563eb;       
  --brand2:#4f46e5;      
  --border:rgba(17,24,39,.12);
  --shadow: 0 12px 28px rgba(17,24,39,.10);
  --radius:1px;
  --max:1180px;
  --hero-purple:#f3effa;
  --hero-purple-border:#e2d9f3;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{
  max-width:var(--max); 
  margin:0 auto; 
  padding:0 20px
}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.92);
  border-bottom:1px solid rgba(17,24,39,.10);
}

.nav{
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex; 
  gap:10px; 
  align-items:center; 
  font-weight:800; 
  letter-spacing:.3px;
}

.brand-badge{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 22px rgba(37,99,235,.18);
}

.menu{display:flex; gap:18px; flex-wrap:wrap; align-items:center}
.menu a{
  padding:10px 12px; border-radius:12px;
  color:#511a6f;
  border:1px solid transparent;
}
.menu a:hover{
  color: var(--text);
  border-color: rgba(17,24,39,.10);
  background: rgba(17,24,39,.04);
}
.menu a.active{
  color: var(--text);
  border-color: rgba(124,92,255,.25);
  background: rgba(124,92,255,.10);
}


.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  background:#511a6f;
  color:white; font-weight:800;
  box-shadow: 0 10px 22px rgba(37,99,235,.18);
  transition: transform .15s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}

.btn-secondary{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  border:1px solid rgba(17,24,39,.14);
  background:#ffffff;
  color:#511a6f;
  font-weight:800;
  transition: background .15s ease, border-color .15s ease;
}
.btn-secondary:hover{
  background:#f9fafb;
  border-color: rgba(124,92,255,.25);
}


.logo-img{
  height:52px;
  width:auto;
  display:block;
}

@media (max-width: 768px){
  .logo-img{height:34px;}
}


.hero{padding:48px 0 26px;}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}
.hero-card{
  background: var(--hero-purple);
  border:1px solid var(--hero-purple-border);
  border-radius:var(--radius);
  box-shadow: 0 16px 34px rgba(124,92,255,.12);
  overflow:hidden;
}
.hero-content{padding:36px 40px;}

.kicker{
  display:inline-flex; 
  gap:8px; 
  align-items:center;
  padding:8px 12px; 
  border-radius:999px;
  border:1px solid rgba(124,92,255,.22);
  background: rgba(124,92,255,.08);
  color:#3b2f6b;
  font-weight:700; 
  font-size:13px;
}

h1{
  margin:14px 0 10px;
  font-size:40px; line-height:1.1;
  color: var(--text);
}

.lead{
  color:#4b5563;
  font-size:16px;
  line-height:1.65;
  margin:0 0 18px;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}

.hero-media{
  height:100%;
  min-height:320px;
  background:#ffffff;
  border-radius:var(--radius);
  border:1px solid rgba(17,24,39,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.02) contrast(1.02);
}


.section{padding:34px 0;}
.section h2{
  margin:0 0 14px;
  font-size:26px;
  color: var(--text);
}

.section p.sub{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.6;
}


.grid{display:grid; gap:16px;}
.grid.cols-3{grid-template-columns: repeat(3, minmax(0,1fr))}
.grid.cols-4{grid-template-columns: repeat(4, minmax(0,1fr))}
.grid.cols-6{grid-template-columns: repeat(6, minmax(0,1fr))}


.card{
  background: var(--card);
  border:1px solid rgba(17,24,39,.10);
  border-radius:var(--radius);
  
  overflow:hidden;
  transition: transform .15s ease, border-color .15s ease;
}

.card:hover{
  transform: translateY(-2px);
  border-color: rgba(37,99,235,.20);
}

.card .thumb{
  aspect-ratio: 16/10;
  background: rgba(17,24,39,.03);
}

.card .thumb img{width:100%; height:100%; object-fit:cover}
.card .body{padding:14px}
.card .title{font-weight:800; margin:0 0 6px; font-size:15px; color:var(--text)}
.card .meta{margin:0; color:var(--muted); font-size:13px; line-height:1.5}


.pills{display:flex; flex-wrap:wrap; gap:10px;}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(17,24,39,.02);
  color: var(--text);
  font-weight:700;
}


.logo-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}

.logo{
  display:flex; align-items:center; justify-content:center;
  padding:14px 12px;
  border-radius:16px;
  border:1px solid rgba(17,24,39,.10);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
}

.logo img{
  max-height:100px;
  max-width:100%;
  object-fit:contain;
  filter: grayscale(30%);
  opacity:.9;
  transition: all .2s ease;
}

.logo:hover img{
  filter: grayscale(0%);
  opacity:1;
  transform: scale(1.03);
}


.certs{
  display:grid;
  grid-template-columns: repeat(7, minmax(0,1fr));
  gap:12px;
}

.cert{
  border-radius:1px;
  border:1px solid rgba(17,24,39,.10);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
  overflow:hidden;
  aspect-ratio: 1/1;
}

.cert img{width:100%; height:100%; object-fit:contain; padding:10px}


footer{
  margin-top:26px;
  border-top:1px solid rgba(17,24,39,.10);
  background: #511a6f;
}

.footer-inner{
  padding:18px 0;
  display:flex; 
  justify-content:space-between; 
  align-items:center;
  gap:12px; 
  color:#ffffff;
  flex-wrap:wrap;
}

.small{color:var(--muted); font-size:13px}


.page-hero{padding:34px 0 10px;}
.page-hero .wrap{
  background:#ffffff;
  border:1px solid rgba(17,24,39,.10);
  border-radius:var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}

.page-hero h1{font-size:34px; margin:0 0 8px}
.page-hero p{margin:0; color:var(--muted); line-height:1.65}


.form{display:grid; gap:12px; max-width:720px;}
.input{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(17,24,39,.12);
  background:#ffffff;
  color: var(--text);
  outline:none;
}

.input:focus{
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

textarea.input{min-height:140px; resize:vertical}


.feature-rows{display:grid; gap:18px;}
.feature-row{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}

.feature-panel{
  background:#ffffff;
  border:1px solid rgba(17,24,39,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.feature-text{
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.feature-text h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
  color: var(--text);
}

.feature-text p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}

.feature-media{height:100%; min-height:260px;}
.feature-media img{width:100%; height:100%; object-fit:cover}


.production-lines{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:12px;
}

.production-item{
  text-align:center;
  padding:14px 10px;
  border-radius:14px;
  border:1px solid rgba(17,24,39,.10);
  background:#ffffff;
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
  font-weight:800;
  font-size:13px;
  letter-spacing:.4px;
  transition:.2s ease;
}

.production-item:hover{
  background: rgba(37,99,235,.06);
  border-color: rgba(37,99,235,.20);
}


.services-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
}

.service-card{padding:18px;}
.service-head{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-bottom:10px;
}

.service-icon{
  width:42px; height:42px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(37,99,235,.22);
  background: rgba(37,99,235,.08);
  flex: 0 0 auto;
  color: rgba(37,99,235,1);
}

.service-icon svg{width:22px; height:22px}
.service-title{
  margin:0;
  font-size:18px;
  font-weight:900;
  color: var(--text);
}

.service-text{
  margin:8px 0 12px;
  color: var(--muted);
  line-height:1.7;
  font-size:14px;
}

.service-list{
  margin:0;
  padding-left:18px;
}

.service-list li{
  margin:6px 0;
  color: var(--muted);
}

.service-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.service-wide{grid-column: span 2;}


.product-slider{position:relative;}
.product-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  padding-bottom:8px;
}

.product-track::-webkit-scrollbar{height:6px;}
.product-track::-webkit-scrollbar-thumb{
  background: rgba(17,24,39,.18);
  border-radius:6px;
}

.product-card{
  flex: 0 0 260px;
  scroll-snap-align: start;
  background:#ffffff;
  border:1px solid rgba(17,24,39,.10);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
  overflow:hidden;
  transition:.2s ease;
}

.product-card:hover{
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.20);
}

.product-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.product-card .body{
  padding:14px;
  text-align:center;
}

.product-card .title{
  font-weight:900;
  font-size:14px;
  letter-spacing:.3px;
  color: var(--text);
}


.slider-btn{
  position:absolute;
  top:40%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(17,24,39,.12);
  background: rgba(255,255,255,.95);
  color: var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:2;
  box-shadow: 0 10px 22px rgba(17,24,39,.10);
}

.slider-btn:hover{background: rgba(124,92,255,.10);}
.slider-prev{left:-10px;}
.slider-next{right:-10px;}


.contact-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.contact-box{
  background:#ffffff;
  border:1px solid rgba(17,24,39,.10);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
  padding:22px;
  text-align:center;
}

.contact-box h3{
  margin:0 0 10px;
  font-size:16px;
  font-weight:900;
  letter-spacing:.4px;
  color: var(--text);
}

.contact-box p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.contact-box a{
  color: var(--text);
  font-weight:700;
}

.map-wrapper{
  margin-top:20px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(17,24,39,.10);
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
}

.map-wrapper iframe{
  width:100%;
  height:360px;
  border:0;
}



@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid.cols-3{grid-template-columns: repeat(2, minmax(0,1fr))}
  .grid.cols-4{grid-template-columns: repeat(2, minmax(0,1fr))}
  .logo-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .certs{grid-template-columns: repeat(4, minmax(0,1fr))}
  .services-grid{grid-template-columns: 1fr}
  .service-wide{grid-column:auto}
  .feature-row{grid-template-columns: 1fr;}
  .feature-media{min-height:220px;}
  .production-lines{grid-template-columns: repeat(3, 1fr);}
  .contact-grid{grid-template-columns: 1fr;}
  h1{font-size:34px}
}
@media (max-width: 768px){
  .slider-btn{display:none;}
}
@media (max-width: 520px){
  .grid.cols-3,.grid.cols-4{grid-template-columns: 1fr}
  .certs{grid-template-columns: repeat(2, minmax(0,1fr))}
  .production-lines{grid-template-columns: repeat(2, 1fr);}
}

/* HAKKIMIZDA – kutusuz, sade görünüm */
.page-hero .wrap,
.hero-card{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.page-hero h1{
  font-size:42px;
  line-height:1.15;
  max-width: 760px;
}


.feature-panel{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.feature-text h3{
  font-size:22px;
  margin-bottom:12px;
}


.feature-text p{
  font-size:16px;
  line-height:1.75;
}

.feature-media{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.feature-media img{
  border-radius: 24px;
}

@media (max-width: 980px){
  .feature-text{
    max-width: 100%;
  }
}

/* Language switch */
.lang-switch{
  display:flex;
  gap:8px;
  align-items:center;
  margin-left:10px;
}

.lang-btn{
  border:1px solid rgba(17,24,39,.12);
  background:#fff;
  color:#111827;
  border-radius:999px;
  padding:8px 10px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  transition:.15s ease;
}

.lang-btn:hover{
  background: rgba(124,92,255,.08);
  border-color: rgba(124,92,255,.22);
}

.lang-btn.active{
  background: rgba(124,92,255,.12);
  border-color: rgba(124,92,255,.25);
}

.nav-right{
  display:flex;
  align-items:center;
  gap:14px;
}

/* Ürün kartları: yazı altta ve ortalı */
.card .body{
  display:bottom;
  align-items:center;       /* dikey ortala */
  justify-content:center;   /* yatay ortala */
  text-align:center;
  min-height:64px;          /* alt alan yüksekliği */
  padding:14px 16px;
}

.card .title{
  margin:0;
  width:100%;
}


.service-card{
  border:1px solid #e5e7eb;
  border-radius:1px;
  overflow:hidden;
  background:#ffffff;
  transition: all .25s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}


.service-thumb{
  height:220px;
 
  overflow:hidden;
}

.service-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .3s ease;
}

.service-card:hover .service-thumb img{
  transform: scale(1.05);
}


.service-body{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:18px;
  min-height:70px;
}

.service-body .title{
  margin:0;
  font-size:16px;
  font-weight:700;
  color:#111827;
  line-height:1.3;
}

/* Hizmet kartlarını ürün grubu tarzına yaklaştır */
.card.service-like{
  background:#fff !important;
  border:1px solid rgba(17,24,39,.12) !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.06) !important;
}

.card.service-like .thumb{
  aspect-ratio: 16/10;
  background:#f3f4f6;
}

.card.service-like .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:none !important;
}

.card.service-like .body{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:72px;
  padding:16px 14px;
  background:#fff;
}

.card.service-like .title{
  margin:0;
  font-weight:900;
  letter-spacing:.3px;
  font-size:14px;
  color:#111827;
  text-transform:uppercase;
}
/* Dil Dropdown */
.lang-dropdown{
  position:relative;
}

.lang-current{
  display:flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(17,24,39,.15);
  background:#fff;
  color:#111827;
  font-weight:600;
  cursor:pointer;
}

.lang-current:hover{
  background:#f3f4f6;
}

.lang-current .arrow{
  font-size:12px;
}

.lang-menu{
  position:absolute;
  top:110%;
  right:0;
  min-width:140px;
  background:#ffffff;
  border:1px solid rgba(17,24,39,.15);
  border-radius:12px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  display:none;
  flex-direction:column;
  overflow:hidden;
  z-index:100;
}

.lang-menu button{
  padding:10px 14px;
  background:none;
  border:0;
  text-align:left;
  font-size:14px;
  cursor:pointer;
}

.lang-menu button:hover{
  background:#f3f4f6;
}
.lang-menu{
  display:none;
  flex-direction:column;
}
