/* =================================================================
   HOBBY Bilgisayar — Complete Design System & Motion Engine
   Glitch & Grit Split-Screen + Dual Parallax + Brutalist Typography
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700;800&family=JetBrains+Mono:wght@400;500;700&family=Syne:wght@700;800;900&display=swap');

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

@media screen and (max-width: 991px) {
  html {
    font-size: 15px;
  }
}

@media screen and (max-width: 479px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Tokens */
:root {
  --bg: #080808;
  --bg-2: #111111;
  --bg-3: #181818;
  --border: rgba(255, 255, 255, 0.12);
  --border-light: rgba(255, 255, 255, 0.22);
  --text: #f4f4f4;
  --text-muted: rgba(244, 244, 244, 0.6);
  --accent: #ff6b1a;

  --font-main: 'Inter', sans-serif;
  --font-display: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  --site--margin: clamp(1rem, 0.8rem + 1.2vw, 2.5rem);
  --size--display: clamp(2.4rem, 1.8rem + 3.8vw, 5.5rem);
  --size--h1: clamp(2rem, 1.5rem + 2.5vw, 3.8rem);
  --size--h2: clamp(1.5rem, 1.25rem + 1.6vw, 2.75rem);
  --size--h3: clamp(1.2rem, 1.05rem + 0.8vw, 1.75rem);
  --size--large: clamp(0.95rem, 0.9rem + 0.2vw, 1.15rem);
  --size--text-main: 1rem;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

ul,
ol {
  list-style: none;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--site--margin);
}

.u-container {
  width: 100%;
  padding-left: var(--site--margin);
  padding-right: var(--site--margin);
  margin: 0 auto;
}

/* Typography */
.display,
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--text);
}

a[href^="mailto:"] {
  text-transform: none !important;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Top Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand Logo — Stacked Luxury Engineering Design with Multi-Device Emblem */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  user-select: none;
  vertical-align: middle;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-device-icon {
  width: 56px;
  height: auto;
  aspect-ratio: 136 / 90;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 26, 0.25));
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
}

.logo:hover .logo-device-icon {
  transform: scale(1.04);
  filter: drop-shadow(0 3px 14px rgba(255, 107, 26, 0.55));
}

.logo-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: max-content;
  line-height: 1;
}

.logo-top {
  font-family: var(--font-display);
  font-size: 1.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.95;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  white-space: nowrap;
}

.logo-sub {
  font-family: var(--font-display);
  font-size: 0.615rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.44em;
  color: var(--accent);
  margin-top: 0.24rem;
  margin-right: -0.44em;
  /* optical alignment for trailing letter-spacing */
  line-height: 1;
  transition: all 0.25s ease;
  display: block;
  white-space: nowrap;
}

.logo:hover .logo-top {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.3);
}

.logo:hover .logo-sub {
  color: #ff8533;
  text-shadow: 0 0 12px rgba(255, 107, 26, 0.6);
}

@media (max-width: 480px) {
  .logo {
    gap: 0.65rem;
  }

  .logo-device-icon {
    width: 46px;
  }

  .logo-top {
    font-size: 1.36rem;
    letter-spacing: 0.04em;
  }

  .logo-sub {
    font-size: 0.485rem;
    letter-spacing: 0.52em;
    margin-right: -0.52em;
    margin-top: 0.2rem;
  }
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-main a {
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.55;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.nav-main a.active,
.nav-main a:hover {
  opacity: 1;
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* =================================================================
   SOCIAL MEDIA ICON BUTTONS — Premium Redesign
   ================================================================= */
.header-social-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-social-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  text-decoration: none;
  line-height: 1;
  vertical-align: middle;
  flex-shrink: 0;
  border: 1px solid transparent;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.header-social-btn svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}

/* Tooltip label — positioned below icons for perfect visibility */
.header-social-btn[data-tooltip]::before {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  border-width: 0 5px 6px 5px;
  border-style: solid;
  border-color: transparent transparent #16161a transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 99999;
}

.header-social-btn[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #16161a;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.65);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 99999;
}

.header-social-btn[data-tooltip]:hover::before,
.header-social-btn[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}



/* Instagram — authentic brand gradient */
.header-social-btn.social-instagram {
  color: #ffffff;
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 40%, #d6249f 58%, #285AEB 90%);
  border: none;
  box-shadow: 0 2px 10px rgba(214, 36, 159, 0.3);
  text-decoration: none;
  outline: none;
}

.header-social-btn.social-instagram:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 22px rgba(214, 36, 159, 0.65), 0 2px 8px rgba(253, 89, 73, 0.4);
  filter: brightness(1.08);
}

/* Facebook — brand blue */
.header-social-btn.social-facebook {
  color: #ffffff;
  background: linear-gradient(145deg, #2196f7 0%, #1877F2 45%, #0c59d1 100%);
  border-color: rgba(24, 119, 242, 0.4);
  box-shadow: 0 2px 10px rgba(24, 119, 242, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.header-social-btn.social-facebook:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 22px rgba(24, 119, 242, 0.65);
  filter: brightness(1.1);
}

/* LinkedIn — brand teal-blue */
.header-social-btn.social-linkedin {
  color: #ffffff;
  background: linear-gradient(145deg, #1a85d9 0%, #0A66C2 50%, #054f9a 100%);
  border-color: rgba(10, 102, 194, 0.4);
  box-shadow: 0 2px 10px rgba(10, 102, 194, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.header-social-btn.social-linkedin:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 22px rgba(10, 102, 194, 0.65);
  filter: brightness(1.1);
}

/* X / Twitter — premium dark */
.header-social-btn.social-x {
  color: #ffffff;
  background: linear-gradient(145deg, #3a3a3e 0%, #1a1a1e 60%, #0a0a0c 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-social-btn.social-x:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 22px rgba(255, 255, 255, 0.2);
  filter: brightness(1.4);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Mobile responsive: In top header, keep Instagram visible at top, shrink icon size & give generous distance from logo */
@media (max-width: 768px) {
  .site-header {
    padding: 0.65rem 0;
  }

  .site-header .header-social-links {
    margin-left: 0.85rem;
  }

  .site-header .header-social-links .header-social-btn:not(.social-instagram) {
    display: none !important;
  }

  .site-header .header-social-btn.social-instagram {
    width: 28px !important;
    height: 28px !important;
    border-radius: 7px !important;
  }

  .site-header .header-social-btn.social-instagram svg {
    width: 14px !important;
    height: 14px !important;
  }

  .nav-actions {
    gap: 0.65rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.5rem 0;
  }

  .site-header .header-social-links {
    margin-left: 1rem;
  }

  .site-header .header-social-btn.social-instagram {
    width: 25px !important;
    height: 25px !important;
    border-radius: 6px !important;
  }

  .site-header .header-social-btn.social-instagram svg {
    width: 12px !important;
    height: 12px !important;
  }

  .nav-actions {
    gap: 0.45rem;
  }
}

/* =================================================================
   HEADER PHONE BADGE — Luxury Double-Line Live Status Design
   ================================================================= */
.header-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.42rem 1.15rem 0.42rem 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}

.header-phone-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.header-phone-badge:hover::before {
  left: 140%;
}

.header-phone-badge:hover {
  background: rgba(255, 107, 26, 0.12);
  border-color: rgba(255, 107, 26, 0.45);
  box-shadow: 0 6px 24px rgba(255, 107, 26, 0.25), 0 2px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px) scale(1.02);
}

.header-phone-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8533 0%, #ff6b1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(255, 107, 26, 0.4);
  transition: transform 0.25s ease;
}

.header-phone-badge:hover .header-phone-icon-wrap {
  animation: phoneRing 0.5s ease-in-out infinite alternate;
}

@keyframes phoneRing {
  0% { transform: rotate(0deg) scale(1.05); }
  25% { transform: rotate(-12deg) scale(1.08); }
  50% { transform: rotate(12deg) scale(1.08); }
  75% { transform: rotate(-8deg) scale(1.08); }
  100% { transform: rotate(0deg) scale(1.05); }
}

.header-phone-details {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  line-height: 1;
  text-align: left;
}

.header-phone-status-row {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a0a0a5;
  transition: color 0.2s ease;
}

.header-phone-badge:hover .header-phone-status-row {
  color: #ff9955;
}

.live-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  display: inline-block;
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.header-phone-digits {
  font-family: var(--font-main, sans-serif);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  white-space: nowrap;
}

/* Mobile responsive adjustments for header phone badge */
@media (max-width: 768px) {
  .header-phone-badge {
    padding: 0.32rem 0.75rem 0.32rem 0.45rem;
    gap: 0.5rem;
  }
  .header-phone-icon-wrap {
    width: 28px;
    height: 28px;
  }
  .header-phone-icon-wrap svg {
    width: 12px;
    height: 12px;
  }
  .header-phone-status-row {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
  }
  .header-phone-digits {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .header-phone-badge {
    padding: 0.28rem 0.65rem 0.28rem 0.4rem;
    gap: 0.45rem;
  }
  .header-phone-icon-wrap {
    width: 26px;
    height: 26px;
  }
  .header-phone-status-row {
    font-size: 0.5rem;
  }
  .header-phone-digits {
    font-size: 0.75rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--text);
  color: #000;
}

.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.04);
}

/* Fluid font scaling for header call button on mobile screens */
@media (max-width: 768px) {
  .site-header .btn-primary {
    font-size: clamp(0.7rem, 2.8vw, 0.85rem);
    padding: 0.45rem 0.75rem;
    white-space: nowrap;
    gap: 0.35rem;
  }

  .site-header .btn-primary svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .site-header .btn-primary {
    font-size: clamp(0.65rem, 3.2vw, 0.78rem);
    padding: 0.38rem 0.6rem;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 26px;
}

.burger span {
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

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

  .burger {
    display: flex;
  }
}

/* Mobile Menu Overlay */
body.menu-open {
  overflow: hidden !important;
}

body.menu-open .bottom-footer-fixed,
body.menu-open .floating-action-dock {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 15%, #151515 0%, #060606 100%);
  z-index: 999999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 3.25rem 1.25rem calc(2.25rem + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
  width: 100%;
  max-width: 320px;
  padding: 0 0.25rem;
}

.mobile-menu-header .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.mobile-menu-brand {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.mobile-menu-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.3);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  margin-left: auto;
}

/* =================================================================
   STYLISH MOBILE NAVIGATION LIST & ITEMS
   ================================================================= */
.mobile-nav-list {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mobile-nav-item {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f1f1f1 !important;
  text-decoration: none !important;
  text-transform: none !important;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.mobile-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  background: linear-gradient(90deg, rgba(255, 107, 26, 0.15) 0%, rgba(20, 20, 20, 0.85) 100%) !important;
  border-color: rgba(255, 107, 26, 0.45) !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 18px rgba(255, 107, 26, 0.2) !important;
}

.mobile-nav-item:hover::before,
.mobile-nav-item:active::before {
  opacity: 1;
  transform: scaleY(1);
}

.mobile-nav-item.active {
  background: linear-gradient(90deg, rgba(255, 107, 26, 0.22) 0%, rgba(20, 20, 20, 0.9) 100%) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 4px 20px rgba(255, 107, 26, 0.25) !important;
}

.mobile-nav-item.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.nav-item-title {
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  flex: 1;
  margin-left: 0.25rem;
  color: #ffffff !important;
  text-transform: uppercase;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-item:hover .nav-item-title,
.mobile-nav-item.active .nav-item-title {
  color: #ffffff;
  transform: translateX(2px);
}

.nav-item-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-nav-item:hover .nav-item-icon,
.mobile-nav-item.active .nav-item-icon {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(255, 107, 26, 0.45);
  transform: translateX(2px);
}

/* Staggered entrance animation when menu opens */
.mobile-menu.open .mobile-nav-item:nth-child(1) {
  animation: slideInNav 0.3s 0.04s backwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.open .mobile-nav-item:nth-child(2) {
  animation: slideInNav 0.3s 0.08s backwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.open .mobile-nav-item:nth-child(3) {
  animation: slideInNav 0.3s 0.12s backwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.open .mobile-nav-item:nth-child(4) {
  animation: slideInNav 0.3s 0.16s backwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.open .mobile-nav-item:nth-child(5) {
  animation: slideInNav 0.3s 0.20s backwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.open .mobile-nav-item:nth-child(6) {
  animation: slideInNav 0.3s 0.24s backwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.open .mobile-nav-item:nth-child(7) {
  animation: slideInNav 0.3s 0.28s backwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.open .mobile-menu-cta-wrap {
  animation: slideInNav 0.35s 0.30s backwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.open .header-social-links {
  animation: slideInNav 0.35s 0.34s backwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu .header-social-links {
  margin-top: 0.25rem !important;
  justify-content: center;
  gap: 0.65rem;
}

/* Mobile menu social icons — slightly larger for touch targets */
.mobile-menu .header-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.mobile-menu .header-social-btn svg {
  width: 18px;
  height: 18px;
}

/* Hide tooltip in mobile menu (touch has no hover) */
.mobile-menu .header-social-btn::after {
  display: none;
}

@keyframes slideInNav {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mobile-menu .close-btn {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000000;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.mobile-menu .close-btn:hover {
  background: rgba(255, 107, 26, 0.2);
  transform: rotate(90deg);
}

/* =================================================================
   CREATIVE MOBILE MENU CALL & WHATSAPP WIDGET
   ================================================================= */
.mobile-menu-cta-wrap {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.mobile-phone-card {
  position: relative;
  display: block !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.16) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid rgba(255, 107, 26, 0.45);
  border-radius: 18px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  text-transform: none !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.mobile-phone-card:hover,
.mobile-phone-card:active {
  transform: scale(1.02) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 16px 40px rgba(255, 107, 26, 0.35);
}

.mobile-phone-card-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.4) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.phone-card-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.phone-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 10px #25D366;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.phone-card-status {
  font-family: var(--font-mono) !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  color: var(--accent) !important;
  text-transform: uppercase !important;
}

.phone-card-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.phone-icon-bubble {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 107, 26, 0.45);
}

.phone-card-num {
  font-family: var(--font-display) !important;
  font-size: 1.28rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}

.phone-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-family: var(--font-mono) !important;
  text-transform: none !important;
}

.phone-card-arrow {
  color: var(--accent) !important;
  font-weight: 700 !important;
}

.mobile-whatsapp-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25D366 !important;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  font-family: var(--font-main) !important;
  text-transform: none !important;
  letter-spacing: 0.02em;
  transition: all 0.2s ease !important;
}

.mobile-whatsapp-btn:hover,
.mobile-whatsapp-btn:active {
  background: #25D366 !important;
  color: #000000 !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.mobile-menu a.mobile-phone-card,
.mobile-menu a.mobile-whatsapp-btn {
  text-transform: none !important;
}

/* =================================================================
   SECTION 1: HERO SCROLL-DRIVEN FRAME ANIMATION (Canvas)
   ================================================================= */
.frame-hero-wrap {
  position: relative;
  width: 100%;
  height: 380vh;
}

.frame-hero-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.frame-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.frame-hero-text {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  padding: 0 var(--site--margin);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.frame-hero-text .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
  background: rgba(255, 107, 26, 0.12);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 107, 26, 0.35);
}

.frame-hero-text .tag .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.frame-hero-text h1,
.frame-hero-text h2 {
  font-family: var(--font-display);
  font-size: var(--size--h1);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.frame-hero-text p {
  font-size: var(--size--large);
  color: var(--text-muted);
  max-width: 55ch;
  margin: 0 auto;
}

.frame-hero-scroll-hint {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.frame-hero-scroll-hint .line {
  width: 2px;
  height: 26px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
  animation: scrollPulse 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (max-width: 992px) {
  .frame-hero-scroll-hint {
    bottom: calc(7.5rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 768px) {
  .frame-hero-scroll-hint {
    bottom: calc(8.5rem + env(safe-area-inset-bottom));
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    gap: 0.35rem;
  }

  .frame-hero-scroll-hint .line {
    height: 20px;
  }
}

@media (max-width: 480px) {
  .frame-hero-scroll-hint {
    bottom: calc(8.2rem + env(safe-area-inset-bottom));
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
}

/* =================================================================
   SECTION 2: GLITCH & GRIT HOMEPAGE SPLIT-SCREEN SHOWCASE
   ================================================================= */
.glitch-showcase-section {
  position: relative;
  width: 100vw;
  height: 800vh;
  /* 8 items x 100vh */
  background: #000;
}

.glitch-projects-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
  z-index: 20;
}

.glitch-projects-list {
  position: relative;
  width: 100%;
  height: 100%;
}

.glitch-projects-item {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.glitch-split-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100vw;
  height: 100vh;
}

.glitch-visual-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
}

.g_visual_inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.g_visual_inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.g_visual_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/* Typography Split Overlays */
.glitch-item-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.glitch-item-content.is-left {
  clip-path: inset(0% 50% 0% 0%);
}

.glitch-item-content.is-right {
  clip-path: inset(0% 0% 0% 50%);
}

.glitch-content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--site--margin);
}

.glitch-cat-badge {
  font-family: var(--font-main);
  font-size: var(--size--large);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.glitch-item-title {
  font-family: var(--font-display);
  font-size: var(--size--display);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 2.5rem;
}

/* =================================================================
   EDITORIAL DUAL PARALLAX CARDS (For Subpages: Hizmetler, Hakkımızda, İletişim)
   ================================================================= */
.page-intro-header {
  padding-top: calc(80px + 4rem);
  padding-bottom: 3.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.page-intro-header .tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border-radius: 9999px;
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.35);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.page-intro-header h1 {
  font-size: var(--size--h1);
  max-width: 18ch;
  margin: 0 auto 1.25rem;
}

.page-intro-header p {
  font-size: var(--size--large);
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 auto;
}

.parallax-stack-section {
  padding: 2rem 0 6rem;
  position: relative;
  z-index: 20;
}

.parallax-card-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.parallax-card {
  position: relative;
  width: 100%;
  min-height: 540px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .parallax-card {
    min-height: 440px;
  }
}

.parallax-media-wrap {
  position: absolute;
  inset: -25% 0;
  width: 100%;
  height: 150%;
  overflow: hidden;
  pointer-events: none;
}

.parallax-media-wrap img,
.parallax-media-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: brightness(0.62) contrast(1.1);
  transition: filter 0.4s ease;
}

.parallax-card:hover .parallax-media-wrap img {
  filter: brightness(0.72) contrast(1.15);
}

.parallax-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.2) 0%, rgba(8, 8, 8, 0.85) 75%, rgba(8, 8, 8, 0.98) 100%);
  pointer-events: none;
}

.parallax-text-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  will-change: transform;
}

.parallax-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid currentColor;
}

.parallax-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.parallax-desc {
  font-size: var(--size--large);
  color: rgba(255, 255, 255, 0.85);
  max-width: 58ch;
  line-height: 1.45;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Glitch & Grit Double Arrow Button */
.btn_main_wrap {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  z-index: 50;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  padding: 0.65rem 1.8rem;
  border-radius: 9999px;
  border: 1px solid currentColor;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Global showcase CTA — always-on-top, positioned to overlay where the
   per-item buttons would render. Avoids the clip-path click-swallowing
   problem because it lives outside the clipped item containers. */
#glitch-global-cta {
  position: fixed;
  left: 50%;
  bottom: 16%;
  transform: translateX(-50%);
  z-index: 1100;
  color: #9be187;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#glitch-global-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Hide the per-item "Hizmeti İncele" buttons inside the glitch showcase —
   the global #glitch-global-cta replaces them and stays clickable. */
.glitch-projects-item .btn_main_wrap {
  display: none !important;
}

.btn_main_wrap:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.03);
}

.btn_main_text {
  font-family: var(--font-main);
  font-size: var(--size--large);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.arrow-contain {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 14px;
  height: 14px;
}

.arrow-wrap {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.arrow-wrap.is-01 {
  transform: translate(-45deg);
}

.arrow-wrap.is-02 {
  transform: translate(-100%, 100%);
}

.btn_main_wrap:hover .arrow-wrap.is-01 {
  transform: translate(100%, -100%);
}

.btn_main_wrap:hover .arrow-wrap.is-02 {
  transform: translate(0, 0);
}

/* Glassmorphic Contact Card */
.contact-parallax-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 960px) {
  .contact-parallax-layout {
    grid-template-columns: 1fr;
  }
}

.glass-card {
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Fixed Bottom Dock Nav */
.bottom-footer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  z-index: 1000;
  pointer-events: none;
}

.bottom-footer-fixed .section-contain {
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.footer-links-flex {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 2.2rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.footer-link {
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  opacity: 0.5;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.footer-link:hover,
.footer-link.active {
  opacity: 1;
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-links-flex {
    gap: 1.25rem;
    padding: 0.5rem 1.2rem;
  }

  .footer-link {
    font-size: 0.75rem;
  }

  .site-footer {
    padding-bottom: calc(6rem + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 480px) {
  .footer-links-flex {
    gap: 0.75rem;
    padding: 0.4rem 0.85rem;
  }

  .footer-link {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }
}

/* Trust Strip Section */
.trust-section {
  position: relative;
  z-index: 30;
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-item span {
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About / Workshop Section */
.about-section {
  position: relative;
  z-index: 30;
  padding: 7rem 0;
  background: var(--bg);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.feature-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-list .check {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.25rem;
}

.feature-list strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.feature-list span {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Call to Action */
.cta-section {
  position: relative;
  z-index: 30;
  padding: 8rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 600px) {
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 30;
  padding: 5rem 0 7rem;
  background: #050505;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Floating Action Dock (WhatsApp, AnyDesk, Navigation) */
.floating-action-dock {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

@media (max-width: 768px) {
  .floating-action-dock {
    bottom: calc(4.5rem + env(safe-area-inset-bottom));
    right: 0.75rem;
    gap: 0.65rem;
  }

  .fab-btn {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .floating-action-dock {
    bottom: calc(4.2rem + env(safe-area-inset-bottom));
    right: 0.5rem;
    gap: 0.5rem;
  }

  .fab-btn {
    width: 44px;
    height: 44px;
  }
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fab-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
}

.fab-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.fab-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.fab-anydesk {
  background: #181818;
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.25);
  padding: 10px;
}

.fab-anydesk img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fab-nav {
  background: #181818;
  border-color: rgba(66, 133, 244, 0.4);
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.25);
}

.fab-nav svg {
  width: 21px;
  height: 30px;
  display: block;
}

/* =================================================================
   FAQ / S.S.S. ACCORDION STYLES
   ================================================================= */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(255, 107, 26, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-main);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: transparent;
  transition: color 0.25s ease;
}

.faq-item.active .faq-question,
.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 1.75rem 1.5rem 1.75rem;
  transition: max-height 0.5s ease-in, padding 0.3s ease;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* =================================================================
   BLOG & ADMIN PANEL STYLES
   ================================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.blog-card-img-link {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 220px;
  background: #151515;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img,
.blog-card-img-link:hover .blog-card-img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--text);
  transition: color 0.2s ease;
}

.blog-card-title-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.blog-card:hover .blog-card-title,
.blog-card-title-link:hover .blog-card-title {
  color: var(--accent);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.admin-header-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid rgba(255, 107, 26, 0.3);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.admin-table th,
.admin-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.admin-table th {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg-2);
}

.admin-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.admin-btn-edit {
  background: #3b82f6;
  color: #fff;
}

.admin-btn-delete {
  background: #ef4444;
  color: #fff;
}

.admin-btn:hover {
  opacity: 0.85;
}

/* =================================================================
   BLOG ARTICLE DETAIL PAGE STYLES
   ================================================================= */
.article-header {
  padding-top: 130px;
  padding-bottom: 2.5rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb-nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: var(--accent);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb-current {
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

.article-title-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.article-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 75ch;
  margin-bottom: 2rem;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-featured-img-wrap {
  position: relative;
  width: 100%;
  max-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  margin-bottom: 3.5rem;
}

.article-featured-img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 991px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.article-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 2.75rem 0 1.25rem;
  line-height: 1.25;
  border-bottom: 1px solid rgba(255, 107, 26, 0.2);
  padding-bottom: 0.5rem;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 2rem 0 0.85rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.65rem;
  line-height: 1.65;
}

.article-body strong {
  color: #fff;
  font-weight: 700;
}

.article-callout {
  background: rgba(255, 107, 26, 0.06);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.article-callout.warning {
  background: rgba(239, 68, 68, 0.08);
  border-left-color: #ef4444;
}

.article-callout.tip {
  background: rgba(34, 197, 94, 0.08);
  border-left-color: #22c55e;
}

.article-callout-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-callout p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.article-author-box {
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin: 3.5rem 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

@media (max-width: 600px) {
  .article-author-box {
    flex-direction: column;
    text-align: center;
  }
}

.author-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  flex-shrink: 0;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.article-cta-card {
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.15) 0%, rgba(20, 20, 20, 0.95) 100%);
  border: 1px solid rgba(255, 107, 26, 0.4);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.article-cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.article-cta-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.article-sidebar-sticky {
  position: sticky;
  top: 110px;
}

.sidebar-service-links {
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.sidebar-service-links h4 {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-service-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-service-links li {
  margin-bottom: 0.5rem;
}

.sidebar-service-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.sidebar-service-links a:hover {
  background: rgba(255, 107, 26, 0.08);
  color: #fff;
  padding-left: 0.85rem;
}

.related-section {
  padding: 4rem 0 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .article-header {
    padding-top: 105px;
    padding-bottom: 2rem;
  }

  .article-title-h1 {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .article-lead {
    font-size: 1.025rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .article-meta-bar {
    gap: 0.85rem;
    font-size: 0.775rem;
    padding: 0.75rem 0;
    margin-bottom: 2rem;
  }

  .article-featured-img-wrap {
    max-height: 280px;
    border-radius: 14px;
    margin-bottom: 2rem;
  }

  .article-body {
    font-size: 1rem;
    line-height: 1.7;
  }

  .article-body h2 {
    font-size: 1.45rem;
    margin: 2rem 0 1rem;
  }

  .article-body h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
  }

  .article-callout {
    padding: 1.25rem;
    margin: 1.5rem 0;
  }

  .article-author-box {
    padding: 1.5rem;
    margin: 2.5rem 0 1.5rem;
    gap: 1.25rem;
  }

  .author-avatar {
    width: 64px;
    height: 64px;
  }

  .blog-grid {
    gap: 1.75rem;
  }

  .blog-card-body {
    padding: 1.25rem;
  }

  .blog-card-title {
    font-size: 1.25rem;
  }

  .related-section {
    padding: 3rem 0 5rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb-nav {
    font-size: 0.75rem;
    gap: 0.35rem;
  }

  .breadcrumb-current {
    max-width: 170px;
  }

  .article-title-h1 {
    font-size: 1.6rem;
  }

  .article-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .article-featured-img-wrap {
    max-height: 220px;
  }

  .blog-card-img-link {
    height: 190px;
  }
}

/* =================================================================
   SERVICES SIDE DRAWER (Sağdan Açılan Hizmetler Menüsü)
   ================================================================= */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.services-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 90vw;
  height: 100vh;
  background: #0f0f0f;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
}

.services-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.drawer-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: rotate(90deg);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.25rem 1.5rem;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.drawer-body:active {
  cursor: grabbing;
}

.drawer-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-service-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.25s ease;
}

.drawer-service-card:hover {
  background: rgba(255, 107, 26, 0.08);
  border-color: rgba(255, 107, 26, 0.3);
  transform: translateX(-4px);
}

.drawer-service-card .service-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255, 107, 26, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.drawer-service-card .service-info {
  flex: 1;
}

.drawer-service-card .service-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #fff;
}

.drawer-service-card .service-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin: 0;
}

.drawer-service-card .service-arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.drawer-service-card:hover .service-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

.drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
}

/* =================================================================
   BLOG READER MODAL SCROLLBAR STYLES
   ================================================================= */
.modal-content-card::-webkit-scrollbar {
  width: 8px;
}

.modal-content-card::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.modal-content-card::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.modal-content-card::-webkit-scrollbar-thumb:hover {
  background: #ff8540;
}

/* =================================================================
   BRAND LOGO MARQUEE BAR (ORANGE TICKER)
   ================================================================= */
.brand-marquee-bar {
  width: 100%;
  background: var(--accent, #ff6b1a);
  padding: 1.85rem 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin: 3.5rem 0;
  box-shadow: 0 10px 30px rgba(255, 107, 26, 0.25);
}

.brand-marquee-bar::before,
.brand-marquee-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.brand-marquee-bar::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 107, 26, 1), rgba(255, 107, 26, 0));
}

.brand-marquee-bar::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 107, 26, 1), rgba(255, 107, 26, 0));
}

.brand-marquee-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  animation: marquee-infinite 35s linear infinite;
  will-change: transform;
}

.brand-marquee-bar:hover .brand-marquee-track {
  animation-play-state: paused;
}

.brand-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
}

.brand-marquee-item img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-marquee-item img:hover {
  opacity: 1;
  transform: scale(1.08);
}

@keyframes marquee-infinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =================================================================
   COOKIE CONSENT BANNER & KVKK STYLES
   ================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 2900;
  max-width: 580px;
  width: calc(100% - 2rem);
  background: rgba(18, 18, 18, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 107, 26, 0.35);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.cookie-banner-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.cookie-banner-text strong {
  color: #fff;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-btn-accept:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 4.5rem;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.copy-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-link-btn:hover {
  background: rgba(255, 107, 26, 0.2);
  border-color: var(--accent);
  color: var(--accent);
}

/* =================================================================
   TTS (TEXT-TO-SPEECH) AUDIO PLAYER WIDGET STYLES
   ================================================================= */
.tts-player-container {
  margin: 2rem 0 2.5rem;
  background: linear-gradient(135deg, rgba(26, 26, 32, 0.95) 0%, rgba(14, 14, 18, 0.98) 100%);
  border: 1px solid rgba(255, 107, 26, 0.28);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tts-player-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.tts-player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tts-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tts-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.15);
  color: var(--accent);
  font-size: 0.85rem;
}

.tts-badge-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.tts-voice-badge {
  font-size: 0.72rem;
  font-family: var(--font-mono, monospace);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.tts-player-main {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.tts-play-btn {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 800;
  font-family: var(--font-main);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 26, 0.35);
  flex-shrink: 0;
}

.tts-play-btn:hover {
  background: #ff7d36;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.5);
}

.tts-play-btn:active {
  transform: translateY(0);
}

.tts-wave-bars {
  display: none;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  margin-left: 0.25rem;
}

.tts-player-container.is-speaking .tts-wave-bars {
  display: inline-flex;
}

.tts-wave-bar {
  width: 3px;
  background: #000;
  border-radius: 2px;
  animation: ttsWaveAnim 0.8s ease-in-out infinite alternate;
}

.tts-wave-bar:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.tts-wave-bar:nth-child(2) { height: 14px; animation-delay: 0.3s; }
.tts-wave-bar:nth-child(3) { height: 18px; animation-delay: 0.15s; }
.tts-wave-bar:nth-child(4) { height: 9px; animation-delay: 0.4s; }

@keyframes ttsWaveAnim {
  0% { height: 4px; }
  100% { height: 18px; }
}

.tts-track-wrap {
  flex: 1;
  min-width: 180px;
}

.tts-status-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.tts-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.tts-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #ff9857);
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.tts-controls-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.tts-speed-btn,
.tts-stop-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tts-speed-btn:hover,
.tts-stop-btn:hover {
  background: rgba(255, 107, 26, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.tts-reading-highlight {
  background: rgba(255, 107, 26, 0.08) !important;
  border-left: 3px solid var(--accent) !important;
  padding-left: 0.85rem !important;
  border-radius: 0 8px 8px 0 !important;
  transition: all 0.3s ease !important;
}

@media (max-width: 600px) {
  .tts-player-main {
    flex-direction: column;
    align-items: stretch;
  }
  .tts-play-btn {
    justify-content: center;
    width: 100%;
  }
  .tts-controls-wrap {
    justify-content: flex-end;
  }
}

/* Form Submit Loading Spinner */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spinner-inline {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

.btn-loading {
  opacity: 0.85 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* =================================================================
   BLOG ARTICLE CTA & DIRECT SERVICE ROUTING BUTTONS
   ================================================================= */
.article-service-callout {
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.3);
  border-left: 5px solid var(--accent);
  padding: 1.35rem 1.6rem;
  border-radius: 0 14px 14px 0;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}

.article-service-callout-text {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.55;
  flex: 1;
  min-width: 250px;
}

.article-service-callout-text strong {
  color: var(--accent);
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.article-service-callout-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--accent) !important;
  color: #000000 !important;
  font-weight: 800 !important;
  padding: 0.75rem 1.4rem !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  font-size: 0.92rem !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 50 !important;
  pointer-events: auto !important;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 4px 15px rgba(255, 107, 26, 0.45) !important;
}

.article-service-callout-btn:hover {
  transform: translateY(-2px) scale(1.02) !important;
  filter: brightness(1.15) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 26, 0.65) !important;
}

/* Sidebar & Bottom Article CTA Card */
.article-cta-card {
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.16) 0%, rgba(22, 22, 26, 0.96) 100%);
  border: 1px solid rgba(255, 107, 26, 0.45);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 20;
}

.article-cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0.5rem 0 0.65rem;
  color: #ffffff;
}

.article-cta-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.article-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.article-cta-service-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--accent) !important;
  color: #000000 !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  padding: 0.8rem 1.2rem !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 50 !important;
  pointer-events: auto !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
  box-shadow: 0 4px 15px rgba(255, 107, 26, 0.4) !important;
}

.article-cta-service-btn:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.12) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 26, 0.65) !important;
}

.article-cta-phone-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 0.7rem 1.2rem !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 50 !important;
  pointer-events: auto !important;
  transition: all 0.2s ease !important;
}

.article-cta-phone-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-2px) !important;
}

.article-cta-wa-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #25D366 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 0.7rem 1.2rem !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 50 !important;
  pointer-events: auto !important;
  transition: transform 0.2s ease, filter 0.2s ease !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35) !important;
}

.article-cta-wa-btn:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.1) !important;
}

/* =================================================================
   LANGUAGE SWITCHER (Fixed Bottom-Left Dock)
   ================================================================= */
.floating-lang-dock {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1200;
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(18, 18, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  font-family: var(--font-mono, monospace);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.lang-switch-btn:hover {
  background: rgba(30, 30, 38, 0.95);
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.05);
  color: var(--accent);
  box-shadow: 0 14px 35px rgba(255, 107, 26, 0.45);
}

.lang-switch-btn .lang-flag {
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.lang-switch-btn .lang-flag-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.lang-switch-btn .lang-code {
  letter-spacing: 0.08em;
  font-weight: 800;
}

@media (max-width: 768px) {
  .floating-lang-dock {
    bottom: calc(4.5rem + env(safe-area-inset-bottom));
    left: 0.75rem;
  }
  .floating-lang-dock .lang-switch-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
    gap: 0.4rem;
  }
  .floating-lang-dock .lang-flag-img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .floating-lang-dock {
    bottom: calc(4.2rem + env(safe-area-inset-bottom));
    left: 0.5rem;
  }
}

/* Hide Google Translate intrusive UI frames & badges */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0px !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.goog-te-gadget {
  display: none !important;
}