:root{
  --ces-red:#d10000;
  --ces-black:#0b0b0b;
  --ces-white:#ffffff;
  --ces-text:#f3f3f3;
  --ces-muted:rgba(255,255,255,.72);
  --ces-line:rgba(255,255,255,.14);
  --ces-radius:14px;
  --ces-shadow:0 18px 50px rgba(0,0,0,.38);
  --ces-container:1220px;
}

/* basic */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{background:#fff;color:#111;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.ces-container{max-width:var(--ces-container);margin:0 auto;padding:0 18px}


/* visibility */
.ces-desktopOnly{display:none}
.ces-mobileOnly{display:inline-flex}
@media (min-width: 992px){
  .ces-desktopOnly{display:inline-flex}
  .ces-mobileOnly{display:none}
}

/* HEADER */
.ces-header{
  position:absolute;
  top:0;left:0;width:100%;
  z-index:999;
  background:linear-gradient(to bottom, rgba(0,0,0,.62), rgba(0,0,0,.15));
  border-bottom:1px solid rgba(255,255,255,.06);
}
.ces-header__inner{
  display:flex;align-items:center;justify-content:space-between;
  min-height:84px;gap:18px;
}
.ces-brand .custom-logo{max-height:52px;width:auto}
.ces-brand__text{color:#fff;font-weight:800;letter-spacing:.3px}

/* NAV (desktop) */
.ces-nav{display:none}
@media (min-width: 992px){
  .ces-nav{display:block}
}
.ces-nav__list{
  display:flex;align-items:center;gap:26px;
  list-style:none;margin:0;padding:0;
}
.ces-nav__list > li{position:relative}
.ces-nav__list > li > a{
  color:var(--ces-white);
  font-weight:700;
  padding:12px 2px;
  display:inline-flex;align-items:center;gap:10px;
  letter-spacing:.2px;
}
.ces-nav__list > li:hover > a{color:rgba(255,255,255,.92)}

/* arrow only for items that have children */
.ces-nav__list > li.menu-item-has-children > a:after{
  content:"\f078";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  font-size:.75rem;
  opacity:.9;
}

/* MEGA DROPDOWN (only if submenu exists) */
.ces-nav__list .sub-menu{
  display:none;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:calc(100% + 16px);
  width:min(980px, calc(100vw - 36px));
  background:var(--ces-red);
  color:#fff;
  border-radius:18px;
  box-shadow:var(--ces-shadow);
  padding:22px 18px;
  gap:10px;
  list-style:none;
  margin:0;
  border:1px solid rgba(255,255,255,.08);
  z-index:999;
}
.ces-nav__list > li:hover > .sub-menu{display:flex;flex-wrap:wrap}
.ces-nav__list .sub-menu > li{
  width:25%;
  padding:10px 14px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.ces-nav__list .sub-menu > li:nth-last-child(-n+4){border-bottom:none}
.ces-nav__list .sub-menu a{
  color:#fff;font-weight:700;display:block;
}
.ces-nav__list .sub-menu a:hover{opacity:.9}

/* right actions */
.ces-header__actions{display:flex;align-items:center;gap:12px}
.ces-header__worktime{
  display:none; align-items:center; gap:10px;
  color:var(--ces-muted);
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(0,0,0,.18);
}
.ces-header__worktime i{color:rgba(255,255,255,.9)}
.ces-header__worktime strong{color:#fff;margin-left:8px}
@media (min-width: 992px){
  .ces-header__worktime{display:inline-flex}
}

.ces-iconBtn{
  width:44px;height:44px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.ces-iconBtn:hover{background:rgba(0,0,0,.32)}

.ces-btn{
  border:0;cursor:pointer;
  padding:12px 16px;border-radius:999px;
  font-weight:800;letter-spacing:.2px;
  display:inline-flex;align-items:center;gap:10px;
}
.ces-btn--primary{
  background:var(--ces-red);color:#fff;
}
.ces-btn--primary:hover{filter:brightness(.95)}

/* SEARCH POPOVER */
.ces-search{
  position:absolute;
  right:18px;
  top:92px;
  display:none;
  z-index:1000;
}
.ces-search.is-open{display:block}
.ces-search__inner{
  display:flex;align-items:center;gap:10px;
  background:#fff;border-radius:14px;
  box-shadow:var(--ces-shadow);
  padding:10px 10px 10px 14px;
  min-width:min(420px, calc(100vw - 36px));
}
.ces-search__form{display:flex;align-items:center;gap:10px;flex:1}
.ces-search__input{
  width:100%;
  border:0;outline:0;
  font-size:16px;
}
.ces-search__submit, .ces-search__close{
  width:42px;height:42px;border-radius:12px;
  border:0;cursor:pointer;
  background:#f3f3f3;
}
.ces-search__submit:hover,.ces-search__close:hover{background:#e9e9e9}

/* OVERLAY */
.ces-overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,.55);
  z-index:998;
}

/* DESKTOP PANEL */
.ces-panel{
  position:fixed;
  top:0; right:-460px;
  width:460px; max-width:92vw;
  height:100vh;
  background:#fff;
  z-index:999;
  box-shadow:var(--ces-shadow);
  transition:right .28s ease;
  display:flex;flex-direction:column;
}
.ces-panel.is-open{right:0}

.ces-panel__head{
  display:flex;align-items:flex-start;justify-content:space-between;
  padding:22px 18px 12px 18px;
  border-bottom:1px solid #eee;
  gap:12px;
}
.ces-panel__brand{display:flex;gap:12px;align-items:flex-start}
.ces-panel__logo{
  width:44px;height:44px;border-radius:14px;
  background:var(--ces-red);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
}
.ces-panel__title{font-weight:900;font-size:18px;color:#111}
.ces-panel__text{color:#555;margin-top:6px;line-height:1.35}
.ces-panel__close{
  width:44px;height:44px;border-radius:999px;
  border:0;background:#f3f3f3;cursor:pointer;
}
.ces-panel__close:hover{background:#e9e9e9}

.ces-panel__gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  padding:16px 18px;
}
.ces-panel__thumb{
  width:100%;aspect-ratio:1/1;
  object-fit:cover;border-radius:14px;
  background:#eee;
}

.ces-panel__section{padding:10px 18px 18px 18px}
.ces-panel__h{font-weight:900;font-size:18px;margin:8px 0 12px;color:#111}
.ces-panel__item{
  display:flex;gap:12px;align-items:flex-start;
  padding:10px 0;color:#333;
}
.ces-panel__item i{width:22px;color:var(--ces-red);margin-top:2px}
.ces-panel__item a{color:#111;font-weight:700}
.ces-panel__item a:hover{opacity:.85}

.ces-social{display:flex;gap:10px;flex-wrap:wrap}
.ces-social__link{
  width:44px;height:44px;border-radius:999px;
  background:#f3f3f3;display:inline-flex;
  align-items:center;justify-content:center;
}
.ces-social__link:hover{background:#e9e9e9}

/* MOBILE MENU */
.ces-mmenu{
  position:fixed;
  top:0; right:-360px;
  width:360px; max-width:92vw;
  height:100vh;
  background:#fff;
  z-index:999;
  box-shadow:var(--ces-shadow);
  transition:right .28s ease;
  display:flex;flex-direction:column;
}
.ces-mmenu.is-open{right:0}
.ces-mmenu__head{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 16px;
  border-bottom:1px solid #eee;
}
.ces-mmenu__title{font-weight:900;font-size:18px}
.ces-mmenu__body{padding:10px 8px 20px 8px;overflow:auto}

.ces-mmenu__list{list-style:none;margin:0;padding:0}
.ces-mmenu__list > li{border-bottom:1px solid #f0f0f0}
.ces-mmenu__list a{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 10px;
  font-weight:800;color:#111;
}
.ces-mmenu__list .sub-menu{
  display:none;
  list-style:none;margin:0;padding:0 0 10px 0;
}
.ces-mmenu__list li.is-open > .sub-menu{display:block}
.ces-mmenu__list .sub-menu a{
  padding:12px 10px 12px 18px;
  font-weight:700;color:#222;
}
.ces-mmenu__list li.menu-item-has-children > a:after{
  content:"\f078";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  font-size:.75rem;
  opacity:.75;
}

/* =========================
   FOOTER
========================= */
.ces-footer{
  background:var(--ces-black);
  color:#fff;
  position:relative;
  padding:74px 0 0;
  overflow:hidden;
}
.ces-footer:before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.68)),
    var(--ces-footer-bg, none);
  background-size:cover;
  background-position:center;
  opacity:1;
  pointer-events:none;
}
.ces-footer .ces-container{position:relative; z-index:2;}

.ces-footer__grid{
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr 1fr;
  gap:42px;
  padding-bottom:44px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

@media (max-width: 991px){
  .ces-footer{padding-top:54px;}
  .ces-footer__grid{
    grid-template-columns:1fr;
    gap:26px;
  }
}

.ces-footer__title{
  margin:0 0 14px;
  font-size:18px;
  font-weight:900;
  letter-spacing:.2px;
}
.ces-footer__title--mt{margin-top:20px;}

.ces-footerBrand{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:14px;
}
.ces-footerBrand__logo .custom-logo{
  max-height:56px;
  width:auto;
}
.ces-footerBrand__text{
  font-weight:950;
  font-size:22px;
  letter-spacing:.3px;
}

.ces-footer__desc{
  margin:0;
  color:rgba(255,255,255,.74);
  line-height:1.75;
  max-width:36ch;
}

.ces-footer__since{
  margin-top:22px;
  font-weight:950;
  font-size:40px;
  letter-spacing:.5px;
  color:transparent;
  -webkit-text-stroke:1.5px rgba(209,0,0,.95);
  text-stroke:1.5px rgba(209,0,0,.95);
}
.ces-footer__since span{
  display:block;
  margin-top:6px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.2px;
  color:rgba(255,255,255,.65);
  -webkit-text-stroke:0;
  text-stroke:0;
}

.ces-footer__text{
  color:rgba(255,255,255,.78);
  line-height:1.75;
  max-width:42ch;
}

.ces-footer__hint{
  color:rgba(255,255,255,.45);
  font-size:13px;
  line-height:1.6;
}

/* Footer menu hover: ok + animasyon */
.ces-footerMenu__list{
  list-style:none;
  margin:0;
  padding:0;
  columns:2;
  column-gap:34px;
}
@media (max-width: 480px){
  .ces-footerMenu__list{columns:1;}
}
.ces-footerMenu__list li{
  break-inside:avoid;
  margin:0 0 10px;
}
.ces-footerMenu__list a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.80);
  font-weight:800;
  transition:color .22s ease, transform .22s ease;
  padding:3px 0;
}
.ces-footerMenu__list a:before{
  content:"\f061"; /* fa-arrow-right */
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  color:var(--ces-red);
  transform:translateX(-6px);
  opacity:0;
  transition:opacity .22s ease, transform .22s ease;
}
.ces-footerMenu__list a:hover{
  color:var(--ces-red);
  transform:translateX(2px);
}
.ces-footerMenu__list a:hover:before{
  opacity:1;
  transform:translateX(0);
}

/* Address / mail / phone: sadece renk değişimi */
.ces-footer__link{
  display:inline-flex;
  color:rgba(255,255,255,.78);
  font-weight:800;
  transition:color .2s ease;
  line-height:1.6;
}
.ces-footer__link:hover{color:var(--ces-red);}

.ces-footer__stack{
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* Social */
.ces-footerSocial{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.ces-footerSocial__a{
  width:38px; height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  border-radius:10px;
  color:rgba(255,255,255,.85);
  transition:background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.ces-footerSocial__a:hover{
  background:var(--ces-red);
  border-color:rgba(255,255,255,.18);
  color:#fff;
  transform:translateY(-1px);
}

/* Bottom bar */
.ces-footerBar{
  padding:16px 0;
}
.ces-footerBar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color:rgba(255,255,255,.70);
  font-weight:700;
}
.ces-footerBar__inner strong{color:#fff}
.ces-footerBar__link{
  color:rgba(255,255,255,.78);
  transition:color .2s ease;
}
.ces-footerBar__link:hover{color:var(--ces-red);}

@media (max-width: 680px){
  .ces-footerBar__inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* Mobil menü - Industrie benzeri tipografi */
.ces-mmenu__list a{
  font-weight: 600;              /* çok kalın olmasın */
  font-size: 16px;
  letter-spacing: .1px;
  padding: 16px 12px;
}

/* Alt menüsü olanlarda sağda + */
.ces-mmenu__list li.menu-item-has-children > a{
  position: relative;
  padding-right: 44px;
}
.ces-mmenu__list li.menu-item-has-children > a:after{
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f2f2f2;
  color: #111;
  font-weight: 700;
}

/* Açılınca + -> - */
.ces-mmenu__list li.is-open > a:after{
  content: "–";
}

/* Submenu daha “light” */
.ces-mmenu__list .sub-menu a{
  font-weight: 500;
  font-size: 15px;
  color: #222;
  padding: 12px 12px 12px 22px;
}

/* Mobil menü footer */
.ces-mmenu__footer{
  padding: 18px 14px 22px;
  border-top: 1px solid #eee;
}
.ces-mmenu__contactTitle,
.ces-mmenu__socialTitle{
  font-weight: 800;
  font-size: 18px;
  margin: 8px 0 12px;
}

.ces-mmenu__item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  color: #333;
}
.ces-mmenu__item i{
  width: 20px;
  color: var(--ces-red);
  margin-top: 2px;
}
.ces-mmenu__item a{
  font-weight: 600;
}
.ces-mmenu__social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 6px;
}
.ces-mmenu__socialLink{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #f2f2f2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.ces-mmenu__socialLink:hover{
  background:#e9e9e9;
}

/* Header sağdaki menü (hamburger) butonu sadece mobilde görünsün */
@media (min-width: 992px){
  .ces-js-mobileOpen,
  #cesHeader .ces-js-mobileOpen,
  .ces-header .ces-js-mobileOpen{
    display: none !important;
  }
}

/* Mobilde kırmızı İletişim butonunu gizle */
@media (max-width: 991px){
  .ces-btn--primary{ 
    display: none !important;
  }
}