/* ================================================================
   TABİPLER OSGB — 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:
    'Space Grotesk', 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-b: 'DM Sans', 'Inter', -apple-system, sans-serif;
  --font-accent: 'Instrument Serif', 'Playfair Display', Georgia, 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;
  -webkit-backdrop-filter: none;
  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 0.4s ease;
  height: var(--nav-h);
}
.navbar.scrolled {
  background: rgba(5, 10, 16, 0.82);
  -webkit-backdrop-filter: blur(32px) saturate(2);
  backdrop-filter: blur(32px) saturate(2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
  height: 60px;
}
.navbar.scrolled .logo-subtitle {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  pointer-events: none;
}
.navbar.scrolled .logo-img {
  height: 36px;
}
.navbar.scrolled .nav-cta {
  padding: 7px 14px;
  font-size: 0.72rem;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  gap: 2px;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition:
    height 0.4s ease,
    filter 0.3s ease,
    transform 0.3s ease;
  flex-shrink: 0;
}
.logo-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.52rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2.2px;
  text-transform: none;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  padding-left: 1px;
  transition:
    color 0.3s ease,
    opacity 0.4s ease,
    max-height 0.4s ease,
    margin 0.4s ease;
  opacity: 1;
  max-height: 20px;
}
.logo:hover .logo-subtitle {
  color: var(--gold);
}
.logo:hover .logo-img {
  filter: brightness(0) invert(1)
    drop-shadow(0 2px 12px rgba(255, 255, 255, 0.2));
  transform: scale(1.03);
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 0;
  flex-wrap: nowrap;
  overflow: hidden;
  min-width: 0;
  flex: 1 1 auto;
}
.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text2);
  transition: var(--ease);
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.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);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  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: 10px 14px;
  font-size: 0.8rem;
  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.78rem;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--ease);
  flex-shrink: 0;
}
.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;
}

/* ══════════════════════════════════════════
   MOBILE MENU — 2026 Premium
   ══════════════════════════════════════════ */
.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(10, 12, 18, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-menu.open .mm-backdrop {
  opacity: 1;
}

/* Panel */
.mm-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 12px 0 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.mm-panel::before,
.mm-panel::after {
  display: none;
}
.mobile-menu.open .mm-panel {
  transform: translateX(0);
}

/* ── Header: phone | centered logo | close ── */
.mm-header {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 0;
  padding: 20px 16px 16px;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid #eeeef0;
}
.mm-header-spacer {
  display: none;
}

/* Phone button — left */
.mm-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f5f6f8;
  border: none;
  color: #1a1a2e;
  text-decoration: none;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.mm-phone:hover {
  background: #1a1a2e;
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 26, 46, 0.2);
}
.mm-phone svg {
  width: 17px;
  height: 17px;
}

/* Logo — grid center column */
.mm-logo {
  display: flex;
  align-items: center;
  justify-self: center;
  text-decoration: none;
  min-width: 0;
}
.mm-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: none;
  flex-shrink: 0;
}
/* Subtitle — full-width second row */
.mm-logo-subtitle {
  grid-column: 1 / -1;
  font-family: 'DM Sans', var(--font-b), sans-serif;
  font-size: 0.54rem;
  font-weight: 600;
  font-style: normal;
  color: #a0a5ad;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: normal;
  word-break: break-word;
  text-align: center;
  padding-top: 10px;
  margin-top: 2px;
  border-top: 1px solid #f3f3f5;
}

/* Close button — right */
.mm-close {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #f5f6f8;
  border: none;
  color: #3a3f47;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.mm-close svg {
  width: 16px;
  height: 16px;
}
.mm-close:hover {
  background: #e8e9ec;
  color: #111;
  transform: rotate(90deg);
}

/* Small screens — tighter header */
@media (max-width: 360px) {
  .mm-header {
    column-gap: 6px;
    padding: 16px 10px 12px;
  }
  .mm-logo-img {
    height: 32px;
  }
  .mm-logo-subtitle {
    font-size: 0.44rem;
    letter-spacing: 1.5px;
  }
}

/* ── Search styles hidden ── */
.mm-search {
  display: none;
}

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

/* Links */
.mm-link,
.mm-group-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 16px 24px;
  border-radius: 0;
  font-family: 'DM Sans', var(--font-b), sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e2128;
  text-decoration: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid #f0f0f2;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  letter-spacing: 0.2px;
}
.mm-link:hover,
.mm-group-toggle:hover {
  color: #1a1a2e;
  background: #fafbfc;
}
.mm-link.active {
  color: #1a1a2e;
  background: rgba(26, 26, 46, 0.03);
  font-weight: 600;
  border-left: 3px solid #1a1a2e;
  padding-left: 21px;
}

/* Hide old icon boxes */
.mm-link-icon {
  display: none;
}
.mm-link:hover .mm-link-icon,
.mm-group-toggle:hover .mm-link-icon {
  display: none;
}

/* Chevron */
.mm-chevron {
  margin-left: auto;
  color: #c5c9cf;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.25s ease;
  flex-shrink: 0;
}
.mm-group-toggle.active .mm-chevron {
  transform: rotate(180deg);
  color: #1a1a2e;
}

/* Sub menu */
.mm-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 0;
  background: #fafbfc;
}
.mm-sub.open {
  max-height: 500px;
}
.mm-sub a {
  display: block;
  padding: 12px 24px 12px 40px;
  font-family: 'DM Sans', var(--font-b), sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  color: #5a6270;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f2;
  transition: all 0.2s ease;
  margin: 0;
  letter-spacing: 0.15px;
}
.mm-sub a:last-child {
  border-bottom: 1px solid #ecedf0;
}
.mm-sub a:hover {
  color: #1a1a2e;
  background: #f3f4f6;
  padding-left: 44px;
}

/* ═══ Mobile Menu CTA Button ═══ */
.mm-cta-wrap {
  padding: 20px 24px 8px;
}
.mm-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: #0a0a0a;
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.mm-cta-btn:hover {
  background: #1a1a2e;
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.mm-cta-btn:active {
  transform: scale(0.98);
}
.mm-cta-btn svg {
  transition: transform 0.3s ease;
}
.mm-cta-btn:hover svg {
  transform: translateX(3px);
}

/* ═══ Footer Section: Social + Language ═══ */
.mm-footer-section {
  padding: 18px 24px 26px;
  position: relative;
  z-index: 3;
  border-top: 1px solid #f0f0f2;
  margin-top: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Social Icons — monochrome elegant */
.mm-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.mm-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f6f8;
  color: #5a6270;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mm-social a:hover {
  background: #1a1a2e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26, 26, 46, 0.18);
}
.mm-social a svg {
  width: 17px;
  height: 17px;
}

/* Language — flag style pills */
.mm-lang-row {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.mm-lang-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f8f9fa;
  border: 1.5px solid #ecedf0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.mm-flag {
  font-size: 1.1rem;
  line-height: 1;
}
.mm-lang-code {
  font-family: 'DM Sans', var(--font-b), sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  color: #8b919a;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.mm-lang-flag:hover {
  border-color: #c5c9cf;
  background: #f0f1f4;
  transform: translateY(-2px);
}
.mm-lang-flag.active {
  border-color: #1a1a2e;
  background: #1a1a2e;
  box-shadow: 0 3px 12px rgba(26, 26, 46, 0.2);
}
.mm-lang-flag.active .mm-flag {
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.6));
}
.mm-lang-flag.active .mm-lang-code {
  color: #fff;
}

/* Google Translate overrides — hide GT bar & UI */
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-spinner-pos,
#goog-gt-tt,
.goog-te-ftab-link,
body > .skiptranslate,
.skiptranslate {
  display: none !important;
}
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
body {
  top: 0 !important;
}
#google_translate_element {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
font[style] {
  background-color: transparent !important;
  box-shadow: none !important;
}
/* Google Translate font wrappers — prevent layout breakage */
.nav-desktop font,
.nav-link font,
.navbar font,
.nav-cta font,
.mm-nav font,
.mm-link font {
  white-space: nowrap !important;
  display: inline !important;
  font-size: inherit !important;
  font-family: inherit !important;
}
.navbar-inner font {
  font-size: inherit !important;
  font-family: inherit !important;
}

/* Hide old selectors */
.mm-lang-section {
  display: none;
}
.mm-lang {
  display: none;
}
.mm-footer {
  display: none;
}

/* ═══ Desktop Language Selector ═══ */
.nav-lang {
  position: relative;
  margin-left: 6px;
  flex-shrink: 0;
  z-index: 100;
}
.nav-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(200, 214, 229, 0.06);
  border: 1px solid rgba(200, 214, 229, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Plus Jakarta Sans', var(--font-h), sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-lang-btn:hover {
  background: rgba(200, 214, 229, 0.1);
  border-color: rgba(200, 214, 229, 0.18);
  color: #fff;
}
.nav-lang-btn svg {
  width: 14px;
  height: 14px;
  color: rgba(200, 214, 229, 0.5);
}
.nav-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: linear-gradient(170deg, #0e1015 0%, #0a0b0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s ease;
  z-index: 9999;
}
.nav-lang.open .nav-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-lang-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'DM Sans', var(--font-b), sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.nav-lang-dropdown button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.nav-lang-dropdown button.active {
  color: #c8d6e5;
  font-weight: 600;
  background: rgba(200, 214, 229, 0.06);
}

/* === 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: 680px;
  margin: 0 auto;
}
.video-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}
.video-hero-subtitle {
  font-family: var(--font-b);
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}
.hero-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 28px;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.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 — centered modern */
.video-hero-pause {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.video-hero-pause .vhp-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: vhpPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes vhpPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
    opacity: 0;
  }
}
.video-hero-pause:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%) scale(1.08);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.video-hero-pause:active {
  transform: translateX(-50%) scale(0.95);
}
.video-hero-pause.paused .icon-pause {
  display: none;
}
.video-hero-pause.paused .icon-play {
  display: block !important;
}

/* Scroll indicator — below center play btn */
.video-hero-scroll {
  position: absolute;
  bottom: 12px;
  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;
}
@media (max-width: 768px) {
  .hero-bg-glow {
    display: 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);
  -webkit-backdrop-filter: blur(10px);
  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%;
  position: absolute;
  top: 0;
  left: 0;
}
.macbook-screen .swiper-wrapper {
  height: 100%;
}
.macbook-screen .swiper-slide {
  position: relative;
  height: 100%;
}
.macbook-screen .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.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);
  -webkit-backdrop-filter: blur(16px);
  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(3, 1fr);
  gap: 20px;
}
/* Desktop-only info cards in services grid */
.svc-card-info {
  background: linear-gradient(145deg, #0d1117 0%, #161b22 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
}
.svc-card-info .svc-card-info-inner {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.svc-card-info .svc-card-info-badge {
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}
.svc-card-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.svc-card-info p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.svc-card-info .svc-card-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  margin-top: auto;
}
.svc-card-info:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #111720 0%, #1a2130 100%);
}
.svc-card-info:hover h3 {
  color: #c9a84c;
}
.svc-card-info:hover .svc-card-link {
  color: rgba(255, 255, 255, 0.6);
}
.desktop-only-card {
  display: flex;
}
@media (max-width: 768px) {
  .desktop-only-card {
    display: none !important;
  }
}
.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;
}

/* === REFERANSLARIMIZ — Infinite Marquee === */
.refs-section {
  overflow: hidden;
}
.refs-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  margin-bottom: 20px;
}
.refs-track {
  display: flex;
  gap: 28px;
  width: max-content;
  will-change: transform;
}
.refs-track--left {
  animation: marqueeLeft 60s linear infinite;
}
.refs-track--right {
  animation: marqueeRight 60s linear infinite;
}
@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.refs-marquee:hover .refs-track {
  animation-play-state: paused;
}
.ref-logo-card {
  flex-shrink: 0;
  width: 160px;
  height: 90px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 214, 229, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.ref-logo-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 214, 229, 0.2);
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(200, 214, 229, 0.08);
}
.ref-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sayaç */
.refs-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 214, 229, 0.08);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.refs-counter-item {
  text-align: center;
}
.refs-counter-num {
  display: block;
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c8d6e5, #f5f7fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.refs-counter-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text3);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.refs-counter-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(200, 214, 229, 0.2),
    transparent
  );
}

/* Responsive Refs */
@media (max-width: 768px) {
  .ref-logo-card {
    width: 130px;
    height: 72px;
    padding: 12px 16px;
    border-radius: 12px;
  }
  .refs-track {
    gap: 16px;
  }
  .refs-counter {
    gap: 20px;
    padding: 24px 16px;
    flex-wrap: wrap;
  }
  .refs-counter-num {
    font-size: 1.8rem;
  }
  .refs-counter-label {
    font-size: 0.75rem;
  }
  .refs-counter-divider {
    height: 36px;
  }
}
@media (max-width: 480px) {
  .ref-logo-card {
    width: 110px;
    height: 60px;
    padding: 10px 12px;
    border-radius: 10px;
  }
  .refs-track {
    gap: 12px;
  }
  .refs-marquee {
    margin-bottom: 14px;
  }
  .refs-counter {
    gap: 12px;
    padding: 20px 12px;
    border-radius: 14px;
  }
  .refs-counter-num {
    font-size: 1.5rem;
  }
  .refs-counter-divider {
    height: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .refs-track--left,
  .refs-track--right {
    animation: none;
  }
}

/* === 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(min(300px, 100%), 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;
}

/* === SOCIAL CARDS GRID — 2026 Premium Design === */
.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

/* === SOCIAL CARD — Ana Kart === */
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.social-card:hover {
  transform: translateY(-8px);
}

/* === PHONE MOCKUP === */
.social-card-phone {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 32px;
  padding: 8px;
  position: relative;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.4s ease;
}
.social-card:hover .social-card-phone {
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Notch */
.social-card-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 22px;
  background: #000;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

/* Screen */
.social-card-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Background gradients */
.social-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.social-card--instagram .social-card-bg {
  background: linear-gradient(
    145deg,
    #1a0a2e 0%,
    #2d1b4e 25%,
    #4a1942 50%,
    #2d1b4e 75%,
    #1a0a2e 100%
  );
}
.social-card--facebook .social-card-bg {
  background: linear-gradient(
    145deg,
    #0a1628 0%,
    #0d2137 25%,
    #1a3a5c 50%,
    #0d2137 75%,
    #0a1628 100%
  );
}
.social-card--linkedin .social-card-bg {
  background: linear-gradient(
    145deg,
    #0a1929 0%,
    #0d2844 25%,
    #0f3460 50%,
    #0d2844 75%,
    #0a1929 100%
  );
}
.social-card--whatsapp .social-card-bg {
  background: linear-gradient(
    145deg,
    #0a1f0a 0%,
    #0d2e14 25%,
    #1a4a2e 50%,
    #0d2e14 75%,
    #0a1f0a 100%
  );
}

/* Glow */
.social-card-glow {
  position: absolute;
  inset: -50%;
  opacity: 0.2;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.social-card--instagram .social-card-glow {
  background: radial-gradient(
    circle at 60% 40%,
    rgba(214, 41, 118, 0.45) 0%,
    rgba(79, 91, 213, 0.2) 30%,
    transparent 60%
  );
}
.social-card--facebook .social-card-glow {
  background: radial-gradient(
    circle at 50% 40%,
    rgba(24, 119, 242, 0.45) 0%,
    rgba(24, 119, 242, 0.15) 30%,
    transparent 60%
  );
}
.social-card--linkedin .social-card-glow {
  background: radial-gradient(
    circle at 50% 40%,
    rgba(10, 102, 194, 0.45) 0%,
    rgba(10, 102, 194, 0.15) 30%,
    transparent 60%
  );
}
.social-card--whatsapp .social-card-glow {
  background: radial-gradient(
    circle at 50% 40%,
    rgba(37, 211, 102, 0.45) 0%,
    rgba(37, 211, 102, 0.15) 30%,
    transparent 60%
  );
}
.social-card:hover .social-card-glow {
  opacity: 0.45;
}

/* Grid pattern */
.social-card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Logo inside phone */
.social-card-logo-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}
.social-card-logo-img {
  width: 70%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: all 0.4s ease;
}
.social-card:hover .social-card-logo-box {
  transform: scale(1.06);
}
.social-card:hover .social-card-logo-img {
  opacity: 1;
  filter: brightness(0) invert(1)
    drop-shadow(0 4px 20px rgba(255, 255, 255, 0.15));
}

/* Brand text inside phone — hidden when using logo image */
.social-card-brand {
  display: none;
}
.social-card-brand-sub {
  position: relative;
  z-index: 2;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
  text-align: center;
}

/* Platform badge top-right */
.social-card-platform-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 30px;
  height: 30px;
  opacity: 0.65;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.social-card-platform-badge svg {
  width: 100%;
  height: 100%;
}
.social-card:hover .social-card-platform-badge {
  opacity: 1;
  transform: scale(1.1);
}

/* Decorative line inside phone */
.social-card-screen::before {
  content: '';
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  z-index: 2;
}
.social-card--instagram .social-card-screen::before {
  background: linear-gradient(90deg, transparent, #d62976, transparent);
}
.social-card--facebook .social-card-screen::before {
  background: linear-gradient(90deg, transparent, #1877f2, transparent);
}
.social-card--linkedin .social-card-screen::before {
  background: linear-gradient(90deg, transparent, #0a66c2, transparent);
}
.social-card--whatsapp .social-card-screen::before {
  background: linear-gradient(90deg, transparent, #25d366, transparent);
}

/* Floating dot animation */
@keyframes scFloatDot {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translateY(-8px) scale(1.3);
    opacity: 0.5;
  }
}
.social-card-screen::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  bottom: 65px;
  left: 28%;
  z-index: 2;
  animation: scFloatDot 3.5s ease-in-out infinite;
}
.social-card--instagram .social-card-screen::after {
  background: #d62976;
}
.social-card--facebook .social-card-screen::after {
  background: #1877f2;
}
.social-card--linkedin .social-card-screen::after {
  background: #0a66c2;
}
.social-card--whatsapp .social-card-screen::after {
  background: #25d366;
}

/* === LABEL — Telefon Altı Bilgi === */
.social-card-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
  width: 100%;
  max-width: 240px;
}
.social-card:hover .social-card-label {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}
.social-card-label-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.social-card-label-icon svg {
  width: 100%;
  height: 100%;
}
.social-card-label-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.social-card-label-name {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}
.social-card-label-handle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Platform-specific label accent on hover */
.social-card--instagram:hover .social-card-label {
  border-color: rgba(214, 41, 118, 0.25);
}
.social-card--facebook:hover .social-card-label {
  border-color: rgba(24, 119, 242, 0.25);
}
.social-card--linkedin:hover .social-card-label {
  border-color: rgba(10, 102, 194, 0.25);
}
.social-card--whatsapp:hover .social-card-label {
  border-color: rgba(37, 211, 102, 0.25);
}

/* === RESPONSIVE — Social Cards === */
@media (max-width: 1024px) {
  .social-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .social-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  .social-card-phone {
    max-width: 100%;
    border-radius: 24px;
    padding: 6px;
    border-width: 1.5px;
  }
  .social-card-notch {
    height: 16px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .social-card-screen {
    border-radius: 18px;
  }
  .social-card-logo-box {
    margin-bottom: 0;
  }
  .social-card-logo-img {
    width: 65%;
    max-width: 120px;
  }
  .social-card-brand {
    display: none;
  }
  .social-card-brand-sub {
    display: none;
  }
  .social-card-platform-badge {
    width: 22px;
    height: 22px;
    top: 12px;
    right: 12px;
  }
  .social-card-label {
    margin-top: 12px;
    padding: 10px 14px;
    gap: 10px;
    border-radius: 12px;
    max-width: 100%;
  }
  .social-card-label-icon {
    width: 22px;
    height: 22px;
  }
  .social-card-label-name {
    font-size: 0.75rem;
  }
  .social-card-label-handle {
    font-size: 0.65rem;
  }
  .social-card-screen::before {
    bottom: 32px;
    width: 28px;
  }
  .social-card-screen::after {
    bottom: 44px;
  }
}
@media (max-width: 380px) {
  .social-cards-grid {
    gap: 12px;
  }
  .social-card-logo-box {
    margin-bottom: 0;
  }
  .social-card-logo-img {
    width: 60%;
    max-width: 100px;
  }
  .social-card-brand {
    display: none;
  }
  .social-card-brand-sub {
    display: none;
  }
  .social-card-label {
    padding: 8px 10px;
    gap: 8px;
  }
  .social-card-label-name {
    font-size: 0.68rem;
  }
  .social-card-label-handle {
    font-size: 0.6rem;
  }
}

.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;
}

/* === REVIEWS SECTION — Cream Light Theme === */
.reviews-section {
  background-color: #f7f3ee;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(180, 160, 130, 0.3),
    transparent
  );
}
.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}
.reviews-title {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.reviews-section .reviews-subtitle,
.reviews-header p.reviews-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #000 !important;
  font-weight: 400;
}
/* Animated border glow keyframes */
@keyframes reviewCardBorderGlow {
  0%,
  100% {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow:
      0 2px 20px rgba(0, 0, 0, 0.04),
      0 0 0 0px rgba(0, 0, 0, 0);
  }
  50% {
    border-color: rgba(0, 0, 0, 0.28);
    box-shadow:
      0 2px 20px rgba(0, 0, 0, 0.04),
      0 0 8px 1px rgba(0, 0, 0, 0.06);
  }
}

.reviews-section .review-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  /* Equal height */
  height: 100%;
  display: flex;
  flex-direction: column;
  /* Animated border glow */
  animation: reviewCardBorderGlow 3s ease-in-out infinite;
}
.reviews-section .review-card:hover {
  border-color: rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  animation-play-state: paused;
}
/* Stagger the glow animation per slide for an elegant wave effect */
.reviewsSwiper .swiper-slide:nth-child(4n + 2) .review-card {
  animation-delay: 0.75s;
}
.reviewsSwiper .swiper-slide:nth-child(4n + 3) .review-card {
  animation-delay: 1.5s;
}
.reviewsSwiper .swiper-slide:nth-child(4n + 4) .review-card {
  animation-delay: 2.25s;
}
.reviews-section .review-header {
  margin-bottom: 10px;
}
.reviews-section .review-header h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
}
.reviews-section .review-stars span {
  color: #e8b400;
  font-size: 0.95rem;
}
.reviews-section .review-text {
  font-size: 0.86rem;
  color: #4a4a5a;
  line-height: 1.75;
  flex: 1;
}
.reviews-section .review-nav {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1a1a2e;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.reviews-section .review-nav:hover {
  background: #1a1a2e;
  border-color: #1a1a2e;
  color: #fff;
}
.reviews-section .reviews-link {
  color: #1a1a2e;
  border-bottom-color: rgba(0, 0, 0, 0.15);
}
.reviews-section .reviews-link:hover {
  color: #6b6b7b;
  border-bottom-color: #6b6b7b;
  text-shadow: none;
}

/* === 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);
}

/* ═══════ MAP STRIP (Footer Üstü) ═══════ */
.map-strip {
  padding: 0;
  background: var(--bg);
  display: none;
}
@media (max-width: 768px) {
  .map-strip {
    display: block;
  }
}
.map-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 0;
}
.map-strip-frame {
  width: 100%;
  height: 260px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  border: 1px solid rgba(200, 214, 229, 0.08);
  border-bottom: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.map-strip-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0.82) contrast(1.1) saturate(0.85);
  transition: filter 0.4s ease;
}
.map-strip-frame:hover iframe {
  filter: brightness(0.92) contrast(1.05) saturate(1);
}
.map-strip-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(200, 214, 229, 0.04);
  border: 1px solid rgba(200, 214, 229, 0.08);
  border-top: none;
  border-radius: 0 0 14px 14px;
}
.map-strip-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(200, 214, 229, 0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
}
.map-strip-info svg {
  color: var(--gold);
  flex-shrink: 0;
}
.map-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid rgba(200, 168, 78, 0.25);
  border-radius: 8px;
  background: rgba(200, 168, 78, 0.06);
  transition: all 0.3s ease;
}
.map-strip-btn:hover {
  background: rgba(200, 168, 78, 0.14);
  border-color: rgba(200, 168, 78, 0.5);
  box-shadow: 0 0 16px rgba(200, 168, 78, 0.12);
}

.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 — 2026 Cream Checkered Premium
   ═══════════════════════════════════════════ */
.footer {
  padding: 0;
  background-color: #f7f3ee;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: #3a3a4a;
}
.footer-main {
  padding: 60px 0 0;
}
.footer-main > .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

/* ── Brand Block ── */
.ft-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 380px;
  margin: 0;
  flex-shrink: 0;
}
.ft-logo-link {
  display: block;
  margin-bottom: 14px;
}
.ft-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.ft-slogan {
  display: block;
  font-family: 'DM Sans', var(--font-b), sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(26, 26, 46, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ft-desc {
  font-family: 'DM Sans', var(--font-b), sans-serif;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(26, 26, 46, 0.55);
  margin: 0;
  max-width: 420px;
}

/* ── Footer Mini Map ── */
.ft-map {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  align-self: flex-start;
  display: flex;
  flex-direction: column;
}
.ft-map iframe {
  display: block;
  width: 100%;
  height: 160px;
}
.ft-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
  font-family: 'DM Sans', var(--font-b), sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(26, 26, 46, 0.6);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}
.ft-map-btn svg {
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
.ft-map-btn:hover {
  color: #1a1a2e;
  background: rgba(255, 255, 255, 0.95);
}
.ft-map-btn:hover svg {
  opacity: 1;
}

/* ── Contact Strip — Centered, compact, side-by-side ── */
.ft-contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.ft-contact-items {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.ft-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', var(--font-b), sans-serif;
  font-size: 0.76rem;
  color: rgba(26, 26, 46, 0.65);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.ft-contact-link svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}
.ft-contact-link:hover {
  color: #1a1a2e;
  background: rgba(0, 0, 0, 0.04);
}
.ft-contact-link:hover svg {
  opacity: 1;
}
.ft-contact-link span {
  line-height: 1.4;
}
.ft-contact-divider {
  display: block;
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.12);
  margin: 0 4px;
}

/* Social Icons */
.ft-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
}
.ft-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(26, 26, 46, 0.12);
  color: rgba(26, 26, 46, 0.5);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ft-social a:hover {
  border-color: rgba(26, 26, 46, 0.3);
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ── Navigation Row ── */
.ft-nav-row {
  display: flex;
  justify-content: flex-end;
  gap: 60px;
  padding-top: 0;
  border-top: none;
  flex-shrink: 0;
}
.ft-nav-col h4 {
  font-family: 'Space Grotesk', var(--font-h), sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(26, 26, 46, 0.75);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ft-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-nav-col ul li a {
  font-family: 'DM Sans', var(--font-b), sans-serif;
  font-size: 0.85rem;
  color: rgba(26, 26, 46, 0.55);
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}
.ft-nav-col ul li a:hover {
  color: #1a1a2e;
  padding-left: 6px;
}

/* ── Bottom Bar ── */
.ft-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.03);
}
.ft-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ft-bottom p {
  font-family: 'DM Sans', var(--font-b), sans-serif;
  font-size: 0.75rem;
  color: rgba(26, 26, 46, 0.35);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ── Credit Bar ── */
.ft-credit {
  padding: 14px 0;
  background: rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.ft-credit .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ft-credit p {
  font-family: 'DM Sans', var(--font-b), sans-serif;
  font-size: 0.68rem;
  color: rgba(26, 26, 46, 0.3);
  margin: 0;
  letter-spacing: 0.8px;
}
.ft-credit a {
  color: rgba(26, 26, 46, 0.45);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
  border-bottom: 1px solid rgba(26, 26, 46, 0.1);
  padding-bottom: 1px;
}
.ft-credit a:hover {
  color: rgba(26, 26, 46, 0.8);
  border-bottom-color: rgba(26, 26, 46, 0.3);
}

/* ── Footer Responsive ── */
@media (max-width: 768px) {
  .footer-main > .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .footer-main {
    padding: 50px 0 0;
  }
  .ft-brand {
    align-items: center;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
  }
  .ft-logo-img {
    height: 42px;
  }
  .ft-map {
    display: none;
  }
  .ft-desc {
    font-size: 0.82rem;
    padding: 0 12px;
  }
  .ft-contact-strip {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
    margin-top: 32px;
  }
  .ft-contact-items {
    flex-direction: column;
    gap: 8px;
  }
  .ft-contact-divider {
    display: none;
  }
  .ft-contact-link {
    font-size: 0.74rem;
    white-space: normal;
    text-align: center;
    max-width: 100%;
    word-break: break-word;
  }
  .ft-social {
    justify-content: center;
  }
  .ft-nav-row {
    justify-content: center;
    gap: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 32px 0 0;
  }
  .ft-brand {
    margin-bottom: 20px;
  }
  .ft-logo-img {
    height: 38px;
  }
  .ft-slogan {
    font-size: 0.48rem;
    letter-spacing: 2px;
  }
  .ft-desc {
    font-size: 0.8rem;
  }
  .ft-contact-strip {
    padding: 20px 12px;
  }
  .ft-contact-link {
    font-size: 0.7rem;
    padding: 5px 8px;
  }
  .ft-nav-row {
    gap: 32px;
  }
  .ft-nav-col h4 {
    font-size: 0.65rem;
  }
  .ft-nav-col ul li a {
    font-size: 0.8rem;
  }
  .ft-social a {
    width: 32px;
    height: 32px;
  }
}

/* === PHONE FLOAT === */
.phone-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: rgba(15, 20, 30, 0.95);
  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: 158px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 998;
  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 {
  -webkit-appearance: none;
  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;
}

/* === 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(3, 1fr);
  gap: 24px;
}
.faaliyet-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  aspect-ratio: 3 / 4;
  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-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .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;
    position: relative;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    order: 2;
    flex: none;
    align-items: center;
    z-index: 1;
    pointer-events: auto;
    max-width: 55%;
  }
  .nav-desktop,
  .nav-cta,
  .nav-lang {
    display: none;
  }
  .hamburger {
    display: flex;
    order: 1;
    z-index: 10;
    position: relative;
  }
  .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 {
    grid-template-columns: repeat(2, 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(1.2rem, 4.5vw, 1.8rem);
    letter-spacing: 3px;
  }
  .video-hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
  .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: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
  }
  .video-hero-pause:hover {
    transform: translateX(-50%) scale(1.08);
  }
  .video-hero-pause:active {
    transform: translateX(-50%) scale(0.95);
  }
  .video-hero-pause .vhp-ring {
    inset: -4px;
  }
  .video-hero-scroll {
    bottom: 24px;
  }

  /* phone-frame removed — now uses social-card-phone */
  .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 {
    aspect-ratio: 4 / 3;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  /* 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;
  }
  /* Map Strip */
  .map-strip-inner {
    padding: 0 16px;
  }
  .map-strip-frame {
    height: 220px;
  }
  .map-strip-bar {
    padding: 12px 18px;
  }
}

@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;
  }
  .map-strip-inner {
    padding: 0 12px;
  }
  .map-strip-frame {
    height: 180px;
    border-radius: 10px 10px 0 0;
  }
  .map-strip-bar {
    padding: 10px 14px;
    border-radius: 0 0 10px 10px;
    flex-direction: column;
    gap: 10px;
  }
  .map-strip-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.75rem;
    padding: 10px 16px;
  }

  .stat-item h3 {
    font-size: 1.8rem;
  }
  .logo-img {
    height: 38px;
  }
  .logo-subtitle {
    font-size: 0.44rem;
    letter-spacing: 1.5px;
  }
  .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;
  }

  .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;
  }
  .vm-card {
    padding: 24px 20px;
  }
  .kurumsal-image img {
    height: 220px;
  }
}

/* === 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 removed — now uses social-cards-grid */

@media (max-width: 768px) {
  .reviews-slider-wrap,
  .blog-slider-wrap {
    padding: 0 30px;
  }
  .review-nav,
  .blog-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .reviews-slider-wrap,
  .blog-slider-wrap {
    padding: 0 24px;
  }
  .review-nav-prev,
  .blog-nav-prev {
    left: -2px;
  }
  .review-nav-next,
  .blog-nav-next {
    right: -2px;
  }
}

/* ================================================================
   KURUMSAL PAGE — 2026 Corporate Design System (Tabipler OSGB)
   ================================================================ */

/* — Hero Overrides — */
.kurumsal-hero .page-hero-bg {
  filter: brightness(0.45) contrast(1.1);
}
.corp-title {
  font-family: 'Space Grotesk', var(--font-h);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}
.corp-subtitle {
  font-family: 'DM Sans', var(--font-b);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.corp-hero-btn {
  font-family: 'Space Grotesk', var(--font-h);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  margin-top: 24px;
}

/* — Section Titles — */
.corp-section-title {
  font-family: 'Space Grotesk', var(--font-h);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

/* — Body Text — */
.corp-text {
  font-family: 'DM Sans', var(--font-b);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text2);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.corp-subtitle-text {
  font-family: 'DM Sans', var(--font-b);
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto;
}

/* — Highlight Box — */
.corp-highlight-box {
  margin-top: 28px;
  padding: 28px 32px;
  background: linear-gradient(
    135deg,
    rgba(200, 214, 229, 0.08) 0%,
    rgba(143, 167, 196, 0.04) 100%
  );
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
}
.corp-highlight-box .corp-text {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* — Stats Section — */
.corp-stats-section {
  padding: 0 !important;
  margin: -40px 0 0 0;
  position: relative;
  z-index: 2;
}
.corp-stats-banner {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.corp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.corp-stat-item {
  padding: 16px;
  position: relative;
}
.corp-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}
.corp-stat-number {
  display: block;
  font-family: 'Space Grotesk', var(--font-h);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.corp-stat-label {
  display: block;
  font-family: 'DM Sans', var(--font-b);
  font-size: 0.82rem;
  color: var(--text3);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* — Services Grid — */
.corp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.corp-service-card {
  padding: 40px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.corp-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.corp-service-card:hover {
  border-color: rgba(200, 214, 229, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.corp-service-card:hover::before {
  transform: scaleX(1);
}
.corp-service-icon {
  margin-bottom: 20px;
}
.corp-service-title {
  font-family: 'Space Grotesk', var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.corp-service-desc {
  font-family: 'DM Sans', var(--font-b);
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.75;
}

/* — VM Cards Upgrade — */
.corp-vm-card {
  background: linear-gradient(
    180deg,
    var(--card) 0%,
    rgba(200, 214, 229, 0.03) 100%
  );
}
.corp-vm-card .vm-title {
  font-family: 'Space Grotesk', var(--font-h);
  letter-spacing: -0.01em;
}
.corp-vm-card .vm-text {
  font-family: 'DM Sans', var(--font-b);
}
.corp-vm-card .vm-list li {
  font-family: 'DM Sans', var(--font-b);
}

/* — Info Grid (Belgeler, İnsan Kaynakları) — */
.corp-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.corp-info-card {
  padding: 36px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: all 0.35s ease;
}
.corp-info-card:hover {
  border-color: rgba(200, 214, 229, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.corp-info-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.corp-info-card h3 {
  font-family: 'Space Grotesk', var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.corp-info-card p {
  font-family: 'DM Sans', var(--font-b);
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.7;
}

/* — Responsive: Kurumsal 2026 — */
@media (max-width: 1200px) {
  .corp-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .corp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .corp-stat-item:nth-child(2)::after {
    display: none;
  }
  .corp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .corp-stats-section {
    margin-top: -20px;
  }
  .corp-stats-banner {
    padding: 32px 20px;
    border-radius: 14px;
  }
  .corp-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .corp-stat-item::after {
    display: none !important;
  }
  .corp-stat-number {
    font-size: 2rem;
  }
  .corp-services-grid {
    grid-template-columns: 1fr;
  }
  .corp-service-card {
    padding: 28px 24px;
  }
  .corp-info-grid {
    grid-template-columns: 1fr;
  }
  .corp-highlight-box {
    padding: 20px 24px;
  }
  .corp-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
}

/* ═══════════════════════════════════
   HİZMET SLIDER — 2026 Gold Frame
   ═══════════════════════════════════ */

.hizmet-slider-section {
  padding: 50px 0;
  overflow: hidden;
}

.hslider-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 4px;
  background: linear-gradient(
    135deg,
    #c8a84e 0%,
    #f5e6a3 25%,
    #c8a84e 50%,
    #f5e6a3 75%,
    #c8a84e 100%
  );
  background-size: 300% 300%;
  animation: goldShimmer 4s ease infinite;
  box-shadow:
    0 0 40px rgba(200, 168, 78, 0.15),
    0 0 80px rgba(200, 168, 78, 0.06);
}

@keyframes goldShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hslider-track {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
}

.hslider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hslider-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hslider-card {
  position: relative;
  width: 100%;
  height: 100%;
}

.hslider-img-wrap {
  position: absolute;
  inset: 0;
}

.hslider-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hslider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(5, 10, 16, 0.85) 0%,
    rgba(5, 10, 16, 0.35) 50%,
    rgba(5, 10, 16, 0.1) 100%
  );
}

.hslider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 44px;
  z-index: 2;
}

.hslider-brand {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: #c8a84e;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.85;
}

.hslider-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 14px 0;
}

.hslider-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #c8a84e, #f5e6a3);
  border-radius: 2px;
}

/* Nav Buttons */
.hslider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 168, 78, 0.4);
  background: rgba(5, 10, 16, 0.6);
  backdrop-filter: blur(8px);
  color: #c8a84e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hslider-nav:hover {
  background: rgba(200, 168, 78, 0.15);
  border-color: rgba(200, 168, 78, 0.7);
  box-shadow: 0 0 20px rgba(200, 168, 78, 0.2);
}

.hslider-prev {
  left: -56px;
}
.hslider-next {
  right: -56px;
}

/* Dots */
.hslider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.hslider-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 168, 78, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}
.hslider-dot::before {
  content: '';
  position: absolute;
  inset: -18px;
}

.hslider-dot.active {
  background: #c8a84e;
  border-color: #c8a84e;
  box-shadow: 0 0 10px rgba(200, 168, 78, 0.4);
  transform: scale(1.25);
}

.hslider-dot:hover:not(.active) {
  border-color: rgba(200, 168, 78, 0.7);
  background: rgba(200, 168, 78, 0.2);
}

/* Responsive */
@media (max-width: 1060px) {
  .hslider-prev {
    left: 12px;
  }
  .hslider-next {
    right: 12px;
  }
}

@media (max-width: 768px) {
  .hizmet-slider-section {
    padding: 70px 0;
  }
  .hslider-wrap {
    max-width: 100%;
    border-radius: 14px;
    padding: 3px;
  }
  .hslider-track {
    border-radius: 12px;
  }
  .hslider-content {
    padding: 28px 28px;
  }
  .hslider-title {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }
  .hslider-nav {
    width: 40px;
    height: 40px;
  }
  .hslider-prev {
    left: 10px;
  }
  .hslider-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hizmet-slider-section {
    padding: 50px 0;
  }
  .hslider-wrap {
    padding: 2px;
    border-radius: 12px;
  }
  .hslider-track {
    border-radius: 10px;
    aspect-ratio: 4 / 3;
  }
  .hslider-content {
    padding: 20px 20px;
  }
  .hslider-brand {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }
  .hslider-title {
    font-size: 1.05rem;
  }
  .hslider-nav {
    width: 40px;
    height: 40px;
  }
  .hslider-dots {
    gap: 8px;
    margin-top: 18px;
  }
  .hslider-dot {
    width: 7px;
    height: 7px;
  }
}

/* ═══════════════════════════════════
   REFERANSLAR — 3'lü Gold Grid
   ═══════════════════════════════════ */

.refs-gold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.refs-gold-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 24px;
  background: rgba(200, 214, 229, 0.03);
  border: 1px solid rgba(200, 168, 78, 0.18);
  border-radius: 14px;
  transition: all 0.4s ease;
}

.refs-gold-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(200, 168, 78, 0.3),
    rgba(245, 230, 163, 0.1),
    rgba(200, 168, 78, 0.3)
  );
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.refs-gold-card:hover {
  background: rgba(200, 168, 78, 0.06);
  border-color: rgba(200, 168, 78, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 168, 78, 0.08);
}

.refs-gold-card:hover::before {
  opacity: 1;
  animation: goldShimmer 3s ease infinite;
}

.refs-gold-card img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
  transition: filter 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
}

.refs-gold-card:hover img {
  filter: brightness(1.05) contrast(1.1);
}

@media (max-width: 768px) {
  .refs-gold-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .refs-gold-card {
    padding: 18px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .refs-gold-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .refs-gold-card {
    padding: 14px;
    border-radius: 10px;
  }
}

/* ═══════ KURUMSAL - HİZMET ÖZETİ CHECK LIST ═══════ */
.corp-check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.corp-check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
}
.corp-check-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}

/* ═══════ KURUMSAL - ÖZEL ÇÖZÜMLER GRID ═══════ */
.corp-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.corp-solution-item {
  background: var(--card);
  border: 1px solid rgba(200, 214, 229, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.corp-solution-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(200, 214, 229, 0.08);
}
.corp-solution-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
.corp-solution-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .corp-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .corp-solutions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .corp-solution-item {
    padding: 1.5rem 1rem;
  }
}

/* ═══════ KURUMSAL - TEK ELDEN MODEL ═══════ */
.corp-tek-elden-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.corp-tek-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border: 1px solid rgba(200, 214, 229, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.corp-tek-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200, 214, 229, 0.06);
}
.corp-tek-check {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}
.corp-tek-item p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .corp-tek-elden-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════ KURUMSAL - NFPA LİST ═══════ */
.corp-nfpa-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.corp-nfpa-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
  background: var(--card);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(200, 214, 229, 0.08);
  transition: all 0.3s ease;
}
.corp-nfpa-list li:hover {
  border-color: #f44336;
  box-shadow: 0 4px 20px rgba(244, 67, 54, 0.08);
}
.nfpa-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ═══════ KURUMSAL - DEĞER KATKI GRID ═══════ */
.corp-deger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.corp-deger-item {
  background: var(--card);
  border: 1px solid rgba(200, 214, 229, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.corp-deger-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(200, 214, 229, 0.08);
}
.corp-deger-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.corp-deger-item h4 {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.corp-deger-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1024px) {
  .corp-deger-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .corp-deger-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ═══════ FAALİYET ALANLARI - A-E KATEGORİLER ═══════ */
.ae-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ae-category {
  background: var(--card);
  border: 1px solid rgba(200, 214, 229, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.ae-category:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(200, 214, 229, 0.06);
}
.ae-category:last-child {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}
.ae-cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 214, 229, 0.1);
}
.ae-cat-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), #a0b4c8);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 12px;
  flex-shrink: 0;
}
.ae-cat-title {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0;
}
.ae-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ae-cat-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.ae-cat-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}
.ae-cat-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1rem 0;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.ae-tagline {
  text-align: center;
  margin-top: 3rem;
}
.ae-tagline p {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .ae-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ae-category:last-child {
    max-width: 100%;
  }
  .ae-category {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .ae-cat-letter {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .ae-cat-title {
    font-size: 1.05rem;
  }
}

/* ═══════ ANASAYFA - REFERANS MARQUEE ═══════ */
.refs-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.refs-marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  will-change: transform;
}
.refs-marquee-left {
  animation: marqueeLeft 80s linear infinite;
}
.refs-marquee-right {
  animation: marqueeRight 90s linear infinite;
}
.refs-marquee-item {
  flex-shrink: 0;
  width: 160px;
  height: 90px;
  background: transparent;
  border: 1px solid rgba(200, 175, 120, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.refs-marquee-item:hover {
  border-color: rgba(200, 175, 120, 0.5);
  transform: scale(1.08);
  box-shadow:
    0 0 20px rgba(200, 175, 120, 0.08),
    inset 0 0 20px rgba(200, 175, 120, 0.03);
}
.refs-marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: all 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
}
.refs-marquee:hover .refs-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .refs-marquee-item {
    width: 130px;
    height: 72px;
    padding: 12px 16px;
    border-radius: 12px;
  }
  .refs-marquee-track {
    gap: 1.25rem;
  }
  .refs-marquee-left {
    animation-duration: 60s;
  }
  .refs-marquee-right {
    animation-duration: 70s;
  }
}
@media (max-width: 480px) {
  .refs-marquee-item {
    width: 110px;
    height: 60px;
    padding: 10px 14px;
    border-radius: 10px;
  }
  .refs-marquee-track {
    gap: 1rem;
  }
  .refs-marquee-left {
    animation-duration: 50s;
  }
  .refs-marquee-right {
    animation-duration: 55s;
  }
}

/* ═══════ GALERİ — 3 KUTU SLIDER ═══════ */
/* ═══════ GALERİ STRIP — Yatay Kaydırmalı 2026 ═══════ */
.galeri-section {
  overflow: hidden;
  padding-bottom: 48px;
}

/* Logo başlık */
.galeri-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.galeri-header-logo {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
}
.galeri-header-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.galeri-header-label {
  display: none;
}

/* Strip container */
.galeri-strip {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
}

.galeri-strip-track {
  display: flex;
  gap: 16px;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  will-change: transform;
  transition: none;
}
.galeri-strip-track.dragging {
  cursor: grabbing;
}
.galeri-strip-track.snapping {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Her kart */
.galeri-strip-item {
  flex: 0 0 auto;
  width: 280px;
}

.galeri-strip-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
}

.galeri-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.galeri-strip-card:hover img {
  transform: scale(1.06);
}

/* Gold rotating border */
.galeri-strip-border {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  z-index: 3;
}
.galeri-strip-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--g-border-angle, 0deg),
    transparent 0%,
    rgba(200, 168, 78, 0.08) 15%,
    rgba(200, 168, 78, 0.5) 25%,
    rgba(245, 206, 106, 0.8) 30%,
    rgba(200, 168, 78, 0.5) 35%,
    rgba(200, 168, 78, 0.08) 45%,
    transparent 55%,
    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: galBorderSpin 4s linear infinite;
}
@property --g-border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes galBorderSpin {
  to {
    --g-border-angle: 360deg;
  }
}

/* Caption — kart altı metin */
.galeri-strip-caption {
  display: block;
  margin-top: 10px;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.galeri-strip-item:hover .galeri-strip-caption {
  color: var(--gold);
}

/* Progress bar */
.galeri-progress {
  width: 100%;
  max-width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin: 1.5rem auto 0;
  overflow: hidden;
}
.galeri-progress-bar {
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, var(--gold), rgba(245, 206, 106, 0.9));
  border-radius: 2px;
  transition:
    width 0.15s ease,
    transform 0.15s ease;
}

/* Tablet */
@media (max-width: 1024px) {
  .galeri-strip-item {
    width: 240px;
  }
}
/* Mobil */
@media (max-width: 768px) {
  .galeri-header-logo {
    height: 56px;
  }
  .galeri-header {
    margin-bottom: 1.8rem;
  }
  .galeri-strip-item {
    width: 200px;
  }
  .galeri-strip-card {
    border-radius: 12px;
  }
  .galeri-strip-border::before {
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .galeri-strip-item {
    width: 170px;
  }
  .galeri-strip-card {
    aspect-ratio: 2.5 / 4;
  }
  .galeri-strip {
    gap: 12px;
  }
  .galeri-strip-caption {
    font-size: 0.65rem;
    margin-top: 8px;
  }
}

/* ═══════ VIDEO SHOWCASE SECTION ═══════ */
.video-showcase-section {
  background-color: #f7f3ee;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
}
.video-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(180, 160, 130, 0.3),
    transparent
  );
}
/* Logo + Slogan Area */
.vshowcase-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.vshowcase-logo {
  height: 72px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(18%) sepia(60%) saturate(600%)
    hue-rotate(190deg) brightness(95%) contrast(90%);
  margin-bottom: 10px;
}
.vshowcase-slogan {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #3a5a8c;
  letter-spacing: 1.5px;
  opacity: 0.85;
}
.vshowcase-brand-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3a7bd5, transparent);
  margin-top: 16px;
  border-radius: 2px;
}

/* Grid: masaüstü yan yana — tam genişlik */
.vshowcase-grid {
  position: relative;
  overflow: visible;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.vshowcase-track {
  display: flex;
  gap: 0;
  align-items: stretch;
  position: relative;
}
.vshowcase-item {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}

/* Yanlardaki mavi dikey glow efektleri */
.vshowcase-item:first-child::before,
.vshowcase-item:last-child::after {
  content: '';
  position: absolute;
  top: 10%;
  width: 1px;
  height: 80%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(58, 123, 213, 0.08) 20%,
    rgba(58, 123, 213, 0.25) 50%,
    rgba(58, 123, 213, 0.08) 80%,
    transparent 100%
  );
  z-index: 2;
}
.vshowcase-item:first-child::before {
  left: -8px;
}
.vshowcase-item:last-child::after {
  right: -8px;
}

/* Ortadaki dikey mavi çizgi ayırıcı */
.vshowcase-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  flex-shrink: 0;
  position: relative;
}
.vshowcase-divider-line {
  width: 1.5px;
  height: 75%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(58, 123, 213, 0.1) 10%,
    rgba(58, 123, 213, 0.45) 35%,
    rgba(58, 123, 213, 0.6) 50%,
    rgba(58, 123, 213, 0.45) 65%,
    rgba(58, 123, 213, 0.1) 90%,
    transparent 100%
  );
  border-radius: 2px;
  position: relative;
  box-shadow: 0 0 6px rgba(58, 123, 213, 0.15);
}
.vshowcase-divider-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background: #3a7bd5;
  border-radius: 50%;
  box-shadow:
    0 0 10px rgba(58, 123, 213, 0.5),
    0 0 20px rgba(58, 123, 213, 0.2);
}
/* Ortadaki çizginin üst ve alt uç noktaları */
.vshowcase-divider-line::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: rgba(58, 123, 213, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(58, 123, 213, 0.25);
}

/* Animated border glow for video cards — mavi ton */
@keyframes vshowcaseBorderGlow {
  0%,
  100% {
    box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.08),
      0 0 0 1px rgba(58, 123, 213, 0.12),
      0 0 0 0 rgba(58, 123, 213, 0);
  }
  50% {
    box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.08),
      0 0 0 1.5px rgba(58, 123, 213, 0.32),
      0 0 10px 2px rgba(58, 123, 213, 0.06);
  }
}

.vshowcase-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a2e;
  border: 1px solid rgba(58, 123, 213, 0.15);
  animation: vshowcaseBorderGlow 3s ease-in-out infinite;
  transition: transform 0.4s ease;
}
.vshowcase-card:hover {
  transform: translateY(-5px);
  animation-play-state: paused;
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.14),
    0 0 0 1.5px rgba(58, 123, 213, 0.35),
    0 0 12px 2px rgba(58, 123, 213, 0.08);
}
/* Stagger glow */
.vshowcase-item:nth-child(2) .vshowcase-card {
  animation-delay: 1.5s;
}
.vshowcase-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vshowcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 18px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  pointer-events: none;
}
.vshowcase-label {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Mobil nav — desktop'ta gizli */
.vshowcase-nav {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.vshowcase-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(26, 26, 46, 0.15);
  background: #fff;
  color: #1a1a2e;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.vshowcase-btn:hover {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}
.vshowcase-dots {
  display: flex;
  gap: 8px;
}
.vshowcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.18);
  transition: all 0.3s ease;
  cursor: pointer;
}
.vshowcase-dot.active {
  background: #1a1a2e;
  width: 24px;
  border-radius: 4px;
}

/* Açıklama metni */
.vshowcase-description {
  text-align: center;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  color: #4a5568;
  max-width: 720px;
  margin: 40px auto 0;
  letter-spacing: 0.2px;
  opacity: 0.9;
  position: relative;
  padding: 0 20px;
}
.vshowcase-description::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #3a7bd5, #6fa3ef);
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* Mobil: yatay kaydırma */
@media (max-width: 768px) {
  .vshowcase-brand {
    margin-bottom: 28px;
  }
  .vshowcase-logo {
    height: 54px;
  }
  .vshowcase-slogan {
    font-size: 0.7rem;
  }
  .vshowcase-grid {
    padding: 0 8px;
    overflow: hidden;
  }
  .vshowcase-item:first-child::before,
  .vshowcase-item:last-child::after {
    display: none;
  }
  .vshowcase-divider {
    display: none;
  }
  .vshowcase-track {
    gap: 0;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .vshowcase-item {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
  }
  .vshowcase-card {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }
  .vshowcase-nav {
    display: flex;
  }
  .vshowcase-label {
    font-size: 0.74rem;
  }
  .vshowcase-overlay {
    padding: 18px 16px 14px;
  }
  .vshowcase-description {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 28px;
    max-width: 90%;
    padding: 0 16px;
  }
  .vshowcase-description::before {
    margin-bottom: 16px;
  }
}
