html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@600;700;800&display=swap');

/* ===== Executive Summit tarzı hero slider ===== */
.hero-executive {
  position: relative;
  width: 100%;
  margin-top: 100px;
  height: min(751px, calc(100vh - 100px));
  min-height: 480px;
  overflow: hidden;
  background: #131b2e;
}

.hero-executive-track {
  position: relative;
  height: 100%;
}

.hero-executive-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-executive-slide-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}

.hero-executive-slide-exit-left {
  opacity: 0;
  z-index: 1;
}

.hero-executive-slide-exit-right {
  opacity: 0;
  z-index: 1;
}

.hero-executive-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 8s cubic-bezier(0.25, 0.1, 0.25, 1),
              opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-executive-slide-active .hero-executive-bg {
  transform: scale(1);
}

.hero-executive-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.78) 100%),
    rgba(0, 0, 0, 0.22);
  transition: opacity 0.85s ease;
}

.hero-executive-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.25rem 6rem;
  max-width: 1280px;
  margin: 0 auto;
  pointer-events: none;
}

.hero-executive-content > * {
  pointer-events: auto;
}

.hero-executive-content > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-executive-slide-active .hero-executive-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.hero-executive-slide-active .hero-executive-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}

.hero-executive-slide-active .hero-executive-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.36s;
}

.hero-executive-slide-active .hero-executive-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.48s;
}

.hero-executive-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5c4c6;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.hero-executive-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.5rem;
  max-width: 900px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-executive-meta {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 2rem;
  max-width: 700px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-executive-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 1rem 2rem;
  background: #d6252a;
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, background 0.2s ease;
}

.hero-executive-cta:hover {
  background: #b81f24;
  color: #fff !important;
  text-decoration: none;
  transform: scale(0.98);
}

.hero-executive-dots {
  position: absolute;
  right: 1.25rem;
  bottom: 6rem;
  z-index: 6;
  pointer-events: auto;
  display: flex;
  gap: 0.5rem;
}

.hero-executive-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.hero-executive-dot.active {
  width: 28px;
  background: #d6252a;
  opacity: 1;
  box-shadow: 0 0 12px rgba(214, 37, 42, 0.55);
}

.hero-executive.hero-executive-cursor-prev {
  cursor: w-resize;
}

.hero-executive.hero-executive-cursor-next {
  cursor: e-resize;
}

.hero-executive.hero-executive-cursor-prev::before,
.hero-executive.hero-executive-cursor-next::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  z-index: 1;
  pointer-events: none;
  transition: background 0.25s ease;
}

.hero-executive.hero-executive-cursor-prev::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
}

.hero-executive.hero-executive-cursor-next::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
}

.hero-executive-nav {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-executive-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%) scale(0.92);
  pointer-events: auto;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.hero-executive:hover .hero-executive-arrow {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.hero-executive-arrow:hover {
  background: #d6252a;
  border-color: #d6252a;
  color: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 10px 36px rgba(214, 37, 42, 0.45);
}

.hero-executive-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.hero-executive-arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  opacity: 1;
}

.hero-executive-prev {
  left: 1.5rem;
}

.hero-executive-next {
  right: 1.5rem;
}

@media (min-width: 768px) {
  .hero-executive-content {
    padding: 2rem 2.5rem 6.5rem;
  }

  .hero-executive-dots {
    right: 2.5rem;
    bottom: 6.5rem;
  }
}

@media (max-width: 991px) {
  .hero-executive {
    margin-top: 88px;
    height: min(620px, calc(100vh - 88px));
    min-height: 420px;
  }

  .hero-executive-content {
    padding-bottom: 5rem;
  }

  .hero-executive-dots {
    bottom: 5rem;
  }

  .hero-executive-arrow {
    width: 44px;
    height: 44px;
    opacity: 0.85;
    transform: translateY(-50%) scale(1);
  }

  .hero-executive-prev {
    left: 0.75rem;
  }

  .hero-executive-next {
    right: 0.75rem;
  }
}

@media (max-width: 575px) {
  .hero-executive-meta {
    margin-bottom: 1.25rem;
  }

  .hero-executive-cta {
    width: 100%;
    max-width: 280px;
  }

  .hero-executive-arrow {
    width: 40px;
    height: 40px;
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-executive-slide,
  .hero-executive-bg,
  .hero-executive-content > *,
  .hero-executive-arrow,
  .hero-executive-dot {
    transition: none !important;
  }

  .hero-executive-bg {
    transform: none !important;
  }
}

/* Venobox galeri: görsel sayfa genişliğini aşmasın, gereksiz scroll olmasın */
.vbox-open {
  overflow: hidden !important;
}

.vbox-container {
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.vbox-content {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100vw !important;
  padding: 48px 16px 16px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.vbox-container img.figlio,
.vbox-content img.figlio,
.vbox-content img {
  max-width: min(92vw, 1100px) !important;
  max-height: 85vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}