/* ==================================================
   1. RESET & TEMEL AYARLAR
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none; /* Standart mouse masaüstünde gizlenir */
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: #0b0f1a;
  background-image: 
    radial-gradient(circle at 90% 10%, rgba(255, 0, 76, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(25, 243, 226, 0.1) 0%, transparent 40%);
  color: #fff;
  padding-top: 90px;
  min-height: 100vh;
}

/* ==================================================
   2. CURSOR (MANYETİK & TIKLAMA EFEKTİ)
================================================== */
.cursor-box {
  position: fixed;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  animation: rotateBox 5s linear infinite;
  transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease;
}

.cursor-box.locked {
  animation: none;
  transform: translate(-50%, -50%) rotate(0deg);
  border-radius: 4px;
}

/* Kutuya tıklandığında içindeki 4 köşeyi merkeze doğru kaydır */
.cursor-box.clicked .tl { transform: translate(6px, 6px); }
.cursor-box.clicked .tr { transform: translate(-6px, 6px); }
.cursor-box.clicked .bl { transform: translate(6px, -6px); }
.cursor-box.clicked .br { transform: translate(-6px, -6px); }

.corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #1bc6eb;
  transition: 0.2s;
}

.tl { top:0; left:0; border-right:none; border-bottom:none; }
.tr { top:0; right:0; border-left:none; border-bottom:none; }
.bl { bottom:0; left:0; border-right:none; border-top:none; }
.br { bottom:0; right:0; border-left:none; border-top:none; }

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100001;
  transform: translate(-50%, -50%);
}

@keyframes rotateBox {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ==================================================
   3. SCROLL REVEAL (KAYDIRDIKÇA AÇILMA)
================================================== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
  will-change: transform, opacity;
  min-height: 100px;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================
   4. NAVBAR
================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(11, 15, 26, 0.7);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding 0.3s;
}

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

.logo img {
  height: 40px;
  transition: transform 0.3s ease !important;
  display: block;
}

.logo:hover img {
  transform: scale(1.1) !important;
}

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

.nav-links a {
  text-decoration: none;
  color: #a0a0a0;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
  padding: 10px 15px; 
  display: inline-block;
}

.nav-links a:hover {
  color: #fff;
}

/* BUTTONS & CTA GLOBAL */
a.cta, button.cta, .cta {
  background: linear-gradient(90deg, #1bc6eb, #006d8c);
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff !important;
  text-transform: uppercase;
  margin-left: 10px;
  text-decoration: none !important;
  display: inline-block !important;
  transition: transform 0.2s ease !important;
}

a.cta:hover, button.cta:hover, .cta:hover {
  transform: scale(1.15) !important;
  color: #ffffff !important;
}

a.primary, button.primary, .primary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none !important; 
  display: inline-block !important;
}

.primary:hover {
  border-color: #19f3e2;
  color: #19f3e2 !important;
}

/* ==================================================
   5. HERO SECTION
================================================== */
.hero {
  min-height: 100vh; 
  margin-top: -90px;
  padding: 190px 60px 60px 60px; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: 
    linear-gradient(to right, rgba(11, 15, 26, 0.95) 20%, rgba(11, 15, 26, 0.3)), 
    url('images/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-text h1 {
  font-size: 80px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-text p {
  color: #8892b0;
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 40px;
}

.buttons {
  display: flex;
  gap: 20px;
}

/* HERO ANIMASYONU (TEXT SLIDER) */
.dynamic-txt-wrapper {
  display: inline-block;
  height: 1.1em;
  line-height: 1.1em;
  overflow: hidden;
  vertical-align: bottom;
}

.dynamic-txts {
  display: flex;
  flex-direction: column;
  animation: slide-txt 12s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

.dynamic-txts span {
  color: #1bc6eb;
  white-space: nowrap;
  display: block;
}

@keyframes slide-txt {
  0%, 13% { transform: translateY(0); } 
  16.66%, 30% { transform: translateY(-16.66%); } 
  33.32%, 46% { transform: translateY(-33.32%); } 
  50%, 63% { transform: translateY(-50%); } 
  66.64%, 80% { transform: translateY(-66.64%); } 
  83.30%, 96% { transform: translateY(-83.30%); } 
  100% { transform: translateY(-83.30%); } 
}

/* ==================================================
   6. FOLDER TAB DESIGN (DOSYA GÖRÜNÜMÜ BAŞLIKLAR)
================================================== */
.folder-header {
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 40px;
}

.folder-tab {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #19f3e2;
  letter-spacing: 1px;
  background: transparent;
  white-space: nowrap;
}

.folder-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  flex-grow: 1;
  margin-bottom: 0;
}

/* ==================================================
   7. CASE STUDIES (SLIDER)
================================================== */
.case-slider-section {
  padding: 80px 120px;
  background: #0d121f;
}

.case-slider-wrapper {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 40px;
}

.case-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.case-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.case-controls button:hover {
  border-color: #19f3e2;
  color: #19f3e2;
}

.case-indicators {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.indicator-line {
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.indicator-line.active {
  background: #19f3e2;
  height: 40px;
  box-shadow: 0 0 10px #19f3e2;
}

.case-slider {
  position: relative;
  width: 100%;
  height: 450px;
  perspective: 1000px;
}

.case-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  z-index: 1;
}

.case-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  pointer-events: auto;
}

.case-slide.next, .case-slide.prev {
  display: block;
  opacity: 0.5;
  transform: translateY(70px) scale(0.92);
  z-index: 5;
}

.case-slide.prev {
  transform: translateY(-70px) scale(0.92);
}

.case-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,26,0.95), transparent 60%);
}

.case-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #000;
  padding: 5px 10px;
  font-weight: 800;
  font-size: 12px;
  z-index: 12;
  border-radius: 2px;
}

.case-slide h3 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 28px;
  z-index: 12;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.case-info {
  padding-left: 30px;
  transition: opacity 0.3s;
}

.case-info.fade-text { opacity: 0.2; }
.case-info h2 { font-size: 42px; margin-bottom: 10px; line-height: 1.1; }
.case-info h4 { color: #ff3b6f; font-size: 18px; margin-bottom: 20px; }
.case-info p { color: #8892b0; margin-bottom: 30px; line-height: 1.6; }

/* ==================================================
   8. COMPANIES (SPONSORLAR GRID)
================================================== */
.companies-section {
  padding: 80px 120px;
  background: #0b0f1a;
}

.companies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.company {
  width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: 0.3s;
}

.company:hover {
  background: rgba(255, 255, 255, 0.05);
}

.company img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
  filter: grayscale(100%) invert(0.7);
  opacity: 0.4; 
  transition: 0.3s ease-in-out;
}

.company:hover img {
  filter: grayscale(0%) invert(0); 
  opacity: 1;
  transform: scale(1.1);
}

/* ==================================================
   9. STATS (SAYAÇLAR)
================================================== */
.stats {
  padding: 120px 60px;
  background: #0d121f;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: 60px;
  text-align: center;
}

.stats strong {
  font-size: 56px;
  display: block;
  color: #fff;
  margin-bottom: 10px;
}

.stats span {
  font-size: 14px;
  color: #1bc6eb;
  letter-spacing: 1px;
  font-weight: 700;
}

/* ==================================================
   10. FOOTER
================================================== */
.main-footer {
  background: #02060c;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 120px;
}

.footer-left .footer-logo img {
  height: 35px;
  margin-bottom: 20px;
}

.footer-mail { color: #8892b0; font-size: 14px; margin-bottom: 5px; }
.footer-copy { color: #444; font-size: 12px; }
.footer-right { text-align: right; display: flex; flex-direction: column; gap: 30px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: #8892b0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.footer-links a:hover { color: #1bc6eb; }
.footer-social { display: flex; justify-content: flex-end; gap: 20px; margin-top: 10px; }

.social-svg {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.social-link:hover .social-svg {
  filter: invert(65%) sepia(94%) saturate(1376%) hue-rotate(159deg) brightness(101%) contrast(105%);
}

/* ==================================================
   11. SERVICES SAYFASI ÖZEL AYARLARI
================================================== */
.services-wrapper {
  width: 100%;
  min-height: 100vh;
  margin-top: -90px;
  padding-top: 90px;
  background-image: 
    radial-gradient(circle at 90% 10%, rgba(29, 58, 64, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(25, 243, 226, 0.2) 0%, transparent 40%),
    linear-gradient(rgba(11, 15, 26, 0.85), rgba(11, 15, 26, 0.85)), 
    url('images/bg.png'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.srv-intro { padding: 90px 60px 100px 60px; display: flex; justify-content: center; }
.srv-intro-content { max-width: 900px; text-align: center; background: transparent; }
.srv-intro-content h1 { font-size: 56px; font-weight: 600; line-height: 1.1; margin-bottom: 30px; }
.srv-intro-content h1 span { color: #1bc6eb; font-weight: 800; }
.srv-intro-content p { font-size: 16px; line-height: 1.8; color: #a0a0a0; }

.srv-list-section { padding: 0 60px 150px 60px; display: flex; flex-direction: column; align-items: center; }
.srv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; width: 100%; max-width: 1200px; }

.srv-card {
  background: rgba(15, 23, 36, 0.6) !important; 
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 20px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.srv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 198, 235, 0.4) !important;
  background: rgba(15, 23, 36, 0.75) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sc-top { display: flex; flex-direction: column; align-items: center; text-align: center; }
.sc-icon { width: 50px; height: 50px; object-fit: contain; margin-bottom: 30px; }
.sc-top h3 { font-size: 26px; color: #1bc6eb !important; font-weight: 700; margin-bottom: 20px; }
.sc-top p { font-size: 15px; color: #8892b0; line-height: 1.7; margin-bottom: 40px; }
.sc-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  margin-top: auto;
  
  display: flex;         /* Flex yapısı tanımlıyoruz */
  justify-content: center; /* Butonu yatayda ortalıyoruz */
}

a.sc-btn, button.sc-btn, .sc-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center; /* İÇERİĞİ YATAYDA ORTALAR */
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none !important; 
  margin: 0 auto; /* Üst-alt 0, sağ-sol otomatik yaparak butonu ortalar */
  width: max-content; /* Butonun tüm satırı kaplamasını önler, içeriği kadar yer tutar */
}



.sc-btn span { font-size: 16px; transition: transform 0.3s; }
.sc-btn:hover { background: #1bc6eb; border-color: #1bc6eb; color: #ffffff; box-shadow: 0 0 20px rgba(27, 198, 235, 0.4); }
.sc-btn:hover span { transform: translateX(5px); }

/* ==================================================
   12. CONTACT FORM (GLASSMORPHISM)
================================================== */
.contact-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  margin-top: -90px;
  justify-content: center;
  align-items: center;
  padding: 140px 30px 80px 30px;
  background-image: 
    radial-gradient(circle at 90% 10%, rgba(29, 58, 64, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(25, 243, 226, 0.2) 0%, transparent 40%),
    linear-gradient(rgba(11, 15, 26, 0.75), rgba(11, 15, 26, 0.75)),
    url('images/bg.png'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-box {
  background: rgba(15, 23, 36, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 50px;
  width: 100%;
  max-width: 650px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}

.contact-box h2 { text-align: center; color: #fff; font-size: 36px; font-weight: 700; margin-bottom: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 25px; }
.form-group label { color: #1bc6eb; font-size: 13px; font-weight: 700; margin-bottom: 10px; }

.form-group input, .form-group textarea {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: #1bc6eb; background: rgba(255, 255, 255, 0.02); box-shadow: 0 0 10px rgba(27, 198, 235, 0.2); }

.submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #006d8c, #1bc6eb);
  border: 1px solid rgba(27, 198, 235, 0.3);
  color: #fff;
  padding: 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(27, 198, 235, 0.3); }

/* ==================================================
   13. PORTFOLIO & ALBUM LIGHTBOX SYSTEM
================================================== */
body:has(.port-intro) {
  background-image: 
    radial-gradient(circle at 90% 10%, rgba(29, 58, 64, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(25, 243, 226, 0.2) 0%, transparent 40%),
    linear-gradient(rgba(11, 15, 26, 0.85), rgba(11, 15, 26, 0.85)), 
    url('images/bg.png'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.port-intro { text-align: center; margin-bottom: 60px; padding-top: 40px; }
.port-intro h1 { font-size: 50px; font-weight: 800; letter-spacing: -1px; }
.port-intro h1 span { color: #00d2ff; }
.port-intro p { color: #8892b0; font-size: 18px; margin-top: 10px; }

.port-container { padding: 0 40px; display: flex; justify-content: center; }
.port-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; max-width: 1600px; width: 100%; padding-bottom: 100px; }
.port-item { flex: 0 1 calc(20% - 25px); min-width: 300px; }

.port-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 800 / 630;
  background: #11141e;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
}

.port-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.port-thumb:hover img { transform: scale(1.05); opacity: 0.4; }

.port-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex; align-items: flex-end; padding: 25px; opacity: 0; transition: 0.4s;
}
.port-thumb:hover .port-overlay { opacity: 1; }
.port-info h3 { font-size: 20px; color: #fff; }
.port-info span { color: #00d2ff; font-size: 14px; }
.album-badge { position: absolute; top: 15px; right: 15px; background: #00d2ff; color: #000; padding: 5px 12px; border-radius: 8px; font-weight: 800; font-size: 12px; z-index: 10; }

/* POPUP LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.97); display: none; justify-content: center; align-items: center; z-index: 99999; }
.lightbox-bg { position: absolute; inset: 0; }
.lightbox-content { position: relative; z-index: 100; text-align: center; max-width: 90vw; }
#lightbox-img, #album-local-video { max-height: 80vh; max-width: 100%; border-radius: 12px; box-shadow: 0 0 50px rgba(0, 210, 255, 0.2); display: none; }
video { pointer-events: auto !important; position: relative; z-index: 101; }
.close-btn { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 50px; z-index: 1000; }
.nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 50px; z-index: 1000; padding: 20px; user-select: none; }
.left-arrow { left: 20px; } .right-arrow { right: 20px; }
.lightbox-text { margin-top: 20px; } .lightbox-text h2 { font-size: 24px; } .lightbox-text p { color: #00d2ff; }

/* ==================================================
   14. VIDEO EDITING JİLET DİZİLİM (5'Lİ COL)
================================================== */
.video-page-wrapper .video-edit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.video-page-wrapper .yt-card:last-child:nth-child(5n+1) { grid-column: 3; }

.video-page-wrapper .video-thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9 !important;
  background: rgba(15, 23, 36, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.video-page-wrapper .video-thumb:hover { transform: translateY(-8px); border-color: #1bc6eb; }
.video-page-wrapper .video-thumb img { width: 100%; height: 100%; object-fit: cover; }

.video-page-wrapper .port-overlay {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%) !important;
  z-index: 5; pointer-events: none; opacity: 1 !important;
}

.video-page-wrapper .port-info { display: flex !important; flex-direction: column !important; justify-content: flex-end !important; width: 100% !important; min-height: 50px !important; z-index: 20 !important; }
.video-page-wrapper .yt-real-title { color: #ffffff !important; font-size: 13px !important; font-weight: 800 !important; text-transform: uppercase !important; margin-bottom: 5px !important; display: block !important; visibility: visible !important; opacity: 1 !important; line-height: 1.2 !important; }
.video-page-wrapper .yt-target-title { display: -webkit-box !important; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: #ffffff !important; font-size: 14px !important; font-weight: 800 !important; margin-bottom: 5px !important; text-transform: uppercase !important; opacity: 1 !important; visibility: visible !important; }
.video-page-wrapper .yt-cat-name { display: block; color: #1bc6eb !important; font-size: 10px !important; font-weight: 600 !important; text-transform: uppercase; }
.video-page-wrapper .album-badge { position: absolute; top: 10px; right: 10px; background: #1bc6eb; color: #fff; padding: 3px 8px; border-radius: 20px; font-size: 9px; font-weight: bold; z-index: 10; }

/* ==================================================
   15. GLOBAL RESPONSIVE (MOBİL VE TABLET UYUMU)
================================================== */
@media (max-width: 1200px) {
  .video-page-wrapper .video-edit-grid { grid-template-columns: repeat(3, 1fr); }
  .video-page-wrapper .yt-card:last-child:nth-child(5n+1) { grid-column: auto; }
  .port-item { flex: 0 1 calc(33.33% - 25px); }
}

@media (max-width: 992px) {
  /* Projeler Slider Yapısını Dikey Alır */
  .case-slider-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .case-controls {
    flex-direction: row;
    justify-content: center;
  }
  
  .case-indicators { flex-direction: row; }
  .indicator-line { width: 20px; height: 2px; }
  .indicator-line.active { width: 40px; height: 2px; }
  .case-info { padding-left: 0; text-align: center; }
  .footer-container { padding: 0 40px; }
}

@media (max-width: 768px) {
  /* Dokunmatik Ekranlarda Özel Cursor Kapatılır */
  * { 
    cursor: auto !important; 
  }
  .cursor-box, .cursor-dot { 
    display: none !important; 
  }

  /* Navbar (Aşağı İnince Genişleme/Zıplama Animasyonunu Engelleyen Sabitleme) */
  .navbar { 
    padding: 0 20px !important; /* JS padding animasyonunu mobilde tamamen ezer */
    height: 70px !important;    /* Yüksekliği 70px olarak kilitler */
    transition: none !important; /* Mobilde gereksiz geçiş efektlerini kapatır */
  }
  body { 
    padding-top: 70px; 
  }
  .logo img { 
    height: 30px; 
  }
  .logo:hover img {
    transform: none !important; /* Mobilde dokununca logonun büyümesini engeller */
  }
  .nav-links { 
    gap: 10px; 
  }
  .nav-links a { 
    padding: 6px 10px; 
    font-size: 12px; 
  }
  a.cta, button.cta, .cta { 
    padding: 8px 16px; 
    font-size: 12px; 
  }

  /* Hero Section */
  .hero { 
    margin-top: -70px; 
    padding: 120px 20px 60px 20px; 
    flex-direction: column; 
    text-align: center; 
    justify-content: center; 
    background-position: 35% center; 
  }
  .hero-text h2 { 
    font-size: 16px !important; 
  }
  .hero-text h1 { 
    font-size: 38px !important; 
    line-height: 1.2; 
  }
  .dynamic-txt-wrapper { 
    height: 1.2em; 
  }
  .hero-text p { 
    font-size: 15px; 
    margin: 0 auto 30px auto; 
  }
  .buttons { 
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 10px; 
  }

  /* Section Boşlukları & Slider (İç İçe Girmeyi Önleyen Ayarlar) */
  .case-slider-section, .companies-section { 
    padding: 50px 20px; 
  }
  .case-controls {
    margin-bottom: 35px; /* Oklar ile slider kartları arasındaki boşluk */
  }
  .case-slider { 
    height: 300px; 
    margin-bottom: 35px; /* Slider resmi ile alttaki yazılar arasındaki boşluk */
  }
  .case-slide h3 { 
    font-size: 20px; 
    bottom: 20px; 
    left: 20px; 
  }
  .case-info {
    margin-top: 15px;
  }
  .case-info h2 { 
    font-size: 28px; 
    line-height: 1.3;
    margin-top: 10px;
  }
  .case-info h4 {
    margin-bottom: 15px;
  }

  /* Sponsor Logoları Grid Yapısı (2'li döküm) */
  .companies-grid { 
    gap: 15px; 
  }
  .company { 
    width: calc(50% - 8px); 
    height: 75px; 
  }
  .company img { 
    max-width: 75%; 
    opacity: 0.6; 
  }

  /* Sayaçlar */
  .stats { 
    grid-template-columns: 1fr; 
    gap: 40px; 
    padding: 60px 20px; 
  }

  /* Contact Form */
  .form-row { 
    grid-template-columns: 1fr; 
    gap: 0; 
  }
  .contact-box { 
    padding: 30px 20px; 
  }
  .contact-section { 
    padding-top: 120px; 
  }

  /* Services Sayfası Grid (Yazıları ve Butonları Tam Ortalanmış Hali) */
  .srv-grid { 
    grid-template-columns: 1fr !important; 
    gap: 20px; 
  }
  .srv-list-section { 
    padding: 0 20px 80px 20px; 
  }
  .srv-intro-content h1 { 
    font-size: 32px !important; 
  }
  .srv-card { 
    padding: 30px 20px; 
    align-items: center; /* Kartın genel içeriğini dikey eksende ortalar */
  }
  .sc-bottom {
    width: 100%;
    display: flex;
    justify-content: center; /* Alt buton alanını tam yatay merkez yapar */
    align-items: center;
    margin-top: 25px; /* Sıkışmayı önleyen dengeli üst boşluk */
  }
  a.sc-btn, button.sc-btn, .sc-btn {
    justify-content: center; /* Butonun kendi içindeki metin ve oku ortalar */
    text-align: center;
    width: auto; /* Mobilde çok yayılmasın, şık bir kapsül gibi dursun diye */
  }

  /* Portfolio & Video Editing Grid */
  .port-grid, .video-page-wrapper .video-edit-grid { 
    grid-template-columns: 1fr !important; 
  }
  .port-item { 
    min-width: 100%; 
  }

  /* Footer */
  .footer-container { 
    flex-direction: column; 
    text-align: center; 
    gap: 40px; 
    padding: 0 20px; 
  }
  .footer-right { 
    text-align: center; 
    align-items: center; 
  }
  .footer-social { 
    justify-content: center; 
  }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 32px !important; }
  .stats strong { font-size: 42px; }
}