* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
html {
    scroll-behavior: smooth;
    overflow-x: hidden ;
    font-size: 16px;
}

body {
    background-color: var(--açık-zemin);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--yumusak-yazi); 
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    width: 100%;
}
@font-face {
  font-family: 'SeninFontun';
  src: url('font.woff2');
  font-display: swap;
}
:root {
    --açık-zemin: #f8fafc;       
    --vurgu-altin: #49bed3;      
    --acik-yazi: #3d3f43;       
    --yumusak-yazi: #272c35;    
    --kart-zemin: #0f172a;       
    --ayrıntı: #0ea5e9;          
    --input-zemin: #f1f5f9;      
    
    /* Yeni eklediğimiz vurgu renkleri */
    --klinik-yesil: #10b981;     
    --premium-altin: #a3815b;    
}


h1,h2,h3,h4{
    font-family: 'Poppins', sans-serif;
    color: var(--acik-yazi); 
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
   
}

h1 {
   font-size: 2.5rem;    
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.75rem;   
    font-weight: 600;
    margin-top: 2.5rem;
}

h3 {
   font-size: 1.375rem; 
    font-weight: 600;
}

h4 {
  font-size: 1.125rem; 
    font-weight: 600;
}
.heading{
    margin: 3.5rem auto 2.5rem;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: Georgia, serif;
}

@media (max-width: 768px) {
    html{ font-size: 15px;}
    h1 { font-size: 2.1rem; margin-bottom: 1.25rem; }
    h2 { font-size: 1.75rem; margin-bottom: 1rem; }
    h3 { font-size: 1.5rem ; margin-bottom: 0.85rem; }
    h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }
    .heading{
        margin: 2rem auto 1.5rem;
        padding: 0 1rem;
    }
    
    p {
        text-indent: 0;
    }
    
    li p {
        text-indent: 0;
    }
    
    .content ol,
    .content ul {
        margin-left: 1.5rem;
        padding-left: 1.5rem;
    }
    
    .content li {
        margin-left: 0;
        padding-left: 0;
    }
}

p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333; 
  margin-bottom: 15px;
  max-width: 70ch;
  text-align: left; 
  text-indent: 1.5rem;  
}

.h-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 16px 40px;
}
#footer-p{
    color:  #999;
    text-align: center;
}
/*wp mobil popup*/

.mobile-wp-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
 
.wp-popup {
    display: none;
    opacity: 0;
    width: 300px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
 
@keyframes wpSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
/* --- Header --- */
.wp-header {
    background: linear-gradient(135deg, #0a5c47 0%, #1a9268 100%);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    position: relative;
}
 
.wp-avatar {
    position: relative;
    flex-shrink: 0;
}
 
.wp-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.5);
    display: block;
}
 
.online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 11px;
    height: 11px;
    background: #4ade80;
    border-radius: 50%;
    border: 2px solid white;
}
 
.wp-user-info {
    flex: 1;
    min-width: 0;
}
 
.wp-user-info strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
 
.wp-user-info span {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin-top: 3px;
    display: block;
}
 
.wp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: white;
    cursor: pointer;
    line-height: 1;
    user-select: none;
    transition: background 0.2s;
}
 
.wp-close:hover {
    background: rgba(255,255,255,0.35);
}
 
/* --- Body (balon) --- */
.wp-body {
    padding: 16px 14px 4px;
}
 
.wp-bubble {
    background: #f0f0f0;
    border-radius: 12px 12px 12px 4px;
    padding: 11px 13px;
    font-size: 13px;
    color: #222;
    line-height: 1.55;
}
 
.wp-time {
    font-size: 10.5px;
    color: #aaa;
    margin: 5px 0 0 4px;
}

 
/* --- Alt büyük buton --- */
.wp-footer {
    padding: 12px 14px 14px;
}
 
.wp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1a9268;
    color: white;
    border-radius: 12px;
    padding: 13px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
 
.wp-btn:hover {
    background: #0f7554;
}
.nav-container {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 16px 36px;
  transition: padding 0.35s ease;
}

.nav-container.scrolled {
  padding: 8px 36px;
}

/* ============================================
   NAV BAR
   ============================================ */

.nav-bar {
  margin: 0 auto !important; 
  width: 100%;             
  height: 90px;        
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.85); 
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 40px; 
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 45px rgba(0,0,0,0.35);
  font-family: 'Poppins', sans-serif;
}

.nav-container.scrolled .nav-bar {
  height: 65px; 
  margin: 0 auto !important;
  width: 100%;                  
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(163, 129, 91, 0.3); 
  
}

/* Üst Accent Çizgisi */
.nav-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 5%; right: 5%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--premium-altin), 
        var(--ayrıntı), 
        var(--premium-altin), 
        transparent
    );
    opacity: 0.6;
}

/* ============================================
   LOGO
   ============================================ */

.logonav {
    display: flex;
    align-items: center;
    transition: transform 0.35s ease;
}

.logo1-image-1 {
  height: 65px; 
    width: auto;
    object-fit: contain;
    transition: all 0.35s ease;
    transform: scale(1);
    transform-origin: left center;
}

.nav-container.scrolled .logo1-image-1 {
 height: 42px;
}

/* ============================================
   DESKTOP MENU
   ============================================ */

#check {
  display: none;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
}

.menu > li > a {
    padding: 10px 18px;
    color:var(--açık-zemin);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.menu > li > a:hover,.menu > li > a.active {
    color: var(--vurgu-altin) !important;
    background: rgba(73, 190, 211, 0.1) !important;
    border-radius: 8px;
}
.menu > li {
  position: relative;
  list-style: none;
}
/* ============================================
   DROPDOWN
   ============================================ */

.dropdown-arrow {
  font-size: 8px;
  opacity: 0.4;
  transition: transform 0.25s ease;
  display: inline-block;
}

.menu li.dropd:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 225px;
  background: rgba(7, 14, 28, 0.96);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(163, 129, 91, 0.18);
  border-radius: 16px;
  list-style: none;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 99999;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  font-family: 'Poppins', sans-serif;
}

.menu li.dropd:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  border-radius: 11px;
  text-decoration: none;
  text-transform: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--input-zemin);
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.dropdown li a:hover {
  color: var(--vurgu-altin);
  background: rgba(73, 190, 211, 0.07);
  padding-left: 22px;
}

.dropdown li a.active {
  color: var(--vurgu-altin);
}

/* ============================================
   SOCIAL ICONS (Desktop)
   ============================================ */

.social-icons-desktop {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.social-icons-desktop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(241, 245, 249, 0.4);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.22s ease;
}
.social-icons-desktop a:hover {
  border-color: var(--vurgu-altin);
  color: var(--vurgu-altin);
  background: rgba(163, 129, 91, 0.07);
  transform: translateY(-2px);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    min-width: 180px; 
}
/* ============================================
   HAMBURGER
   ============================================ */

.open-menu {
   display: none; 
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; 
    gap: 5px; 
    width: 30px;
    height: 30px;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1000;
    margin-top: 0;
    position: relative;

}

.open-menu span {
  height: 3px;
  width: 100%;
  background-color: var(--acik-yazi);
  border-radius: 2px;
  transition: 0.3s ease;
  display: block;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}
.nav-right .open-menu span:nth-child(1),
.nav-right .open-menu span:nth-child(2),
.nav-right .open-menu span:nth-child(3) {
    width: 100%;
}
#check:checked ~ .nav-right .open-menu span:nth-child(1) {
    transform: translateY(8px) rotate(45deg); 
}

/* 2. Orta Çizgi: Sağa kayarak şeffaflaşır */
#check:checked ~ .nav-right .open-menu span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

/* 3. Alt Çizgi: Yukarı kayar ve -45 derece döner */
#check:checked ~ .nav-right .open-menu span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   OVERLAY
   ============================================ */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-container:has(#check:checked) .overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

/* --- ANASAYFA GENEL YAPI --- */
.section-1 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    padding-top: 80px;
    box-sizing:border-box;
}
/* Kapsayıcı: İçeriği Tam Ortalar */
.section-1-cont {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    
}
/* --- ARKA PLAN VE ANIMASYON DÜZENI --- */
.hero-background {
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: calc(100% + 5px);
    z-index: 1; 
    overflow: hidden;
}
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoomOutFloat 12s ease-out infinite;
    will-change: transform; 
}
/* Karartma Katmanı: Yazıların okunabilirliğini artırır */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 34, 34, 0.45);
    z-index: 5;
    transform: none;
}
/* --- İÇERİK (YAZI VE BUTONLAR) --- */
.hero-content-wrapper {
    position: relative;
    z-index: 10; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* Başlık ve Carousel: Yan Yana Düzen */
.hero-headline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.25rem; 
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.6s;
}

.word-carousel {
    display: inline-block;
    position: relative;
    height: 1.2em;
    overflow: hidden;
    text-align: left;
}

.word-carousel-inner {
    display: flex;
    flex-direction: column;
    animation: carouselSlide 12s ease-in-out infinite;
}

.carousel-word {
    height: 1.2em;
    line-height: 1.2em;
    color: var(--vurgu-altin); 
    white-space: nowrap;
}

/* Alt Metin ve Buton */
.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--input-zemin);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.9s;
}

.action-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: slideUp 1s ease forwards 1.2s;
}

/* --- BUTON TASARIMI --- */
.btn-cinematic {
    padding: 18px 45px;
    background: linear-gradient(135deg, #49bed3 0%, #0ea5e9 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(73, 190, 211, 0.3);
    border: none;
    cursor: pointer;
}

.btn-cinematic:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(73, 190, 211, 0.5);
}

/* --- ANIMASYON TANIMLARI (KEYFRAMES) --- */

/* Giriş Animasyonu */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Arka Plan Zoom Animasyonu (Merkezi bozmayan hali) */
@keyframes heroZoomOutFloat {
    0%   { transform: scale(1.12); }  
    50%  { transform: scale(1.08); }  
    100% { transform: scale(1.12);}
}

/* Carousel Kayma Animasyonu */
@keyframes carouselSlide {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-1.2em); }
    50%, 70% { transform: translateY(-2.4em); }
    75%, 95% { transform: translateY(-3.6em); }
    100% { transform: translateY(0); }
}

/* Sosyal butonlar */
.social-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.social-buttons a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 0;
}

.social-buttons a[href*="whatsapp"] {
    background-color: #25D366;
    border: #25D366;
}

.social-buttons a[href*="instagram"] {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-buttons a:hover {
    transform: translateY(-4px);
    filter: brightness(1.1);
}

.social-buttons a:hover::after {
    left: 150%;
}

.social-buttons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transform: scale(1.15);
    transition: transform 0.3s ease;
}

.social-buttons a:hover img {
    transform: rotate(8deg);
}

@media (min-width: 1025px) {
  .menu-footer,
  .menu-contact-item,
  .menu-social-icons {
    display: none;
  }
}

@media (max-width: 768px) {
    .social-buttons {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .social-buttons a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .hero-headline{
        flex-direction: column;
        gap: 0.05rem;
        font-size: 2.2rem;
    }
    .word-carousel{
        text-align: center;
        height: 1.3em;
    }
    .hero-bg-video {
        filter: brightness(0.4) !important; 
        -webkit-filter: brightness(0.4) !important;
    }

    /* 2. Yazıların arkasına gölge vererek okunabilirliği garantiye alıyoruz */
    .hero-headline, 
    .hero-tagline {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
    }
}

/* İkinci section */

.hakkımızda-btn {
    display: inline-block;
    text-align: center;
    margin-top: 3px;
    padding: 15px 32px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    background-color: var(--vurgu-altin);
    color: var(--input-zemin);
    border: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.hakkımızda-btn:hover {
    background-color: #3a9fb5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}


.sec2-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec2-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

/* Resim Alanı */
.sec2-resim {
    flex: 1;
    position: relative;
}

.sec2-resim img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(163, 129, 91, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: block;
    margin-top: 50px;
}

/* Yazı Alanı */
.sec2-yazi {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.sec2-heading {
    color: var(--kart-zemin);
    margin-bottom: 10px;
    margin-top: 40px;
    padding: 0 1.5rem;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.sec2-heading span {
    color: var(--klinik-yesil);
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.h-paragraf {
    color: var(--yumusak-yazi);
    text-align: left;
    max-width: 720px;
    margin: 30px auto 0;
    padding: 0;
}

.h-paragraf .doctor-text {
    margin-bottom: 18px;
    color: var(--yumusak-yazi);
    text-align: left;
    line-height: 1.6;
}

.btn-wrapper {
    display: block;
    margin: 0;
    margin-top: 28px;
}
@media screen and (max-width: 767px) {
    .sec2-layout {
        flex-direction: column !important;
        gap: 20px;
        align-items: center;
    }

    .sec2-resim {
        flex: 0 0 auto;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
    }

    .sec2-resim img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 15px;
    }

    .sec2-yazi {
        flex: 0 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .sec2-heading {
        line-height: 1.2;
        margin-top: 20px;
        margin-bottom: 15px;
        width: 100%;
    }

    .h-section {
        padding: 40px 0;
    }

    .container-inner {
        padding: 0 16px;
    }

    .h-paragraf {
        text-align: left;
        font-size: 15px;
        line-height: 1.6;
        margin: 20px 0 0;
        max-width: 100%;
        padding: 0;
    }

    .h-paragraf .doctor-text {
        margin-bottom: 16px;
        text-align: left;
    }

    .btn-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .sec2-cont {
        width: 95%;
    }

    .sec2-layout {
        flex-direction: row !important;
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .sec2-resim {
        flex: 0 0 40%;
        max-width: 40%;
        display: block !important;
    }

    .sec2-resim img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
    }

    .sec2-yazi {
        flex: 0 0 55%;
        text-align: left;
    }

    .h-paragraf {
        text-align: left;
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
        margin: 30px auto 0;
    }

    .h-paragraf .doctor-text {
        margin-bottom: 18px;
    }

    .sec2-heading {
        font-size: 32px;
        margin-bottom: 15px;
    }
}

/*blog*/
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Blog kart başlığı */
.image-title {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 10;
    color: var(--açık-zemin);
    font-family: Georgia, serif;
    font-weight: bold;
    text-align: center;
    font-size: clamp(20px, 5vw, 30px);
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.card2 {
    position: relative;
    width: 290px;
    height: 370px;
    background-color: var(--açık-zemin);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.5s;
    margin-bottom: 30px;
}

.card2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}
.card2::after {
    content: ''; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.card2:hover {
    transform: translateY(-5px);
}

/* Resmin üstünde buton */
.card2 .card-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/*tedavilerimiz*/
.btn-slide {
    background: var(--vurgu-altin);
    color: var(--açık-zemin);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 20px 20px !important; 
    border-radius: 30px !important;       
    text-align: center;
}

.btn-slide::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--vurgu-altin);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-slide:hover::before {
    left: 0;
}

.btn-slide:hover {
    filter: brightness(1.1);
}

.btn-slide span {
    position: relative;
    z-index: 1;
}
/* Anasayfa galeri (#gallery) – flex düzeni; .gallery-section grid kalır */
#gallery {
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Başlıkları ve alt metni ortalar */
#gallery .heading, 
#gallery .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#gallery .section-subtitle {
    margin-bottom: 40px;
    color: #666;
}

/* Resim konteynerini ve içindekileri ortalar */
#gallery .photo-cont {
    max-width: 1400px;
    margin: 0 auto; 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#gallery .photo {
    flex: 0 1 280px;
    height: 350px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#gallery .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-action-mobile {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.btn-more {
    background: var(--vurgu-altin, #a3815b);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hakkimizda-with-sidebar {
        padding-left: 0 !important;
        padding-right: 0 !important;
        display: block !important; 
        width: 100% !important;
    }

    .hakkimizda-main {
        padding: 0 !important;
        margin: 0!important;
        gap: 8px;
        width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box;
        justify-content: center;
    }
    .hakkimizda-main #gallery {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 auto;
    }
    #gallery .photo-cont {
        padding: 0 5px; 
        gap: 8px;
        justify-content: center;
    }
    
    #gallery .photo {
        flex: 1 1 calc(50% - 8px); 
        max-width: 100%;
        height: 200px; 
    }
    #gallery .photo.is-hidden {
        display: none;
    }

    /* Mobilde butonu göster */
    .gallery-action-mobile {
        display: block;
    }
    #gallery .photo-cont .photo:nth-child(n+7) {
        display: none !important;
    }

    /* JavaScript tıklandığında görünmeleri için zorlayıcı kural */
    #gallery .photo-cont .photo.is-visible {
        display: block !important;
        flex: 1 1 calc(50% - 8px) !important;
    }

    /* Butonu görünür yap */
    .gallery-action-mobile {
        display: block !important;
        text-align: center;
        padding: 20px 0;
    }
}

/* =============================================================
   CAROUSEL MERKEZİ YÖNETİM (Anasayfa & Hakkımızda)
   ============================================================= */

/* 1. Ortak Konteyner Ayarları */
.klinik .carousel-container, 
.klinik-section .carousel-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
}

.klinik .carousel-wrapper, 
.klinik-section .carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.klinik .carousel-slide, 
.klinik-section .carousel-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.klinik .carousel-slide.active, 
.klinik-section .carousel-slide.active {
    display: block;
}

.klinik .carousel-slide img, 
.klinik-section .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 2. Oklar (Arrows) - Görünürlük ve Boyut */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #333;
    font-size: 20px;
}

/* OK KONUMLARI (Spesifik Kapsayıcıya Göre) */
 .arrow.left{ left: 20px; }
.arrow.right{ right: 20px; }

/* 3. Noktalar (Dots) ve Kapsayıcıları */
.dots-container{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 101;
}

.dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
}

.dot.active{
    background: #fff;
    transform: scale(1.3);
}

/* 4. Alt Bilgi (Slide Info) */
.slide-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 45px 20px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
    color: #fff;
    font-size: 0.85rem;
    pointer-events: none;
}

/* =============================================================
   SAYFA DÜZENLERİ (MASAÜSTÜ)
   ============================================================= */

/* Anasayfa Grid */
.klinik {
    display: grid;
    grid-template-columns: 1.5fr 1fr; 
    max-width: 1400px;
    margin: 50px auto;
    align-items: center;
    gap: 40px;
}

.klinik .heading {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
}

.klinik .carousel-container { height: 550px; grid-column: 1; }

/* Hakkımızda Tek Sütun */
.klinik-section .carousel-container { 
    max-width: 900px; 
    margin: 0 auto 32px; 
    height: 550px; 
}

/* =============================================================
   MOBİL RESPONSIVE (768px Altı)
   ============================================================= */

@media (max-width: 768px) {
    .klinik, .klinik-section { 
        display: flex !important; 
        flex-direction: column; 
        padding: 0 15px;
    }

    .klinik .carousel-container, 
    .klinik-section .carousel-container {
        width: 100% !important;
        height: 280px !important;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .arrow {
        width: 42px !important;
        height: 42px !important;
        font-size: 16px !important;
    }
    
    .k-paragraf, .hk-paragraf {
        padding: 0 16px !important;
        text-align: left;
    }
}
.k-paragraf, .hk-paragraf {
    grid-column: 2;
    padding: 20px 40px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.k-paragraf p, .hk-paragraf p {
    margin-bottom: 20px;
    text-align: left;
}

.yorum-harita-section {
    display: flex;
    gap: 20px;
    min-height: 704px;
    align-items: center;

}

.yorum-harita-section .yorumlar {
    flex: 1 1 40%;
    min-width: 300px;
    ;
}

.yorum-harita-section .harita {
    flex: 1 1 60%;
    min-width: 300px;
}
.yorumlar {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 300px;
    margin-top: 60px;
    align-content: center;
    margin: 20px;
}

.google-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 30px;
}

.google-g {color: #4285f4;}.google-o1 { color: #ea4335;}.google-o2 {  color: #fbbc05;}.google-g2 {color: #4285f4;}.google-l {color: #34a853;}.google-e {color: #ea4335;}
.google-reviews {
    color: #000000;
    margin-left: 6px;
    font-weight: 400;
}

.rating-section {
    margin-bottom: 40px;
    margin-top: 40px;
}

.rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.rating-score {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #fbbc05;
    font-size: 18px;
}

.rating-count {
    color: #70757a;
    font-size: 14px;
    font-weight: 400;
}

.google-btn {
    display: inline-block;
    background: #4285f4;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.google-btn:hover {
    background: #3367d6;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

.harita {
    margin: 20px;
    min-width: 300px;
}

.harita iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
}

@media (max-width: 1024px) {

    .yorum-harita-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 15px;
    }
    .yorum-harita-section .yorumlar,
    .yorum-harita-section .harita {
        width: 100%;
        min-width: 0;
        margin: 0;
    }
}
/* ========== Hakkımızda sayfası ========== */
.hakkimizda-hero {
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    margin-top: 80px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
    text-align: center;
    color: var(--input-zemin);
}


.doctor-intro {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: fit-content(450px) 1fr;
    gap: 48px;
    align-items: start;
}

.doctor-photo {
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;       
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    flex-shrink: 0;
    max-width: 450px;
}

.doctor-photo img {
    width: 100%; 
    height: auto; 
    display: block;
    object-fit: cover; 
}

.doctor-name {
    color: var(--kart-zemin);
    font-family: Georgia, serif;
    margin-bottom: 6px;
    text-align: left !important;
}

.doctor-title {
    color: var(--acik-yazi);
    margin-bottom: 24px;
}

.doctor-text {
    margin-bottom: 18px;
    color: var(--yumusak-yazi);
    line-height: 1.6;
}

/* Hakkımızda: Kliniğimiz + Galeri yanında sidebar */
.hakkimizda-with-sidebar {
    padding-top: 48px;
    padding-bottom: 40px;
    
}

.hakkimizda-main {
    min-width: 0;
    background-color:var(--açık-zemin);
}


.hakkimizda-main .klinik-section {
    padding-top: 0;
    padding-bottom: 40px;
}

.hakkimizda-main .carousel-container {
    max-width: 100%;
}


/*iletişim Sayfası*/
.i-container {
    max-width: 1200px;
    margin: 85px auto 0;
    background-color: var(--açık-zemin);
    padding: 20px;
    color: var(--input-zemin);
}

.i-contact-section {
    overflow: hidden;
    margin-bottom: 30px;
}

.i-contact-header {
    padding: 60px 20px 0;
    text-align: center;
}

.i-contact-header h1 {
    font-size: 2.5em;
    margin-bottom: 50px;
    font-weight: 300;
    color: var(--kart-zemin);
}

.i-contact-header p {
    opacity: 0.9;
    margin-bottom: 10px;
    text-align: left;
    word-spacing: normal;
}

.i-contact-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.i-contact-info {
    padding: 40px;
    background: var(--kart-zemin);
    border-right: 1px solid #3d352e;
}

.i-contact-info h2,
.heading-i2 {
    color: var(--açık-zemin); 
    font-size: 2em;
    margin-bottom:10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #3d352e;
    padding: 20px 0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--klinik-yesil);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(163, 129, 91, 0.3);
}

.info-icon::before {
    content: "";
    width: 20px;
    height: 20px;
    background: white;
}

/* İkon Maskeleri */
.info-icon.location::before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3C/svg%3E");
    mask-size: contain;
}

.info-icon.phone::before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122L9.98 10.65a6.056 6.056 0 0 1-1.308-.933 5.81 5.81 0 0 1-.933-1.308l.218-1.805a.678.678 0 0 0-.122-.58L5.441 3.72z'/%3E%3C/svg%3E");
    mask-size: contain;
}

.info-icon.email::before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 14H2a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1H2Zm13 2.383-4.708 2.825L15 11.105V5.383Zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741ZM1 11.105l4.708-2.897L1 5.383v5.722Z'/%3E%3C/svg%3E");
    mask-size: contain;
}
.info-icon.instagram::before{
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.282.11-.705.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z'/%3E%3C/svg%3E");
    mask-size:contain;
}

.info-details h3 {
    color: var(--açık-zemin);
    font-size: 1.1em;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-details p,
.info-details a {
    color: #fff;
    line-height: 1.5;
}

/* FORM ALANI DÜZENLEMELERİ */
.i-contact-form {
    padding: 40px;
    background: var(--kart-zemin);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--açık-zemin);
    font-size: 0.85em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--input-zemin);
    border: 1px solid var(--vurgu-altin);
    color: var(--kart-zemin);
    border-radius: 5px;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--vurgu-altin);
    box-shadow: 0 0 8px rgba(163, 129, 91, 0.2);
}

.submit-btn {
    background: var(--vurgu-altin);
    color: var(--acik-yazi);
    width: 100%;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

/* HARITA ALANI */
.map-section {
    background: var(--kart-zemin);
    border: 1px solid #3d352e;
    margin-top: 40px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
    background: #1a1510;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .i-container{
        width: 100%;
        padding: 10px;
    }
    .i-contact-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important; 
        min-height: auto;
        padding: 0;
        margin-top: 20px;
        box-shadow: none;
        width: 100% !important;
        overflow: hidden;
    }
    .form-row {
        display: block !important; 
        width: 100% !important;
        gap: 0 !important;
    }

    .form-group {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 15px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    /* Input taşmasını engelleyen en kritik kısım */
    .form-group input {
        display: block !important;
        width: 100% !important; 
        max-width: 100% !important;
        box-sizing: border-box !important; 
        padding: 12px 15px !important;
        font-size: 16px !important;
    }
    .i-contact-info,
    .i-contact-form {
        padding: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-right: none !important; 
    }
    .submit-btn {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-bottom: 80px !important;
    }
    .map-section {
        height: 300px !important;
        margin-top: 20px;
    }
}

/* ==========================================================================
   ŞABLON AYARLARI – ORTAK KOD (Tedavi + Blog sayfaları)
   ========================================================================== */
.container,
.container-tedavi {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}
.container-tedavi .main-content {
    min-width: 0;
}

.container-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    background: transparent;
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 10px;
}

.ba-card {
    background: var(--input-zemin);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.ba-images {
    display: flex; 
    gap: 2px; 
    background-color: transparent;
}

.ba-item {
    flex: 1;
    overflow: hidden;
    height: 250px;
    position: relative; 
}

.ba-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.ba-date {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: rgba(249, 247, 242, 0.4); 
    backdrop-filter: blur(8px);          
    -webkit-backdrop-filter: blur(8px);
    color: #333;   
    padding: 4px 8px;
    font-size: 11px;  
    font-weight: 500;
    border-radius: 4px;
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index: 2;
    border: 1px solid rgba(163, 129, 91, 0.2);
}
.ba-info {
    padding: 20px;
    text-align: center;
    border-top: 3px solid rgba(163, 129, 91, 0.2);
}
.ba-info h3 {
    font-size: 1.1rem;
    color:var(--kart-zemin); 
    font-family: Georgia, serif;
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 992px) {
    .ba-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .ba-grid {
        grid-template-columns: 1fr; 
    }
    .ba-item {
        height: 200px;
    }
}


/* Sidebar – tedavi ve blog aynı */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cta-box {
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cta-box h3 {
    color: var(--vurgu-altin);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}

.cta-box p {
    font-size: 14px;
    color: var(--yumusak-yazi);
    margin-bottom: 18px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background-color: var(--vurgu-altin);
    color: var(--input-zemin);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, filter 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.widget {
    background:#ffffff;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.widget h3 {
    color: var(--vurgu-altin);
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--yumusak-yazi);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 15px;
}

.widget a:hover {
    color: var(--vurgu-altin);
}

/* Intro kutusu – ortak */
.intro {
    background-color: var(--açık-zemin);
    padding: 20px 24px;
    border-left: 4px solid var(--ayrıntı);
    margin-bottom: 30px;
    border-radius: 8px;
}

.intro h2 {
    color: var(--kart-zemin);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}

.intro p {
    margin-bottom: 10px;
    color: var(--kart-zemin);
    line-height: 1.6;
}

.intro ul {
    margin-left: 20px;
    margin-top: 10px;
}

/* İçerik alanı – ortak */
.content h2 {
    color: var(--kart-zemin);
    margin: 15px 0 20px;
}

.content ul {
    margin: 16px 0 16px 24px;
    color: var(--yumusak-yazi);
}

.content ol {
    margin: 16px 0 16px 24px;
    color: var(--yumusak-yazi);
}

.content li {
    margin-bottom: 8px;
}

.content p {
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Table of contents – ortak */
.table-of-contents {
    background-color: var(--açık-zemin);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.table-of-contents h3 {
    color: var(--ayrıntı);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.table-of-contents ul {
    list-style: disc;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: var(--kart-zemin);
    text-decoration:underline;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.table-of-contents a:hover {
    color: var(--ayrıntı);
}

/* Highlight box – ortak */
.highlight {
    background-color: var(--açık-zemin);
    padding: 15px 20px;
    border-left: 4px solid var(--ayrıntı);
    margin: 25px 0;
    border-radius: 8px;
}

.highlight strong {
    color: var(--yumusak-yazi);
}

/* Section başlıkları – ortak (tedavi-galeri vb. ile kullanılır) */
.section-title {
    text-align: center;
    color: var(--kart-zemin);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.section-subtitle {
    text-align: center;
    color: var(--kart-zemin);
    margin-bottom: 36px;
    font-size: 1rem;
}


/* ==========================================================================
   TEDAVİ ŞABLONU ÖZGÜN
   ========================================================================== */
.tedavi-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--kart-zemin);
    margin-top: 85px;
    color: #fff;
    padding: 120px 20px 60px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .tedavi-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(73,190,211,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(73,190,211,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }
  .tedavi-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--klinik-yesil) 0%, var(--vurgu-altin) 50%, var(--premium-altin) 100%);
  }
 
  /* ─── BAŞLIK ─── */
  .tedavi-hero-blog-style {
    position: relative; z-index: 1;
  }
  .tedavi-hero-blog-style h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 10px;
    font-weight: 400;
    color: #ffffff;
    font-family: Georgia, serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .tedavi-hero-blog-style h1 em {
    font-style: italic;
    color: var(--vurgu-altin);
  }
 
  /* ─── DIVIDER ─── */
  .hero-divider {
    width: 100%;
    height: 2px;
    background: var(--klinik-yesil);
    border-radius: 2px;
    margin: 14px auto 18px;
    position: relative; z-index: 1;
  }
 
  /* ─── META ─── */
  .tedavi-hero-meta {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    position: relative; z-index: 1;
  }
  .tedavi-hero-meta span:first-child {
    background: rgba(73,190,211,0.15);
    color: var(--vurgu-altin);
    border: 1px solid rgba(73,190,211,0.30);
    padding: 4px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
 
  /* ─── AÇIKLAMA ─── */
  .tedavi-hero-desc {
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    position: relative; z-index: 1;
  }
 


.featured-image {
    width: 100%;
    height: auto; 
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
    background: var(--kart-zemin);
    position: relative;
    display: block;
}


.featured-image img {
    width: 100% !important;
    height: 100% !important; 
    object-fit: cover;
    object-position: center;
    display: block;
}

.featured-image .image-source {
    position: absolute;
    right: 15px;   
    bottom: 10px;    
    margin: 0;
    font-size: 11px; 
    color: #ffffff;   
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8); 
    z-index: 5;
    pointer-events: none;
}

/* Link stilini orijinal metne uydurma */
.featured-image .image-source a {
    color: #ffffff;
    text-decoration: underline; 
    pointer-events: auto;
}
.content .tedavi-galeri {
    margin-top: 3.5rem;
    margin-bottom: 0;
}

.tedavi-galeri {
    padding: 30px 20px 60px;
    background-color: var(--açık-zemin);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
}

.tedavi-galeri .section-title {
    font-size: 1.8rem;
}

.tedavi-galeri .section-subtitle {
    color: var(--kart-zemin);
    margin-bottom: 32px;
}

/* Sıkça Sorulan Sorular */
.sss-section {
    width: 100%;
    max-width: 100%;
    padding: 48px 20px 56px;
    background-color: var(--açık-zemin);
    box-sizing: border-box;
}

.sss-section .container {
    display: block;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    grid-template-columns: unset;
    gap: 0;
}

.sss-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.sss-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.sss-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    margin-bottom: 14px;
    transition: border-color 0.2s;
    min-height: 52px;
    box-sizing: border-box;
}

.sss-item:hover {
    border-color: var(--vurgu-altin);
}

.sss-soru {
    padding: 16px 18px;
    color: var(--kart-zemin);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sss-cevap {
    padding: 0 18px 18px;
    color: var(--kart-zemin);
    display: none;
    line-height: 1.6;
    font-size: 0.5rem;
}

.sss-cevap p {
    margin: 0;
    text-indent: 0;
    color: var(--acik-yazi);
}

.sss-icon {
    color: var(--vurgu-altin);
    font-size: 1.2rem;
    font-weight: bold;
}
@media (min-width: 769px) {
    .sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 110px; 
        align-self: flex-start; 
    }
}
/* ===========================
    Mobile Responsive (768px altı)
   =========================== */
@media (max-width: 768px) {
    .container,
    .container-tedavi .hakkimizda-with-sidebar .container{
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 28px;
    }

    .sidebar {
        position: static;
    }

    .sss-section {
        padding: 36px 16px 44px;
    }

    .sss-section .container {
        padding: 0 4px;
    }
  .sss-grid {
        display: grid;
        grid-template-columns: 1fr !important; 
        gap: 16px;
    }
    .sss-grid > div {
        width: 100%; 
    }
    .doctor-intro {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .doctor-photo {
        max-width: 320px;
        height: auto; 
        margin: 0 auto 20px;
    }

    .container,
    .container-tedavi {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 30px;
    }

   
    .featured-image {
        aspect-ratio: 4 / 3;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
  
    .sidebar {
       position: relative;
        top: 0 !important;
        width: 100%;
        margin-top: 40px;
        overflow-x: hidden;
    }
    .widget {
        padding: 20px;
        margin-bottom: 20px;
    }

    .table-of-contents {
        padding: 15px;
    }
}
      /* Footer Alanı */
.footer {
    background: #111827; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 24px 24px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand, 
.footer-nav, 
.footer-contact {
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1); /* Dikey çizgi */
}

.footer-brand {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    gap: 20px;
}

.footer-logo-link {
    text-decoration: none;
    display: block;
}

.footer-logo-text {
    font-family: Georgia, serif; 
    font-size: 2.25rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
}
.footer-cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--vurgu-altin);
    color: var(--input-zemin);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    width: fit-content;

}
.footer-cta:hover {
    background-color: var(--klinik-yesil);
}
/* Başlıklar */
.footer-heading {
    font-family: Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--vurgu-altin);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 20px 0;
}

/* Listeler */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: var(--input-zemin);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: var(--vurgu-altin);
}

/* İletişim Detayları */
.footer-contact {
    display: flex;
    flex-direction: column;
    border-right: none;
    padding-right: 0;
}

.footer-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--vurgu-altin);
    margin-top: 8px;
}

.footer-link {
    color: var(--input-zemin);
    text-decoration: none;
    font-size: 0.95rem;
}

/* Sosyal Medya */
.footer-social-label {
    display: block;
    font-size: 0.75rem;
    color: var(--input-zemin);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
}

.footer-social-links a:hover {
    background: var(--klinik-yesil);
    border-color: var(--klinik-yesil);
}

/* Yasal Alan */
.footer-legal {
    padding: 28px 0 24px;
}

.footer-legal-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-legal-text {
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--acik-yazi);
    max-width: 820px;
}

/* Copyright Barı */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.developer-credit a:visited{
    color: #c9c8c0;
    transition: color 0.3s ease;
}
.developer-credit a:hover {
    color: rgb(230, 149, 162);
}

.developer-credit a:hover i {
    color: rgb(230, 149, 162);
}
/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-brand, .footer-social-links {
        align-items: center;
        text-align: center;
    }
    .footer-cta {
        align-self: center;
    }
}
/* Desktop hover kararma efekti */
@media (min-width: 769px) {
    .card2:hover img {
        filter: brightness(40%);
    }
}


@media (max-width: 768px) {
    .card2:hover img {
        filter: brightness(40%);
    }
    .card2 {
        width: 100%; 
        max-width: 246px; 
        height: auto;
        aspect-ratio: 246 / 313;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
    
    .cards-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 14px;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .card-button{ 
    position: absolute;
    bottom: 20px; 
    left: 0; 
    right: 0;
    margin: 0 auto;
    width: 90%;
    height: 13%;
    z-index: 10;
    display: flex; 
    justify-content: center;
    align-items: center;
}


}

@media (max-width: 480px) {
    .cards-container {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 12px;
        justify-content: center;
    }
    
    .card2 {
        width: 100%;
        max-width: 232px;
        height: auto;
        aspect-ratio: 232 / 296;
    }

    .content ol,
    .content ul {
        margin-left: 1rem;
        padding-left: 1rem;
    }
}

@media (max-width: 360px) {
    .cards-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
    }
    
    .card2 {
        width: 100%;
        max-width: 290px;
        height: auto;
        aspect-ratio: 290 / 370;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Daha küçük ekranlar için ikişerli düzen */
@media (max-width: 480px) {
    .cards-container {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 12px;
        justify-content: center;
    }
    
    .card2 {
        width: 100%;
        max-width: 232px;
        height: auto;
        aspect-ratio: 232 / 296;
    }
}

/* Çok küçük ekranlar için tek sütun */
@media (max-width: 360px) {
    .cards-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
    }
    
    .card2 {
        width: 100%;
        max-width: 290px;
        height: auto;
        aspect-ratio: 290 / 370;
        margin-left: auto;
        margin-right: auto;
    }
}
/* ============================================
   MOBİL NAV – Referans yapı (web aynı kalır)
   ============================================ */

@media (max-width: 1024px) {
  .section-1,
  .section-1-cont {
    min-height: 70vh;
  }

  .nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px; 
    padding: 0 20px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--kart-zemin);
  }
 
  .nav-container.scrolled .nav-bar {
    height: 48px;
  }
 .logo1-image-1 {
        height: 55px; 
    }
    
    .nav-container.scrolled .logo1-image-1 {
        height: 38px;
    }
  .logonav {
    order: 1;
    flex-shrink: 0;
  }
  .nav-right {
    order: 2;
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
  }

  .social-icons-desktop {
    display: flex !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    gap: 8px;
  }

  .social-icons-desktop a {
    width: 36px;
    height: 36px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .open-menu {
    order: 3;
    position: relative;
    flex-shrink: 0;
    margin-left: auto;
    display: block;
  }

  /* Mobil menü paneli */
  .menu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    width: 260px;
    max-width: 80vw !important;
    height: 100dvh !important;
    position: fixed !important;
    top: 0 !important;
    right: -300px;
    z-index: 1000 !important;
    background-color: var(--kart-zemin);
    transition: right 0.3s ease-in-out !important;
    overflow-y: auto !important;
    padding: 80px 0 40px 0;
    gap: 0;
    list-style: none;
    margin: 0;
    box-sizing: border-box !important;
  }
  

  .menu > li {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .menu > li > a,
  .menu li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px 24px;
    margin: 0;
  }
  .menu > li > a.active {
        background: rgba(73, 190, 211, 0.15) !important;
        border-radius: 0;
        border-left: 4px solid var(--vurgu-altin);
        padding-left: 20px;
    }

  .dropdown {
    display: none;
    position: static;
    width: 100%;
    min-width: unset;
    border: none;
    border-radius: 0;
    background: var(--kart-zemin);
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .dropdown li a.active {
    color: var(--vurgu-altin) !important;
    background: rgba(73, 190, 211, 0.07) !important;
    padding-left: 22px !important;
}

  .menu li.dropd:hover .dropdown {
    display: none !important;
  }

  .menu li.dropd.active .dropdown {
    display: block !important;
    position:static ;
    width: 100%;
    transform: none;
  }


  .menu li.dropd.active > a {
    color: var(--vurgu-altin);
  }
  .menu-footer {
    display: block !important;
    width: 100%;
    margin-top: 20px;
    padding: 20px 24px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    list-style: none;
    box-sizing: border-box;
  }

  .menu-contact-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--klinik-yesil);
    font-size: 14px;
  }

  .menu-contact-item a {
    color: var(--klinik-yesil) !important;
    text-transform: none !important;
    padding: 0 !important;
    font-size: 14px !important;
  }

  .menu-social-icons {
    display: flex !important;
    gap: 20px;
    margin-top: 30px;
  }

  .menu-social-icons a,
  .menu-social-icons i {
    font-size: 22px;
    color: var(--vurgu-altin);
  }

  .nav-container:has(#check:checked) .menu {
    right: 0;
  }
  .tedavi-hero {
    margin-top: 80px; 
    min-height: 350px;
    padding: 60px 20px;
  }
}


@media (min-width: 769px) and (max-width: 1024px) {
  .nav-bar {
    height: 80px; 
    padding: 0 16px;
  }

  .nav-container.scrolled .nav-bar {
    height: 66px;
  }
   .logonav {
    height: 66px;
  }
  .menu li a {
    font-size: 15px;
    padding: 16px 24px;
    padding-left: 24px;
  }

  .menu li.dropd > a {
    padding: 16px 24px;
    justify-content: space-between;
  }

  .dropdown li a {
    padding: 12px 24px 12px 36px;
    font-size: 14px;
  }

  .dropdown-arrow {
    margin-left: 8px;
    font-size: 12px;
  }

  .menu li.dropd.active > a .dropdown-arrow {
    transform: rotate(180deg);
  }

  .open-menu {
    display: flex;
  }

}

@media (max-width: 768px) {
    .doctor-text{
         padding: 0 !important;
        text-align: left;}
  .nav-bar {
    height: 68px;
    padding: 0 16px;
  }

  .nav-container.scrolled .nav-bar {
    height: 62px;
  }

  .logonav {
    height: 42px;
  }
  .logo1-image-1 {
        height: 48px;
    }

    .nav-container.scrolled .logo1-image-1 {
        height: 34px;
    }
  .social-icons-desktop a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .menu li a {
    font-size: 15px;
    padding: 15px 20px;
    padding-left: 24px;
  }

  .menu li.dropd > a {
    padding: 16px 20px;
    padding-left: 24px;
    justify-content: space-between;
  }

  .dropdown li a {
    padding: 12px 20px 12px 32px;
    font-size: 14px;
  }

  .dropdown-arrow {
    margin-left: 6px;
    font-size: 12px;
  }

  .menu li.dropd.active > a .dropdown-arrow {
    transform: rotate(180deg);
  }

  .open-menu {
    display: flex;
  }
  .section-1 { padding-top: 80px; }
.tedavi-hero {
    margin-top: 68px; 
   height: auto;
    min-height: auto;
    max-height: 40vh;
    padding: 30px 15px 20px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
.tedavi-hero-blog-style {
    padding: 0 !important; 
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
  .tedavi-hero-blog-style h1 {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  .hero-divider {
    width: 80%;
    height: 1px;
    margin: 8px auto 12px; 
  }

  .tedavi-hero-meta {
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .tedavi-hero-desc {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 300px; 
    margin:5px auto;
  }
  
}

@media (max-width: 480px) {
  .nav-bar {
    height: 70px; 
    padding: 0 12px;
  }

  .nav-container.scrolled .nav-bar {
    height: 58px;
  }

  .logo1-image-1 { height: 40px; }

  .logonav {
    height: 40px;
  }
.section-1 { padding-top: 70px; }
  .menu li a {
    font-size: 14px;
    padding: 14px 18px;
    padding-left: 20px;
  }
  .menu li.dropd > a {
    padding: 14px 18px;
    padding-left: 20px;
    justify-content: space-between;
  }
  .dropdown-arrow {
    margin-left: 4px;
    font-size: 10px;
  }
  .dropdown li a {
    padding: 11px 18px 11px 28px;
    font-size: 13px;
  }
  .menu li.dropd.active > a .dropdown-arrow {
    transform: rotate(180deg);
  }
  .open-menu {
    display: flex;
  }
  .social-icons-desktop {
    display: none;
  }
  .section-1 {
    min-height: 480px;
  }
  .section-1-cont {
    min-height: 480px;
  }
  .tedavi-hero {
    margin-top: 70px; /* Navbar 70px olduğu için */
    padding: 25px 15px;
    min-height: 250px;
  }
  .tedavi-hero-blog-style h1 {
    font-size: 1.35rem;
  }
}

/* ----- İsteğe bağlı: hero / section-1 (nav dışı) ----- */
@media (max-width: 1024px) {
  .section-1,
  .section-1-cont {
    min-height: 80vh;
  }
}
@media (max-width: 768px) {
.section-1,
  .section-1-cont {
    min-height: 88vh;
  }
  .social-buttons a {
    width: 50px;
    height: 50px;
  }
  .social-buttons {
    bottom: 20px;
    right: 15px;
    gap: 10px;
  }
  .social-buttons a {
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
     .section-1,
  .section-1-cont {
    min-height: 70vh;
  }
  .social-buttons img {
    width: 100%;
    height: 100%;
  }
}