.company-hero {
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.08;
  z-index: 0;
  animation: float 15s ease-in-out infinite;
}

.hero-blob-1 {
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, rgba(124, 58, 237, 0.2) 100%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 35%;
  height: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, rgba(167, 139, 250, 0.2) 100%);
  bottom: -20%;
  right: -5%;
  animation-delay: 2s;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../images/grid-pattern.svg');
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}

.hero-code {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  line-height: 1.4;
  padding: 1rem;
  background-color: rgba(79, 70, 229, 0.05);
  border-radius: 0.5rem;
  color: rgba(79, 70, 229, 0.6);
  z-index: 1;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(79, 70, 229, 0.1);
  animation: float 6s ease-in-out infinite;
  width: 220px;
  max-width: 20vw;
  min-width: 180px;
}

.hero-code-1 {
  transform: rotate(-5deg);
  animation-delay: 0s;
}

.hero-code-2 {
  transform: rotate(3deg);
  animation-delay: 2s;
}

.hero-title {
  font-weight: 700;
  background: linear-gradient(to right, #fff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.hero-title-light {
  color: #4f46e5;
  background: linear-gradient(to right, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

.hero-subtitle-light {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

.hero-button {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

.hero-button-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
  z-index: -1;
}

.hero-button-primary:hover::before {
  left: 100%;
}

.hero-stats {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

.hero-image-container {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s ease-out forwards;
  animation-delay: 0.5s;
}

.hero-image {
  position: relative;
  z-index: 3;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-image-decoration {
  position: absolute;
  z-index: 20;
  transition: all 0.3s ease;
  max-width: 100px;
}

.hero-decoration-1 {
  top: -5rem;
  right: -0.25rem;
  transform: rotate(15deg);
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards, float 5s ease-in-out infinite;
  animation-delay: 0.9s, 0.9s;
  width: 100px;
}

.hero-decoration-2 {
  bottom: 4rem;
  left: -0.25rem;
  transform: rotate(-10deg);
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards, float 6s ease-in-out infinite;
  animation-delay: 1.1s, 1.1s;
  width: 100px;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1200px) {
  .hero-code {
    font-size: 0.7rem;
    padding: 0.75rem;
    max-width: 18vw;
  }
}

@media (max-width: 992px) {
  .hero-code {
    font-size: 0.6rem;
    padding: 0.5rem;
    max-width: 15vw;
  }
}

@media (max-width: 768px) {
  .hero-code {
    display: none;
  }

  .hero-image-container {
    margin-top: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .career-section {
    margin-bottom: 0;
  }
}

@media (max-height: 600px) {
  .hero-code {
    display: none !important;
  }
}

@media (min-width: 1900px) {
  .hero-code {
    display: none !important;
  }
}

.privacy-security-section {
  position: relative;
  overflow: hidden;
}

.security-card {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.security-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.security-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #4f46e5, #7c3aed);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.security-card:hover:before {
  opacity: 1;
}

/* Core Values Kartları - Kurumsal Hover Efektleri */
#core-values .grid>div {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#core-values .grid>div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary, #4f46e5), #7c3aed, #3b82f6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#core-values .grid>div:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(79, 70, 229, 0.12);
}

#core-values .grid>div:hover::before {
  opacity: 1;
}

/* Paragraf alanı genişlesin */
#core-values .grid>div>p {
  flex-grow: 1;
}

/* Border-t div (link container) alta sabitlensin */
#core-values .grid>div>.border-t {
  margin-top: auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (prefers-reduced-motion: no-preference) {
  .security-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.2s;
  }

  .security-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.4s;
  }

  .security-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.6s;
  }
}

.career-section {
  position: relative;
  overflow: visible;
  padding-bottom: 100px;
  margin-bottom: 0;
}

.job-cards-container {
  position: relative;
  z-index: 20;
  transform: translateY(0);
  margin-bottom: 0;
}

.job-card {
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
}

.job-card>div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.job-card h4 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.job-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.job-card a svg {
  transition: transform 0.2s ease;
}

.job-card a:hover svg {
  transform: translateX(3px);
}

.contact-info-section {
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.section-top-curve {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: white;
  border-bottom-left-radius: 99% 100%;
  border-bottom-right-radius: 99% 100%;
}

.contact-info-section h2 {
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.contact-info-section h3 {
  letter-spacing: -0.01em;
}

/* ============================================
   İLETİŞİM SPLIT PANEL
   ============================================ */
.contact-split {
  position: relative;
}

/* Sol gradient panel */
.contact-panel {
  background: linear-gradient(150deg, #4f46e5 0%, #6d28d9 55%, #7c3aed 100%);
  min-height: 100%;
}

.contact-panel-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}

.contact-panel-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.contact-panel-blob-1 {
  width: 220px;
  height: 220px;
  background: rgba(236, 72, 153, 0.35);
  top: -60px;
  right: -60px;
}

.contact-panel-blob-2 {
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.3);
  bottom: -70px;
  left: -50px;
}

/* İletişim satırı ikon rozeti */
.contact-icon-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-panel li:hover .contact-icon-badge {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* Sosyal medya butonları */
.contact-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: all 0.25s ease;
}

.contact-social:hover {
  background: #fff;
  color: #4f46e5;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.4);
}

/* Yönetici kartçıkları */
.officer-card {
  transition: all 0.3s ease;
}

.officer-card:hover {
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 10px 20px -10px rgba(79, 70, 229, 0.25);
  transform: translateY(-2px);
}

.officer-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  box-shadow: 0 6px 14px -4px rgba(79, 70, 229, 0.5);
}

.officer-avatar-alt {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  box-shadow: 0 6px 14px -4px rgba(124, 58, 237, 0.5);
}

/* Harita */
.contact-map {
  position: relative;
  line-height: 0;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.15);
}

.contact-map iframe {
  display: block;
  filter: grayscale(0.2) contrast(1.05);
  transition: filter 0.4s ease;
}

.contact-map:hover iframe {
  filter: grayscale(0) contrast(1);
}

.contact-cta-link svg {
  transition: transform 0.2s ease;
}

.corporate-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 50px 50px;
  background-image:
    linear-gradient(to right, rgba(79, 70, 229, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 20%;
  opacity: 0.07;
  z-index: 1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: #4f46e5;
  top: -100px;
  right: -100px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background-color: #7c3aed;
  bottom: 100px;
  left: -50px;
  border-radius: 80% 20% 30% 70% / 60% 30% 70% 40%;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background-color: #3b82f6;
  top: 40%;
  right: 15%;
  border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
}

.shape-4 {
  width: 80px;
  height: 80px;
  background-color: #0ea5e9;
  bottom: 30%;
  left: 20%;
  border-radius: 40% 60% 30% 70% / 40% 50% 50% 60%;
}

@media (max-width: 768px) {
  .section-top-curve {
    height: 30px;
  }

  .floating-shape {
    opacity: 0.04;
  }

  .shape-1 {
    width: 200px;
    height: 200px;
  }

  .shape-2 {
    width: 150px;
    height: 150px;
  }
}

.subtle-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(79, 70, 229, 0.1) 2px, transparent 2px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
}

.animate-item {
  transition: all 0.3s ease;
}

.animate-item:hover {
  transform: translateX(5px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.animate-button {
  position: relative;
  overflow: hidden;
}

.animate-button:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  transition: all 0.6s ease;
}

.animate-button:hover:after {
  left: 100%;
}