:root {
    --bg-start: #eaf3ff;
    --bg-end: #dff0ff;
    --text: #0b0b0b;
    --muted: #475569;
    --brand: #1a237e; /* Koyu lacivert tonu */
    --badge: #ffffff;
    --underline: #dbeafe;
    --radius: 16px;
    --radius-lg: 28px;
    --container: 1180px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
  }
  
  body {
    margin: 0;
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial,
      sans-serif;
    color: var(--text);
    background: #fff;
  }
  
  .container {
    max-width: var(--container);
    margin-inline: auto;
    padding: 20px 24px;
  }
  
  /* Header + Hero bg wrapper */
  .hero-bg {
    background: #fff; /* Tamamen beyaz arka plan */
    min-height: 84vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 24px;
    padding-top: 100px;
  }
  
  /* Hero Flex Container - YENİ EKLENDİ */
  .hero-flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
  }
  
  /* Hero Text Content - YENİ EKLENDİ */
  .hero-text-content {
    text-align: center;
    max-width: 700px;
  }
  
  /* Hero Map - YENİ EKLENDİ */
  .hero-map {
    width: 100%;
    max-width: 900px; /* Harita genişletildi */
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: none;
    transition: all 0.3s ease;
  }
  
  /* Actions container - mobilde özellikle */
  .actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    min-width: auto !important;
    flex-shrink: 0 !important;
  }
  
  /* Mobil düzenlemeler */
  @media (max-width: 1024px) {
    .header {
      padding: 12px 16px !important;
    }
    
    .actions {
      display: flex !important;
      align-items: center !important;
      gap: 8px !important;
      flex-direction: row !important;
      flex-wrap: nowrap !important;
    }
    
    .btn-primary {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      font-size: 14px !important; /* 12px'ten 14px'e büyütüldü */
      padding: 8px 14px !important; /* 6px 10px'ten 8px 14px'e büyütüldü */
      white-space: nowrap !important;
      order: 1 !important;
    }
    
    .hamburger {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      order: 2 !important;
    }
  }
  
  .brand {
    display: inline-block;
  }
  
  .brand img {
    height: 36px;
    display: block;
  }
  
  nav.nav {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  
  .nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    position: relative;
  }
  
  .nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  
  .nav a:hover::after,
  .nav a[aria-current='page']::after {
    transform: scaleX(1);
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
  }
  
  .btn-primary {
    background: #18304a; /* Yeni renk */
    color: #fff;
    /* GLOBAL BOYUTLARI BÜYÜTMEK İÇİN GÜNCELLENMİŞ VERSİYON */
    padding: 12px 20px; 
    font-size: 16px;
  }
  
  /* Mobile nav */
  .hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #0b0b0b20;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0b0b0b;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .hamburger span::before,
  .hamburger span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #0b0b0b;
    transition: all 0.3s ease;
  }
  
  .hamburger span::before {
    top: -7px;
  }
  
  .hamburger span::after {
    top: 7px;
  }
  
  .hamburger.active span {
    background: transparent;
  }
  
  .hamburger.active span::before {
    top: 0;
    transform: rotate(45deg);
  }
  
  .hamburger.active span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  
  .mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    padding: 100px 24px 24px;
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  
  .mobile-drawer.active {
    display: block;
    transform: translateY(0);
  }
  
  .mobile-drawer a {
    display: block;
    padding: 16px 0;
    color: #0b0b0b;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
    font-size: 18px; /* Font boyutunu artır */
  }
  
  /* Über uns için özel düzenleme */
  .mobile-drawer a:first-child {
    margin-top: 20px; /* İlk linke ekstra üst boşluk */
  }
  
  /* Hero */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: auto;
  }
  
  .hero-logo {
    max-width: 600px; /* Logo büyütüldü */
    height: auto;
    margin: 0 auto 20px;
  }
  
  .hero-claim {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 30px 0 16px 0; 
    text-align: center;
    max-width: 800px; /* Yazının maksimum genişliği */
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-slogan {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 700px; /* Alt yazının maksimum genişliği */
    font-weight: 400;
    text-align: center;
    margin: 0 auto 16px auto; /* Ortalanmış margin */
  }
  
  .hero-hours {
    margin-top: 10px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
  }
  
  /* Badge Animasyonları */
  @keyframes fadeInSlideUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  @keyframes pulse {
    0%,
    100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.8;
    }
  }
  
  @keyframes ripple {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.8;
    }
    100% {
      transform: translate(-50%, -50%) scale(2.5);
      opacity: 0;
    }
  }
  
  /* Responsive */
  /* Mobilde kontakt butonunu göster */
  @media (max-width: 1024px) {
    nav.nav {
      display: none;
    }
    
    /* Header tam mobile optimizasyon */
    .header {
      padding: 12px 16px !important;
    }
    
    /* Actions kesin yan yana düzeni */
    .actions {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      gap: 8px !important;
      flex-shrink: 0 !important;
    }
    
    /* Kontakt butonu - kesin görünür */
    .actions .btn-primary {
      display: inline-flex !important;
      font-size: 12px !important;
      padding: 6px 10px !important;
      white-space: nowrap !important;
      order: 1;
    }
    
    /* Hamburger butonu - kesin görünür */
    .hamburger {
      display: flex !important;
      order: 2;
      width: 36px;
      height: 36px;
    }
    
    .hero-flex-container {
      flex-direction: column;
      gap: 30px;
    }
    
    .hero-logo {
      max-width: 400px;
    }
    
    .hero-claim {
      font-size: 28px;
    }
    
    .hero-slogan {
      font-size: 15px;
    }
    
    .hero-map {
      max-width: 100%;
    }
  }
  
  /* Mobil navigasyon için ek sabitlik ayarları */
  @media (max-width: 640px) {
    .container {
      padding: 16px 16px;
    }
    
    /* Header'ın mobilde kesinlikle sabit kalması */
    .header {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      z-index: 9999 !important;
      background: rgba(255, 255, 255, 0.98) !important;
      backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: blur(20px) !important;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      transform: translateZ(0); /* Hardware acceleration */
      will-change: transform; /* Performance optimization */
    }
    
    .hero-bg {
      background: #fff !important;
      padding-top: 120px; /* Header'ın altından başlaması için */
      padding-left: 16px;
      padding-right: 16px;
    }
    
    /* Scroll sırasında header'ın görünür kalması */
    body {
      padding-top: 0; /* Body'nin üstünden header boşluğu */
    }
    
    .hero-flex-container {
      gap: 25px;
      max-width: 100%;
      margin-top: 20px; /* Header ile arada boşluk */
    }
    
    .hero-text-content {
      padding: 0 8px;
    }
    
    .hero-claim {
      font-size: 22px;
      line-height: 1.3;
      margin: 20px 0 12px 0;
    }
    
    .hero-slogan {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 16px;
    }
    
    .hero-hours {
      font-size: 14px;
      line-height: 1.5;
    }
    
    .hero-logo {
      max-width: 320px;
      width: 90%;
    }
    
    .hero-map {
      max-width: 100%;
      margin: 0 -8px;
    }
    
    .hero-map iframe {
      min-height: 250px;
    }
  }
  
  /* Leistungen */
  .svc {
    --stroke: #1e90ff;
    --card: #ffffff;
  }
  
  .svc-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
  }
  
  .svc-media {
    margin: 0;
    position: relative;
    border-radius: 28px;
    padding: 10px;
    background: linear-gradient(180deg, #e8f1ff 0%, #f3f7ff 100%);
    box-shadow: inset 0 0 0 2px #1e90ff;
  }
  
  .svc-media::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, var(--stroke), #62b3ff);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
  
  .svc-media img {
    display: block;
    width: 100%;
    height: min(60vh, 520px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(2, 6, 23, 0.18);
  }
  
  .svc-body {
    padding: 4px;
  }
  
  .svc-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    margin-bottom: 14px;
  }
  
  .svc-badge-text {
    font-size: clamp(16px, 2.6vw, 24px);
  }
  
  .svc-title {
    font-size: clamp(22px, 3.4vw, 36px);
    margin: 8px 0 10px;
    line-height: 1.2;
  }
  
  .svc-desc {
    color: var(--muted);
    margin: 0 0 16px;
    font-weight: 500;
  }
  
  .svc-sub {
    font-size: clamp(18px, 2.8vw, 26px);
    margin: 8px 0;
  }
  
  .svc-list {
    margin: 0 0 18px 0;
    padding-left: 18px;
  }
  
  .svc-list li {
    margin: 6px 0;
    font-weight: 600;
  }
  
  .svc-ctrl {
    display: flex;
    gap: 18px;
    margin-top: 12px;
  }
  
  .svc-btn {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 0;
    background: #eef2f7;
    box-shadow: 0 6px 16px rgba(2, 6, 23, 0.12);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
  }
  
  .svc-btn:hover {
    transform: translateY(-1px);
  }
  
  @media (max-width: 1024px) {
    .svc-grid {
      grid-template-columns: 1fr;
    }
    .svc-media img {
      height: min(42vh, 420px);
    }
  }
  
  /* About Section */
  .about {
    padding-block: 56px;
    background: #fff;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-title {
    font-size: clamp(28px, 4.2vw, 48px);
    margin: 0 0 12px;
    font-weight: 600;
    line-height: 1.1;
  }
  
  .about-subtitle {
    color: var(--muted);
    font-weight: 500;
    margin: 0 0 32px;
  }
  
  .about-visual {
    position: relative;
    display: none;
  }
  
  .about-image {
    display: none;
  }
  
  .about-features {
    display: grid;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }
  
  .feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  
  .feature-icon {
    font-size: 2rem;
    line-height: 1;
  }
  
  .feature-title {
    font-weight: 700;
    margin: 0 0 4px;
    font-size: 18px;
  }
  
  .feature-text p {
    margin: 0;
    color: var(--muted);
    font-weight: 500;
  }
  
  @media (max-width: 1024px) {
    .about-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }
  
  /* Team Section */
  .team {
    padding-block: 56px;
    background: #fff;
  }
  
  .team-header {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .team-title {
    font-size: clamp(28px, 4.2vw, 48px);
    margin: 0 0 12px;
    font-weight: 800;
  }
  
  .team-subtitle {
    color: var(--muted);
    font-weight: 500;
    margin: 0;
  }
  
 /* Yeni Team Card Stilleri */
.team-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
  }
  
  .team-simple-card {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  
  .team-simple-card:hover {
    transform: translateY(-5px);
  }
  
  .team-simple-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .team-simple-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .team-simple-card:hover .team-simple-overlay {
    opacity: 1;
  }
  
  .team-simple-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
  }
  
  .team-simple-role {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
    line-height: 1.3;
  }

  /* Responsive ayarlar */
  @media (max-width: 1024px) {
    .team-simple-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .team-simple-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .team-simple-card {
      height: 250px;
    }
  }
  

  
  /* Kontakt Section */
  .kontakt {
    padding-block: 56px;
    background: #fff;
  }
  
  .kontakt-title {
    font-size: clamp(28px, 4.2vw, 48px);
    margin: 0 0 48px;
    font-weight: 800;
    text-align: center;
  }
  
  /* YENİ EKLEME: Formu ortaya hizalamak ve genişliğini kontrol etmek için */
  .kontakt-centered-container {
    max-width: 600px; /* Formun maksimum genişliği */
    margin: 0 auto; /* Otomatik margin ile ortalama */
  }

  /* .kontakt-grid, .kontakt-map ve .kontakt-map iframe kuralları kaldırıldı */
  /* Harita kaldırıldığı için eski iki sütunlu grid yapısı kaldırıldı */
  
  .kontakt-form-container h3 {
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
    text-align: center !important;
}
  
  .kontakt-form-container p {
    color: var(--muted);
    font-weight: 500;
    margin: 0 0 32px;
    text-align: center;

  }
  
  .kontakt-form {
    display: grid;
    gap: 20px;
  }
  
  .kontakt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .kontakt-field {
    position: relative;
  }
  
  .kontakt-field.full {
    grid-column: 1 / -1;
  }
  
  .kontakt-input,
  .kontakt-textarea {
    width: 100%;
    padding: 16px 0 8px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    background: transparent;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
  }
  
  .kontakt-input:focus,
  .kontakt-textarea:focus {
    outline: none;
    border-bottom-color: #1e90ff;
  }
  
  .kontakt-textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 8px;
  }
  
  .kontakt-label {
    position: absolute;
    left: 0;
    top: 16px;
    color: var(--muted);
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s ease;
    transform-origin: left;
  }
  
  .kontakt-input:focus + .kontakt-label,
  .kontakt-input:not(:placeholder-shown) + .kontakt-label,
  .kontakt-textarea:focus + .kontakt-label,
  .kontakt-textarea:not(:placeholder-shown) + .kontakt-label {
    transform: translateY(-20px) scale(0.85);
    color: #1e90ff;
  }
  
  .kontakt-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    justify-content: center;

  }
  
  .kontakt-checkbox input[type='checkbox'] {
    width: 20px;
    height: 20px;
    border-radius: 4px;
  }
  
  .kontakt-checkbox label {
    font-weight: 500;
    color: var(--muted);
  }
  
  .kontakt-submit {
    background: var(--brand);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
  }
  
  .kontakt-submit:hover {
    background: #333;
    transform: translateY(-2px);
  }
  
  @media (max-width: 1024px) {
    /* Eski .kontakt-grid kuralı kaldırıldı */
  
    /* Eski .kontakt-map kuralı kaldırıldı */
  
    .kontakt-row {
      grid-template-columns: 1fr;
    }
  }
  
  /* Footer */
  .footer {
    background-color: var(--bg-end); /* ARKA PLAN RENGİNİ GÜNCELLEDİK */
    padding-block: 60px 20px;
    color: var(--text); /* Yazı rengini kontrol etmek için */
  }
  
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 70px;
  }
  
  .footer-contact .brand {
    margin-bottom: 32px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }
  
  .contact-icon {
    width: 24px;
    height: 24px;
  }
  
  .contact-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
  }
  
  .contact-link:hover {
    text-decoration: underline;
  }
  
  .footer-links h4 {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 18px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-copy {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-block: 20px;
    margin-top: 40px;
    color: var(--muted);
    font-weight: 500;
  }
  
  @media (max-width: 1024px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr; /* İki sütun */
      gap: 36px;
    }
  }
  
  @media (max-width: 640px) {
    .footer-grid {
      grid-template-columns: 1fr; /* Tek sütun */
      gap: 32px;
    }
  }
  
    .footer-links {
      margin-top: 20px;
    }
  
    .footer-contact {
      margin-top: 20px;
    }
  
 
  /* Yeni EKG kalp atışı ikonu için stil */
  .heart-beat-icon {
    width: 48px;
    height: 48px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
  }

/* Yeni Team Card Stilleri */
.team-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
  }
  
  .team-simple-card {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  
  .team-simple-card:hover {
    transform: translateY(-5px);
  }
  
  .team-simple-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .team-simple-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .team-simple-card:hover .team-simple-overlay {
    opacity: 1;
  }
  
  .team-simple-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
  }
  
  .team-simple-role {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
  }
  /* Medical Images - Desktop Only */
.hero-medical-images {
  display: block !important;
}

/* Hide medical images on tablets and mobile */
@media (max-width: 1024px) {
  .hero-medical-images {
    display: none !important;
  }
}
/* Team Card Güncellemeleri - Bu kodları style.css dosyanızın sonuna ekleyin */

/* Mevcut team-simple-card stillerini değiştirin */
.team-simple-card {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default; /* Cursor artık pointer değil */
}

.team-simple-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Fotoğraf stilleri güncellendi */
.team-simple-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Yeni content alanı */
.team-card-content {
  padding: 20px;
  text-align: center;
  background: #fff;
}

/* Mevcut name stillerini güncelle */
.team-simple-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--text);
}

/* Mevcut role stillerini güncelle */
.team-simple-role {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: var(--muted);
  line-height: 1.4;
}

/* Yeni buton stilleri */
.team-portrait-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
}

.team-portrait-btn:hover {
  background: #1a1a2e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

/* Grid ayarları güncellendi */
.team-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Eski overlay stillerini kaldırın - artık gerekli değil */
.team-simple-overlay {
  display: none !important;
}

/* Responsive ayarlar güncellendi */
@media (max-width: 768px) {
  .team-simple-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  
  .team-simple-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .team-simple-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

@media (min-width: 1025px) {
  .team-simple-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Yeni Team Card Tasarımı */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.team-card-modern {
  background: #ffffff;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.team-card-photo {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #f8fafc;
  position: relative;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card-info {
  text-align: left;
  position: relative;
}

.team-card-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.team-card-position {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.team-card-specialty {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
  min-height: 20px;
}

.team-cv-btn {
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--brand);
  color: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(26, 35, 126, 0.3);
}

.team-cv-btn:hover {
  background: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26, 26, 46, 0.4);
}

.team-cv-btn:active {
  transform: translateY(0);
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
  .team-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  
  .team-card-modern {
    padding: 20px;
    border-radius: 24px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .team-card-photo {
    height: 280px;
    margin-bottom: 20px;
    border-radius: 16px;
  }
  
  .team-card-name {
    font-size: 20px;
  }
  
  .team-cv-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    margin-top: 20px;
  }
}

/* Eski team card stillerini gizle/devre dışı bırak */
.team-simple-grid,
.team-simple-card,
.team-simple-photo,
.team-simple-overlay,
.team-simple-name,
.team-simple-role,
.team-portrait-btn,
.team-card-content {
  display: none !important;
}