* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #a80f0f; /* Örnek kırmızı ton */
}

body {
  font-family: "Roboto", sans-serif;
  background: #f2f4f8;
  color: #333;
  line-height: 1.7;
}

nav {
  background: linear-gradient(90deg, #cb1b1b, #ff8a65);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.8em;
  font-weight: 700;
}

.logo img {
  height: 50px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    background: #cb1b1b;
    padding-top: 60px;
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }
}

.iletisimtelkonum{
	opacity: 0;
	width: 100%;
	position: fixed;
	z-index: -5;
	align-items: center;
	justify-content: space-between;
	display: block;
	bottom: 0;
	background-color: #24262b;
}
.iletisimtelkonumic{
	display: grid;
	align-items: center;
	column-gap: 0rem;
	justify-content: space-between;
	justify-items: center;
	grid-template-columns: repeat(2, 1fr);
}
.iletisimtelkonum a{
	border: 0;
	background: none;
	display: block;
	margin: 16px auto;
	text-align: center;
	border: 2px solid #00ff00;
	padding: 8px 40px;
	outline: none;
	color: white;
	border-radius: 24px;
	transition: 0.25s;
	cursor: pointer;
	text-decoration: none;
	width: 200px;
}
.iletisimtelkonum a:hover{
	background: #00ff00;
}
.iletisimtelkonum .yoltarifi{
	border: 2px solid #cb1b1b;
}
.iletisimtelkonum .yoltarifi:hover{
	background: #cb1b1b;
}

@media(max-width: 767px){
	.iletisimtelkonum{
		opacity: 1;
		z-index: 10000000;
	}
}

@media(max-width: 700px){
	.iletisimtelkonum a{
		width: 100%;
	}
	
}

main {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

.highlight-box {
  background-color: #fff8e1;
  border-left: 5px solid #ffc107;
  padding: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.highlight-box-intitle {
  background: #ffeaea;
  border-left: 5px solid var(--primary);
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-style: italic;
}

section {
  margin-bottom: 80px;
}

section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #cb1b1b;
  position: relative;
}

section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #cb1b1b;
  margin: 15px auto 0;
  border-radius: 2px;
}

section h1 {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #cb1b1b;
  position: relative;
}

section h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #cb1b1b;
  margin: 15px auto 0;
  border-radius: 2px;
}

.content-section {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
  align-items: center;
}

.content-section img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}


.content-text {
  flex: 1;
  padding: 40px;
  background: linear-gradient(135deg, #fff, #f9f9f9);
}

.content-text p {
  margin-bottom: 20px;
}

.content-text ul {
  list-style: none;
  padding-left: 0;
}

.content-text li {
  margin-bottom: 10px;
  font-weight: 500;
}

.content-text li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #4caf50;
  margin-right: 10px;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .highlight-box {
    background-color: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 15px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
  }

  .istatistik-kutu {
    background: linear-gradient(135deg, #fefcea, #f1da36);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 20px 0;
  }

  .istatistik-kutu h4 {
    font-size: 26px;
    color: #a80f0f;
    margin-bottom: 10px;
  }


  .extra-section h3 {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #cb1b1b;
  position: relative;
}

.extra-section h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #cb1b1b;
  margin: 15px auto 0;
  border-radius: 2px;
}

  .neden-kart-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
  }

  .neden-kart {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
  }

  .neden-kart i {
    color: #a80f0f;
    font-size: 28px;
  }

  .neden-kart h3 {
    margin-top: 12px;
    color: #a80f0f;
    font-size: 20px;
  }



.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}


.service-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 3em;
  color: #cb1b1b;
  margin-bottom: 20px;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.testimonial-card {
  min-width: 300px;
  background: linear-gradient(135deg, #fff, #f9f9f9);
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  scroll-snap-align: start;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: scale(1.05);
}

.testimonial-card p {
  font-style: italic;
}

.testimonial-card strong {
  display: block;
  margin-top: 10px;
  color: #555;
  text-align: right;
}

.contact-section {
  background: linear-gradient(135deg, #fff, #f9f9f9);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.h4 {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #cb1b1b;
  position: relative;
}

.h4::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #cb1b1b;
  margin: 15px auto 0;
  border-radius: 2px;
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-map {
  flex: 1;
  min-width: 250px;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 15px;
}

.social-media {
    background: #fafafa;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
  }

  .social-media h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #a80f0f;
  }

  .social-icons a {
    margin: 0 10px;
    font-size: 28px;
    color: #a80f0f;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #333;
  }

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 50px 20px;
  margin-top: 60px;
  margin-bottom: 40px;
}

footer a {
  color: #ff8a65;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.custom-card {
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.custom-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card-grid-item {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  margin-bottom: 20px;
}

.custom-card .card-body {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.custom-card h5 {
  color: #343a40;
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 15px;
  margin-bottom: 10px;
}

.custom-card p {
  color: #666;
  font-size: 0.95rem;
  flex-grow: 1;
}

.custom-card a {
  color: black;
  text-decoration: none;
}

.icon-circle {
  background: #f1f1f1;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #212529;
  transition: background 0.3s ease;
}

.custom-card:hover .icon-circle {
  background: #212529;
  color: #fff;
}

@media (max-width: 767px) {
  .custom-card {
    width: 80%;
    margin: auto;
  }
}

@media (max-width: 992px) {
  .card-grid-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .card-grid-item {
    flex: 1 1 100%;
  }
}


.error-message {
	color: red;
	display: none; /* Başlangıçta görünmez */
}
.yorumsistemi{
	background-color: #fff7f6;
	display: flex;
	flex-direction: column;
	max-width: 720px;
	margin: 40px auto;
	border: 1px solid rgba(0, 0, 0, 0.4);
	border-radius: 20px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.4);
	align-items: center;
}

.yorumsistemi1{
	margin: 20px 0px;
}

.yorumsistemi p{
	font-size: 22px;
	font-weight: bold;
}

.yorumsistemi2{
	width: 100%;
}

.inputteam{
	width: 600px;
	display: flex;
	flex-direction: column;
	margin: 15px ;
	border: 1px solid #ffa299;
	border-radius: 20px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.4);
}
.yorumgiriskayit{
	display: flex;
	justify-content: space-between;
}
.yorumgiriskayitbutton{
	display: flex;
	justify-content: space-between;
	margin:  10px auto;
}

.yorumgiriskayitbutton button{
	width: 125px;
	height: 40px;
	margin: 0px 20px;
	color: black;
	background-color: #ff9386;
	border: 3px solid #ff9386;
	border-radius: 20px;
	font-size: 16px;
	font-weight: bold;
}

.yorumgiriskayitbutton button:hover{
	background-color: white;
	color: #ffa299;
	transition: 0.5s ease;
}

.isimeposta{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.yorumalani{
	margin: 0px 20px;
}

.input-group {
	position: relative;
	margin: 15px auto;
}

.textarea{
	height:100px !important;
	padding: 8px !important; 
	width: 100% !important; 
	margin: 0px auto !important; 
}

.input-group label {
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	font-size: 16px;
	color: black;
	padding: 0 5px;
	pointer-events: none;
	transition: 0.3s;
}

.input-group .input {
	height: 40px;
	font-size: 16px;
	color: black;
	padding: 0 15px;
	margin: 0 20px;
	background: transparent;
	border: 1.2px solid black;
	outline: none;
	border-radius: 5px;
}

.input-group .input:focus~label,
.input-group .input:valid~label {
	top: 0;
	font-size: 14px;
	background: #fff7f6;
	color: #ff3d2a ;
	border-left: 1px solid #ff3d2a;
	border-right: 1px solid #ff3d2a;
}

.input-group .input:focus,
.input-group .input:valid {
	border: 1.2px solid #ff3d2a;
}


.rating {
	font-size: 20px;
	margin: 10px 0;
}
.stars {
	font-size: 30px;
}

.yorumyapmayildiz{
	margin: 0px 20px;
}

.star {
	cursor: pointer;
	font-size: 30px;
}

.stars-container {
	display: inline-block;
}

.star {
	color: lightgray; /* Default color for inactive stars */
	margin: 0 2px; /* Adjust spacing between stars */
}

.star.active-star {
	color: gold; /* Color for active stars */
}


.one {
	color: rgb(255, 0, 0);
}

.two {
	color: rgb(255, 106, 0);
}

.three {
	color: rgb(252, 255, 120);
}

.four {
	color: rgb(255, 255, 0);
}

.five {
	color: rgb(24, 159, 14);
}


.comments{
	text-align: left;
}
.otoyorumgenis{
	max-width: 1180px;
	margin-inline: auto;
	margin-top: 35px;
	margin-bottom: 0px;
}

.yorumgonder{
	width: 150px;
	height: 40px;
	margin: 7px 20px;
	color: white;
	background-color: #ff3d2a;
	border: 3px solid #ff3d2a;
	border-radius: 20px;
	font-size: 16px;
}
.yorumgonder:hover{
	background-color: white;
	color: #ff3d2a;;
	transition: 0.5s ease;
}

.otoyorum{
	max-width: 600px;
	margin: 0px 15px; 
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	border: 1px solid #ff3d2a;
	border-radius: 10px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.4);


}
.otoyorumeleman{
	padding: 8px;
	text-align: left;    
}

.otoyorumisim{
	font-size: 18px;
	font-weight: 600;
}

.otoyorumcizgi{
	border: 0.5px solid whitesmoke;
}
.otoyorumayirac{
	border: 0.5px solid lightgray;
}

.timestamp {
  margin-left: 8px;      
  color: #666;           
  font-size: 0.85em;     
  vertical-align: middle;
}
.reply {
  background: #ffffff;
  border-left: 4px solid #ff3d2a;      /* sol çizgi vurgu rengi */
  padding: 12px 16px;
  margin: 16px 0 8px 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.reply-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.reply-author {
  font-weight: 600;
  color: #ff3d2a;
  margin-right: 12px;
}

.reply-body {
  font-size: 0.95em;
  line-height: 1.4;
  color: #333;
}

.reply-button {
  display: none;
}

@media (max-width:728px){
	.yorumsistemi2{
		text-align: center;
		justify-content: center;
	}

	.inputteam{
		width: 320px;
		margin-inline: auto;
	}

	.yorumgiriskayit{
		flex-direction: column;
	}
	.isimeposta{
		grid-template-columns: repeat(1, 1fr);
	}
	.yorumgonder{
		margin-inline: auto;
	}
	.yorumsistemi1 p {
		text-align: center;
	}
}

button:disabled {
  background-color: #cccccc !important; /* Gri arka plan */
  color: #666666 !important;            /* Daha soluk yazı */
  border: 3px solid #999999 !important; /* Daha açık gri kenar */
  cursor: not-allowed !important;       /* İmleç engelli sembolü */
  opacity: 0.7;                         /* Hafif transparan görünüm */
}
