/* ================================================================
   ARENA HUKUK — Dark Cinematic Theme v4.0
   Zero-hide approach: everything visible by default
   ================================================================ */

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #050a10;
  --bg2: #0c1117;
  --bg3: #141a22;
  --card: rgba(255, 255, 255, 0.04);
  --card-hover: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.97);
  --text2: rgba(255, 255, 255, 0.78);
  --text3: rgba(255, 255, 255, 0.55);
  --gold: #c8d6e5;
  --gold2: #dfe6ed;
  --teal: #8fa7c4;
  --accent: #c8d6e5;
  --accent2: #a0b4c8;
  --gradient-primary: linear-gradient(
    135deg,
    #c8d6e5 0%,
    #a0b4c8 50%,
    #8fa7c4 100%
  );
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  --font-h: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-b: 'Inter', -apple-system, sans-serif;
  --nav-h: 80px;
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--ease);
}
a:hover {
  color: var(--gold);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.gold {
  color: var(--gold);
}
.grad-text {
  color: #c8d6e5;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: background 0.4s ease, border-bottom 0.4s ease, box-shadow 0.4s ease;
  height: var(--nav-h);
}
.navbar.scrolled {
  background: rgba(5, 10, 16, 0.97);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  text-decoration: none;
}
.logo-svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15));
  transition: var(--ease);
}
.logo:hover .logo-svg {
  filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.3));
  transform: scale(1.05);
}
.logo-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1;
  gap: 0;
}
.logo-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 10px;
}
.logo-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 5px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  line-height: 1;
  text-transform: uppercase;
}
.logo-text small {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.55);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.55);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  text-transform: uppercase;
  line-height: 1;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text2);
  transition: var(--ease);
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -10px;
  min-width: 220px;
  background: rgba(8, 12, 20, 0.98);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(200, 214, 229, 0.15);
  border-radius: 12px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--ease);
  z-index: 100;
  margin-top: 12px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 1px rgba(200, 214, 229, 0.2);
}
.dropdown-menu-wide {
  min-width: 260px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text2);
  border-radius: 8px;
  transition: var(--ease);
  border-left: 2px solid transparent;
}
.dropdown-menu a:hover {
  background: rgba(200, 214, 229, 0.08);
  color: var(--gold);
  border-left-color: var(--gold);
  padding-left: 20px;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #0a0a0a;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--ease);
}
.nav-cta:hover {
  transform: scale(1.04);
  color: #fff;
  background: #111;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  order: 3;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--ease);
  border-radius: 2px;
}

/* ══════════════════════════════════════════
   MODERN MOBILE MENU — Dark & Elegant
   ══════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
}

/* Backdrop */
.mm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-menu.open .mm-backdrop {
  opacity: 1;
}

/* Panel — opens from LEFT */
.mm-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background: linear-gradient(175deg, #08090c 0%, #0b0c10 30%, #0a0b0f 60%, #08090c 100%);
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.7);
  border-right: 1px solid rgba(200, 214, 229, 0.08);
  overflow: hidden;
}
.mm-panel::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -30%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(200, 214, 229, 0.03) 0%, transparent 55%);
  pointer-events: none;
}
.mm-panel::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(200, 214, 229, 0.02) 0%, transparent 55%);
  pointer-events: none;
}
.mobile-menu.open .mm-panel {
  transform: translateX(0);
}

/* Header */
.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 14px 16px;
  border-bottom: 1px solid rgba(200, 214, 229, 0.08);
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  gap: 8px;
}
.mm-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.mm-logo-svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(200, 214, 229, 0.2));
}
.mm-logo-text {
  display: flex;
  align-items: center;
  gap: 0;
}
.mm-logo-text strong {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.mm-logo-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}
.mm-logo-text small {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.45);
}
.mm-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Close Button */
.mm-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.25s ease;
}
.mm-close svg {
  width: 14px;
  height: 14px;
}
.mm-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Navigation */
.mm-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 2;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}
.mm-nav::-webkit-scrollbar {
  width: 3px;
}
.mm-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* Link base */
.mm-link,
.mm-group-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}
.mm-link:hover,
.mm-group-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.mm-link.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 214, 229, 0.15);
  color: #fff;
}
.mm-link.active .mm-link-icon {
  color: #c8d6e5;
}

/* Link icon */
.mm-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(200, 214, 229, 0.06);
  border: 1px solid rgba(200, 214, 229, 0.1);
  color: rgba(200, 214, 229, 0.6);
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.mm-link:hover .mm-link-icon,
.mm-group-toggle:hover .mm-link-icon {
  background: rgba(200, 214, 229, 0.1);
  border-color: rgba(200, 214, 229, 0.2);
  color: #c8d6e5;
}

/* Chevron */
.mm-chevron {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.mm-group-toggle.active .mm-chevron {
  transform: rotate(180deg);
  color: rgba(200, 214, 229, 0.7);
}

/* Sub menu */
.mm-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 30px;
}
.mm-sub.open {
  max-height: 500px;
}
.mm-sub a {
  display: block;
  padding: 10px 16px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-left: 2px solid rgba(200, 214, 229, 0.1);
  transition: all 0.2s ease;
  margin: 1px 0;
}
.mm-sub a:hover {
  color: #c8d6e5;
  border-left-color: #c8d6e5;
  background: rgba(200, 214, 229, 0.04);
  padding-left: 20px;
}

/* Footer */
.mm-footer {
  padding: 14px 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.35);
}
.mm-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.mm-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.25s ease;
}
.mm-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.mm-cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mm-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.mm-cta-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}
.mm-cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.mm-cta-call {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  box-shadow: none;
}
.mm-cta-call:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* === VIDEO HERO — Raffles Style === */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.video-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 10, 16, 0.55) 0%,
    rgba(5, 10, 16, 0.35) 40%,
    rgba(5, 10, 16, 0.45) 70%,
    rgba(5, 10, 16, 0.75) 100%
  );
}
.video-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.video-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.video-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}
.video-hero-subtitle {
  font-family: var(--font-b);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
}
.video-hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.4s ease;
}
.hero-btn-primary {
  background: #fff;
  color: #050a10;
  border: 1px solid #fff;
}
.hero-btn-primary:hover {
  background: transparent;
  color: #fff;
}
.hero-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-btn-outline:hover {
  background: #fff;
  color: #050a10;
  border-color: #fff;
}

/* Pause button */
.video-hero-pause {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.video-hero-pause:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.video-hero-pause.paused .icon-pause { display: none; }
.video-hero-pause.paused .icon-play { display: block !important; }

/* Scroll indicator */
.video-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.video-hero-scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* === HERO — endline.com.tr layout === */
.hero {
  position: relative;
  padding: 40px 0 80px;
  overflow: clip;
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    var(--bg2) 50%,
    var(--bg) 100%
  );
}
.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(200, 214, 229, 0.08),
    rgba(160, 180, 200, 0.04) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* Flex wrapper: 60% laptop / 40% sidebar — endline layout */
.hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* ─── MacBook Visual ─── */
.macbook-visual {
  flex: 0 0 60%;
  max-width: 60%;
  position: relative;
  padding-top: 0;
}
.macbook-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 214, 229, 0.2),
    rgba(160, 180, 200, 0.15)
  );
  border-radius: 24px;
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
  transform: scale(1.05);
}
.macbook-frame {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.macbook-frame:hover {
  transform: scale(1.01);
}
.macbook-bezel {
  background: linear-gradient(180deg, #4b5563, #374151, #1f2937);
  border-radius: 16px 16px 0 0;
  padding: 6px;
  border: 1px solid rgba(107, 114, 128, 0.5);
  position: relative;
}
.macbook-camera {
  width: 6px;
  height: 6px;
  background: #374151;
  border-radius: 50%;
  border: 1px solid #4b5563;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.macbook-camera::after {
  content: '';
  width: 2px;
  height: 2px;
  background: rgba(34, 211, 238, 0.4);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.macbook-screen {
  background: #030712;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}
.macbook-hinge {
  background: linear-gradient(180deg, #6b7280, #4b5563, #374151);
  height: 12px;
  border-radius: 0 0 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hinge-line {
  width: 40%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  border-radius: 2px;
}

/* Browser URL Bar */
.browser-url-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.url-dots {
  display: flex;
  gap: 5px;
}
.url-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.url-dot.red {
  background: #ff5f57;
}
.url-dot.yellow {
  background: #febc2e;
}
.url-dot.green {
  background: #28c840;
}
.url-text {
  font-size: 0.68rem;
  color: var(--text3);
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 12px;
  border-radius: 4px;
  flex: 1;
  font-family: 'Fira Code', monospace;
}
.url-pages {
  display: flex;
  gap: 4px;
  align-items: center;
}
.slide-dot {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text3);
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  border: 1px solid transparent;
}
.slide-dot.active {
  background: rgba(200, 214, 229, 0.25);
  border-color: rgba(200, 214, 229, 0.5);
  color: var(--accent);
}

/* Swiper in macbook */
.macbook-screen .swiper {
  width: 100%;
  height: 100%;
}
.macbook-screen .swiper-slide {
  position: relative;
}
.macbook-screen .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.slide-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.slide-text h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.slide-text p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ─── Hero Sidebar — Right Column ─── */
.hero-sidebar {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(11, 15, 20, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 214, 229, 0.12);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  margin-top: 0;
  align-self: flex-start;
}

/* Hero mini section — title area */
.hero-mini-section {
  text-align: left;
  margin-bottom: 8px;
  padding: 0;
}
.hero-mini-title {
  font-family: var(--font-h);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.hero-mini-title span {
  display: block;
}
.hero-mini-title span:first-child {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}
.hero-typed {
  color: #c8d6e5;
}
.hero-mini-desc {
  font-family: var(--font-b);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 0;
}
.hero-mini-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c8d6e5, #a0b4c8, transparent);
  border-radius: 3px;
  margin: 14px 0 0;
}

/* Service items in sidebar — endline style */
.hero-svc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.hero-svc-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-svc-item:hover,
.hero-svc-item.active {
  background: rgba(200, 214, 229, 0.1);
  border-color: rgba(200, 214, 229, 0.25);
  box-shadow: 0 4px 16px rgba(200, 214, 229, 0.1);
}
.hero-svc-item:hover::before,
.hero-svc-item.active::before {
  opacity: 1;
}
.svc-icon-box {
  font-size: 1.1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(200, 214, 229, 0.14);
  border: 1px solid rgba(200, 214, 229, 0.25);
  flex-shrink: 0;
}
.hero-svc-item.active .svc-icon-box {
  background: rgba(200, 214, 229, 0.25);
  border-color: rgba(200, 214, 229, 0.4);
}
.svc-text h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1px;
}
.svc-text p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}
.svc-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.hero-svc-item:hover .svc-arrow {
  transform: translateX(4px);
  color: var(--accent);
}
.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--ease);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gradient-primary);
  color: #fff;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 214, 229, 0.45);
  color: #fff;
}
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text2);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--gold);
}
.btn-green {
  background: #25d366;
  color: #fff;
}
.btn-green:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
}

/* === MARQUEE === */
.marquee {
  overflow: hidden;
  background: rgba(200, 214, 229, 0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 0.85rem;
  color: var(--text2);
  font-weight: 500;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* === STATS BAR === */
.stats {
  padding: 60px 0;
  background: var(--bg2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 800;
  color: #c8d6e5;
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--text2);
  margin-top: 4px;
}

/* === SECTIONS === */
.section {
  padding: 80px 0;
}
.section-dark {
  background: var(--bg2);
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(200, 214, 229, 0.12);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  border: 1px solid rgba(200, 214, 229, 0.25);
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
}
.section-header p {
  color: var(--text2);
  font-size: 1rem;
  max-width: 600px;
  margin: 12px auto 0;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.svc-card {
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--ease);
  position: relative;
  border: none;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: conic-gradient(
    from var(--card-angle, 0deg),
    transparent 0%,
    #c9943c 10%,
    #f5ce6a 20%,
    #c9943c 30%,
    transparent 40%,
    transparent 60%,
    #c9943c 70%,
    #f5ce6a 80%,
    #c9943c 90%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateCard 4s linear infinite;
  z-index: 1;
  pointer-events: none;
}
@property --card-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateCard {
  to {
    --card-angle: 360deg;
  }
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(201, 148, 60, 0.15);
}
.svc-card-img {
  height: 180px;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-card:hover .svc-card-img img {
  transform: scale(1.08);
}
.svc-card-body {
  padding: 20px;
}
.svc-card-body h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.svc-card-body p {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 12px;
}
.svc-card-link {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-card-link:hover {
  gap: 10px;
}

/* === YOUTUBE SECTION === */
.yt-section {
  padding: 80px 0;
  background: var(--bg);
}

/* YouTube Kanal Linki */
.yt-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}
.yt-channel-link:hover {
  background: rgba(255, 0, 0, 0.15);
  border-color: rgba(255, 0, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.15);
}
.yt-channel-link .yt-icon {
  width: 28px;
  height: 20px;
  flex-shrink: 0;
}
.yt-channel-link .yt-arrow {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.yt-channel-link:hover .yt-arrow {
  color: #ff4444;
  transform: translateX(3px);
}
.yt-channel-link span {
  color: rgba(255, 255, 255, 0.85);
}
.yt-channel-link:hover span {
  color: #ff4444;
}

.yt-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 1000px;
  margin: 0 auto;
  cursor: pointer;
  border: 8px solid;
  border-image: linear-gradient(
      135deg,
      #8b6914 0%,
      #c9943c 15%,
      #f5ce6a 30%,
      #c9943c 45%,
      #8b6914 50%,
      #c9943c 55%,
      #f5ce6a 70%,
      #c9943c 85%,
      #8b6914 100%
    )
    1;
  box-shadow:
    0 0 0 2px rgba(201, 148, 60, 0.3),
    0 8px 40px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(201, 148, 60, 0.05);
}
.yt-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(200, 214, 229, 0.95),
    rgba(160, 180, 200, 0.95)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  box-shadow: 0 0 30px rgba(200, 214, 229, 0.4);
}
.yt-play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #000;
  margin-left: 4px;
}
.yt-wrapper:hover .yt-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: linear-gradient(135deg, #c8d6e5, #a0b4c8);
  box-shadow: 0 0 50px rgba(200, 214, 229, 0.5);
}
.yt-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* === TEAM === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--card);
  border: 2px solid rgba(201, 148, 60, 0.35);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: var(--ease);
  position: relative;
  box-shadow: 0 0 20px rgba(201, 148, 60, 0.06);
}
.team-card::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201, 148, 60, 0.2);
  border-radius: 11px;
  pointer-events: none;
  z-index: 5;
}
.team-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f5ce6a, transparent);
  border-radius: 0 0 4px 4px;
  z-index: 5;
}
.team-card:hover {
  border-color: rgba(245, 206, 106, 0.6);
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(201, 148, 60, 0.12),
    0 0 20px rgba(201, 148, 60, 0.08);
}
.team-card-img {
  height: 280px;
  overflow: hidden;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-img .placeholder {
  font-size: 3rem;
  color: var(--text3);
}
.team-card-body {
  padding: 20px;
}
.team-card-body h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  margin-bottom: 2px;
}
.team-card-body .title {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
}
.team-card-body .spec {
  font-size: 0.75rem;
  color: var(--text3);
  margin-top: 2px;
}

/* === TESTIMONIALS === */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: var(--ease);
}
.testi-card:hover {
  border-color: rgba(200, 214, 229, 0.25);
}
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.testi-author strong {
  display: block;
  font-size: 0.88rem;
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--text3);
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--ease);
}
.blog-card:hover {
  border-color: rgba(200, 214, 229, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(200, 214, 229, 0.08);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}
.blog-card-body {
  padding: 20px;
}
.blog-card-cat {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card-body h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  margin: 8px 0 6px;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 0.83rem;
  color: var(--text2);
  line-height: 1.5;
}
.blog-card-meta {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text3);
}

/* === INSTAGRAM REELS === */
.instagram-reels {
  padding: 80px 0;
  background: var(--bg2);
}

/* Instagram Badge Link */
.ig-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    rgba(254, 218, 117, 0.08),
    rgba(214, 41, 118, 0.08),
    rgba(79, 91, 213, 0.08)
  );
  border: 1px solid rgba(214, 41, 118, 0.2);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}
.ig-badge-link:hover {
  background: linear-gradient(
    135deg,
    rgba(254, 218, 117, 0.15),
    rgba(214, 41, 118, 0.15),
    rgba(79, 91, 213, 0.15)
  );
  border-color: rgba(214, 41, 118, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(214, 41, 118, 0.2);
}
.ig-badge-link svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(214, 41, 118, 0.3));
  transition: all 0.3s ease;
}
.ig-badge-link:hover svg {
  filter: drop-shadow(0 4px 12px rgba(214, 41, 118, 0.5));
  transform: scale(1.1);
}
.ig-badge-link span {
  color: #c8d6e5;
}

.reel-item {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.reel-item {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.phone-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9/19.5;
  background: #000;
  border-radius: 36px;
  padding: 10px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid #333;
  transition: transform 0.3s ease;
}
.phone-frame:hover {
  transform: translateY(-10px);
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 24px;
  background: #000;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.reel-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.phone-frame:hover .reel-cover {
  transform: scale(1.05);
}
.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  z-index: 3;
}
.reel-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.phone-frame:hover .reel-play-btn {
  background: rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%) scale(1.1);
}
.reel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  z-index: 4;
}
.reel-profile {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}
.reel-profile-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #fff;
  font-weight: 700;
}
.reel-ig-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}
.reel-profile span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}
.reel-caption {
  display: none;
}
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text2);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--ease);
}
.insta-link:hover {
  border-color: rgba(200, 214, 229, 0.5);
  color: #fff;
  background: rgba(200, 214, 229, 0.12);
}

/* === YOUTUBE VİDEO SLİDER === */
.yt-slider-wrapper {
  position: relative;
  padding: 0 50px;
}
.ytSwiper {
  overflow: hidden;
  border-radius: 16px;
}
.ytSwiper .swiper-slide {
  height: auto;
}
.yt-nav-prev,
.yt-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--ease);
  color: var(--text2);
}
.yt-nav-prev { left: 0; }
.yt-nav-next { right: 0; }
.yt-nav-prev:hover,
.yt-nav-next:hover {
  border-color: rgba(200, 214, 229, 0.5);
  color: #c8d6e5;
  background: rgba(200, 214, 229, 0.08);
  box-shadow: 0 0 20px rgba(200, 214, 229, 0.15);
}
.yt-nav-prev.swiper-button-disabled,
.yt-nav-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.yt-video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--ease);
  cursor: pointer;
}
.yt-video-card:hover {
  border-color: rgba(200, 214, 229, 0.35);
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(200, 214, 229, 0.1);
}
.yt-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.yt-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.yt-video-card:hover .yt-video-thumb img {
  transform: scale(1.08);
}
.yt-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(5, 10, 16, 0.7) 100%
  );
  transition: var(--ease);
}
.yt-video-card:hover .yt-video-overlay {
  background: linear-gradient(
    180deg,
    rgba(200, 214, 229, 0.05) 0%,
    rgba(5, 10, 16, 0.5) 100%
  );
}
.yt-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(200, 214, 229, 0.9),
    rgba(160, 180, 200, 0.9)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--ease);
  box-shadow: 0 0 30px rgba(200, 214, 229, 0.4);
}
.yt-video-card:hover .yt-video-play {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 50px rgba(200, 214, 229, 0.6);
}
.yt-video-info {
  padding: 16px 20px;
}
.yt-video-info h3 {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #c8d6e5;
  line-height: 1.4;
  letter-spacing: 0.2px;
}
.yt-video-info p {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.5;
}

/* YouTube Badge Icon */
.yt-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 8px;
}
.yt-badge-link:hover {
  background: rgba(255, 0, 0, 0.15);
  border-color: rgba(255, 0, 0, 0.35);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15);
}
.yt-badge-link svg {
  filter: drop-shadow(0 2px 8px rgba(255, 0, 0, 0.3));
  transition: all 0.3s ease;
}
.yt-badge-link:hover svg {
  filter: drop-shadow(0 4px 16px rgba(255, 0, 0, 0.5));
  transform: scale(1.1);
}

/* === CTA BANNER === */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1628, #140e2a, #0a1628);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(200, 214, 229, 0.15),
    rgba(160, 180, 200, 0.08) 40%,
    transparent 70%
  );
  border-radius: 50%;
}
.cta-banner h2 {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  color: var(--text2);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* === WHY US / REVIEWS === */
.reviews-slider-wrap {
  position: relative;
  padding: 0 40px;
}
.reviewsSwiper {
  overflow: hidden;
}
.reviewsSwiper .swiper-slide {
  height: auto;
}
.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.review-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.review-nav-prev {
  left: -5px;
}
.review-nav-next {
  right: -5px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: var(--ease);
}
.review-card:hover {
  border-color: rgba(200, 214, 229, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 214, 229, 0.06);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-meta {
  flex: 1;
  min-width: 0;
}
.review-meta h4 {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-date {
  font-size: 0.72rem;
  color: var(--text3);
}
.review-google {
  flex-shrink: 0;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.review-stars span {
  color: #fbbc05;
  font-size: 1rem;
}
.review-text {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.7;
  margin: 0;
}
.reviews-cta {
  text-align: center;
  margin-top: 40px;
}
.reviews-link {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  text-decoration: none;
  transition: var(--ease);
  display: inline-block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 214, 229, 0.2);
}
.reviews-link:hover {
  color: #dfe6ed;
  border-bottom-color: #dfe6ed;
  text-shadow: 0 0 20px rgba(200, 214, 229, 0.2);
}
.badge-link {
  text-decoration: none;
  cursor: pointer;
  transition: var(--ease);
}
.badge-link:hover {
  background: rgba(200, 214, 229, 0.25);
  transform: translateY(-1px);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: var(--ease);
}
.why-card:hover {
  border-color: rgba(200, 214, 229, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 214, 229, 0.08);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.why-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.6;
}

/* === FOOTER === */
.footer {
  padding: 60px 0 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-h);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo svg {
  flex-shrink: 0;
}
.footer-logo-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.footer-logo .logo-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}
.footer-logo strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 5px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  line-height: 1;
  text-transform: uppercase;
}
.footer-logo small {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.45);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.45);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  text-transform: uppercase;
  line-height: 1;
}
.footer-desc {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text3);
  font-weight: 700;
  transition: var(--ease);
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(200, 214, 229, 0.2);
}
.footer-social .social-ig {
  color: var(--text3);
  border-color: var(--border);
}
.footer-social .social-ig:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.1);
}
.footer-social .social-yt {
  color: var(--text3);
  border-color: var(--border);
}
.footer-social .social-yt:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.1);
}
.footer-social .social-fb {
  color: var(--text3);
  border-color: var(--border);
}
.footer-social .social-fb:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.1);
}
.footer-social .social-x {
  color: var(--text3);
  border-color: var(--border);
}
.footer-social .social-x:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.1);
}
.footer-col h4 {
  font-family: var(--font-h);
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--accent);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul a {
  font-size: 0.84rem;
  color: var(--text2);
}
.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-col p {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-col p a {
  color: var(--accent);
}
.footer-address {
  margin-bottom: 12px;
}
.footer-address-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 2px !important;
}
.footer-address-note {
  font-size: 0.75rem;
  color: var(--text3);
  font-style: italic;
  margin-top: 2px !important;
}
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text3);
}

/* === PHONE FLOAT === */
.phone-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: rgba(15, 20, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}
.phone-float:hover {
  transform: scale(1.1);
  background: rgba(15, 20, 30, 0.95);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* === SCROLL TOP === */
.scroll-top {
  position: fixed;
  bottom: 148px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(200, 214, 229, 0.2);
}

/* === INNER PAGE HEADER === */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(
    160deg,
    var(--bg) 0%,
    #0f1825 50%,
    var(--bg) 100%
  );
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}
.page-header p {
  color: var(--text2);
}

/* === PAGE HERO (İç Sayfa Hero) === */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 10, 16, 0.85) 0%,
    rgba(5, 10, 16, 0.7) 100%
  );
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.text-gold {
  color: var(--gold);
}
.text-royal {
  color: var(--accent);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text3);
  margin-bottom: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--text2);
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb .separator {
  color: var(--text3);
  opacity: 0.5;
}

/* === SECTION LABELS === */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-label-text {
  display: inline;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--text2);
  max-width: 580px;
  line-height: 1.7;
}
.section-header-center {
  text-align: center;
}
.section-header-center .section-label {
  justify-content: center;
}
.section-header-center .section-subtitle {
  margin: 0 auto;
}
.section-ivory {
  background: var(--bg2);
}

/* === CONTACT PAGE === */
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.contact-card {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  gap: 16px;
  transition: var(--ease);
}
.contact-card:hover {
  border-color: rgba(200, 214, 229, 0.3);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-body h3 {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.contact-card-body p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.6;
}
.contact-card-body a {
  display: block;
  font-size: 0.85rem;
  color: var(--accent);
  transition: color 0.3s;
}
.contact-card-body a:hover {
  color: var(--gold);
}
.contact-map {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  grid-column: 1 / -1;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 350px;
}
.contact-form-wrapper {
  position: relative;
}
.contact-form-card {
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 14px 14px 0 0;
}
.contact-form-title {
  font-family: var(--font-h);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form-subtitle {
  font-size: 0.85rem;
  color: var(--text2);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.9rem;
  transition: var(--ease);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 214, 229, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-check input[type='checkbox'] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.form-check label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}
.form-check label a {
  color: var(--accent);
  text-decoration: underline;
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 214, 229, 0.45);
  color: #fff;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success h3 {
  font-family: var(--font-h);
  margin-top: 16px;
  color: #fff;
}
.form-success p {
  color: var(--text2);
  margin-top: 8px;
}

/* === ACCORDION (SSS) === */
.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--card);
  transition: var(--ease);
}
.accordion-item:hover {
  border-color: rgba(200, 214, 229, 0.25);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.accordion-trigger svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text3);
}
.accordion-item.active .accordion-trigger svg {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.7;
}

/* === FAALIYET DETAIL === */
.faaliyet-detail-section {
  padding: 80px 0;
}
.faaliyet-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}
.faaliyet-detail-main {
  min-width: 0;
}
.faaliyet-detail-content {
  margin-top: 24px;
}
.faaliyet-detail-content .lead {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 24px;
}
.faaliyet-detail-content h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 14px;
}
.faaliyet-detail-content p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.faaliyet-detail-image {
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
}
.faaliyet-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}
.check-list {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0 32px;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--ease);
}
.process-step:hover {
  border-color: rgba(200, 214, 229, 0.25);
}
.process-step-number {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 36px;
}
.process-step-content h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.process-step-content p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Sidebar */
.faaliyet-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.sidebar-card-title {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text2);
}
.sidebar-cta {
  background: var(--card);
  border: 1px solid rgba(200, 214, 229, 0.2);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}
.sidebar-cta-icon {
  margin-bottom: 16px;
}
.sidebar-cta h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.sidebar-cta p {
  font-size: 0.85rem;
  color: var(--text2);
  margin-bottom: 20px;
  line-height: 1.6;
}
.sidebar-cta .btn {
  margin-bottom: 10px;
}
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--text2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--ease);
}
.sidebar-links li a:hover {
  color: var(--accent);
  padding-left: 6px;
}

/* === BLOG FILTERS === */
.blog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.blog-filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text2);
  background: var(--card);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: rgba(200, 214, 229, 0.12);
  border-color: rgba(200, 214, 229, 0.35);
  color: var(--accent);
}

/* === BLOG CARD (İç sayfa) === */
.blog-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  height: 220px;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}
.blog-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  background: rgba(200, 214, 229, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card-title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-card-title a {
  color: #fff;
}
.blog-card-title a:hover {
  color: var(--gold);
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 14px;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s ease;
}
.blog-card-link:hover {
  gap: 10px;
  color: var(--gold);
}
.no-results {
  text-align: center;
  padding: 60px 20px;
}
.no-results h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--text2);
  margin: 16px 0;
}

/* === CTA BANNER (İç sayfa) === */
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92),
    rgba(20, 14, 42, 0.92)
  );
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-banner-title {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-banner-text {
  font-size: 1rem;
  color: var(--text2);
  margin-bottom: 28px;
}
.cta-banner-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === TEAM CARD (İç sayfa, kurumsal) === */
.team-card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(5, 10, 16, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-card:hover .team-card-overlay {
  opacity: 1;
}
.team-card-bio {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.6;
}
.team-card-name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.team-card-title {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
}
.team-card-specialty {
  font-size: 0.75rem;
  color: var(--text3);
  margin-top: 2px;
}

/* === PAGE CONTENT (KVKK, Gizlilik vb.) === */
.page-content {
  padding: 60px 0 80px;
}
.page-content h2 {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 14px;
}
.page-content h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin: 24px 0 10px;
}
.page-content p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.page-content ul {
  margin-bottom: 16px;
}
.page-content ul li {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.page-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* === REEL VIEWS === */
.reel-views {
  display: none;
}

/* === FAALIYET GRID (Liste sayfası) === */
.faaliyet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.faaliyet-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  min-height: 350px;
  transition: var(--ease);
}
.faaliyet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.faaliyet-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.faaliyet-card:hover .faaliyet-card-bg {
  transform: scale(1.08);
}
.faaliyet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 10, 16, 0.2) 0%,
    rgba(5, 10, 16, 0.85) 100%
  );
}
.faaliyet-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
}
.faaliyet-card-title {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.faaliyet-card-desc {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 14px;
}
.faaliyet-card-arrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.faaliyet-card:hover .faaliyet-card-arrow {
  gap: 12px;
}

/* === BLOG DETAIL === */
.blog-detail-section {
  padding: 60px 0 80px;
}
.blog-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}
.blog-detail-main {
  min-width: 0;
}
.blog-detail-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(200, 214, 229, 0.15);
  border: 1px solid rgba(200, 214, 229, 0.3);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.blog-detail-meta {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text2);
}
.blog-detail-content {
  margin-top: 24px;
}
.blog-detail-content .lead {
  font-size: 1.1rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 24px;
}
.blog-detail-content h2 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 14px;
}
.blog-detail-content h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin: 24px 0 10px;
}
.blog-detail-content p {
  font-size: 0.94rem;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: 16px;
}
.blog-detail-content ul {
  margin: 12px 0 20px;
}
.blog-detail-content ul li {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.blog-detail-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Blog Detail Sidebar */
.blog-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* === PAGE HERO COMPACT === */
.page-hero-compact {
  padding: 130px 0 60px;
}

/* === LEGAL CONTENT === */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content .lead {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 28px;
}
.legal-content h2 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 12px;
}
.legal-content h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 12px 0 18px;
}
.legal-content ul li {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.legal-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.legal-content strong {
  color: #fff;
}

/* === REVEAL (animations placeholder) === */
.reveal {
  opacity: 1;
}
.stagger-parent .stagger-child {
  opacity: 1;
}
.loading .reveal,
.loading .stagger-child {
  opacity: 1;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .video-hero {
    min-height: 100vh;
  }
  .macbook-visual {
    flex: 0 0 56%;
    max-width: 56%;
  }

  .yt-slider-wrapper {
    padding: 0 44px;
  }
  .faaliyet-detail-grid {
    grid-template-columns: 1fr 320px;
    gap: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .macbook-visual {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hero-sidebar {
    flex: 0 0 100%;
    max-width: 100%;
    order: -1;
  }
  .hero-mini-section {
    text-align: center;
  }
  .hero-mini-line {
    margin: 14px auto 0;
  }
  .hero-btns {
    justify-content: center;
  }
  .faaliyet-detail-grid {
    grid-template-columns: 1fr;
  }
  .faaliyet-detail-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 70px;
  }
  .navbar-inner {
    justify-content: space-between;
  }
  .logo {
    order: 1;
    flex: 1;
  }
  .nav-desktop,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
    order: 3;
  }
  .review-card {
    padding: 20px 16px;
  }
  .review-meta h4 {
    font-size: 0.84rem;
  }
  .review-text {
    font-size: 0.8rem;
  }
  .reviews-link {
    font-size: 1rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .yt-slider-wrapper {
    padding: 0 36px;
  }
  .yt-nav-prev,
  .yt-nav-next {
    width: 32px;
    height: 32px;
  }
  .yt-nav-prev svg,
  .yt-nav-next svg {
    width: 16px;
    height: 16px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .video-hero {
    min-height: 100vh;
  }
  .video-hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    letter-spacing: 6px;
  }
  .video-hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
  .video-hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-btn {
    padding: 12px 28px;
    font-size: 0.8rem;
    width: 220px;
    justify-content: center;
  }
  .video-hero-pause {
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
  }
  .video-hero-scroll {
    bottom: 24px;
  }

  .phone-frame {
    border-radius: 24px;
    padding: 6px;
    border-width: 1.5px;
  }
  .phone-notch {
    height: 16px;
    width: 35%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .phone-screen {
    border-radius: 20px;
  }
  .hero-sidebar {
    padding: 20px 16px;
  }
  .hero-mini-title {
    font-size: 1.15rem;
  }
  .hero-mini-desc {
    font-size: 0.82rem;
  }
  .svc-text h4 {
    font-size: 0.8rem;
  }
  .svc-text p {
    font-size: 0.7rem;
  }
  .macbook-bezel {
    border-radius: 10px 10px 0 0;
    padding: 4px;
  }
  .browser-url-bar {
    padding: 5px 10px;
    gap: 6px;
  }
  .url-dot {
    width: 6px;
    height: 6px;
  }
  .url-text {
    font-size: 0.6rem;
  }
  .url-pages {
    display: none;
  }
  .slide-info {
    padding: 12px 16px;
  }
  .slide-text h3 {
    font-size: 0.8rem;
  }
  .slide-text p {
    font-size: 0.68rem;
  }
  /* İç sayfa hero mobil */
  .page-hero {
    padding: 120px 0 50px;
  }
  .page-hero-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  /* Contact mobil */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form-card {
    padding: 24px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  /* Faaliyet mobil */
  .faaliyet-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faaliyet-detail-sidebar {
    order: 2;
  }
  /* Kurumsal grid mobil */
  .section [style*='grid-template-columns: 1fr 1fr'],
  .section [style*='grid-template-columns:1fr 1fr'] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  /* CTA */
  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-banner-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  /* Section padding */
  .section {
    padding: 50px 0;
  }
  .section-header {
    margin-bottom: 30px;
  }
  /* Blog filters */
  .blog-filters {
    gap: 8px;
  }
  .blog-filter-btn {
    padding: 6px 14px;
    font-size: 0.78rem;
  }
  /* Faaliyet grid */
  .faaliyet-grid {
    grid-template-columns: 1fr;
  }
  .faaliyet-card {
    min-height: 280px;
  }
  /* Blog detail */
  .blog-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blog-detail-sidebar {
    order: 2;
  }
  /* Page hero compact */
  .page-hero-compact {
    padding: 110px 0 40px;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 60px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    padding: 18px 14px;
  }
  .review-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
  .reviews-link {
    font-size: 0.9rem;
  }
  .reviews-cta {
    margin-top: 28px;
  }
  .footer-desc {
    font-size: 0.78rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .footer-grid {
    gap: 24px;
  }
  .footer-col h4 {
    font-size: 0.9rem;
  }
  .footer-col ul li a {
    font-size: 0.82rem;
  }
  .footer-address p {
    font-size: 0.8rem;
  }
  .stat-item h3 {
    font-size: 1.8rem;
  }
  .logo-svg {
    width: 36px;
    height: 36px;
  }
  .logo-text strong {
    font-size: 0.95rem;
    letter-spacing: 4px;
  }
  .logo-text small {
    font-size: 0.72rem;
    letter-spacing: 4px;
  }
  .logo-divider {
    height: 14px;
    margin: 0 7px;
  }
  .hero-mini-title {
    font-size: 1rem;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .video-hero { min-height: 100vh; }
  .video-hero-title { font-size: clamp(1.6rem, 5vw, 2.2rem); letter-spacing: 4px; }
  .container {
    padding: 0 16px;
  }
  .page-hero {
    padding: 100px 0 40px;
  }
  .page-hero-title {
    font-size: 1.5rem;
  }
  .page-hero-subtitle {
    font-size: 0.88rem;
  }
  .breadcrumb {
    font-size: 0.75rem;
    gap: 6px;
  }
  .process-step {
    flex-direction: column;
    gap: 10px;
  }
  .sidebar-cta .btn {
    font-size: 0.82rem;
    padding: 10px 16px;
  }
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .stats-grid {
    gap: 16px;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-header h2 {
    font-size: 1.4rem;
  }
  .btn {
    font-size: 0.8rem;
    padding: 10px 18px;
  }
  .accordion-trigger {
    padding: 14px 16px;
    font-size: 0.88rem;
  }
  .accordion-content p {
    padding: 0 16px 14px;
    font-size: 0.82rem;
  }
  .marquee-track span {
    font-size: 0.75rem;
  }
  .footer-logo strong {
    font-size: 0.95rem;
    letter-spacing: 4px;
  }
  .cta-banner {
    padding: 50px 0;
  }
  .cta-banner h2 {
    font-size: 1.3rem;
  }
  /* Kurumsal inline grid fix */
  .section > .container > div[style*='grid-template-columns'],
  .section-ivory > .container > div[style*='grid-template-columns'] {
    display: block !important;
  }
  .section > .container > div[style*='grid-template-columns'] > div,
  .section-ivory > .container > div[style*='grid-template-columns'] > div {
    margin-bottom: 30px;
  }
  /* SSS Mobil */
  .sss-wrapper {
    grid-template-columns: 1fr !important;
  }
  .sss-sidebar {
    order: -1;
  }
  /* Avukatlar Mobil */
  .team-grid-large {
    grid-template-columns: 1fr !important;
  }
  .team-card-large {
    flex-direction: column !important;
  }
  .team-card-large-image {
    max-width: 100% !important;
  }
}

/* === SSS PAGE === */
.sss-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}
.sss-main {
  min-width: 0;
}
.sss-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.sidebar-card h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.sidebar-card p {
  font-size: 0.88rem;
  color: var(--text2);
  margin-bottom: 16px;
  line-height: 1.6;
}
.sidebar-card-dark {
  background: var(--bg2);
  border-color: rgba(200, 214, 229, 0.2);
}
.sidebar-phone {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 8px;
}

/* === TEAM LARGE GRID === */
.team-grid-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.team-card-large {
  display: flex;
  gap: 40px;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--ease);
}
.team-card-large:hover {
  border-color: rgba(200, 214, 229, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.team-card-large-image {
  flex-shrink: 0;
  width: 200px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
}
.team-card-large-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-large-body {
  flex: 1;
  min-width: 0;
}
.team-card-large-name {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.team-card-large-title {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.team-card-large-specialty {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.team-card-large-bio {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.team-card-large-contact {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.team-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(200, 214, 229, 0.1);
  border: 1px solid rgba(200, 214, 229, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--accent);
  transition: var(--ease);
}
.team-contact-link:hover {
  background: rgba(200, 214, 229, 0.2);
  color: var(--gold);
}

/* === SECTION DARK === */
.section-dark {
  background: var(--bg2);
}

/* === WHY GRID === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  transition: var(--ease);
}
.why-card:hover {
  border-color: rgba(200, 214, 229, 0.3);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.6;
}

/* === MOBILE NAV GROUPS (legacy — replaced by mm-* system) === */

/* === KURUMSAL PAGE === */
.kurumsal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.kurumsal-text {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: 16px;
}
.kurumsal-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.kurumsal-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.kurumsal-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.kurumsal-stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text3);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === VIZYON MISYON === */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.vm-card {
  padding: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--ease);
}
.vm-card:hover {
  border-color: rgba(200, 214, 229, 0.3);
  transform: translateY(-4px);
}
.vm-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.vm-title {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.vm-text {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.vm-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vm-list li {
  font-size: 0.88rem;
  color: var(--text2);
  padding-left: 24px;
  position: relative;
}
.vm-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* === VALUES GRID === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  transition: var(--ease);
}
.value-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.6;
}
.text-center {
  text-align: center;
}

/* === RESPONSIVE KURUMSAL === */
@media (max-width: 992px) {
  .kurumsal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .kurumsal-image {
    order: -1;
  }
  .kurumsal-image img {
    height: 300px;
  }
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .kurumsal-stats {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .vm-card {
    padding: 32px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
}

/* === SERVICES MOBILE LIMIT === */
.svc-show-all-wrap {
  text-align: center;
  margin-top: 32px;
}
.svc-show-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 769px) {
  .svc-card-extra {
    display: block !important;
  }
  .svc-show-all-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .svc-card-extra {
    display: none;
  }
  .svc-show-all-wrap {
    display: block;
  }
}

/* === BLOG SLIDER === */
.blog-slider-wrap {
  position: relative;
  padding: 0 40px;
}
.blogSwiper {
  overflow: hidden;
}
.blogSwiper .swiper-slide {
  height: auto;
}
.blogSwiper .blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.blog-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.blog-nav-prev {
  left: -5px;
}
.blog-nav-next {
  right: -5px;
}

/* === REELS SLIDER === */
.reels-slider-wrap {
  position: relative;
  padding: 0 40px;
}
.reelsSwiper {
  overflow: hidden;
}
.reelsSwiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}
.reels-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.reels-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.reels-nav-prev {
  left: -5px;
}
.reels-nav-next {
  right: -5px;
}

/* === FOOTER COMPACT === */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
}
.footer-contact-item {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.5;
}
.footer-contact-item span {
  flex-shrink: 0;
  font-size: 0.9rem;
}
.footer-contact-item strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  margin-bottom: 2px;
}
.footer-contact-item p {
  margin: 0;
  font-size: 0.8rem;
}
.footer-contact-item a {
  color: var(--text2);
  transition: var(--ease);
}
.footer-contact-item a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  color: var(--text3);
  font-size: 0.78rem;
  transition: var(--ease);
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .reviews-slider-wrap,
  .blog-slider-wrap,
  .reels-slider-wrap {
    padding: 0 30px;
  }
  .review-nav,
  .blog-nav,
  .reels-nav {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
  }
  .footer-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.82rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .reviews-slider-wrap,
  .blog-slider-wrap,
  .reels-slider-wrap {
    padding: 0 24px;
  }
  .review-nav-prev,
  .blog-nav-prev,
  .reels-nav-prev {
    left: -2px;
  }
  .review-nav-next,
  .blog-nav-next,
  .reels-nav-next {
    right: -2px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
  }
  .footer-contact-item {
    font-size: 0.78rem;
  }
}
