* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff4e6;
    overflow-x: hidden;
}

header {
    background-color: #ff7f50;
    padding: 10px 0;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.menu {
    display: flex;
    gap: 15px;
}
.menu a {
    color: #6b0000;
    text-decoration: none;
    font-weight: bold;
	position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #6b0000;
    transition: width 0.3s ease, left 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
    left: 0;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
	color: #6b0000;
}


.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #ff7f50;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
    padding: 15px 20px;
	position: relative;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: #6b0000;
    transition: width 0.3s ease, left 0.3s ease;
}

.mobile-menu a:hover::after {
    width: 100%;
    left: 0;
}


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

	.menu-icon {
		display: block;
	}

	.mobile-menu.active {
		display: flex;
	}
}

nav a {
    color: #6b0000;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.ilk {
    background-color: #ffcc99;
	color: #993300;
    text-align: center;
    padding: 30px 20px;
}

.ilk_ust {
    background-color: #ffcc99;
	color: #993300;
    text-align: center;
    padding: 30px 20px;
}

.ilk_ust h1 {
	color: #993300;
	margin: 10px 10px 0 10px;
}

.ilk_alt {
    background-color: #ffcc99;
	color: #993300;
    text-align: center;
    padding: 5px 20px;
}

.ilk .ilk_alt h1 {
    color: #cc4400;
}

.ilk .ilk_alt h2 {
    color: #cc4400;
}

.ilk .ilk_alt p {
    color: #993300;
    margin: 20px 0;
}

.ilk .button {
    background-color: #cc4400;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin: 10px;
}

.ilk .button:hover {
    background-color: #ff7f50;
}

.secim-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.secim-form select, option {
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border: 2px solid #cc4400;
    width: 150px;
	background-color: #ffe4b5;
	color: #6b0000;
	font-size: 16px;
	font-weight: bold;
}

.secim-form .arama-buton {
    background-color: #ffe4b5;
    color: #6b0000;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    border: 2px solid #cc4400;
    cursor: pointer;
    margin: 10px;
}

.arama-buton:hover {
    background-color: #facb7a;
}

.ozel {
	margin: 0;
	padding: 20px 0;
	background-color: #ffe4b5;
}

.ozellik {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    background-color: #ffe4b5;
}

.ozellik_kutu {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ozellik_kutu:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ozellik_kutu h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.ozellik_kutu p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.ozellik_kutu i {
    font-size: 40px;
    color: #f76b1c;
    margin-bottom: 15px;
    display: inline-block;
}

.anasayfa {
	margin: 0;
	padding: 20px 0;
	background-color: #ffcc99;
}
.anasayfa h2 {
	color: #cc4400;
	font-size: 28px;
	margin: 10px 0 10px 0;
}
.anasayfa-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  background-color: #ffcc99;
}

.firma-ekle {
    padding: 0 5px 0 5px;
    background-color: #fff4e6;
	font-weight: bold;
	color: #993300;
}

.footer {
	background-color: #ff7f50;
	padding: 10px 7px;
	color: #6b0000;
	text-align: center;
}

.footer-container {
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer-section {
	flex: 1;
	min-width: 250px;
	padding: 0 10px 0 0;
	text-align: left;
	line-height: 1.7;
}

.footer-section h3 {
	margin: 0;
	padding: 0;
	font-size: 1.5rem;
}

.footer-links {
	list-style-type: none;
	padding: 0;
}

.footer-links li {
	padding: 0;
}

.footer-links a {
	display: block; 	
	padding: 3px 0;
	color: #6b0000;
	text-decoration: none;
	text-align: left;
	width: 100%;
}

.footer-links a:hover {
	background-color: #fff;
	color: #6b0000;
	transition: background-color 0.3s, color 0.3s;
}

.social-links a {
	padding: 3px 0;
	color: #6b0000;
	text-decoration: none;
	text-align: left;
}

.social-links a:hover {
	background-color: #fff;
	color: #6b0000;
	transition: background-color 0.3s, color 0.3s;
}

.footer-divider {
	margin: 20px 0;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copy {
	margin: 0;
}

@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: left;
	}

	.footer-section {
		min-width: 100%;
		padding: 5px 0;
		text-align: left;
	}

	.footer-links a, .social-links a {
		
	}
}

@media (max-width: 768px) {
    .ozellik {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        overflow-x: hidden;
    }

    .ozellik_kutu {
        width: 100%;
        max-width: 600px;
        flex: unset;
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .secim-form {
		flex-direction: column;
		align-items: center;
    }

    .secim-form select,
    .secim-form .arama-buton {
		width: 100%;
		max-width: 300px;
    }
}

.blog {
	text-align: center;
	margin: 0;
	padding: 20px 0;
	background-color: #ffcc99;
}
.blog h2 {
	color: #cc4400;
	font-size: 28px;
	margin: 10px 0 10px 0;
}
.blog-kismi {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.blog-bolum {
	background-color: #fcefd7;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin: 15px;
	padding: 20px;
	width: 300px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-bolum h3 {
	color: #333;
	font-size: 22px;
	margin-bottom: 15px;
}
.blog-bolum p {
	color: #555;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 15px;
}
.blog-bolum a {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 5px;
	background-color: #f0d197;
	color: #6b0000;
	text-decoration: none;
	transition: background-color 0.3s ease;
	font-weight: bold;
}
.blog-bolum a:hover {
	background-color: #fabe4d;
}
.blog-bolum:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.firma-ana {
    margin: 20px 0;
}

.ilce-liste {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}
.ilce-liste h2 {
    width: 100%;
	text-align: center;
}
	
.ilce-kisim {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 10px;
	max-width: 1200px;
}
.ilce {
    display: inline-block;
    padding: 5px 7px;
    background-color: #f4f4f4;
    border: 1px solid #ff5722;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.ilce:hover {
    background-color: #ff5722;
    color: white;
    transform: translateY(-3px);
}

.firma-kisim {
	text-align: center;
}

.firma-baslik {
	font-size: 28px;
	margin-bottom: 30px;
	margin-top: 40px;
	color: #333;
}

.firma-liste {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

.firma {
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-left: 4px solid #ff7f50;
	border-radius: 8px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
	padding: 0 20px 20px 20px;
	width: 85%;
	max-width: 800px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: left;
	position: relative;
}

.firma h3 {
	color: #333;
	font-size: 22px;
	margin-bottom: 10px;
}

.firma p {
	color: #555;
	margin: 5px 0;
}

.firma-detay-link {
	margin-top: 15px;
	display: inline-block;
	padding: 10px 20px;
	background-color: #ff7f50;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

.firma-detay-link:hover {
	background-color: #ff5722;
}

.dogrulanmis {
	background-color: #4CAF50;
	color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 12px;
	position: absolute; 
	top: 10px;
	right: 10px; 
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.firma:hover {
	transform: translateY(-5px); 
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); 
}
.sehir-liste {
    text-align: center;
    padding: 20px 20px;
    background-color: #fcefd7;
}
.sehir-liste h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}
.sehir-liste h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}


.sehir-kisim {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 10px;
}
.sehir {
    display: inline-block;
    padding: 5px 7px;
    background-color: #f4f4f4;
    border: 1px solid #ff5722;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.sehir:hover {
    background-color: #ff5722;
    color: white;
    transform: translateY(-3px);
}


.aciklama_alani {
	text-align: left;
	width: 100%;
	overflow-y: auto; 
	padding: 0 10px 0 0;
	margin: 0;
	border-radius: 2px; 
	background-color: #ffcc99; 
	text-align: justify; 
	word-break: break-word;
	max-width: 1200px;
	margin: 0 auto;
}
.aciklama_alani p {
	margin: 0;
	padding: 0;
}


.aciklama_alani::-webkit-scrollbar {
  width: 5px; 
}

.aciklama_alani::-webkit-scrollbar-thumb {
  background: #cc4400; 
  border-radius: 4px; 
}

.aciklama_alani::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.aciklama_alani::-webkit-scrollbar-track {
  background: #ff7f50; 
}

.breadcrumb {
  display: flex;
  justify-content: center; 
  font-size: 14px;
  padding: 2px 0; 
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  margin-right: 8px;
}

.breadcrumb li:not(:last-child)::after {
  content: "/"; 
  margin-left: 8px;
}

.breadcrumb a {
  text-decoration: none;
    color: #333;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb li:last-child {
  color: #333;
}

@media (max-width: 768px) {
  .breadcrumb {
    font-size: 12px; 
  }

  .breadcrumb li:not(:last-child)::after {
    margin-left: 4px; 
  }
}

.telefon {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #ff7f50; 
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold; 
}

.telefon:hover {
    background-color: #e67e22; 
}

.il-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}
.il-link {
    background: #f8f9fa;
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px 6px;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}
.il-link:hover {
    background: #e2e8f0;
    color: #000;
}



.ilce-aciklama-blok {
  max-width: 1200px;
  margin: 0 auto 20px auto;
  padding: 0 15px;
}

.ilce-aciklama-icerik {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* align-items: flex-start; Bu satırı koruyoruz, sticky'nin doğru çalışması için önemlidir. */
  align-items: flex-start;
}

.aciklama-metin {
  flex: 1;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  
  /* YENİ EKLENEN KISIM: Metin kutusunu sınırlama ve scroll ekleme */
  max-height: 450px; /* Maksimum yükseklik. Bu değeri istediğiniz gibi ayarlayabilirsiniz. */
  overflow-y: auto; /* Yükseklik aşıldığında dikey scrollbar otomatik çıksın. */

  /* İsteğe bağlı: Scrollbar'ı daha ince ve estetik yapma */
  scrollbar-width: thin; /* Firefox için */
  scrollbar-color: #888 #f0f0f0; /* Firefox için */
}

/* Webkit tabanlı tarayıcılar (Chrome, Safari, Edge) için ince scrollbar stili */
.aciklama-metin::-webkit-scrollbar {
  width: 6px;
}

.aciklama-metin::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.aciklama-metin::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

.aciklama-resim {
  flex-shrink: 0;
  width: 340px; 
  
  position: -webkit-sticky; 
  position: sticky;
  top: 20px; 
}

.aciklama-resim img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.pp {
	width: 1150px;
}

@media (max-width: 768px) {
  .ilce-aciklama-icerik {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
	
	.pp {
	width: 100%;
}
  .aciklama-resim {

    position: static;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .aciklama-resim img {
    margin: 0 auto;
  }
  
  .aciklama-metin {
 
    text-align: left;
  }
}



    .firma-kart-listesi {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      max-width: 1150px;
      margin: 0 auto;
    }

    .firma-kart {
      background-color: #f9f9f9;
      border: 1px solid #e0e0e0;
      border-left: 4px solid #ff7f50;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 6px; 
      width: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
	  margin-bottom: 10px; 
	  text-align: left;
    }


@media (min-width: 768px) {
  .firma-kart-listesi {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .firma-kart {
    width: calc(50% - 6px);
  }
}


    .firma-kart:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
    }
    
    .firma-kart__icerik {
      display: flex;
      flex-direction: column;
      gap: 2px; 
    }

    .firma-kart__isim {
      font-size: 19px;
      font-weight: 700;
      color: #333;
      line-height: 1.2;
      margin: 0;
    }
    

    .firma-kart__yetkili-rozetler {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0; 
    }

    .firma-kart__yetkili {
      font-size: 14px;
      font-weight: 600;
      color: #555;
      margin: 0;
    }

    .firma-kart__rozetler {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
    }

    .firma-kart__rozet {
      font-size: 11px;
      font-weight: 600;
      padding: 1px 6px;
      border-radius: 9999px;
    }

    .rozet--dogrulanmis { background-color: #4CAF50; color: white; }
    .rozet--abone { background-color: #6366f1; color: white; }
    .rozet--724 { background-color: #3b82f6; color: white; }

    .firma-kart__temel-bilgiler {
      margin: 0; 
      color: #555;
      font-size: 13px;
      display: flex;
      flex-direction: column;
      gap: 2px; 
    }
    
    .firma-kart__temel-bilgiler p, 
    .firma-kart__temel-bilgiler div {
      margin: 0;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .firma-kart__hizmet-etiketler {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
    }

    .firma-kart__hizmet-etiket {
      background-color: #e0e0e0;
      color: #333;
      font-size: 11px;
      padding: 2px 6px;
      border-radius: 9999px;
    }
    
    .firma-kart__aciklama {
      margin: 2px 0;
      font-size: 13px;
      color: #555;
      line-height: 1.3;
	  text-align: left;
    }

    .firma-kart__alt-bolum {
      margin-top: 2px;
      display: flex;
      gap: 6px;
      align-items: center;
    }


.firma-kart__buton {
    padding: 7px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}


.buton--ara {
    background-color: #ff7f50; 
    color: white;
    max-width: 230px; 
	min-width: 190px;
    width: auto;
}
.buton--ara:hover { background-color: #e5673f; }


.firma-kart__puan-bar {
    flex: 1;
    max-width: 150px; 
    text-align: left;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 2px 4px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
}


.firma-kart__puan-bar-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.firma-kart__puan-bar-baslik span:first-child {
    font-size: 11px;
    font-weight: 600;
    color: #555;
}
.firma-kart__puan-bar-baslik span:last-child {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}


.firma-kart__puan-bar-dis {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 9999px;
    height: 6px;
}
.firma-kart__puan-bar-ic {
    height: 6px;
    border-radius: 9999px;
    transition: width 0.5s ease-in-out;
}


.firma-kart__alt-bolum {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 6px; 
}


@media (max-width: 640px) {

    .firma-kart__alt-bolum {
        flex-direction: row;
        justify-content: space-between;
    }
    .buton--ara {
        flex: 1;   
        max-width: none;
        width: 100%;
    }
    .firma-kart__puan-bar {
        flex: 0.85;   
        max-width: none;
    }
	.firma-kart {
		width: 98%;
	}
    .firma-kart__isim { font-size: 20px; }
    .firma-kart__yetkili { font-size: 15px; }
    .firma-kart__temel-bilgiler { font-size: 14px; }
    .firma-kart__aciklama { font-size: 14px; }
}






        .accordion-section { width: 100%; max-width: 1200px; margin: 30px auto; padding: 0 20px; }
        .accordion-item { background-color: #fff4e6; border: 1px solid #ffcc99; border-radius: 8px; margin-bottom: 10px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
        .accordion-header { background-color: #ffe4b5; padding: 15px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background-color 0.3s ease; }
        .accordion-header:hover { background-color: #facb7a; }
        .accordion-header h3 { margin: 0; font-size: 18px; color: #993300; }
        .accordion-header .icon { 
            transition: transform 0.3s ease; 
            color: #cc4400; 
            font-size: 1rem;
        }
        .accordion-item.active .accordion-header .icon { transform: rotate(180deg); }
        .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease-out; padding: 0 20px; background-color: #fff; }
        .accordion-content p { padding: 20px 0; margin: 0; color: #666; line-height: 1.7; }
        .hizmet-senaryolari { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }
        .senaryo-kutu { background-color: #fff; border-radius: 8px; padding: 25px; text-align: center; border: 1px solid #ffcc99; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
        .senaryo-kutu:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0,0,0,0.1); }
        .senaryo-kutu i { font-size: 36px; color: #ff7f50; margin-bottom: 15px; }
        .senaryo-kutu h3 { font-size: 20px; color: #993300; margin-top: 0; }
        .senaryo-kutu p { color: #666; font-size: 15px; flex-grow: 1; }