/* TEST 2026 01 09*/

/* ========== GENEL AYARLAR ========== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #0D1B2A;
  background-color: #ffffff;
  line-height: 1.6;
  padding-top: 96px;
}

/* FIXED header kullanıyorsan */
@media (max-width: 768px){
  body{ padding-top: 78px; }  /* header yüksekliğine göre ayarla */
}

@media (min-width: 769px){
  body{ padding-top: 96px; }
}

/* Linkler */
a {
  text-decoration: none;
}

/* Başlıkların genel hali */
h1, h2, h3 {
  font-weight: 600;
}

/* Tüm bölümler için ortak sınıf */
.section {
  padding: 60px 10%;
  background-color: #0D1B2A;
}

/* ---------- PRELOADER ---------- */

#preloader {
  position: fixed;
  inset: 0;
  background: #0D1B2A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease;
}

/* Dönen yükleme simgesi */
.loader {
  border: 6px solid #C9A86A;
  border-top: 6px solid transparent;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========== HEADER & MENÜ (DESKTOP) ========== */

.header {
  width: 100%;
  padding: 20px 10%;
  background: #0D1B2A;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border-bottom: 1px solid #1B263B;

  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  padding-bottom: 6px;

  /* TEK ÇİZGİ */
  background-image: linear-gradient(#C9A86A, #C9A86A);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 2px;
}

/* HOVER: ÖNCE SİL → SONRA SOLDAN SAĞA ÇİZ */
.logo:hover {
  animation: logo-line-reset 0.5s ease forwards;
}

/* ANİMASYON */
@keyframes logo-line-reset {
  0% {
    background-size: 100% 2px;   /* çizgi var */
  }
  40% {
    background-size: 0% 2px;     /* tamamen yok */
  }
  100% {
    background-size: 100% 2px;   /* soldan sağa oluşur */
  }
}

/* LOGO YAZILARI (AYNI) */
.logo-main {
  font-size: 27px;
  font-weight: 800;
  color: #E0E1DD;
  letter-spacing: 2px;
  font-family: 'Libre Baskerville', serif;
}

.logo-sub {
  margin-top: 3px;
  font-size: 20px;
  font-weight: 600;
  color: #C9A86A;
  letter-spacing: 2px;
  font-family: 'Libre Baskerville', serif;
}




/* Desktop menü */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  margin-left: 20px;
  color: #FFFFFF;
  font-size: 19px;
  position: relative;
  padding-bottom: 3px;
  font-weight: 500;
}

/* Hover’da altın renkli ince çizgi efekti */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #C9A86A;
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #FFFFFF;
}

@media (min-width: 1600px) {
  .header {
    padding: 28px 8%;
  }

  .nav {
    gap: 44px;
  }

  .logo-main {
    font-size: 36px;
  }

  .nav a {
    font-size: 22px;      /* 27” monitör için ideal */
    letter-spacing: 0.6px;
  }
}

/* ========== HERO (ANA BANNER) ========== */

.hero {
  height: 100vh;
  padding: 0 10%;
  background: linear-gradient(135deg, #0D1B2A 40%, #1B263B 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #FFFFFF;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
  max-width: 600px;
}

.hero p {
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 25px;
  color: #E0E1DD;
}

/* Buton */
.btn {
  display: inline-block;
  padding: 12px 26px;
  background-color: #C9A86A;
  color: #0D1B2A;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  background-color: #e0c084;
  transform: translateY(-1px);
}




/* ================================
   ABOUT / HAKKIMIZDA
================================ */

.about {
  background: #0D1B2A;
  padding: 50px 8%;
}

/* içerik ortalama + genişlik limiti */
.about-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

/* SOL GÖRSEL */
.about-image {
  flex: 0 0 420px;
  text-align: center;
  opacity: 0.85;
}

.about-image img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
}

/* SAĞ METİN */
.about-text {
  max-width: 640px;
  color: #ffffff;
  text-align: justify;
  line-height: 1.8;
}

.about-text h2 {
  color: #ffffff;
  margin-bottom: 28px;
  font-size: 30px;
  border-left: 4px solid #C9A86A;
  padding-left: 12px;
}

.about-text p {
  font-size: 16px;
  margin-bottom: 18px;
}

/* ================================
   ULTRA GENİŞ MONİTÖRLER
================================ */
@media (min-width: 1600px) {
  .about {
    padding: 40px 8%;
  } 

  .about-container {
    max-width: 1280px;
    gap: 150px;
  }

  .about-text {
    max-width: 680px;
  }
}

/* ========== HİZMETLER ========== */

.services {
  background-color: #E0E1DD;
  color:#0D1B2A;
}

.services h2 {
  font-size: 28px;
  margin-bottom: 30px;
  border-left: 4px solid #C9A86A;
  padding-left: 10px;
}

/* Kartların bulunduğu alan */
.service-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Tek tek kartlar */
.service-card {
  display: block;
  cursor: pointer;
  background-color:#12263b;
  border-radius: 6px;
  padding: 16px;
  border: 1px solid #1B263B;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  color: #0D1B2A;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #C9A86A;
  text-align: center;
}

.service-card p {
  font-size: 15px;
  color: #FFFFFF;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  border-color: #C9A86A;
}

/* Kart içi görsel alan */
.service-image {
  width: 100%;
  height: 160px; /* İstersen 120–160 arası oynayabilirsin */
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 15px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Görseli bozmadan doldurur */
  display: block;
  filter: brightness(0.9);
  transition: transform 0.3s ease;
}

/* Hover’da hafif zoom */
.service-card:hover .service-image img {
  transform: scale(1.05);
}
     /*HEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEYYYYY DUUURRR*/

@media (min-width: 993px){
  .service-container > .service-card:last-child:nth-child(3n + 1){
    grid-column: 2 / span 1;
  }
}
/* ========== EKİP ========== */

.team {
  background-color: #0D1B2A;
}

.team h2 {
  font-size: 28px;
  margin-bottom: 30px;
  border-left: 4px solid #C9A86A;
  padding-left: 10px;
  color: #ffffff;
}

.team-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px auto;
  display: block;
  border: 3px solid #C9A86A;
}

/*SAĞ TIK ENGELLİ*/
/* Resmin üstünde görünmez kalkan */
.team-card .img-shield{
  position: absolute;
  top: 20px;               /* kart padding'in 20px -> resmin başladığı yer */
  left: 50%;
  transform: translateX(-50%);
  width: 120px;            /* .team-photo ile aynı */
  height: 120px;           /* .team-photo ile aynı */
  border-radius: 50%;
  background: transparent;
}

/* Avukat kartı */
.team-card {
  background-color: #1B263B;
  padding: 20px;
  border-radius: 6px;
  width: 220px;
  border: 1px solid #415A77;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;

  /*SAĞ TIK ENGELLİ İÇİN*/
  position: relative;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  border-color: #C9A86A;
}

.photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px auto;
  background: #415A77;
}

.team-card h3 {
  font-size: 17px;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.team-card p {
  font-size: 14px;
  color: #E0E1DD;
}




/* ========== İLETİŞİM ========== */

.contact {
  background-color: #1B263B;
  color: #E0E1DD;
}

.contact h2 {
  font-size: 28px;
  margin-bottom: 20px;
  border-left: 4px solid #C9A86A;
  padding-left: 10px;
}

.contact p {
  font-size: 15px;
  margin-bottom: 6px;
}

/* ===================== İLETİŞİM BÖLÜMÜ ===================== */

.iletisim-section {
  display: flex;
  justify-content: space-between;
  padding: 60px 10%;
  background: #F4F4F4;
  color: #1B263B;
  gap: 40px;
}

.contact-item.no-icon{
  padding-left: 0;
}



.contact-left {
  width: 45%;
}

.contact-left h2 {
  font-size: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #C9A86A;
  padding-left: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
  
}

.icon {
  width: 32px;
  margin-right: 15px;
  opacity: 0.9;
  margin-top: 6px;
}

.contact-item strong{
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 10px;
    border-bottom: 2px solid #c9a86aa1; 
    width: 25px; 
  
}


.contact-link {
  color: #1B263B;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-left p {
  margin-bottom: 35px;
}

/* SAĞ TARAF — FORM */
.contact-right {
  width: 50%;
  background: #1B263B;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #0D1B2A;
}

.contact-right h2 {
  margin-bottom: 20px;
  color: #F4F4F4;
  font-size: 22px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 15px;
}

textarea {
  height: 120px;
  resize: none;
}

input, textarea {
  font-family: inherit;
  font-size: 16px;
}


/* KVKK */
.kvkk {
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kvkk-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom:25px;
}

.kvkk-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.kvkk-row label {
  font-size: 15px;
  color: #F4F4F4;
  line-height: 1.4;
}

.kvkk-row a {
  color: #C9A86A;
  text-decoration: underline;
}

/* Gönder Butonu */
.btn-submit {
  width: 100%;
  background: #F4F4F4;
  color:#0D1B2A;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit:hover {
  background: #C9A86A;
  color: #0D1B2A;
}

/* ========== FOOTER ========== */

.footer {
  background-color: #1B263B;
  color: #E0E1DD;
  text-align: center;
  padding: 18px 10%;
  font-size: 13px;
  border-top: 1px solid #1B263B;
}

.footer-links a {
  color: #C9A86A;
  font-size: 13px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ========== HERO SLIDER ========== */

.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 420px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.65)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.85);
  transform: translateY(-50%) scale(1.05);
}

/* ---------- SERVICE HERO BANNER ---------- */

.service-hero {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.service-hero h1 {
  position: relative;
  color: #fff;
  font-size: 42px;
  z-index: 2;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Scroll */
html { scroll-behavior: smooth; }

/* Menüden gidilen hedefler için üstten boşluk bırak */
#hakkimizda {
  scroll-margin-top: 50px;
}

#hizmetler {
  scroll-margin-top: 40px;
}

#ekip {
  scroll-margin-top: 170px;
}

#blog {
  scroll-margin-top: 100px;
}

#iletisim {
  scroll-margin-top: 60px;
}

@media (min-width: 1600px) {
  #hakkimizda {
    scroll-margin-top: 120px; /* büyük ekran için */
  }

  #blog {
  scroll-margin-top: 170px;
}
 
}

@media (max-width: 768px) {
  #ekip {
  scroll-margin-top: 80px;
}
  
}

/* =========================
   HAMBURGER MENU + DRAWER
   ========================= */

/* Desktop default: hamburger gizli */
.hamburger { display: none; }

/* Overlay */
.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9000;
}
.nav-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* ========== RESPONSIVE ========== */

/* Tablet ve aşağısı için */
@media (max-width: 992px) {

  /* HERO genel */
  .hero {
    align-items: center;
    text-align: center;
  }

  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }

  .service-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-container {
    justify-content: flex-start;
  }

  /* Hamburger görünür */
  .hamburger{
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 1px solid #1B263B;
    background: transparent;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    
  }

  .hamburger span{
    display:block;
    width: 22px;
    height: 2px;
    background:#E0E1DD;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
  }

  .mobile-drawer { transform: translateX(110%); transition: .3s; }
  .mobile-drawer.open { transform: translateX(0); }

  .nav-overlay { opacity: 0; pointer-events: none; transition: .3s; }
  .nav-overlay.active { opacity: 1; pointer-events: auto; }

  /* Hamburger açılınca X olsun */
  .hamburger.active span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2){
    opacity: 0;
  }

  .hamburger.active span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Drawer nav */
  #siteNav{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(340px, 85vw);
    background: #0D1B2A;
    border-left: 1px solid #1B263B;
    padding: 18px 16px;

    display: flex;
    flex-direction: column;
    gap: 14px;

    transform: translateX(105%);
    transition: transform .25s ease;

    z-index: 9001;
    pointer-events: auto;
  }

  #siteNav.is-open{
    transform: translateX(0);
  }

  /* Drawer linkleri */
  #siteNav a{
    margin-left: 0;
    padding: 10px 8px;
    font-size: 18px;
    position: relative;
    z-index: 1;
    pointer-events: auto;
  }

  body.menu-open{
    overflow: hidden;
  }
}

/* Telefonlar için */
@media (max-width: 768px) {

  /* Header: tek satır, logo sol - hamburger sağ */
  .header{
    padding: 15px 6%;
  }

  .logo{
    align-items: flex-start;
    text-align: left;
  }

  .logo-main{ font-size: 22px; font-weight: 750; }
  .logo-sub { font-size: 15px; font-weight: 600; }

  /* HERO */
  .hero {
    padding: 0 7%;
    height: auto;
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .hero h1 { font-size: 26px; }
  .hero p  { font-size: 15px; }

  .section { padding: 40px 7%; }

  .service-container { grid-template-columns: 1fr; }

  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 100%;
    max-width: 260px;
  }

  /* İletişim mobil */
  .iletisim-section {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  /* Hakkımızda mobil */
  .about {
    padding: 50px 7%;
  }

  .about-container {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .about-text {
    order: 1;
    max-width: 100%;
    text-align: left;
  }

  .about-image {
    order: 2;
    opacity: 0.85;
  }

  .about-image img {
    max-width: 240px;
    margin-top: 0;
  }

  .about-text h2 {
    margin-bottom: 16px;
    font-size: 25px;
  }

  .about-text p {
    margin-bottom: 14px;
  }

  /* Başlıklar mobil */
  .services h2 { font-size: 25px; }
  .team h2 { font-size: 25px; }

  /* Slider mobil */
  .hero-slider {
    height: 70vh;
    min-height: 360px;
  }

  .hero-content h1 { font-size: 26px; }
  .hero-content p  { font-size: 15px; }

  .slider-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
}

/*kkkk*/

/* Desktop: hamburger ve mobil drawer kapalı */
.hamburger { display: none; }
.nav-overlay, .mobile-drawer { display: none; }

@media (max-width: 992px){

  /* Desktop nav mobilde gizli */
  #siteNav { display: none; }

  /* Hamburger görünür */
  .hamburger{
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 1px solid #1B263B;
    background: transparent;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10010; /* üstte kalsın */
  }
  .hamburger span{
    width: 22px;
    height: 2px;
    background:#E0E1DD;
    border-radius: 2px;
    display:block;
    transition: transform .25s ease, opacity .25s ease;
  }
  .hamburger.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2){ opacity: 0; }
  .hamburger.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

  /* Overlay */
  .nav-overlay{
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 10000;
  }
  .nav-overlay.is-open{
    opacity: 1;
    pointer-events: auto;
  }

  /* Drawer */
  .mobile-drawer{
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(300px, 85vw);
    background: #0D1B2A;
    border-left: 1px solid #1B263B;
    padding: 90px 16px 18px; /* üstte header boşluğu */
    flex-direction: column;
    gap: 14px;

    transform: translateX(105%);
    transition: transform .25s ease;
    z-index: 10001;
  }
  .mobile-drawer.is-open{
    transform: translateX(0);
  }

  .mobile-drawer a{
    color: #E0E1DD;
    font-size: 18px;
    padding: 12px 8px;
    width: 100%;
    text-align: left;
  }

  body.menu-open{ overflow: hidden; }
}

/* BLOG */ 
/* ========== BLOG (EKİP - İLETİŞİM ARASI) ========== */

.blog {
  background-color: #E0E1DD;
}

.blog h2 {
  font-size: 28px;
  margin-bottom: 30px;
  border-left: 4px solid #C9A86A;
  padding-left: 10px;
  color: #0D1B2A;
}

/* Slider alanı */
.blog-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Ok butonları */
.blog-nav {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #C9A86A;
  background: rgba(0,0,0,0.35);
  color: #E0E1DD;
  font-size: 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, background-color .2s ease, border-color .2s ease;
  flex: 0 0 auto;
}

.blog-nav:hover {
  transform: translateY(-1px);
  border-color: #0D1B2A;
  background: rgba(0,0,0,0.55);
}

/* Kartların aktığı şerit */
.blog-track {
  display: flex;
  gap: 18px;

  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  padding: 6px 4px 14px;
  flex: 1 1 auto;

  /* scrollbar görünmesin (isteğe bağlı) */
  scrollbar-width: none;       /* Firefox */
}
.blog-track::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* Blog kartı: ekip kartı gibi kare */
.blog-card {
  background-color: #1B263B;
  border: 1px solid #415A77;
  border-radius: 6px;
  text-align: center;
  padding: 12px;

  width: 260px;
  flex: 0 0 260px;

  color: #E0E1DD;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  scroll-snap-align: start;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  border-color: #C9A86A;
}

/* Üstte görsel */
.blog-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 15px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-card h3 {
  font-size: 17px;
  color: #C9A86A;
  margin-bottom: 15px;
  line-height: 1.35;
  
}

.blog-card p {
  font-size: 14px;
  color: #E0E1DD;
  line-height: 1.5;
  
}

/* Mobil uyum */
@media (max-width: 992px) {
  .blog-nav{
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .blog-nav.prev { left: 6px; }
  .blog-nav.next { right: 6px; }

  .blog-card { width: 240px; flex-basis: 240px; }
  .blog-image { height: 140px; }
}

@media (max-width: 768px) {
  .blog h2 { font-size: 25px; }
  .blog-card { width: 220px; flex-basis: 220px; }
  .blog-image { height: 130px; }
}




/* SEO FOOTER */ 
.footer-seo {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.75;
}

.footer-seo a {
    color: #C9A86A; /* sitenin altın rengi */
    margin: 0 4px;
}

/* =========================
   FOOTER (TEMİZ + PROFESYONEL)
   Kullanım: <footer class="footer footer-pro"> ... </footer>
   ========================= */

.footer.footer-pro{
  background-color: #1B263B;
  color: #E0E1DD;
  text-align: left;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ÜST BLOK: 3 sütun */
.footer.footer-pro .footer-top{
  max-width: 1300px;
  margin: 0 auto;
  padding: 56px 10%;
  display: grid;
  grid-template-columns: 1.15fr 1.65fr 1fr; /* sol/orta daha geniş */
  gap: 110px; /* SÜTUNLAR ARASI MESAFE (uzaklaştırır) */
  align-items: start;
}

/* Sütun ortak */
.footer.footer-pro .footer-col{
  min-width: 0;
}

/* Başlıklar */
.footer.footer-pro .footer-title{
  font-size: 14px;
  letter-spacing: 2px;
  color: #C9A86A;
  font-weight: 700;
  margin-bottom: 18px;
}

/* SOL: Logo alanı */
.footer.footer-pro .footer-logo{
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  margin-bottom: 14px;
  padding-bottom: 10px;

  /* logo alt çizgi */
  background-image: linear-gradient(#C9A86A, #C9A86A);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 200px 2px;
}

.footer.footer-pro .footer-logo-main{
  font-size: 30px;
  font-weight: 800;
  color: #E0E1DD;
  letter-spacing: 2px;
  font-family: 'Libre Baskerville', serif;
}

.footer.footer-pro .footer-logo-sub{
  font-size: 18px;
  font-weight: 650;
  color: #C9A86A;
  letter-spacing: 2px;
  font-family: 'Libre Baskerville', serif;
  white-space: nowrap;
}

.footer.footer-pro .footer-mini{
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.75;
  max-width: 340px;
}

/* ORTA: İletişim satırları */
.footer.footer-pro .footer-item{
  margin-bottom: 16px;
  line-height: 1.7;
}

.footer.footer-pro .footer-label{
  display: block;
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 4px;
}

/* Footer linkleri */
.footer.footer-pro a{
  color: #E0E1DD;
  text-decoration: none;
}
.footer.footer-pro a:hover{
  color: #FFFFFF;
  text-decoration: underline;
}

/* SAĞ: Menü */
.footer.footer-pro .footer-nav-links{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.footer.footer-pro .footer-nav-links a{
  font-size: 16px;
  font-weight: 500;
}

/* Desktop/Tablet: sütun arası dikey ayırıcı çizgiler */
@media (min-width: 993px){
  .footer.footer-pro .footer-top .footer-col{
    position: relative;
    padding-right: 30px; /* çizgiye nefes */
  }
  .footer.footer-pro .footer-top .footer-col:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 6px;
    right: -55px; /* gap büyük olduğu için çizgiyi ortaya taşır */
    width: 1px;
    height: calc(100% - 12px);
    background: rgba(255,255,255,0.10);
  }
}

/* ALT BLOK (senin eski düzenin gibi merkezli) */
.footer.footer-pro .footer-bottom{
  text-align: center;
  padding: 18px 10% 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13.5px;
}

.footer.footer-pro .footer-copy{
  margin-bottom: 8px;
}

.footer.footer-pro .footer-bottom .footer-links a{
  color: #C9A86A;
  font-size: 13px;
}
.footer.footer-pro .footer-bottom .footer-links a:hover{
  text-decoration: underline;
}

.footer.footer-pro .footer-bottom .footer-seo{
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.78;
}
.footer.footer-pro .footer-bottom .footer-seo a{
  color: inherit;
  text-decoration: none;
}
.footer.footer-pro .footer-bottom .footer-seo a:hover{
  text-decoration: underline;
  opacity: 1;
}

/* ========== TABLET: boşluğu biraz azalt (hala ferah) ========== */
@media (max-width: 1200px){
  .footer.footer-pro .footer-top{
    max-width: 1500px; 
    gap: 150px;
    padding: 60px 10%;
  }

  /* Dikey çizgiyi biraz daha yakına al */
  .footer.footer-pro .footer-top .footer-col:not(:last-child)::after{
    right: -35px;
  }
}

/* ========== MOBİL: tek sütun + dikey çizgi yok, yatay ayırıcı var ========== */
@media (max-width: 992px){
  .footer.footer-pro .footer-top{
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 36px 7%;
  }

  /* Mobilde dikey çizgileri kapat */
  .footer.footer-pro .footer-top .footer-col::after{
    display: none !important;
  }
  .footer.footer-pro .footer-top .footer-col{
    padding-right: 0;
  }

  /* Mobilde yatay ayırıcı */
  .footer.footer-pro .footer-top .footer-col{
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer.footer-pro .footer-top .footer-col:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer.footer-pro .footer-bottom{
    padding: 16px 7% 20px;
  }
}

/* Küçük mobil: logo biraz küçülsün */
@media (max-width: 480px){
  .footer.footer-pro .footer-logo-main{ font-size: 26px; }
  .footer.footer-pro .footer-logo-sub{ font-size: 16px; }
  .footer.footer-pro .footer-mini{ font-size: 14px; }
}

.services-seo-text .services-seo-title{
    text-align: center;
    font-size: 25px;          
    font-weight: 700;
    padding-top: 30px;
    max-width: 700px;
    margin: 0 auto 18px auto;
    border-left: none !important;
    padding-left: 0 !important;
    position: relative;
}

.services-seo-title::after{
    content: "";
    display: block;
    width: 36px;              /* 50 biraz uzundu */
    height: 2px;
    background: #C9A86A;
    margin: 12px auto 0 auto;
}

.ek-text {
  color: #12263b;
  text-align: center;
  line-height: 1.8;
  font-size: 17px; 
}


/* Tablet */
@media (max-width: 992px){
  .services-seo-text .services-seo-title{
    font-size: 22px;
    padding-top: 20px;
    max-width: 620px;
    margin-bottom: 14px;
  }

  .services-seo-title::after{
    width: 32px;
    margin-top: 10px;
  }

  .ek-text{
    font-size: 17px;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 10px;
  }
}

/* Mobil */
@media (max-width: 768px){
  .services-seo-text{
    margin-top: 30px; /* 50 çok büyütüyordu, daha dengeli */
  }

  .services-seo-text .services-seo-title{
    font-size: 17px;
    padding-top: 16px;
    max-width: 520px;
    margin-bottom: 12px;
  }

  .services-seo-title::after{
    width: 28px;
    height: 2px;
    margin-top: 10px;
  }

  .ek-text{
    font-size: 14px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 8px;
    text-align: left; /* mobilde okumak daha rahat */
  }
}



.person-name{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#b89556;
}





