:root {
  --primary: #f9d11b;
  --primary-low: rgba(249, 209, 27, 0.7);
  --secondary: #7389ae;
  --f-gray: #b5bad0;
  --t-blue: color-mix(in lab, #f9d11b 90%, #000 10%);
  --platinum: #e0e0e2;
  --white: #fff;
  --black: #000;
  --highlight: #81d2c7; /* Vurgular */
  --background: #f9f9f9; /* Arka plan */
  --text-dark: #333; /* Koyu metin */
  --text-light: #666;
}

body {
  font-family: "Poppins", sans-serif;
}

/* HEADER */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--platinum);
  /* padding: 24px 0; */
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav .nav-links {
  display: flex;
  gap: 12px;
}

header nav .nav-links a {
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
}

header nav .nav-links a:hover,
header nav .nav-links a.active {
  background-color: var(--primary);
  color: var(--black) !important;
}

/* Dil */
.language-switcher {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.language-switcher a {
  color: var(--black);
  font-weight: 500;
  padding: 4px 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  cursor: pointer;
}

.language-switcher a:hover {
  background-color: var(--primary);
  color: var(--black) !important;
  border-radius: 6px;
}

.language-switcher a.active {
  background-color: var(--primary);
  color: var(--black) !important;
  border-radius: 6px;
}

.language-switcher span {
  color: var(--black);
  margin: 0 6px;
}
/* Dil */

.menu-trigger {
  display: none;
  color: var(--black);
  padding: 2px 8px;
  border-radius: 6px;
  background-color: var(--primary);
}

/* HEADER MOBILE */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  .menu-trigger {
    display: block;
    cursor: pointer;
  }

  .menu-trigger i {
    font-size: 24px;
    color: var(--black);
  }
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.overlay.visible {
  opacity: 1;
  visibility: visible;
}

.header-sidebar {
  width: 350px;
  background-color: var(--white);
  height: 100vh;
  transform: translateX(-350px);
  transition: all 0.3s ease-in-out;
  background-color: var(--primary);
}

.header-sidebar a {
  color: var(--black) !important;
}

.header-sidebar nav {
  position: relative;
}

.header-sidebar.fully-visible {
  transform: translateX(0);
}

.side-bar-header {
  padding: 12px 16px;
  font-size: 32px;
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--black);
  cursor: pointer;
}

.header-sidebar ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 32px;
}

.header-sidebar ul li {
  font-size: 32px;
  color: var(--platinum);
}
/* HEADER MOBILE */

/* HEADER */

/* HOME */
/* SLIDER */
.banner-slider {
  width: 100vw;
  height: calc(100vh - 102px);
  position: relative;
}

@media (max-width: 768px) {
  .banner-slider {
    height: calc(100vh - 190px);
  }
}

.banner-slider .swiper-slide {
  position: relative;
}

.serviceSwiper .swiper-slide{
  width: max-content;
  margin-right: 20px;
}

.banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-slider .swiper-button-next {
  right: 2% !important;
}

.banner-slider .swiper-button-prev {
  left: 2% !important;
}

.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary);
  font-size: 18px;
  transition: all 0.2s ease-in-out;
}

.banner-slider .swiper-button-next:hover,
.banner-slider .swiper-button-prev:hover {
  transform: scale(1.1);
  background-color: var(--primary);
  color: var(--black);
}

.banner-slider .swiper-button-next::after,
.banner-slider .swiper-button-prev::after {
  display: none;
}

.banner-slider .swiper-pagination-bullet {
  background: var(--white);
  opacity: 1;
  transform: scale(1.2);
  transition: all 0.2s ease-in-out;
}

.banner-slider .swiper-pagination-bullet-active {
  background: var(--primary);
  transform: scale(1.5);
  transition: all 0.2s ease-in-out;
}

.banner-slider .slide-caption {
  position: absolute;
  top: 50%;
  color: #fff;
  text-align: center;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  padding: 4px 8px;
  background-color: rgba(110, 37, 148, 0.5);
}

.slide-caption h2 {
  font-size: 4vw;
}

.slide-caption p {
  font-size: 24px;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-right-anim {
  animation: fadeRight 0.8s ease forwards;
}
/* SLIDER */

/* ANA SAYFA HAKKIMIZDA */
.home-about {
  padding: 60px 0;
  background-color: var(--white);
  border-top: 1px solid var(--platinum);
}

.home-about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Görsel Kısmı */
.home-about-image {
  flex: 1;
  max-width: 50%;
}

.home-about-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Metin Kısmı */
.home-about-content {
  flex: 1;
  max-width: 50%;
}

.home-about-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--black);
}

.home-about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 24px;
}

/* Buton */
.btn-more {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary);
  color: var(--black) !important;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.btn-more:hover {
  background-color: var(--t-blue);
  color: var(--black) !important;
}

/* Responsive Düzen */
@media (max-width: 768px) {
  .home-about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .home-about-image,
  .home-about-content {
    max-width: 100%;
  }

  .home-about-content h2 {
    font-size: 1.5rem;
  }
}

/* ANA SAYFA HAKKIMIZDA */

/* ANA SAYFA HİZMETLER */
/* HİZMETLERİMİZ */
.services {
  padding: 60px 0;
  background-color: var(--platinum);
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 40px;
}

.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.services-wrapper .swiper-button-next {
  color: var(--black) !important;
}

.services-wrapper .swiper-button-prev {
  color: var(--black) !important;
}

.services-wrapper .swiper-pagination-bullet {
  background-color: var(--black) !important;
  transition: all 0.3s ease-in-out;
}

.service-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 16px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.service-item img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 16px;
}

.service-item h3 {
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 16px;
}

.btn-service {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--primary);
  color: var(--black) !important;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.btn-service:hover {
  background-color: var(--t-blue);
}

@media (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .service-item {
    width: 100%;
  }
}

/* ANA SAYFA HİZMETLER */

/* ANA SAYFA BİZİMLE İLETİŞİME GEÇİN */
/* İLETİŞİME GEÇİN */
.contact-us {
  padding: 60px 0;
  background-color: var(--white);
  border-top: 1px solid var(--platinum);
}

.contact-us-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-us-image {
  flex: 1;
  max-width: 50%;
}

.contact-us-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-us-content {
  flex: 1;
  max-width: 50%;
}

.contact-us-content h2 {
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 16px;
}

.contact-us-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 24px;
}

.btn-contact {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary);
  color: var(--black) !important;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.btn-contact:hover {
  background-color: var(--t-blue);
}

/* Responsive Düzen */
@media (max-width: 768px) {
  .contact-us-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .contact-us-image,
  .contact-us-content {
    max-width: 100%;
  }

  .contact-us-content h2 {
    font-size: 1.5rem;
  }
}
/* ANA SAYFA BİZİMLE İLETİŞİME GEÇİN */

/* FOOTER */
/* FOOTER */
.footer {
  background-color: black; /* Nötr beyaz arka plan */
  color: white; /* Koyu gri yazı rengi */
  padding: 40px 0;
  font-size: 0.9rem;
}

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

.footer a:hover {
  color: #007bff; /* Vurgulu mavi */
}

/* Footer Content */
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  width: 180px;
  margin-bottom: 16px;
  filter: invert(100%);
}

.footer-links {
  display: flex;
  flex-direction: column;
  /* align-items: center;
  justify-content: center; */
  text-align: left;
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: bold;
}

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

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  transition: color 0.3s ease;
  font-size: 1rem;
  line-height: 1.5rem;
}

.footer-links ul li a:hover {
  color: var(--primary) !important;
}

.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: bold;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5rem;
}

.footer-contact p a {
  transition: color 0.3s ease;
}

.footer-contact p a:hover {
  color: var(--primary) !important;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
}

.footer-social a {
  font-size: 1.2rem;
  margin-left: 12px;
  color: #333;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary) !important ;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-social {
    margin-top: 8px;
  }

  .footer-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* FOOTER */

/* KURUMSAL */
.corporate-page {
  line-height: 1.8;
  color: var(--black);
}

.page-title {
  text-align: center;
  padding: 50px 0;
  background-color: var(--primary);
}

.page-title a {
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

.page-title span {
  font-weight: 700;
}

.page-title a:hover {
  color: var(--black) !important;
}

.page-title h1 {
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-title p {
  font-size: 1.2rem;
  color: var(--black);
}

/* Hakkımızda */
.about-us {
  padding: 60px 0;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-dark);
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Misyon ve Vizyon */
.mission-vision {
  background-color: var(--background);
  padding: 60px 20px;
  text-align: center;
}

.mission,
.vision {
  margin-bottom: 30px;
}

.mission h3,
.vision h3 {
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 10px;
}

.mission p,
.vision p {
  color: var(--black);
  font-size: 1rem;
}

/* Değerlerimiz */
.values {
  padding: 60px 0;
}

.values h2 {
  text-align: center;
  color: var(--black);
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}

.values-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.value-item {
  flex: 1;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--secondary);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.value-item h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-item p {
  font-size: 1rem;
  color: var(--text-light);
}
/* KURUMSAL */

/* HİZMETLERİMİZ */
/* Genel Ayarlar */
.services-page {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--black);
}

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

/* Hizmetler Bölümü */
.services-list {
  padding: 60px 0;
}

.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.service-item {
  flex: 1 1 calc(33.333% - 20px); /* 3 sütun düzeni */
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-item p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .service-item {
    flex: 1 1 calc(100% - 20px); /* Tek sütun düzeni */
  }
}
/* HİZMETLERİMİZ */

/* İLETİŞİM */

.contact-page {
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-info {
  background-color: var(--background);
  padding: 40px 0;
}

.info-cards {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info-card {
  flex: 1;
  min-width: 260px;
  background: var(--primary);
  border: 1px solid #ddd;
  text-align: center;
  padding: 20px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.info-card h3 {
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 600;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.info-card a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-card a:hover {
  /*  color: var(--primary) !important; */
}
.form {
  padding: 24px 0;
}

/* Sayfa başlığı */
.contact-page-title {
  font-size: 32px;
  color: var(--black);
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
}

/* Form kapsayıcısı */
.form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
  width: 100%;
}

/* Form etiketleri */
form label {
  font-weight: 600;
  display: flex; /* Checkbox veya benzeri için yatay hizalama */
  align-items: center; /* Checkbox ile metin aynı hizada olsun diye */
  gap: 8px; /* Checkbox ve metin arası boşluk */
}

form label a {
  text-decoration: underline !important;
  color: var(--primary);
}

/* Ortak girdi (input) ve textarea stilleri */
form input,
form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  font-size: 1rem;
  color: var(--text-dark); /* Renk paletinizde koyu metin rengi */
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Placeholder renk ve boyutu */
form input::placeholder,
form textarea::placeholder {
  color: #999;
  font-size: 0.9rem;
}

form input[type="checkbox"] {
  width: 15px;
  height: 15px;
}

/* Fokus (focus) efekti */
form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 4px rgba(110, 37, 148, 0.3);
}

/* Gönder butonu */
.btn-submit {
  background-color: var(--primary);
  border-radius: 6px;
  color: var(--black);
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: var(--t-blue);
}

.map {
  padding: 24px 0;
}

@media (max-width: 568px) {
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
/* İLETİŞİM */

/* KVKK */
.kvkk-page {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/********************
 * Başlık ve Alt Başlık
 ********************/
.kvkk-header {
  background-color: var(--background);
  padding: 40px 20px;
  text-align: center;
}

.kvkk-header h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.kvkk-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/********************
 * İçerik Bölümü
 ********************/
.kvkk-content {
  padding: 40px 20px;
}

.kvkk-section {
  margin-bottom: 40px;
}

.kvkk-section h2 {
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 16px;
}

.kvkk-section p {
  margin-bottom: 16px;
}

.kvkk-section ul {
  padding-left: 20px;
}

.kvkk-section ul li {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.kvkk-section a {
  color: var(--primary);
  text-decoration: underline;
}

.kvkk-section a:hover {
  color: var(--highlight);
}
/* KVKK */

/* Cookie */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-popup-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-popup-content p {
  color: #333;
  font-size: 0.9rem;
  margin: 0;
}

.cookie-popup-content a {
  color: #f9d11b !important; /* Ana renk */
  text-decoration: underline !important;
}

.cookie-popup-content a:hover {
  color: #81d2c7 !important; /* Vurgu rengi */
}

.cookie-accept-btn {
  background-color: #f9d11b; /* Ana renk */
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.cookie-accept-btn:hover {
  background-color: #81d2c7; /* Vurgu rengi */
}
/* Cookie */

.cookies-page {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.cookies-header {
  background-color: var(--background);
  padding: 40px 20px;
  text-align: center;
}

.cookies-header h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.cookies-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.cookies-content {
  padding: 40px 20px;
}

.cookies-section {
  margin-bottom: 40px;
}

.cookies-section h2 {
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 16px;
}

.cookies-section p {
  margin-bottom: 16px;
}

.cookies-section ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.cookies-section ul li {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.cookies-section a {
  color: var(--primary);
  text-decoration: underline;
}

.cookies-section a:hover {
  color: var(--highlight);
}

/* Çerezler */

/* Hizmet Detay */
.service-detail-page {
  font-family: "Poppins", sans-serif;
  color: #333;
}

.service-detail {
  padding: 60px 0;
}

.detail-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.detail-image {
  flex: 1;
  min-width: 350px;
}

.detail-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.detail-content {
  flex: 1;
  min-width: 350px;
}

.detail-content h2 {
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 20px;
}

.detail-content p {
  margin-bottom: 16px;
  color: #666;
  line-height: 1.6;
}

.additional-info {
  padding: 40px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.additional-info h2 {
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 40px;
}

.info-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1 1 calc(33.333% - 20px);
  background: var(--primary);
  border: 1px solid var(--black);
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.info-card i {
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 10px;
}

.info-card h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.info-card p {
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .detail-wrapper {
    flex-direction: column;
  }

  .info-card {
    flex: 1 1 100%;
  }
}
/* Hizmet Detay */

/* BLOG */
.blog-page,
.blog-detail-page {
  font-family: "Poppins", sans-serif;
  color: #333;
}

.blog-list .blog-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.blog-card {
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: auto;
}

.blog-card .blog-content {
  padding: 16px;
}

.blog-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 12px;
}

.btn-read-more {
  display: inline-block;
  background-color: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.btn-read-more:hover {
  background-color: #81d2c7;
}

.blog-detail-page .blog-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-image {
  width: 70%;
  height: 300px;
}

.blog-detail-page .blog-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-detail-page .blog-text p {
  margin-bottom: 16px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .blog-list .blog-wrapper,
  .blog-detail-page .blog-wrapper {
    flex-direction: column;
  }

  .blog-card,
  .blog-detail-page .blog-text {
    flex: 1;
  }
}

/* BLOG */

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-content {
    text-align: center;
  }
}

.logo img {
  width: 180px;
  height: auto;
}
