/* Reset ve Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Segoe UI", sans-serif;
    background: #111;
    color: #eee;
    line-height: 1.6;
}
a {
    text-decoration: none;
}
/* ===================== HEADER (Yeni) ===================== */
:root{
  --bg:#111;
  --ink:#eee;
  --muted:#bbb;
  --gold:#ffd700;
  --gold-soft:rgba(255,215,0,.18);
  --border:rgba(255,255,255,.08);
}

body.no-scroll { overflow: hidden; }

/* Cam blur + şık çizgi */
#main-header.glass{
  position: fixed; inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-soft);
  transition: padding .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
  padding: 18px 0;
}
#main-header.scrolled{
  background: rgba(0,0,0,.78);
  border-bottom-color: var(--gold);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  padding: 10px 0;
}

/* İç yerleşim */
#main-header .header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

/* Logo */
.logo{ display:flex; align-items:center; gap:10px; }
.logo-img{
  height: 56px; width:auto; display:block;
  transition: transform .25s ease, filter .25s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}
#main-header.scrolled .logo-img{ height:48px; }
.logo-link:hover .logo-img{ transform: translateY(-1px) scale(1.02); }

/* Masaüstü menü */
.nav-desktop ul{
  display:flex; justify-content:center; gap:28px; list-style:none;
}
.nav-link{
  position:relative;
  color:var(--ink);
  font-size:15.5px; font-weight:500;
  padding:8px 2px;
  text-decoration:none;
  transition: color .25s ease, transform .25s ease;
  outline-offset: 3px;
}
.nav-link:hover{ color: var(--gold); transform: translateY(-1px); }

/* Alt çizgi animasyonu */
.nav-link::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .28s ease;
}
.nav-link:hover::after, .nav-link.is-active::after{ transform: scaleX(1); }

/* Sağ aksiyonlar */
.header-actions{ display:flex; align-items:center; gap:12px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 16px; border-radius:12px; font-weight:700; font-size:14.5px;
  text-decoration:none; border:1px solid var(--border);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  color:var(--ink); background: transparent;
}
.btn:hover{ transform: translateY(-2px); border-color: var(--gold); color: var(--gold); }
.btn.highlight{
  background: var(--gold); color:#000; border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(255,215,0,.24);
}
.btn.highlight:hover{
  filter:brightness(1.05);
  box-shadow: 0 14px 28px rgba(255,215,0,.28);
}

/* Hamburger */
.menu-toggle{
  display:none; position:relative; width:40px; height:40px;
  border:1px solid var(--border); border-radius:10px; background:rgba(255,255,255,.02);
  cursor:pointer; transition: all .25s ease;
}
.menu-toggle:hover{ border-color: var(--gold); }
.menu-toggle span{
  position:absolute; left:8px; right:8px; height:2px; background:var(--gold);
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.menu-toggle span:nth-child(1){ top:12px; }
.menu-toggle span:nth-child(2){ top:19px; }
.menu-toggle span:nth-child(3){ top:26px; }
.menu-toggle.active span:nth-child(1){ top:19px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity:0; }
.menu-toggle.active span:nth-child(3){ top:19px; transform: rotate(-45deg); }

/* Mobil Drawer */
.mobile-drawer{
  position: fixed; inset: 0 0 0 auto; width: 82vw; max-width: 360px;
  background: rgba(10,10,10,.96); backdrop-filter: blur(10px);
  border-left:1px solid var(--gold-soft);
  transform: translateX(100%); transition: transform .32s ease;
  z-index: 1001; display:flex; flex-direction:column; padding:16px;
}
.mobile-drawer.open{ transform: translateX(0); }

.drawer-backdrop{
  position: fixed; inset:0; background: rgba(0,0,0,.4);
  opacity:0; visibility:hidden; transition: opacity .25s ease, visibility .25s ease;
  z-index: 1000;
}
.drawer-backdrop.show{ opacity:1; visibility:visible; }

/* Mobil nav içi */
.nav-mobile ul{
  list-style:none; padding:10px 6px; margin:0; display:flex; flex-direction:column; gap:8px;
}
.nav-mobile .nav-link{
  display:block; padding:12px 12px; border-radius:10px; font-size:16px; color:var(--ink);
  border:1px solid transparent; transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.nav-mobile .nav-link:hover{ background: rgba(255,215,0,.08); border-color: var(--gold-soft); color: var(--gold); }
.mobile-cta{ margin-top:auto; padding:10px 6px; }
.btn-block{ width:100%; }

/* Erişilebilirlik: focus görünürlüğü */
.nav-link:focus-visible,
.menu-toggle:focus-visible,
.btn:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
  border-radius:12px;
}

/* Responsive kırılımlar */
@media (max-width: 992px){
  .nav-desktop{ display:none; }
  .menu-toggle{ display:inline-block; }
}
@media (max-width: 420px){
  .logo-img{ height:48px; }
}

/* Tercih: azaltılmış animasyon */
@media (prefers-reduced-motion: reduce){
  #main-header, .nav-link, .btn, .menu-toggle, .mobile-drawer, .drawer-backdrop, .logo-img{
    transition: none !important;
  }
}
/* =================== /HEADER (Yeni) =================== */

/* ---------------- SLIDER ---------------- */
/* SLIDER */
.slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px; /* header yüksekliği için */
}

.slides {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* İçerik */
.slide-content {
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,0.55);
    padding: 40px;
    border-radius: 12px;
    max-width: 700px;
    animation: fadeInUp 1.5s ease;
}
.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: gold;
}
.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}
.slide-content .cta {
    padding: 12px 28px;
    background: gold;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s ease;
    display: inline-block;
}
.slide-content .cta:hover {
    background: #ffd700;
    transform: scale(1.05);
}

/* Kontroller */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}
.slider-controls span {
    width: 50px;
    height: 50px;
    border: 2px solid gold;
    border-radius: 50%;
    color: gold;
    font-size: 28px;
    font-weight: bold;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-controls span:hover {
    background: gold;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px gold;
}

/* Dot Navigation */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.slider-dots span {
    width: 12px;
    height: 12px;
    background: #666;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.slider-dots span.active {
    background: gold;
    transform: scale(1.3);
    box-shadow: 0 0 8px gold;
}

/* Animasyon */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
    .slide-content h1 { font-size: 32px; }
    .slide-content p { font-size: 16px; }
    .slider-controls span {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}
/* HİZMETLER */
.services {
    padding: 100px 40px;
    text-align: center;
    background: #111;
}
.services h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: gold;
    position: relative;
    display: inline-block;
}
.services h2::after {
    content: "";
    display: block;
    margin: 10px auto 0;
    width: 80px;
    height: 3px;
    background: gold;
    border-radius: 2px;
}

/* Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Kart */
.service-card {
    background: linear-gradient(145deg, #1c1c1c, #0d0d0d);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 40px 30px;
    border-radius: 16px;
    color: #eee;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

/* Hover Efektleri */
.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: gold;
    box-shadow: 0 15px 35px rgba(255,215,0,0.25);
}

/* İkon */
.service-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: gold;
    transition: background 0.3s ease, transform 0.3s ease;
}
.service-card:hover .icon {
    background: gold;
    color: #000;
    transform: rotate(10deg) scale(1.1);
}

/* Başlık & Metin */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: gold;
}
.service-card p {
    font-size: 15px;
    color: #bbb;
    transition: color 0.3s ease;
}
.service-card:hover p {
    color: #fff;
}

/* Animasyon */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .services h2 { font-size: 28px; }
    .service-card { padding: 30px 20px; }
}

/* NEDEN BİZ */
.why-us {
    padding: 100px 40px;
    background: #000;
    text-align: center;
}
.why-us h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: gold;
    position: relative;
    display: inline-block;
}
.why-us h2::after {
    content: "";
    display: block;
    margin: 12px auto 0;
    width: 90px;
    height: 3px;
    background: gold;
    border-radius: 2px;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Kart */
.why-item {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    padding: 40px 25px;
    color: #eee;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.why-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.why-item:hover::before { opacity: 1; }
.why-item:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: gold;
    box-shadow: 0 15px 35px rgba(255,215,0,0.25);
}

/* İkon */
.why-item .icon {
    font-size: 40px;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: gold;
    transition: all 0.4s ease;
}
.why-item:hover .icon {
    background: gold;
    color: #000;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 15px gold;
}

/* Başlık & Metin */
.why-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: gold;
}
.why-item p {
    font-size: 15px;
    color: #bbb;
    transition: color 0.3s ease;
}
.why-item:hover p { color: #fff; }

/* Responsive */
@media (max-width: 768px) {
    .why-us h2 { font-size: 28px; }
    .why-item { padding: 30px 20px; }
    .why-item .icon { width: 70px; height: 70px; font-size: 32px; }
}

/* FAQ */
.faq {
    padding: 100px 40px;
    text-align: center;
    background: #111;
}
.faq h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: gold;
    position: relative;
    display: inline-block;
}
.faq h2::after {
    content: "";
    display: block;
    margin: 12px auto 0;
    width: 90px;
    height: 3px;
    background: gold;
    border-radius: 2px;
}

/* FAQ Item */
.faq-item {
    max-width: 800px;
    margin: 15px auto;
    background: #1c1c1c;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: gold;
    box-shadow: 0 0 12px rgba(255,215,0,0.25);
}

/* Soru */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: bold;
    color: #eee;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.faq-question span {
    font-size: 22px;
    color: gold;
    transition: transform 0.3s ease;
}
.faq-question:hover {
    background: rgba(255,215,0,0.08);
}

/* Açıklama */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 25px;
}
.faq-answer p {
    padding: 15px 0;
    color: #ccc;
    line-height: 1.6;
}

/* Aktif olduğunda */
.faq-question.active span {
    transform: rotate(180deg);
    color: #fff;
}
.faq-question.active {
    color: gold;
    background: rgba(255,215,0,0.12);
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

/* ---------------- Animasyonlar ---------------- */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
    nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.97);
        width: 240px;
        height: 100vh;
        padding: 60px 20px;
        gap: 20px;
    }
    nav ul.active { right: 0; }
    .menu-toggle { display: flex; }
    .slide-content h1 { font-size: 32px; }
    .slide-content p { font-size: 16px; }
    .service-grid { flex-direction: column; }
}

/*--------------------------------------------------------------------- */

/* FOOTER */
footer {
    background: #000;
    color: #ccc;
    padding: 60px 40px 20px;
    margin-top: 60px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Firma Bilgisi */
.footer-about .logo {
    font-size: 26px;
    font-weight: bold;
    color: gold;
}
.footer-about .logo span {
    color: #fff;
}
.footer-about p {
    margin-top: 15px;
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

/* Hızlı Menü */
.footer-links h4,
.footer-contact h4 {
    color: gold;
    font-size: 18px;
    margin-bottom: 15px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin: 8px 0;
}
.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links ul li a:hover {
    color: gold;
    padding-left: 4px;
}

/* İletişim */
.footer-contact p {
    margin: 8px 0;
    font-size: 14px;
}
.footer-contact i {
    color: gold;
    margin-right: 10px;
}

/* Sosyal Medya İkonları */
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid gold;
    border-radius: 50%;
    color: gold;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.social-icons a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: gold;
    transition: top 0.3s ease;
    z-index: 0;
}
.social-icons a i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
.social-icons a:hover::before {
    top: 0;
}
.social-icons a:hover i {
    color: #000; /* ikon görünür kalır */
}
.social-icons a:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Alt Kısım */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 14px;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .social-icons a {
        margin: 5px;
    }
}

/* Newsletter */
.footer-newsletter h4 {
    color: gold;
    font-size: 18px;
    margin-bottom: 12px;
}
.footer-newsletter p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}
.footer-newsletter form {
    display: flex;
    gap: 10px;
}
.footer-newsletter input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    background: #1a1a1a;
    color: #eee;
    font-size: 14px;
    outline: none;
}
.footer-newsletter button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background: gold;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}
.footer-newsletter button:hover {
    background: #ffd700;
    transform: scale(1.05);
}

/* Responsive düzen */
@media (max-width: 768px) {
    .footer-newsletter form {
        flex-direction: column;
    }
    .footer-newsletter button {
        width: 100%;
    }
}

/* ----------------------------------------------------------------- */


/* BLOG / TANITIM ALANI */
.promo {
    padding: 100px 40px;
    background: #111;
}
.promo-container {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* Sol Görsel */
.promo-image {
    flex: 1;
}
.promo-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    transition: transform 0.4s ease;
}
.promo-image img:hover {
    transform: scale(1.03);
}

/* Sağ İçerik */
.promo-content {
    flex: 1;
    color: #eee;
}
.promo-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: gold;
}
.promo-content p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Butonlar */
.promo-buttons {
    display: flex;
    gap: 15px;
}
.promo-buttons a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn-primary {
    background: gold;
    color: #000;
}
.btn-primary:hover {
    background: #ffd700;
    transform: scale(1.05);
}
.btn-secondary {
    background: transparent;
    color: gold;
    border: 2px solid gold;
}
.btn-secondary:hover {
    background: gold;
    color: #000;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
    .promo-container {
        flex-direction: column;
        text-align: center;
    }
    .promo-buttons {
        justify-content: center;
    }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 65px;
  width: auto;
  display: block;
}
.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: gold;
  text-decoration: none;
}
.logo-text span {
  color: #fff;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo img {
  height: 100px; /* istediğin boyuta göre değiştir */
  width: auto;
  display: block;
}
.footer-logo .logo-text {
  font-size: 20px;
  font-weight: bold;
  color: gold;
  text-decoration: none;
}
.footer-logo .logo-text span {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  font-size: 14px;
  color: #777;
}

.footer-bottom .devtechnic-note {
  margin-top: 6px;
  font-size: 13px;
  color: #999;
}
.footer-bottom .devtechnic-note a {
  color: gold;
  text-decoration: none;
}
.footer-bottom .devtechnic-note a:hover {
  text-decoration: underline;
}

