/* RESET */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Arial}

/* HEADER */
.header{
  position:fixed;
  top:0;left:0;right:0;
  height:70px;
  background:#0f172a;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  z-index:1000;
}

/* LOGO */
.logo{
  color:#fff;
  font-weight:bold;
}

/* NAV */
.nav{
  flex:1;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:30px;
  margin-right:40px;
}

.nav a{
  color:#fff;
  font-weight:600;
  font-size:15px;
  position:relative;
  text-decoration:none;
}

/* BUTTON */
.menu-btn{
  display:none;
  font-size:28px;
  color:#fff;
  background:none;
  border:none;
  cursor:pointer;
}

/* DROPDOWN */
.drop-item{
  position:relative;
}

.drop-panel{
  position:absolute;
  top:110%;
  left:50%;
  transform:translateX(-50%);
  min-width:200px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,.2);
  display:none;
  padding:10px 0;
  z-index:9999;
}

.drop-item:hover .drop-panel{
  display:block;
}

/* GAP FIX */
.drop-item::after{
  content:"";
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  height:15px;
}

/* DROPDOWN ITEM */
.drop-panel a{
  display:block;
  padding:12px 18px;
  color:#111;
  font-weight:500;
}

.drop-panel a:hover{
  background:#f1f5f9;
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  right:0;
  width:100%;
  max-width:320px;
  height:100vh;
  background:#fff;
  transform:translateX(100%);
  transition:0.3s;
  z-index:999999;
  overflow-y:auto;
  padding-top:70px;
}

.mobile-menu.active{
  transform:translateX(0);
}

/* CLOSE */
.close-btn{
  position:absolute;
  top:15px;
  right:15px;
  font-size:26px;
  background:none;
  border:none;
  cursor:pointer;
}

/* MOBILE LINKS */
.mobile-menu a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
  border-bottom:1px solid #eee;
  color:#111;
  font-weight:600;
}

/* SUBMENU */
.submenu{
  max-height:0;
  overflow:hidden;
  background:#f1f5f9;
  transition:0.3s;
}

.submenu.open{
  max-height:400px;
}

.submenu a{
  padding-left:30px;
  font-size:14px;
}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* BODY LOCK */
body.menu-open{
  overflow:hidden;
}

/* RESPONSIVE */
@media(max-width:900px){

  .nav{
    display:none;
  }

  .menu-btn{
    display:block;
  }

}

/* CONTENT */
.content{
  margin-top:80px;
  padding:20px;
}

/* ===== HİZMET DETAY ===== */
.service-details-area{
  padding:100px 0 80px;
  background:linear-gradient(180deg,#f8fafc,#eef2ff);
}

.widget-area{
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  padding:28px;
  border-radius:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.cat.widget-item h3{
  font-size:20px;
  font-weight:800;
  margin-bottom:22px;
  color:#1e293b;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
}

.cat.widget-item ul{
  list-style:none;
}

.cat.widget-item ul li a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-size:15px;
  font-weight:600;
  color:#334155;
  text-decoration:none;
  transition:.3s;
}

.cat.widget-item ul li a:hover{
  background:linear-gradient(90deg,#6366f1,#8b5cf6);
  color:#fff;
}

.details-item{
  background:#fff;
  border-radius:28px;
  padding:32px;
  box-shadow:0 30px 80px rgba(0,0,0,.1);
}
/* CLOSE BTN */
.close-btn{
  position:absolute;
  top:15px;
  right:15px;
  font-size:26px;
  background:none;
  border:none;
  cursor:pointer;
  z-index:999999;
}

/* ========================= */
/* MOBILE MENU FINAL */
/* ========================= */

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:85%;
  max-width:340px;
  height:100vh;
  background:#0b0f19;
  color:#fff;
  z-index:999999;
  transition:right 0.35s ease;
  display:flex;
  flex-direction:column;
  overflow-y:auto;
}

.mobile-menu.active{
  right:0;
}

/* HEADER */
.mobile-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.mobile-logo img{
  height:40px;
}

/* BODY */
.mobile-body{
  flex:1;
  overflow-y:auto;
}

/* ITEM */
.mobile-item{
  border-bottom:1px solid rgba(255,255,255,0.05);
}

/* TOP LINK */
.mobile-link{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px;
}

.mobile-link a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
}

/* TOGGLE */
.toggle-btn{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#1e293b;
  color:#fff;
  border-radius:8px;
  font-size:18px;
  cursor:pointer;
  transition:0.3s;
}

.toggle-btn.active{
  transform:rotate(90deg);
}

/* SUBMENU */
.submenu{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease;
}

.submenu.open{
  max-height:500px;
}

.submenu a{
  display:block;
  padding:12px 25px;
  color:#bbb;
  font-size:14px;
  text-decoration:none;
  border-top:1px solid rgba(255,255,255,0.05);
}

.submenu a:hover{
  color:#facc15;
  background:rgba(255,255,255,0.05);
  padding-left:30px;
}

/* ========================= */
/* OVERLAY */
/* ========================= */

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* ========================= */
/* DROPDOWN DARK */
/* ========================= */

.drop-panel{
  background:#0b0f19;
  border-radius:10px;
  overflow:hidden;
  padding:5px 0;
}

.drop-panel a{
  display:block;
  padding:12px 18px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:0.25s;
}

.drop-panel a:hover{
  background:rgba(255,255,255,0.05);
  color:#facc15;
  padding-left:22px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:900px){
  .nav{display:none;}
  .menu-btn{display:block;}
}

/* ================= FOOTER ================= */

.footer-area{
  background:var(--footer-bg);
  color:var(--footer-text);
  padding:60px 0;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 15px;
}

.row{
  display:flex;
  flex-wrap:wrap;
}

.col{
  width:25%;
  padding:20px;
}

/* LOGO */
.footer-logo img{
  max-width:180px;
  margin-bottom:15px;
}

/* TITLE */
.footer-title{
  font-size:17px;
  font-weight:600;
  margin-bottom:15px;
  color:#fff;
}

/* LINKS */
.footer-content a{
  display:block;
  color:#94a3b8;
  text-decoration:none;
  margin-bottom:8px;
  transition:0.3s;
}

.footer-content a:hover{
  color:#facc15;
  padding-left:5px;
}

/* CONTACT */
.footer-contact .contact-item{
  display:flex;
  gap:10px;
  margin-bottom:10px;
  font-size:14px;
}

/* SOCIAL */
.footer-social{
  display:flex;
  gap:12px;
  margin-top:15px;
}

.footer-social a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#1e293b;
  transition:0.3s;
}

.footer-social a:hover{
  transform:translateY(-3px);
}

/* SEO LINKS */
.footer-seo-links{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.footer-seo-links a{
  font-size:13px;
  color:#94a3b8;
}

/* BOTTOM */
.footer-bottom{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:14px;
}

.footer-bottom-left{
  opacity:0.7;
}

.footer-bottom-right{
  display:flex;
  gap:10px;
}

.footer-bottom-right a{
  color:#facc15;
  text-decoration:none;
  font-weight:600;
}

.footer-bottom-right a:hover{
  color:#fff;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .col{ width:100%; }

  .footer-title{
    display:flex;
    justify-content:space-between;
    cursor:pointer;
  }

  .footer-title::after{ content:"+"; }

  .footer-box.active .footer-title::after{ content:"-"; }

  .footer-content{ display:none; }

  .footer-box.active .footer-content{ display:block; }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

  .footer-bottom-right{
    justify-content:center;
  }
}


/* ================= GOOGLE ================= */

.goog-te-banner-frame.skiptranslate{ display:none !important; }
body{ top:0 !important; }
.goog-logo-link{ display:none !important; }

.goog-te-gadget{
  font-size:13px !important;
  display:flex !important;
  align-items:center;
}


/* ================= LANG ================= */

.lang-pro{
  display:flex;
  align-items:center;
  gap:8px;
  background:#000;
  color:#fff;
  padding:6px 12px;
  border-radius:50px;
  border:1px solid #ffd700;
  cursor:pointer;
  transition:0.3s;
  margin-left:15px;
}

.lang-pro:hover{ background:#111; }

.lang-pro img{
  width:20px;
  height:20px;
  border-radius:50%;
}

.goog-te-combo{
  background:transparent;
  border:none;
  color:#fff;
  font-size:13px !important;
  outline:none;
  cursor:pointer;
}

.goog-te-combo option{ color:#000; }


/* ================= HEADER ================= */

.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  background:var(--header-bg);
  color:var(--header-text);
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  height:45px;
  width:auto;
  max-height:50px;
  object-fit:contain;
}

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

.nav a{
  color:var(--header-text);
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.nav a:hover{ opacity:0.7; }

.drop-panel{ background:var(--header-bg); }

.drop-panel a{ color:var(--header-text); }

.drop-panel a:hover{
  background:rgba(255,255,255,0.05);
}


/* ================= MOBILE HEADER ================= */

@media(max-width:768px){

  .header{ padding:0 15px; }

  .logo img{ height:35px; }

  /* NAV KAPALI */
  .nav{ display:none !important; }

  /* MENU BTN */
  .menu-btn{
    display:block;
    font-size:26px;
    color:var(--header-text);
  }

  /* LANG */
  .lang-pro{
    position:absolute;
    right:60px;
    top:50%;
    transform:translateY(-50%);
    padding:4px 8px;
  }

  .lang-pro img{
    width:18px;
    height:18px;
  }
}


/* ================= MOBILE MENU FINAL ================= */

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:85%;
  max-width:340px;
  height:100vh;
  background:#0b0f19;
  z-index:999999;
  transition:0.35s ease;
  display:flex;
  flex-direction:column;
}

.mobile-menu.active{
  right:0;
}

/* HEADER */
.mobile-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.close-btn{
  font-size:26px;
  cursor:pointer;
}

/* BODY */
.mobile-body{
  flex:1;
  overflow-y:auto;
}

/* ITEM */
.mobile-item{
  border-bottom:1px solid rgba(255,255,255,0.05);
}

/* LINK */
.mobile-link{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px;
}

.mobile-link a{
  color:#fff;
  text-decoration:none;
}

/* SUBMENU */
.submenu{
  max-height:0;
  overflow:hidden;
  transition:0.3s;
}

.submenu.open{
  max-height:400px;
}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.3);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}
.overlay{
  position:fixed;
  inset:0;
  background:transparent; /* 🔥 KARARTMA YOK */
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* SUBMENU FIX */
.submenu{
  max-height:0;
  overflow:hidden;
  transition:0.3s ease;
  background:#0b0f19; /* 🔥 koyu tema */
  padding:0;
}

.submenu.open{
  max-height:500px;
  padding:10px 0;
}

/* SUBMENU LINK */
.submenu a{
  display:block;
  padding:12px 25px;
  color:#ccc; /* 🔥 beyaz değil */
  font-size:14px;
  text-decoration:none;
  border-top:1px solid rgba(255,255,255,0.05);
  transition:0.3s;
}

/* HOVER */
.submenu a:hover{
  background:rgba(255,255,255,0.05);
  color:#facc15;
  padding-left:30px;
}
.toggle-btn{
  width:36px;
  height:36px;
  background:#1e293b;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  transition:0.3s;
}

.toggle-btn.active{
  transform:rotate(90deg);
}
/* DESKTOP KAYMA FIX */
html{
  overflow-y:scroll;
}


/* ================= FOOTER GENEL ================= */

.footer-area{
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-area a{
  display:block;
  margin-bottom:8px;
  transition:.3s;
}

.footer-area a:hover{
  color: var(--footer-title);
}

/* GRID */
.footer-area .row{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}

.footer-area .col{
  flex:1;
  min-width:200px;
}

/* ================= BAŞLIK ================= */

.footer-title{
  font-weight:600;
  color: var(--footer-title);
  margin-bottom:10px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* + işareti */
.footer-title::after{
  content:"+";
  font-size:18px;
  transition:.3s;
}

/* aktif */
.footer-box.active .footer-title::after{
  content:"-";
}

/* ================= CONTENT ================= */

.footer-content{
  transition:.3s ease;
}

/* ================= CONTACT ================= */

.footer-contact .contact-item{
  display:flex;
  gap:8px;
  margin-bottom:10px;
}

.footer-contact .icon{
  color: var(--footer-title);
}

/* ================= ALT ================= */

.footer-bottom{
  margin-top:30px;
  padding-top:15px;
  border-top:1px solid var(--footer-title);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}

.footer-bottom-left,
.footer-bottom-right{
  font-size:14px;
}

/* ================= MOBİL ================= */

@media(max-width:768px){

  /* kolonlar alt alta */
  .footer-area .row{
    flex-direction:column;
  }

  /* accordion */
  .footer-content{
    max-height:0;
    overflow:hidden;
  }

  .footer-box.active .footer-content{
    max-height:400px;
    padding-top:10px;
  }

  /* sadece logo açık */
  .footer-box:first-child .footer-content{
    max-height:400px;
  }

  /* alt footer */
  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

}

/* ================= DESKTOP ================= */

@media(min-width:769px){

  .footer-title::after{
    display:none;
  }

  .footer-content{
    max-height:100% !important;
    overflow:visible !important;
  }

}
/* ================= SOCIAL ================= */

.footer-social{
  margin-top:15px;
  display:flex;
  gap:10px;
}

.footer-social a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
  color:var(--footer-title);
  font-size:14px;
  transition:0.3s;
}

.footer-social a:hover{
  background:var(--footer-title);
  color:#000;
  transform:translateY(-3px);
}

/* ================= HEADER ================= */

.header{
  background: var(--header-bg) !important;
  color: var(--header-text);
}

/* MENÜ */
.nav a{
  color: var(--header-text) !important;
  font-weight:600;
  transition:0.3s;
}

/* HOVER */
.nav a:hover{
  color: var(--header-hover) !important;
}

/* DROPDOWN */
.drop-panel{
  background: var(--header-bg);
}

.drop-panel a{
  color: var(--header-text);
}

.drop-panel a:hover{
  background: rgba(255,255,255,0.05);
  color: var(--header-hover);
}

/* MOBILE */
.mobile-menu{
  background: var(--header-bg);
}

.mobile-link a{
  color: var(--header-text);
}

/* MOBILE HOVER */
.mobile-link a:hover{
  color: var(--header-hover);
}

/* ================= TANITIM KART ================= */

.modern-card{
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  transition: 0.3s;
  height:100%;
}

.modern-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modern-card i{
  font-size:40px;
  color: var(--card-title);
  margin-bottom:15px;
}

.modern-card h5{
  color: var(--card-title);
  margin-bottom:10px;
}

.modern-card p{
  color: var(--card-text);
}

/* MOBİL FIX (SWIPER İLE UYUMLU) */
@media(max-width:768px){

  .feature-area .row{
    display:block !important;
    overflow:visible !important;
    flex-wrap:wrap !important;
  }

  .feature-area .col-sm-6.col-lg-4{
    flex:unset !important;
    max-width:100% !important;
  }

}
html, body{
  height:auto !important;
}

/* =========================
   HERO SLIDER CUSTOM CSS
========================= */

.hero-slider{
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.hero-track{
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .6s ease;
}

.hero-slide{
  position: relative;
  min-width: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.10) 100%);
  z-index: 2;
}

.hero-mobile-image-wrap{
  display: none;
}

.hero-content-wrap{
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 6%;
}

.hero-content-card{
  width: 100%;
  max-width: 620px;
  background: rgba(0,0,0,.48);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-title{
  margin: 0 0 18px 0;
  color: #ffffff;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
}

.hero-desc{
  margin: 0 0 22px 0;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.65;
  font-weight: 500;
}

.hero-button{
  display: inline-block;
  background: #f7c600;
  color: #111111;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s ease;
}

.hero-button:hover{
  background: #ffcf1f;
  color: #111111;
}

.hero-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  transition: .3s ease;
}

.hero-nav:hover{
  background: rgba(0,0,0,.8);
}

.hero-prev{
  left: 18px;
}

.hero-next{
  right: 18px;
}

/* Mobil */
@media (max-width: 991px){

  .hero-slider{
    height: 100svh;
    min-height: 650px;
  }

  .hero-bg{
    filter: blur(18px);
    transform: scale(1.08);
  }

  .hero-overlay{
    background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.18) 35%, rgba(0,0,0,.62) 100%);
  }

  .hero-mobile-image-wrap{
    display: flex;
    position: absolute;
    inset: 0;
    z-index: 3;
    align-items: center;
    justify-content: center;
    padding: 90px 12px 240px;
    pointer-events: none;
  }

  .hero-mobile-image{
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .hero-content-wrap{
    align-items: flex-end;
    justify-content: center;
    padding: 14px 14px 24px;
  }

  .hero-content-card{
    max-width: 100%;
    padding: 20px 18px;
    border-radius: 18px;
    background: rgba(0,0,0,.60);
  }

  .hero-title{
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .hero-desc{
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .hero-button{
    width: 100%;
    text-align: center;
    padding: 12px 18px;
  }

  .hero-nav{
    width: 42px;
    height: 42px;
    font-size: 20px;
    top: 42%;
  }

  .hero-prev{
    left: 10px;
  }

  .hero-next{
    right: 10px;
  }
}

/* Küçük mobil */
@media (max-width: 575px){

  .hero-slider{
    min-height: 620px;
  }

  .hero-mobile-image-wrap{
    padding: 75px 8px 250px;
  }

  .hero-title{
    font-size: 26px;
  }

  .hero-desc{
    font-size: 15px;
  }

  .hero-content-card{
    padding: 18px 15px;
  }
}