


/* ==== ÜST HERO GÖRSELİ ==== */

.service-hero {
    height: 50vh;
    min-height: 320px;
    background-size: cover;
    background-position: center ;
    position: relative;
    

}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.service-hero-overlay h1 {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
}



/* === HİZMETLERİN ÜST GÖRSELİ === */

.hizmet-hero {
    height: 40vh;
    min-height: 200px;
    background-size: cover;
    background-position: center ;
    position: relative;
}

.hizmet-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hizmet-hero-overlay h1 {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 700;
}

.hizmet-banner{
  background: #f4f4f4;
  padding: 18px 0;          /* 40 → 18 */
}

.hizmet-banner-inner{
  width: min(1000px, 94%);  /* biraz daha dar */
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  
}

.hizmet-banner-inner img{
  width: 100%;
  height: 450px;            /* ASIL KRİTİK SATIR */
  object-fit: cover;        /* hero hissi ama kısa */
  object-position: center;
  display: block;
  
  
}

@media (max-width: 1024px) {
  .hizmet-banner-inner img{
    height: 320px;
  }
}

@media (max-width: 768px) {
  .hizmet-banner-inner img{
    height: 240px;
  }
}


/* TİTLE */
.hizmet-title{
  background: #f4f4f4;
  padding: 28px 0 12px;
}

.hizmet-title-inner{
  width: min(1000px, 94%);    /*GÖRSELLE AYNI */
  margin: 0 auto;
  text-align: center;
  padding: 18px 10px;
  border-radius: 6px;
  background: #0D1B2A;

  box-shadow: 0 14px 34px rgba(0,0,0,0.38);
    transform: translateY(-3px);
}


.hizmet-title h1{
  margin: 0;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  position: relative;
}




.hizmet-title h1::after{
  content: "";
  display: block;
  width: 80px;              /* çizgi uzunluğu */
  height: 3px;              /* çizgi kalınlığı */
  background: #C9A86A;      /* altın renk */
  margin: 12px auto 0;      /* ortala + üst boşluk */
  border-radius: 2px;

  transition: width 0.25s ease;
}

.hizmet-title-inner:hover h1::after{
  width: 90%;
}


/* ====== TITLE responsive OVERRIDE (EN ALTTA OLMALI) ====== */

/* TABLET */
@media (max-width: 992px) {
  .hizmet-title .hizmet-title-inner h1{
    font-size: 30px !important;
  }
  .hizmet-title .hizmet-title-inner{
    padding: 16px 10px !important;
  }
}

/* MOBİL */
@media (max-width: 768px) {
  .hizmet-title .hizmet-title-inner h1{
    font-size: 24px !important;
  }
  .hizmet-title .hizmet-title-inner{
    padding: 14px 8px !important;
  }
  .hizmet-title .hizmet-title-inner h1::after{
    width: 60px !important;
  }
}




/* ==== SAYFA METİN KISMI ==== */

.service-content {
    padding: 60px 10%;
    background: #FFFFFF;

    display: flex;            /* İçeriği ortalamak için */
    flex-direction: column;
    align-items: center;      /* Tüm içeriği ortalar */
    text-align: left;
}

.service-content h2 {
    font-size: 30px;
    color: #1B263B;
    margin-bottom: 20px;
    border-left: 4px solid #C9A86A;
    padding-left: 12px;
    
}

.service-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 1000px; /*900px*/
    text-align: justify;
    
}

.service-content ul {
    font-size: 17.5px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 1000px;
    
}

/*BÜYÜK DESKTOP İÇİN */
@media (min-width: 1600px) {
    .service-content p,
    .service-content ul {
        max-width: 1300px;
    }
}

.two-column-list {
    column-count: 2;
    column-gap: 40px;
    margin-top: 15px;
}

.two-column-list li {
    break-inside: avoid;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* =========================
   TABLET (769px – 1024px)
   ========================= */
@media (min-width: 769px) and (max-width: 1024px) {

  .service-content{
    padding: 44px 6%;
  }

  .service-content h2{
    font-size: 26px;
    margin-bottom: 16px;
  }

  .service-content p{
    font-size: 17px;
    line-height: 1.75;
    max-width: 900px;
  }

  .service-content ul{
    font-size: 16px;
    line-height: 1.6;
    max-width: 900px;
  }

  .two-column-list{
    column-gap: 28px;
  }
}

/* =========================
   MOBİL (0px – 768px)
   ========================= */
@media (max-width: 768px) {

  .service-content{
    padding: 34px 6%;
  }

  .service-content h2{
    font-size: 22px;
    margin-bottom: 14px;
    padding-left: 10px;
    border-left-width: 3px;
  }

  .service-content p{
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
    text-align: left;   /* mobilde justify kötü boşluk yapabiliyor */
  }

  .service-content ul{
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }

  .two-column-list{
    column-count: 1; /* sende zaten var, garanti olsun */
    column-gap: 0;
  }
}


@media (max-width: 768px) {
    .two-column-list {
        column-count: 1;
    }
}

/* ARKA PLAN */
.services {
    background: #f4f4f4 ;
    padding: 60px 10%;
}

/* MOBİL – 1 SÜTUN */
@media (max-width: 768px) {
    .service-container {
        grid-template-columns: 1fr;
    }
}

/* TABLET – 2 SÜTUN */
@media (min-width: 769px) and (max-width: 1024px) {
    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* NORMAL DESKTOP – 3 SÜTUN */
@media (min-width: 1025px) and (max-width: 1599px) {
    .service-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* BÜYÜK DESKTOP – 4 SÜTUN */
@media (min-width: 1600px) {
    .service-container {
        grid-template-columns: repeat(4, 1fr);
    }
}



/* KUTULAR */
.service-card {
    background: #c7b49142; /*#f4f4f4*/
    color: #0D1B2A;
    /*color: #f4f4f4;*/
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #966b1c; /*#C9A86A*/
    text-decoration: none;
    transition: 0.2s;
}

.service-card:hover {
    background: #c7b49177; /*#f7f7f7*/
    border-color: #a77e33;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

.service-card h3{
    color: #966b1c; /*#a77e33*/
    font-size: 22px;
    font-weight: 750;
    text-align: center;
}

.service-card p{
    color: #a0782d; /*#bb954d*/
    font-size: 17px;
    font-weight: 500;
    text-align: center;

}


/* HAKKIMIZDA */

.about-content {
    padding: 60px 10%;
    background: #FFFFFF;

    display: flex;
    flex-direction: column;
    align-items: center;
    /*text-align: left;*/
}

.about-box {
    max-width: 900px;
    
}

.about-box h2 {
    font-size: 23px; /* küçültülmüş */
    margin-bottom: 15px;
    border-left: 4px solid #C9A86A;
    padding-left: 12px;
    color: #1B263B;
}

.about-box p {
    font-size: 17px; /* küçültülmüş */
    color: #333;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* ==== BASİT SAYFA ÜST BAŞLIĞI ==== */
.legal-title {
    text-align: center;
    padding: 80px 0 40px;
    background: #FFFFFF;
}

.legal-title h1 {
    font-size: 42px;
    color: #0D1B2A;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    
}

.title-line {
    width: 90px;
    height: 4px;
    background-color: #C9A86A; /* altın */
    margin: 0 auto;
    border-radius: 2px;
}

/* =========================
   TABLET (769px – 1024px)
   ========================= */
@media (max-width: 1024px) {
    .legal-title {
        padding: 60px 0 32px;
    }

    .legal-title h1 {
        font-size: 34px;
        letter-spacing: 0.8px;
    }

    .title-line {
        width: 70px;
        height: 3px;
    }
}

/* =========================
   MOBİL (0px – 768px)
   ========================= */
@media (max-width: 768px) {
    .legal-title {
        padding: 40px 0 24px;
    }

    .legal-title h1 {
        font-size: 22px;
        letter-spacing: 0.4px;
        margin-bottom: 12px;
    }

    .title-line {
        width: 55px;
        height: 3px;
    }
}



/* SPİN */ 
#preloader {
    position: fixed;
    inset: 0;
    background: #0D1B2A; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease;
}

.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); }
}










