/* Genel Reset ve Temel Stil */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  position: relative; /* Toggle için gerekli */
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
}
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
}

nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  color: #333;
}

.nav-links a:hover {
  background-color: #007bff;
  color: #fff;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #fff;
    flex-direction: column;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.nav-list li {
  margin: 0 20px;
  position: relative;
}

.nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-list a:hover {
  color: #000;
}

/* Hero Alanı */
.hero {
  background-color: red;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #ff9900;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn-primary:hover {
  background-color: #e68900;
}

/* Hizmetler */
.services-summary {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.services-summary h2 {
  text-align: center;
  margin-bottom: 40px;
}

.service-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card {
  background-color: white;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 23%;
}

.card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.card h3 {
  margin: 20px 0 10px;
}

.card p {
  font-size: 14px;
  color: #777;
}

/* Neden Biz */
.why-us {
  padding: 40px 0;
  background-color: #fff;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 20px;
}

.why-us ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.why-us ul li {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

/* Yorumlar */
.testimonials {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.testimonial {
  background-color: white;
  padding: 20px;
  width: 48%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.testimonial p {
  font-size: 14px;
  color: #555;
}

.testimonial span {
  font-weight: bold;
  display: block;
  text-align: right;
}

/* SSS */
.faq {
  padding: 40px 0;
  background-color: white;
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: #555;
}

/* İletişim Formu */
.contact-form {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form form {
  width: 50%;
  margin: 0 auto;
}

.contact-form input, .contact-form textarea, .contact-form button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.contact-form button {
  background-color: #007bff;
  color: white;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

footer p {
  margin: 5px 0;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  width: 100%;
  z-index: 999;
  pointer-events: none;
}

.floating-buttons a {
  position: absolute;
  pointer-events: auto;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.floating-buttons a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-buttons .whatsapp-button {
  right: 20px;
  bottom: 0;
}

.floating-buttons .phone-button {
  left: 20px;
  bottom: 0;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    margin: 10px 0;
  }

  .service-cards, .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .card, .testimonial {
    width: 90%;
  }
}

/* Dropdown Menü */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: " ▼";
  font-size: 12px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  min-width: 220px; /* GENİŞLİK artırıldı */
  padding: 10px 0; /* Menü içi padding */
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 99;
  border-radius: 8px; /* Hafif köşeleri yumuşat */
}

.dropdown-menu li {
  list-style: none; /* YUVARLAK simgeleri kaldırır */
  margin: 0; 
  padding: 0; 
  border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
  border-bottom: none; /* Son elemana çizgi koyma */
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px; /* YÜKSEKLİK ve içerik boşlukları artırıldı */
  color: #333;
  text-decoration: none;
  font-size: 15px;
}

.dropdown-menu li a:hover {
  background-color: #f4f4f4;
  color: #000;
  transition: 0.3s;
}

/* Dropdown hover için (Masaüstü) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobil Menüde aktif */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #fff;
    border-radius: 0;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* ===============================
   Footer CSS - Profesyonel Responsive Tasarım
   =============================== */

.site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section {
  /* ortak footer section ayarları */
}

.footer-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #f1c40f;
}

.footer-text,
.footer-list li {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #f1c40f;
  text-decoration: underline;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 10px;
}

.footer-social .social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 8px;
}

.social-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-btn {
  background-color: #25d366;
}

.phone-btn {
  background-color: #007bff;
}

.floating-btn:hover {
  transform: scale(1.05);
}

.floating-btn img {
  width: 24px;
  height: 24px;
}

/* Mobil Uyumlu Küçük Yazı Boyutları */
@media (max-width: 480px) {
  .footer-title {
    font-size: 18px;
  }
  .footer-text,
  .footer-list li,
  .footer-link {
    font-size: 14px;
  }
  .footer-bottom {
    font-size: 13px;
  }
}

/* Müşteri Talep Formu */
.customer-request-form {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
  color: #333;
}

.form-container p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  margin-bottom: 8px;
  color: #555;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  background-color: #fefefe;
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  background-color: #007bff;
  color: white;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .form-group {
    flex: 1 1 100%;
  }
}
/* Sıkça Sorulan Sorular (FAQ) */
.faq-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

.faq-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  background: #fefefe;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 15px;
  color: #555;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px; /* Yeterli yükseklik */
}

.nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: 600; /* Biraz kalın ama aşırı değil */
  text-transform: capitalize; /* Harfleri daha doğal bırakır */
  font-size: 17px;
  letter-spacing: 0.5px; /* Harfler arasına hafif boşluk */
  position: relative;
  padding: 8px 5px;
  transition: all 0.3s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ff9900; /* Turuncu renk (marka rengine uygun) */
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-list a:hover {
  color: #ff9900;
}

/* Banner Alanı */
.service-banner {
    width: 100%;
    background-color: #f4f4f4; /* Gri arka plan */
    padding: 20px 0;
    margin-bottom: 30px;
}

.banner-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-image {
    width: 100%; /* Resmi tam genişlikte yap */
    height: auto;
    border-radius: 8px; /* Resme yuvarlak köşeler ekle */
}

.banner-content {
    position: absolute;
    top: 50%; /* Resmin ortasına hizalar */
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; /* Yazı rengini beyaz yap */
    text-align: center; /* Yazıları merkeze hizala */
    background-color: rgba(0, 0, 0, 0.5); /* Yazı arkasına yarı şeffaf bir zemin */
    padding: 20px;
    border-radius: 8px;
    width: 80%; /* İçeriği sınırlı genişlikte tut */
}

.banner-title {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: #fff;
}

.banner-description {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .banner-title {
        font-size: 24px;
    }

    .banner-description {
        font-size: 14px;
    }

    .banner-content {
        width: 90%; /* Mobil cihazlarda içeriği daha geniş yap */
        padding: 15px;
    }
}


/* Açıklama Alanı */
.service-description {
    background-color: #ffffff; /* Arka planı beyaz yapalım */
    padding: 50px 0;
    margin-bottom: 40px;
}

.description-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* İçerik kenar boşlukları */
    text-align: center; /* Metni ortaya hizalayalım */
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: black !important; /* Başlık rengi */
    margin-bottom: 20px;
}

.service-text {
    font-size: 18px;
    line-height: 1.6;
    color: #555; /* Açıklama metninin rengi */
    max-width: 800px;
    margin: 0 auto;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px; /* Mobilde başlık biraz daha küçük */
    }

    .service-text {
        font-size: 16px; /* Metin boyutu mobilde biraz daha küçük */
        max-width: 90%; /* Mobilde açıklamanın genişliği daha fazla olabilir */
    }
}


/* Galeri Bölümü */
.gallery-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
}

.section-title i {
    color: #28a745; /* ikon rengi */
    font-size: 1.5rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    padding: 0 15px;
}



.home-link {
    background-color: #007bff;
    color: #fff;
    padding: 8px 14px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.home-link:hover {
    background-color: #0056b3;
    color: #fff;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Resimlerin eşit şekilde dizilmesini sağlar */
    gap: 20px;
    justify-items: center;
}

.gallery-item {
    overflow: hidden; /* Resmin taşmasını engeller */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease; /* Görselin geçişi */
}

.gallery-item:hover {
    transform: scale(1.05); /* Resim üzerine gelindiğinde hafif büyüme efekti */
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin en-boy oranını koruyarak kutuya sığdırır */
    transition: transform 0.5s ease;
}

/* Geçiş Efekti */
.gallery-item:hover .gallery-image {
    transform: scale(1.1); /* Resmin üzerine gelindiğinde büyüme efekti */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .section-title {
        font-size: 28px;
    }
}


/* YouTube Video Bölümü */
.youtube-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.youtube-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.youtube-video {
    flex: 1;
    max-width: 800px;
    margin-bottom: 20px;
}

.youtube-video iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    padding: 20px;
}

.video-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.video-info {
    font-size: 18px;
    line-height: 1.6;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .youtube-container {
        flex-direction: column;
    }

    .youtube-video iframe {
        height: 300px;
    }

    .video-title {
        font-size: 22px;
    }

    .video-info {
        font-size: 14px;
    }
}


.navbar-links a i {
  margin-right: 6px;
}

.ikon{
  margin-right: 4px !important;
}

.resim-kutusu {
    width: 100%;
    max-width: 800px; /* Maksimum genişlik 800px */
    height: 800px; /* Sabit yükseklik */
    overflow: hidden;
    border-radius: 12px; /* Köşe yuvarlatma */
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Sayfada ortalama */
    margin-top: 20px;
}

.resim-kutusu img {
    width: 100%; /* Resim genişliği 100% */
    height: 100%; /* Resim yüksekliği 100% */
    object-fit: cover; /* Resmin orantısız şekilde yayılmasını sağlar */
    display: block; /* Resmi kutu içinde bloğa dönüştürür */
}

.video-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

/* Genel video container düzenlemesi */
.video-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.custom-video-col {
  width: 48%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .custom-video-col {
    width: 100%;
  }
}

/* Video player genişlik ve yükseklik düzenlemesi */
.video-player video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Video başlık ve açıklama düzenlemeleri */
.video-description {
  margin-top: 20px;
  text-align: left;
}

.video-title {
  font-size: 1.8rem;
  font-weight: bold;
}

.video-info {
  font-size: 1rem;
  margin-top: 10px;
}

/* Paylaşım butonları */
.video-share {
  margin-top: 30px;
  text-align: left;
}

.video-share h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Paylaşım butonlarının stili */
.share-btn {
  display: inline-block;
  margin: 0 10px;
  padding: 10px;
  background-color: #333;
  color: white;
  border-radius: 5px;
  font-size: 1.5rem;
  transition: background-color 0.3s;
}

.share-btn:hover {
  background-color: #555;
}

.share-btn i {
  margin-right: 5px;
}

/* Mobil uyumlu düzenlemeler */
@media (max-width: 768px) {
  .video-container {
    padding: 10px;
  }

  /* Başlık ve açıklama alt alta sıralanacak */
  .video-description {
    text-align: center;
    margin-top: 10px;
  }

  /* Paylaşım butonları alt alta gelecek */
  .video-share {
    margin-top: 20px;
    text-align: center;
  }

  .share-btn {
    margin: 5px;
    padding: 8px;
  }

  .video-title {
    font-size: 1.6rem;
  }

  .video-info {
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) {
  /* Masaüstü görünümü için video paylaşım butonları ve açıklama kutuları yan yana olacak */
  .video-description, .video-share {
    display: inline-block;
    vertical-align: top;
    width: 48%;
  }

  .video-share {
    text-align: left;
    margin-top: 20px;
  }
}











/* Sosyal medya ikonları için genel stil */
.social-icons {
    text-align: center; /* İkonları ortalar */
    margin: 20px 0; /* Üst ve alt boşluk */
}

.sosyalmedia {
    width: 40px; /* İkonların genişliği */
    height: 40px; /* İkonların yüksekliği */
    margin: 0 15px; /* İkonlar arasındaki boşluk */
    transition: transform 0.3s ease, filter 0.3s ease; /* Hover animasyonu */
    border-radius: 5px;
}

.sosyalmedia:hover {
    transform: scale(1.1); /* Hover etkisiyle büyütme */
    filter: brightness(1.2); /* Hoverda parlaklık arttırma */
}

/* WhatsApp ikonu için özel stil */
.sosyalmedia[src="image/whatsapp.png"]:hover {
    filter: brightness(1.3); /* WhatsApp hover rengi */
}

.top-bar {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #222;
  color: #eee;
  padding: 15px 30px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.top-bar .contact-info {
  display: flex;
  gap: 150px;
  width: 100%;
  max-width: 1200px;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.top-bar .contact-info span {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.top-bar .contact-info i {
  color: #06f;
  font-size: 20px;
}

/* Küçük ekranlarda düzenleme */
@media (max-width: 768px) {
  .top-bar .contact-info {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .top-bar .contact-info span {
    white-space: normal;
    width: 100%;
    justify-content: center;
  }
}


.contact-info i:hover {
  transform: scale(1.3); /* Üzerine gelince büyüme efekti */
}

.contact-info strong {
  margin-left: 5px;
  font-weight: bold; /* Yazıları daha belirgin yap */
  font-size: 16px; /* Yazı boyutunu arttır */
}

.contact-info a {
  color: #e74c3c; /* Linki kırmızı yap */
  text-decoration: none; /* Alt çizgi kaldır */
}

/* Tablet ve altındaki cihazlar için responsive düzenleme */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info span {
    font-size: 16px; /* Mobilde biraz daha büyük yazı boyutu */
    margin-right: 0;
  }

  .contact-info i {
    font-size: 28px; /* Mobilde ikon boyutunu biraz daha büyük yap */
  }
}

/* Küçük ekranlar (telefonlar) için düzenleme */
@media (max-width: 480px) {
  .top-bar {
    padding: 10px 15px; /* Küçük ekranlarda padding biraz daha küçük */
  }

  .contact-info span {
    font-size: 14px; /* Mobilde daha küçük yazı boyutu */
  }

  .contact-info i {
    font-size: 24px; /* Küçük ekranlarda ikon boyutunu biraz küçült */
  }

  .contact-info {
    padding: 5px; /* Mobilde biraz daha az boşluk */
  }
}


.video-share {
  margin-top: 20px;
}

.video-share h4 {
  margin-bottom: 10px;
}

.share-btn {
  display: inline-block;
  margin: 0 8px;
  font-size: 24px;
  text-decoration: none;
  color: #444;
  transition: 0.3s;
}

.share-btn:hover {
  transform: scale(1.2);
}

.share-btn.facebook { color: #3b5998; }
.share-btn.twitter { color: #1da1f2; }
.share-btn.whatsapp { color: #25D366; }
.share-btn.linkedin { color: #0077b5; }

.service-icons {
  display: flex;
  justify-content: center; /* Ikonlar ortalanır */
  align-items: flex-start; /* İkonlar üstten hizalanır */
  gap: 30px; /* Aralarındaki mesafe */
  flex-wrap: wrap; /* Ekran daraldıkça taşma yapmaz */
  margin-bottom: 40px;
}

/* Her bir hizmet kutusu */
.service-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px 20px;
  width: 240px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: left; /* İçerik sola hizalı */
}

/* İkon stili */
.service-box i {
  font-size: 2.5rem;
  color: #fd7e14;
  margin-bottom: 15px;
  display: block;
}

/* Başlık (h5) */
.service-box h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333333;
}

/* Açıklama yazısı */
.service-box p {
  font-size: 0.95rem;
  color: black !important;
  line-height: 1.5;
}

/* Hover efekti */
.service-box:hover {
  transform: translateY(-5px);
}

/* Hakkımızda başlığı */
.section-title-hakkimizda {
  font-size: 2rem;
  font-weight: bold;
}

/* Açıklama metni (alt paragraf kısmı) */
.gallery-container {
  font-size: 1.1rem;
  margin-top: 30px;
  color: black;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 10px;
}

/* Responsive: Tablet ekranları */
@media (max-width: 991px) {
  .service-box {
    width: 45%; /* İki kutu yan yana */
  }
}

/* Responsive: Mobil ekranlar */
@media (max-width: 576px) {
  .service-box {
    width: 100%; /* Tüm kutular alt alta */
  }
}

.hakkimizda-ikon{
  margin-top: 15px;
}

.section-title {
        font-weight: 700;
        text-align: center;
        margin-bottom: 2rem;
        color: #333;
        font-size: 1.8rem;
    }

    .gallery-box {
        background: #fff;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .gallery-box .label {
        font-weight: 600;
        margin-bottom: 8px;
        color: #555;
    }

    .gallery-box img {
        border-radius: 6px;
        max-height: 220px;
        object-fit: cover;
        width: 100%;
    }

   


/* Resimler için düzenlemeler */
.gallery-img {
    width: 100%; /* Resimlerin genişliği container'a uyacak şekilde */
    height: auto; /* Yüksekliği orantılı yapar */
    border-radius: 8px; /* Kenarları yuvarlatma */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}

/* Galeri başlıklarını düzenleyelim */
.before-after-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
}

/* Resimlerin grid düzenini yapalım */
.before-after-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Resimleri gridde yan yana sıralar */
    gap: 20px;
    justify-items: center; /* Resimleri ortalar */
    margin-top: 40px !important;
    margin-left: 40px !important;
}

/* Mobilde resimleri alt alta sıralayalım */
@media (max-width: 768px) {
    .before-after-wrapper {
        grid-template-columns: 1fr; /* Küçük ekranlarda tek sütun yapalım */
    }
}


 /* Video Wrapper (Videoların kapsayıcısı) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Yükseklik genişliğe göre orantılı olarak %16.9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Video Wrapper (Videoların kapsayıcısı) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Yükseklik genişliğe göre orantılı olarak %16.9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* iframe içine video ekleme */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;  /* iframe genişliğini kapsayıcısına tam uyumlu yapar */
    height: 100%; /* iframe yüksekliğini kapsayıcısına uyumlu yapar */
    border: none;
}

/* Video galerisindeki her bir video kolonunun boyutu */
.video-col {
    margin-bottom: 20px; /* Alt boşluk */
}

/* Videoları küçük göstermek için iframe boyutlarını küçültme */
.video-wrapper iframe {
    max-width: 100%;
    height: 200px; /* Videoların yüksekliğini küçük tutuyoruz */
}

/* 768px ve altındaki ekran boyutları için responsive video ayarları */
@media (max-width: 768px) {
    .video-col {
        margin-bottom: 20px; /* Alt boşluk */
    }

    .video-wrapper {
        padding-bottom: 56.25%; /* Video oranını korur */
    }
}

/* 480px ve altındaki ekran boyutları için video galerisini 1 sütun yap */
@media (max-width: 480px) {
    .video-col {
        text-align: center;
    }

    /* Video kapsayıcı genişliğini tam genişlik yap */
    .video-wrapper {
        width: 100%;
        padding-bottom: 56.25%; /* Oranı korur */
    }
}

/* 1.5em aralıklı grid yapısı, video boyutunu küçültme */
.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Dinamik olarak 200px boyutunda video hücreleri */
    gap: 1.5em;
}


/* Başlık kısmı */
h2.text-center {
    text-align: center;
    margin-bottom: 30px; /* Alt boşluk */
    margin-top: 20px;
}

.resimgaleri{
  margin-bottom: 25px !important;
  margin-top: 50px !important;
}

.videogaleri{
  margin-top: 60px !important;
}

.lightbox-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.gallery-item {
  width: 350px;
  height: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  background: #fff;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

/* Responsive: 100% width on smaller screens */
@media (max-width: 380px) {
  .gallery-item {
    width: 100%;
    height: auto;
  }
}


.section-title-iki{
  margin-top: 200px !important;
}

.resimgaleri{
  margin-top: 125px !important;
}

.videogaleri{
  margin-top: 125px !important;
}

.ikonlar{
  margin-bottom: 8px !important;
}


/* Video Bölümü */
.custom-video-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-video-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.custom-video-meta p {
    font-size: 16px;
    line-height: 1.6;
}

.custom-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 oranı, istersen değiştir */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.custom-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* önemli: videonun kırpılmasını engeller */
}

.custom-video-details {
    font-size: 16px;
    line-height: 1.6;
}



/* Paylaşım Alanı Başlığı */
.custom-share-box h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333; /* Başlık rengini belirledik */
    text-align: center; /* Başlığı ortaladık */
}

/* Paylaşım Butonları */
.custom-share-buttons {
    display: flex;
    justify-content: center; /* Butonları yatayda ortalar */
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 30px; /* Footer ile arasında boşluk bırakmak için */
}

.share-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff; /* Yazı rengini beyaz yaptık */
    transition: background-color 0.3s, color 0.3s; /* Renk değişimini ekledik */
}

/* Facebook */
.share-btn.facebook {
    background-color: #3b5998;
    color: #fff; /* Normal durumda yazı rengi beyaz */
}

.share-btn.facebook:hover {
    background-color: #2d4373;
    color: #fff; /* Hoverda yazı rengi beyaz kalacak */
}

/* Twitter */
.share-btn.twitter {
    background-color: #1da1f2;
    color: #fff; /* Normal durumda yazı rengi beyaz */
}

.share-btn.twitter:hover {
    background-color: #0d95e8;
    color: #fff;
}

/* WhatsApp */
.share-btn.whatsapp {
    background-color: #25d366;
    color: #fff; /* Normal durumda yazı rengi beyaz */
}

.share-btn.whatsapp:hover {
    background-color: #1e8e4e;
    color: #fff;
}

/* LinkedIn */
.share-btn.linkedin {
    background-color: #0077b5;
    color: #fff; /* Normal durumda yazı rengi beyaz */
}

.share-btn.linkedin:hover {
    background-color: #005a8b;
    color: #fff;
}

/* Teşekkür Mesajı */
#tesekkurMesaji {
    margin-top: 20px;
    padding: 10px;
    background-color: #dff0d8;
    color: #3c763d;
    border-radius: 5px;
    font-size: 16px;
    display: none;
}



.video-wrapper h3,
h3.text-center {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

/* Galeri Resimlerini Ortala */
.gallery-item {
    position: relative;
    width: 300px;
    margin: 10px;
    text-align: center; /* Resimlerin ortalanması */
}

/* Resmin ortalanması */
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
    display: block;
    margin-left: auto;
    margin-right: auto; /* Resmi ortalamak için */
}

/* Resim hover efekti */
.gallery-item img:hover {
    transform: scale(1.05);
}

/* Paylaşım butonları kısmı */
.custom-share-box {
    text-align: center;
    margin-top: 10px;
}

/* Butonların iki satırda yer almasını sağlamak */
.custom-share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.custom-share-buttons a {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    background-color: #f4f4f4;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-share-buttons a:hover {
    background-color: #ddd;
}

.custom-share-buttons a i {
    margin-right: 8px;
}

/* Video Galerisi */
.videogaleri {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-col.custom-video-col {
    width: 100%;
    max-width: 450px;
    margin: 10px;
    text-align: center;
}

.video-wrapper {
    margin-bottom: 15px;
}

.video-wrapper iframe {
    width: 100%;
    height: 280px;
    border-radius: 8px;
}

.custom-share-box.custom-share-box-video {
    margin-top: 15px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Video Paylaşım Butonları */
.custom-share-buttons.custom-share-buttons-video {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.share-btn.custom-share-buttons-video {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    width: 48%;
    margin-bottom: 10px;
}

.share-btn.custom-share-buttons-video:hover {
    background-color: #0056b3;
}

.share-btn.share-btn-facebook {
    background-color: #3b5998;
}

.share-btn.share-btn-facebook:hover {
    background-color: #2d4373;
}

.share-btn.share-btn-twitter {
    background-color: #55acee;
}

.share-btn.share-btn-twitter:hover {
    background-color: #3ea1ec;
}

.share-btn.share-btn-whatsapp {
    background-color: #25d366;
}

.share-btn.share-btn-whatsapp:hover {
    background-color: #128c7e;
}

.share-btn.share-btn-linkedin {
    background-color: #0077b5;
}

.share-btn.share-btn-linkedin:hover {
    background-color: #005c8b;
}

/* Grid yapısı: 2 sütun - küçük ekranlarda 1 sütun */
.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.custom-video-col {
  width: 48%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .custom-video-col {
    width: 100%;
  }
}

/* Video iframe responsive */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Paylaşım butonları responsive grid */
.custom-share-buttons-video {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.custom-share-buttons-video a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: #eee;
  text-decoration: none;
  color: #333;
  border-radius: 5px;
  font-size: 14px;
}

.custom-share-buttons-video a i {
  margin-right: 5px;
}

/* Teşekkür Mesajı */
#tesekkurMesaji {
    margin-top: 15px;
    color: green;
    font-weight: bold;
    font-size: 16px;
    display: none;
}

.videobaslikalani{
  margin-bottom: 8px;
}

.custom-video-sectioniki {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 10px;
  background-color: #f4f4f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-video-sectioniki {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 10px;
  background-color: #f4f4f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-video-containeriki {
  width: 100%;
  /* Eğer konteynerin sabit bir yüksekliği varsa, bunu burada belirtebilirsiniz. */
  /* Örneğin: height: 300px; */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.custom-video-containeriki img {
  width: 100%; /* Resim kendi konteynerinin genişliğini kaplasın */
  height: auto; /* Yüksekliği genişliğe göre otomatik ayarla */
  max-width: 800px; /* Resmin maksimum genişliği 800px olsun */
  max-height: 600px; /* Resmin maksimum yüksekliğini sınırla */
  object-fit: contain; /* Resmi konteynere sığdır, oranlarını koru (boşluklar oluşabilir) */
  border-radius: 10px !important;
  display: block;
}

/* Mobil uyumluluk için özel bir ayara gerek olmayabilir, çünkü zaten responsive */
/* @media (max-width: 768px) {} */
 .banner-container {
      width: 100%;
      height: 300px; /* DÜŞÜRÜLMÜŞ YÜKSEKLİK */
      position: relative;
      overflow: hidden;
      margin-top: 20px; /* Üste yapışık */
    }

    .banner-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 10px;
    }

    .banner-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 2rem;
      text-align: center;
      background: rgba(0, 0, 0, 0.4);
      padding: 1rem 2rem;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .banner-text {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
      }
    }



    h2 {
  font-weight: 700;
  color: #004d99;
  margin-bottom: 20px;
}

/* --- CONTAINER --- */
.contact-wrapper {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- FORM BÖLÜMÜ --- */
.contact-form-section {
  flex: 1 1 500px;
  background: #fff;
  padding: 35px 40px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.05);
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}

.contact-form-section:hover {
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.1);
}

.contact-form-section label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 20px;
  color: #004d99;
}

.required {
  color: #e63946;
}

.contact-form-section input,
.contact-form-section textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.8px solid #ced4da;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  color: #444;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
  border-color: #004d99;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 77, 153, 0.4);
}

.contact-form-section textarea {
  min-height: 120px;
  font-family: inherit;
  line-height: 1.5;
}

.btn-submit {
  margin-top: 30px;
  background-color: #004d99;
  border: none;
  color: white;
  padding: 15px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: #003366;
}

/* --- İLETİŞİM BİLGİLERİ --- */
.contact-info-section {
  flex: 0 0 350px;
  background: #fff;
  padding: 35px 30px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.05);
  border-radius: 12px;
  color: #004d99;
}

.info-block {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.info-block:last-child {
  margin-bottom: 0;
}

.icon {
  font-size: 28px;
  margin-right: 18px;
  color: #007bff;
  flex-shrink: 0;
}

/* Telefon butonları */
.phone-buttons {
  display: flex;
  flex-direction: column; /* butonları alt alta yap */
  gap: 15px;
  max-width: 300px; /* istersen genişlik sınırı */
  margin-top: 10px;
  margin-bottom: 15px;
}

.phone-btn {
  background-color: #007bff;
  border: none;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
  transition: background-color 0.3s ease;
  text-align: center;
  width: 100%; /* tam genişlik */
}

.phone-btn:hover,
.phone-btn:focus {
  background-color: #0056b3;
  outline: none;
}


.email-link {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.email-link:hover {
  border-color: #007bff;
}

/* --- GOOGLE MAP --- */
.map-container {
  width: 100%;
  max-width: 100%;  /* Maksimum genişlik */
  height: 450px;
  margin: 30px auto 0;  /* Üstten biraz boşluk, ortalanmış */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom:25px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-wrapper {
    flex-direction: column;
    margin: 30px auto;
    gap: 40px;
  }

  .contact-info-section,
  .contact-form-section {
    flex: 1 1 100%;
  }

  .phone-buttons {
    justify-content: center;
  }

  .phone-btn {
    flex: 1 1 45%;
    min-width: unset;
  }
}

/*anasayfa üsttopbar*/

.hkm-top-social {
      text-align: center;
      padding: 10px;
      border-bottom: 1px solid #ddd;
    }

    .hkm-top-social i {
      margin: 0 8px;
      color: #555;
    }

    .hkm-hero-container {
      background-color: #0074e4;
      color: white;
      text-align: center;
      padding: 20px 12px;
    }

    .hkm-hero-title {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .hkm-hero-guarantee {
      font-size: 24px;
      font-weight: bold;
      line-height: 1.4;
      margin-bottom: 20px;
    }

    .hkm-call-list a {
      display: block;
      background-color: #e60000;
      color: #fff;
      text-decoration: none;
      padding: 12px;
      margin: 10px auto;
      border-radius: 8px;
      width: 90%;
      max-width: 300px;
      font-weight: bold;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      transition: background-color 0.3s;
    }

    .hkm-call-list a i {
      margin-right: 8px;
    }

    .hkm-call-list a:hover {
      background-color: #cc0000;
    }

    .hkm-whatsapp-row {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin: 15px 0;
    }

    .hkm-whatsapp-icon {
      background-color: #25d366;
      color: #fff;
      font-size: 20px;
      padding: 12px;
      border-radius: 50%;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .hkm-footer-note {
      font-size: 13px;
      padding: 12px 10px;
      text-align: center;
      background-color: #f4f4f4;
      color: #333;
    }

/*anasayfa üsttopbar bitiş*/

.ortala-container {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* dikey ortala */
  align-items: center;       /* yatay ortala */
  min-height: 100vh;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
  background-color: #f8f9fa; /* isteğe bağlı arka plan */
}

.ortala-container img {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.ortala-card {
  max-width: 450px;
  width: 100%;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  border-radius: 8px;
  background-color: #fff;
  margin-top: 20px;
}

.ortala-card h2 {
  color: #28a745;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.ortala-card a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.ortala-card a:hover {
  background-color: #0056b3;
}

/* Responsive küçük ekranlar için */
@media (max-width: 576px) {
  .ortala-container {
    padding: 10px;
  }

  .ortala-card {
    padding: 15px;
    margin-top: 10px;
  }

  .ortala-card h2 {
    font-size: 1.3rem;
  }

  .ortala-card a {
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
  }

  .ortala-container img {
    max-width: 150px;
  }
}

  .dikkat-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center; /* dikey ortala */
  align-items: center;     /* yatay ortala */
  min-height: 100vh;        /* tüm ekran yüksekliği */
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
  background-color: #f8f9fa;
}

.dikkat-wrapper img {
  max-width: 180px;
  width: 100%;
  height: auto;
}

.dikkat-message-card {
  width: 100%;
  max-width: 480px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: white;
  margin-top: 30px;
}

.dikkat-message-card h2 {
  color: #ffc107; /* Bootstrap warning sarı */
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.dikkat-message-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: justify;
  letter-spacing: 0.02em;
  word-spacing: 0.1em;
}

.dikkat-message-card hr {
  margin: 25px 0;
}

.dikkat-message-card a {
  display: inline-block;
  padding: 10px 30px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.dikkat-message-card a:hover {
  background-color: #0056b3;
}

/* Mobil cihazlar için iyileştirme */
@media screen and (max-width: 576px) {
  .dikkat-message-card {
    padding: 15px;
  }

  .dikkat-message-card h2 {
    font-size: 1.25rem;
  }

  .dikkat-message-card p {
    font-size: 0.95rem;
    text-align: left;
  }

  .dikkat-message-card a {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 1rem;
  }

  .dikkat-wrapper img {
    max-width: 120px;
  }
}

  a.forma-geri-don {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff; /* Bootstrap mavi */
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  user-select: none;
  touch-action: manipulation; /* Mobilde daha iyi tepki için */
}

a.forma-geri-don:hover {
  background-color: #0056b3;
}

.hata-image-wrapper {
  max-width: 200px;
  width: 90%;
  margin: 0 auto 30px auto;
  text-align: center;
}

.hata-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hata-card-wrapper {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hata-card-wrapper h2 {
  color: #dc3545; /* Bootstrap danger kırmızısı */
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.6rem;
}

.hata-card-wrapper p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: justify;
  letter-spacing: 0.02em;
}

.hata-btn {
  display: inline-block;
  background-color: #0d6efd;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  user-select: none;
  touch-action: manipulation;
}

.hata-btn:hover,
.hata-btn:focus {
  background-color: #0b5ed7;
  outline: none;
}

/* Küçük ekranlar (mobil) için iyileştirme */
@media (max-width: 576px) {
  .hata-card-wrapper {
    padding: 20px 15px;
    max-width: 95%;
  }

  .hata-card-wrapper h2 {
    font-size: 1.4rem;
  }

  .hata-card-wrapper p {
    font-size: 0.95rem;
    text-align: left;
  }

  .hata-btn {
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
  }

  .hata-image-wrapper {
    max-width: 150px;
  }
}


/*anasayfa galeri foto */
  

.anasayfa-galeri-section {
  padding: 40px 20px;
  background-color: #f2f2f2;
  text-align: center;
}

.anasayfa-galeri-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.anasayfa-galeri-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.anasayfa-galeri-item {
  width: 350px;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.anasayfa-galeri-item:hover {
  transform: scale(1.03);
}

.anasayfa-galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Mobil uyum */
@media (max-width: 480px) {
  .anasayfa-galeri-item {
    width: 100%;
    height: auto;
  }

  .anasayfa-galeri-item img {
    height: auto;
  }
}

.anasayfa-galeri-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: rgba(0, 123, 255, 0.85); /* Mavi arka plan */
  color: #fff;                         /* Beyaz yazı */
  font-weight: bold;                  /* Kalın yazı */
  font-size: 1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.anasayfa-galeri-item:hover .anasayfa-galeri-caption {
  opacity: 1;
}

.galeri-git-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}

.galeri-git-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.galeri-git-btn:hover {
  background-color: #0056b3;
}


.responsive-banner {
  width: 100%;
  height: 100%;
  margin: 10px auto;
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff; /* ya da görselin rengine yakın */
  text-align: center;
}

.responsive-banner img {
  width: 100%;
  height: 465 px important;
  object-fit: contain;
  display: inline-block;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .responsive-banner {
    padding: 5px;
  }

  .responsive-banner img {
    width: 100%;
    max-height: none;
  }
}



.responsive-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.8rem; /* Yazıyı biraz büyüttüm */
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  text-align: center;
  padding: 0 20px;
  width: 90%;
  max-width: 950px;
  line-height: 1.2;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .responsive-banner-text {
    font-size: 2rem;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .responsive-banner-text {
    font-size: 1.5rem;
    max-width: 90%;
  }
}

/******lightbox css başlangıç ************/

.lightboxOverlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 99999 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #000 !important;
}

.lightbox {
  z-index: 100000 !important;
}

.lb-loader,
.lb-spinner {
  animation: lb-spin 1s infinite linear !important;
  border: 4px solid rgba(255, 255, 255, 0.3) !important;
  border-top-color: #fff !important;
  border-radius: 50% !important;
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  margin: -20px 0 0 -20px !important;
  width: 40px !important;
  height: 40px !important;
}

@keyframes lb-spin {
  to { transform: rotate(360deg); }
}

.lb-container {
  max-width: 100% !important;
  padding: 0 !important;
}

.lb-image {
  max-width: calc(100vw - 100px) !important;
  max-height: calc(100vh - 100px) !important;
  display: block;
  margin: 0 auto;
}

/* Açıklama kutusu */
.lb-dataContainer {
  max-width: 100% !important;
  padding: 10px 5px 0 !important;
  text-align: center !important;
  color: #fff !important;
  font-size: 14px !important;
  user-select: none !important;
}

/* Mobilde resim yüksekliği sınırı */
@media (max-width: 768px) {
  .lb-image {
    max-height: 75vh !important;
    margin-top: 10vh !important; /* Mobilde daha aşağıda başlasın */
  }
}

@media (max-width: 480px) {
  .lb-image {
    max-height: 70vh !important;
    margin-top: 12vh !important;
  }

  .lb-dataContainer {
    font-size: 13px !important;
    padding: 6px 4px 0 !important;
  }
}

/* Önceki ve sonraki butonlar */
.lb-prev, 
.lb-next {
  opacity: 1 !important;
}

/* Kapatma Butonu */


.lb-close:hover {
  background: rgba(255,255,255,0.4) !important;
}

/* Mobil uyumlu ayarlamalar */
@media (max-width: 768px) {
  .lightbox .lb-image {
    max-width: 95vw !important;
    max-height: 80vh !important;
  }
  .lightbox .lb-dataContainer {
    font-size: 13px !important;
    padding: 6px 10px !important;
    bottom: 6px !important;
  }
}

@media (max-width: 480px) {
  .lightbox .lb-image {
    max-height: 70vh !important;
    margin-top: 10vh !important;
  }
  .lightbox .lb-dataContainer {
    font-size: 12px !important;
    padding: 4px 8px !important;
  }
}

/******lightbox css son ************/



/*ANASAYFA GALERİ BİTİŞ */

/* ===============================
   YIKAMA SÜRECİ - YATAY YAZI YAPISI
   =============================== */

.yikama-sureci {
  background: #f9fafb;
  padding: 60px 20px;
}

.yikama-sureci .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.yikama-sureci .title {
  font-size: 32px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 10px;
}

.yikama-sureci .desc {
  color: #6b7280;
  margin-bottom: 40px;
}

.yikama-sureci .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .yikama-sureci .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .yikama-sureci .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card-inner {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 16px;
}

@media (max-width: 640px) {
  .card-inner {
    flex-direction: column;
    text-align: center;
  }
}

.icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e5e7eb;
}

.icon.blue { color: #3b82f6; }
.icon.red { color: #ef4444; }
.icon.green { color: #10b981; }
.icon.purple { color: #8b5cf6; }
.icon.yellow { color: #facc15; }
.icon.pink { color: #ec4899; }

.text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.text p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}
/* =============================== */
/* Hızlı Erişim Listesi Ok İşaretleri */
.footer-list.with-arrows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list.with-arrows li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-list.with-arrows li::before {
  content: "→";
  color: #f1c40f;
  font-weight: bold;
  font-size: 16px;
  margin-right: 8px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.footer-list.with-arrows li a {
  text-decoration: none;
  color: #555;
  font-size: 15px;
}

.footer-list.with-arrows li a:hover{
  color: red;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .footer-section.footer-links {
    text-align: left;
    margin-bottom: 20px;
  }

  .footer-list.with-arrows li {
    margin-bottom: 8px;
  }
}


/* Başlık ve menü arası boşluğu azalt */
.footer-links .footer-title {
  margin-bottom: 8px; /* Daha sıkı aralık */
  text-align: center; /* Başlığı ortala */
}

/* Listeyi başlığın hemen altına hizala, ama metin ortalı olsun */
.footer-links .footer-list.with-arrows {
  padding-left: 0;
  margin-top: 0; /* Başlık ile boşluk azaltıldı */
  text-align: center; /* Metin ortalı */
}

/* Liste elemanları satır içi ve ortalanmış */
.footer-links .footer-list.with-arrows li {
  display: inline-block; /* Liste elemanlarını yatay yapar, mobilde farklı davranabilir */
  margin: 0 8px 8px 8px; /* Kenar boşlukları */
}

/* Mobilde liste elemanlarını blok yap */
@media (max-width: 600px) {
  .footer-links .footer-list.with-arrows li {
    display: block;
    margin: 6px 0;
  }
}






/* Sosyal medya ikonlarını ortala */
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  justify-content: center; /* Ortalı */
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  color: #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #f1c40f;
  color: #fff;
}

.social-icon i {
  width: 20px;
  height: 20px;
}


/* Footer link hover rengi */
.footer-link:hover {
  color: #f1c40f;
  text-decoration: underline;
}




/*birinci banner container */ 


.hero-wrapper {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 3 / 1; /* Yani yaklaşık 1200x400 gibi */
    position: relative;
    overflow: hidden;
    margin: 40px auto 0 auto;
    border-radius: 10px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .hero-wrapper {
        aspect-ratio: 16 / 9; /* Mobilde biraz daha dik olabilir */
        margin: 20px auto 0 auto;
        max-width: 100%;
        border-radius: 0;
    }
}


.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.15));
  }

  .floating-btn img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
  }

  .floating-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
  }

  .floating-btn:hover img {
    transform: scale(1.2);
  }

  /* WhatsApp sağda */
  .whatsapp-btn {
    right: 25px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  }

  /* Telefon solda */
  .phone-btn {
    left: 25px;
    background: linear-gradient(135deg, #007bff 0%, #004a99 100%);
  }

  /* Responsive: küçük ekranlarda küçült */
  @media (max-width: 480px) {
    .floating-btn {
      width: 50px;
      height: 50px;
    }
    .floating-btn img {
      width: 24px;
      height: 24px;
    }
  }

  .wa-floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Ana Buton Gövdesi */
.wa-main-btn {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.wa-main-btn img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1); /* İkonu beyaz yapar, daha modern durur */
}

/* Nabız Efekti (Altındaki o ekstra daireyi şık bir animasyona çevirir) */
.wa-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Hover Etkileşimi */
.wa-floating-container:hover .wa-main-btn {
    transform: translateY(-5px) scale(1.05);
    background-color: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.wa-floating-container:hover .wa-pulse-ring {
    animation-play-state: paused; /* Üzerine gelince animasyon dursun */
}

/* Konumlandırma: WhatsApp sağda ise bu butonu sola alalım */
.phone-floating-container {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Sol alt köşe */
    width: 70px;
    height: 70px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Ana Arama Butonu */
.phone-main-btn {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007aff 0%, #0056b3 100%); /* Apple Mavisi */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phone-main-btn img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1); /* İkonu beyaz yapar */
}

/* Mavi Nabız Efekti */
.phone-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #007aff;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    animation: phone-pulse 2.5s infinite;
}

@keyframes phone-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Hover: Üzerine gelince titreme efekti (Arama sinyali gibi) */
.phone-floating-container:hover .phone-main-btn {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 122, 255, 0.6);
    animation: phone-shake 0.5s infinite;
}

@keyframes phone-shake {
    0% { transform: rotate(0); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0); }
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;600;900&display=swap');

:root {
    --bg-dark: #050a15;
    --accent-blue: #00d2ff;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

.hkm-premium-hero {
    position: relative;
    min-height: 100vh;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

/* 2026 Mesh Gradient Arka Plan */
.hkm-mesh-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(at 0% 0%, rgba(0, 210, 255, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 114, 255, 0.15) 0px, transparent 50%);
    filter: blur(80px);
    z-index: 0;
}

/* Bento Grid Yapısı */
.hkm-bento-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-areas: 
        "nav nav nav"
        "main main guarantee"
        "main main contact";
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
}

/* Sosyal Medya - Üst Navigasyon */
.hkm-social-glass {
    grid-area: nav;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.hkm-social-glass a {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.hkm-social-glass a:hover {
    background: var(--cls);
    border-color: var(--cls);
    box-shadow: 0 0 20px var(--cls);
    transform: translateY(-5px);
}

/* Ana Kart Tasarımı */
.hkm-main-card {
    grid-area: main;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 4rem;
    backdrop-filter: blur(20px);
}

.brand-badge {
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.brand-name {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-top: 1rem;
}

.brand-slogan mark {
    background: transparent;
    color: var(--accent-blue);
}

/* Bilgi Kartları */
.hkm-info-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    color: #fff;
    backdrop-filter: blur(15px);
    transition: 0.3s;
}

.hkm-info-card:hover {
    border-color: var(--accent-blue);
}

.hkm-call-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.hkm-call-link:hover {
    background: rgba(255,255,255,0.05);
}

.hkm-call-link .icon {
    color: var(--accent-blue);
}

/* Alt Bar */
.hkm-tech-bar {
    position: absolute;
    bottom: 2rem;
    display: flex;
    gap: 2rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
   
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .hkm-bento-grid {
        grid-template-areas: 
            "nav"
            "main"
            "guarantee"
            "contact";
    }
    .brand-name { font-size: 2.5rem; }
}
.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;  /* Bu değeri diğer butonlarının genişliği kaçsa ona göre eşitle */
    height: 38px; /* Bu değeri diğer butonlarının yüksekliği kaçsa ona göre eşitle */
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link.tt {
    background-color: #000;
    color: #fff;
}

.share-link.tt:hover {
    background-color: #ff0050; /* TikTok'un o meşhur pembesi */
    color: #fff;
}

.share-link svg {
    display: inline-block;
    font-size: 16px; /* İkonun büyüklüğünü buradan ayarlayabilirsin */
}

/* Sabit kapsayıcı */
    .fixed-contact-icons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Genel buton stili */
    .fixed-contact-icons a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px; /* İkon boyutu */
        color: #fff;
        text-decoration: none;
        transition: transform 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .fixed-contact-icons a:hover { transform: scale(1.1); }
    
    .bg-whatsapp { background-color: #25d366; }
    .bg-phone { background-color: #007bff; }
    
    <style>
/* TikTok Butonunu Sabit Kırmızı Yap */
.share-link.tt {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
    /* Sabit Arka Plan ve İkon Rengi */
    background-color: #ff0000 !important; /* Her zaman kırmızı */
    color: #ffffff !important;           /* İkon her zaman beyaz */
    
    text-decoration: none;
    transition: transform 0.2s;
}

/* İçindeki ikonun boyutu */
.share-link.tt svg {
    width: 20px;
    height: 20px;
    fill: #ffffff !important; /* SVG rengini beyaza zorla */
}

/* Üzerine gelince sadece hafifçe büyüsün (isteğe bağlı) */
.share-link.tt:hover {
    transform: scale(1.1);
    background-color: #d10000 !important; /* Üzerine gelince kırmızının tonu biraz koyulaşsın */
}

:root {
    --primary-color: #007bff;
    --accent-color: #ff0000; /* İstediğin kırmızı vurgu */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hkm-hero-wrapper {
    display: grid;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Ana Kart Tasarımı */
.hkm-main-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
}

.brand-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.brand-name {
    display: block;
    font-size: clamp(2rem, 8vw, 3.5rem); /* Mobil-Masaüstü otomatik font */
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.brand-slogan {
    display: block;
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: #555;
    font-weight: 500;
}

.highlight-box {
    background: var(--accent-color);
    color: white;
    padding: 2px 10px;
    border-radius: 8px;
    display: inline-block;
}

/* Garanti Kartı Tasarımı */
.hkm-info-card.guarantee {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hkm-info-card.guarantee:hover {
    transform: translateY(-5px);
}

.card-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.card-icon {
    font-size: 2.5rem;
    color: #ffd700; /* Altın sarısı madalya */
    position: relative;
}

/* 2026 Pulsing Efekti */
.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.leke-text {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.garanti-text {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Mobil Uyumluluk İnce Ayarlar */
@media (max-width: 576px) {
    .card-inner {
        flex-direction: column;
        text-align: center;
    }
    .hkm-main-card {
        padding: 1.5rem 1rem;
    }
}

.info-block {
    display: flex;          /* İçerikleri yan yana dizer */
    align-items: center;    /* İkon ve metni dikeyde aynı hizaya getirir */
    gap: 12px;              /* İkon ile metin arasındaki boşluk */
}

.info-block .icon {
    /* Dairenin Boyutları */
    width: 40px; 
    height: 40px;
    
    /* Ortalamayı Sağlayan Sihirli Satırlar */
    display: flex;
    align-items: center;    /* Dikeyde tam orta */
    justify-content: center; /* Yatayda tam orta */
    
    /* Görsel Düzenleme */
    background-color: #f0f0f0; /* Daire rengi */
    border-radius: 50%;        /* Tam daire yapar */
    font-size: 18px;           /* İkonun büyüklüğü */
    flex-shrink: 0;            /* Mobilde dairenin ezilmesini engeller */
}

.info-block p {
    margin: 0;                 /* Paragrafın varsayılan boşluğunu sıfırlar */
}

/* Mevcut CSS içine ekleyin veya değiştirin */
@media (max-width: 768px) {
    .main-container {
        backdrop-filter: none !important; /* Mobilde bluru kaldırın */
        background: rgba(30, 41, 59, 0.95); /* Daha koyu opak arka plan */
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .img-preview {
        width: 50px; /* Mobilde resimleri küçültün */
        height: 40px;
    }
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}





/*yeni header menu css kodları başlangıç*/ 
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
    --primary: #0062ff;
    --secondary: #00e1ff;
    --whatsapp: #25d366;
    --dark: #0a0f18;
    --header-h: 140px; /* Üzerine binmeyi engelleyen mesafe */
}

/* ÇAKIŞMA ÖNLEYİCİ: Sayfalar header altında kalmaz */
body { 
    margin: 0; 
    padding-top: var(--header-h); 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background: #f8fafc;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 25px; }

/* HEADER */
.master-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-announcement { background: var(--dark); color: #fff; text-align: center; padding: 10px; font-size: 13px; font-weight: 600; }
.top-announcement span { color: var(--secondary); font-weight: 800; }

.nav-main { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }

/* LOGO */
.brand-v4 { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-box { 
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; width: 45px; height: 45px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.main-t { font-size: 22px; font-weight: 800; color: var(--dark); display: block; line-height: 1; }
.sub-t { font-size: 10px; color: var(--primary); font-weight: 700; letter-spacing: 2px; }

/* NAV */
.center-nav ul { display: flex; list-style: none; gap: 30px; }
.center-nav a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 15px; transition: 0.3s; }
.center-nav a:hover, .active { color: var(--primary); }

/* MEGA DROP */
.drop-parent { position: relative; }
.mega-drop {
    position: absolute; top: 150%; left: 0; width: 230px; background: #fff;
    padding: 15px; border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: grid; gap: 10px; opacity: 0; visibility: hidden; transition: 0.3s;
}
.mega-drop a { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.drop-parent:hover .mega-drop { opacity: 1; visibility: visible; top: 110%; }

/* ACTIONS */
.action-set { display: flex; align-items: center; gap: 15px; }
.wa-icon-glow {
    color: var(--whatsapp); font-size: 26px;
    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.3));
    transition: 0.3s;
}
.wa-icon-glow:hover { transform: scale(1.2); }

.btn-quote-premium {
    background: var(--dark); color: #fff; border: none; padding: 12px 22px;
    border-radius: 12px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px;
}

/* MODAL (POPOVER) */
.neo-modal:popover-open {
    display: flex; border: none; border-radius: 30px; width: 800px; max-width: 95%;
    margin: auto; box-shadow: 0 40px 100px rgba(0,0,0,0.3); overflow: hidden;
}
.modal-inner { display: grid; grid-template-columns: 1fr 1.5fr; width: 100%; }
.modal-left { background: var(--primary); color: #fff; padding: 40px; }
.modal-right { background: #fff; padding: 40px; }
.neo-form { display: grid; gap: 15px; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.f-group label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 5px; color: #64748b; }
.f-group input, .f-group select, .f-group textarea {
    width: 100%; padding: 12px; border: 1px solid #e2e8f0; border-radius: 10px; outline: none; background: #f8fafc;
}
.btn-glow {
    background: var(--primary); color: #fff; border: none; padding: 15px;
    border-radius: 10px; font-weight: 800; cursor: pointer; margin-top: 10px;
}

/* MOBİL TASARIM */
@media (max-width: 1024px) {
    :root { --header-h: 90px; }
    .center-nav, .top-announcement, .btn-quote-premium span { display: none; }
    .nav-main { padding: 10px 0; }
    
    .hamb-v4 {
        display: flex; flex-direction: column; gap: 5px; background: #f1f5f9;
        border: none; padding: 10px; border-radius: 10px;
    }
    .hamb-v4 span { width: 25px; height: 3px; background: var(--dark); border-radius: 5px; }

    .mobile-v4:popover-open {
        display: flex; flex-direction: column; inset: 0; width: 100%; height: 100%;
        background: #fff; padding: 0; border: none;
    }
    .m-head { padding: 25px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
    .m-logo { font-size: 24px; font-weight: 800; }
    .m-logo span { color: var(--primary); }
    .m-content { padding: 30px; display: flex; flex-direction: column; height: 100%; }
    .m-nav-links a { display: block; font-size: 24px; font-weight: 700; text-decoration: none; color: var(--dark); margin-bottom: 25px; }
    .m-nav-links i { color: var(--primary); width: 35px; }

    .m-footer-actions { margin-top: auto; display: grid; gap: 15px; }
    .m-cta-btn { background: var(--dark); color: #fff; padding: 18px; border-radius: 15px; border: none; font-weight: 700; }
    .m-wa-big { background: var(--whatsapp); color: #fff; padding: 18px; border-radius: 15px; text-decoration: none; text-align: center; font-weight: 700; }
    .m-social-row { display: flex; justify-content: center; gap: 30px; font-size: 26px; margin-top: 15px; }
    
    .modal-inner { grid-template-columns: 1fr; }
    .modal-left { display: none; }
}
/* Mobil Menü İçeriği - Dağınıklığı Gideren Düzen */
.m-nav-links {
    display: flex;
    flex-direction: column; /* Menüleri yan yana değil, alt alta dizer */
    gap: 10px; /* Aralarında temiz bir boşluk bırakır */
    padding: 20px 0;
    align-items: flex-start; /* Hepsini sola hizalar */
}

.m-nav-links a {
    display: flex;
    align-items: center;
    width: 100%; /* Tıklama alanını genişletir */
    padding: 15px;
    background: #f4f7fa; /* Hafif bir zemin rengi */
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 18px;
    box-sizing: border-box; /* Padding'in genişliği bozmasını engeller */
}

/* İkonlar ve yazı arası mesafe */
.m-nav-links i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 20px;
}

.m-footer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto; /* Sayfanın en altına iter */
    padding-bottom: 30px;
}

.m-cta-btn, .m-wa-big {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
}

:root {
    --primary: #0062ff;
    --dark: #0a0f18;
    --whatsapp: #25d366;
    --h-height: 140px;
}

body { margin: 0; padding-top: var(--h-height); font-family: 'Inter', sans-serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* MASAÜSTÜ HEADER DÜZENLEME */
.master-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
    background: #fff; box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
.nav-main { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }

.center-nav ul { display: flex; list-style: none; gap: 25px; margin: 0; padding: 0; }
.center-nav a { text-decoration: none; color: var(--dark); font-weight: 700; font-size: 15px; }

/* MEGA DROP (Masaüstü Kategoriler) */
.drop-parent { position: relative; }
.mega-drop {
    position: absolute; top: 100%; left: 0; width: 220px; background: #fff;
    padding: 15px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none; flex-direction: column; gap: 10px;
}
.drop-parent:hover .mega-drop { display: flex; }
.mega-drop a { font-size: 14px; display: flex; align-items: center; gap: 8px; }

/* MOBİL MENÜ (DAĞINIKLIĞI GİDEREN KISIM) */
.mobile-v4:popover-open {
    display: flex; inset: 0; width: 100%; height: 100%; border: none; padding: 0; margin: 0;
}
.m-inner { display: flex; flex-direction: column; width: 100%; background: #fff; }
.m-head { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.m-content { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; }

.m-nav-links { display: flex; flex-direction: column; gap: 10px; }
.m-nav-links a { 
    display: flex; align-items: center; gap: 15px; padding: 14px; 
    background: #f8fafc; border-radius: 10px; text-decoration: none; 
    color: var(--dark); font-weight: 700; 
}
.m-nav-links a.m-sub { background: #fff; border-left: 4px solid var(--primary); font-size: 15px; margin-left: 10px; }
.m-divider { font-size: 11px; font-weight: 800; color: #94a3b8; text-transform: uppercase; margin: 15px 0 5px; }

/* MODAL AYARLARI */
.neo-modal:popover-open { display: flex; border: none; border-radius: 20px; width: 800px; margin: auto; padding: 0; }
.modal-inner { display: grid; grid-template-columns: 1fr 1.5fr; width: 100%; }

/* MOBİL GÖRÜNÜM AYARLARI */
@media (max-width: 1024px) {
    .center-nav, .top-announcement { display: none; }
    .master-header { padding: 10px 0; }
    .logo-box { width: 35px; height: 35px; }
    .modal-inner { grid-template-columns: 1fr; }
    .modal-left { display: none; }
}

/* Ana Menü İkonları */
.center-nav a i {
    margin-right: 8px; /* İkon ve yazı arası boşluk */
    font-size: 14px;
    color: var(--primary); /* İkonlar markanın ana renginde olsun */
    transition: 0.3s;
}

/* Hover durumunda ikonun canlanması */
.center-nav a:hover i {
    transform: translateY(-2px);
}

/* Hizmetler (Dropdown) İkonları */
.mega-drop a i {
    width: 25px; /* İkonların dikeyde hizalı durması için sabit genişlik */
    text-align: center;
    color: var(--primary);
    font-size: 16px;
}

.mega-drop a:hover {
    background: #f0f7ff; /* Üzerine gelince hafif bir zemin rengi */
    padding-left: 20px; /* Şık bir kayma efekti */
}

.m-logo-link {
    text-decoration: none; /* Alt çizgiyi kaldırır */
    color: inherit;       /* Ana rengini korur */
    display: flex;        /* Hizalamayı bozmaz */
    align-items: center;
}

.m-logo-link:hover {
    opacity: 0.8;         /* Üzerine gelince hafif bir etkileşim verir */
}

/* Logo Kapsayıcı Kutu */
.logo-box {
    width: 55px; /* İdeal kutu boyutu */
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0; /* Mobilde logonun ezilmesini engeller */
}

/* Logonun Resim Ayarları */
.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Resmi bozmadan kutuya sığdırır */
    display: block;
}

/* Marka İsmi ve Logo Hizalaması */
.brand-v4 {
    display: flex;
    align-items: center;
    gap: 12px; /* Logo ve yazı arası boşluk */
    text-decoration: none;
}

/* Mobil Görünüm İçin Uyum (Responsive) */
@media (max-width: 768px) {
    .logo-box {
        width: 45px; /* Mobilde biraz daha kompakt görünüm */
        height: 45px;
    }
    
    .main-t {
        font-size: 18px; /* Mobilde marka ismi boyutu */
    }
}



/*yeni header menu css kodları son */ 




/*sıkça sorulan sorular css baslangıc*/ 
:root {
  --faq-blue: #38bdf8;
  --faq-dark: #1e293b;
  --faq-bg: #f8fafc;
}

.faq-section {
  background: var(--faq-bg);
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header i {
  font-size: 3rem;
  color: var(--faq-blue);
  margin-bottom: 15px;
  display: block;
}

.faq-header h2 {
  font-weight: 800;
  color: var(--faq-dark);
  font-size: 2.5rem;
}

/* Akordeon Elemanları */
.faq-item {
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 15px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 22px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--faq-dark);
  font-size: 1.1rem;
  user-select: none;
}

.faq-question:hover {
  background: rgba(56, 189, 248, 0.03);
}

.arrow-icon {
  font-size: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--faq-blue);
}

/* Cevap Alanı (Kapalı Durum) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  background: #fafafa;
}

.answer-content {
  padding: 0 30px 25px 30px;
  color: #64748b;
  line-height: 1.6;
}

/* Açık Durum Sınıfları (JS ile eklenecek) */
.faq-item.active {
  border-color: var(--faq-blue);
  box-shadow: 0 20px 25px -5px rgba(56, 189, 248, 0.1);
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* İçeriğe göre genişleyecek */
  transition: max-height 1s ease-in-out;
}

.faq-item.active .arrow-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-question {
  color: var(--faq-blue);
}
/*sıkca sorulan css son */ 


/*hakkımızda breadcrump css baslangıc */ 
.page-header-v2 {
    background: linear-gradient(135deg, #0062ff 0%, #004dc9 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Arka plana hafif desen veya ışık efekti */
.page-header-v2::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

/* Yol Haritası (Breadcrumb) */
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-nav .current {
    color: #ffffff;
    font-weight: 600;
}

/* Başlık ve İkon Kutusu */
.header-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-title {
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .page-header-v2 { padding: 40px 0; }
    .header-title { font-size: 26px; }
}
/*hakkımızda breadcrump css son */ 

/*Galeriler breadcrump css baslangıc  aynı zamanda iletisim diğer sayfalar içinde ortak kullnılabilir  */ 
/* Sayfa Başlık Alanı - Hakkımızda ile Ortak */
.page-header-v2 {
    background: linear-gradient(135deg, #0062ff 0%, #004dc9 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Dekoratif Arka Plan Detayı */
.page-header-v2::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    z-index: 1;
}

/* Yol Haritası (Breadcrumb) */
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-nav a:hover {
    color: #ffffff;
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-nav .current {
    font-weight: 600;
}

/* Merkezi İçerik Kutusu */
.header-content-box {
    position: relative;
    z-index: 2;
}

.header-icon-circle {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-title {
    font-size: clamp(28px, 5vw, 42px); /* Mobilde otomatik küçülen başlık */
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobil Hassasiyet */
@media (max-width: 768px) {
    .page-header-v2 { padding: 45px 0; }
    .header-icon-circle { width: 60px; height: 60px; font-size: 20px; }
}
/*Galeriler breadcrump css son */ 

/* Anasayfa en ust hero bolum css baslangıc */ 
/* Bento Grid Parlatma */
.hkm-premium-hero {
    position: relative;
    padding: 20px;
    background: #f4f7fa; /* Sayfa geneliyle uyumlu açık gri/mavi */
    overflow: hidden;
}

.hkm-main-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 129, 255, 0.05);
}

.hkm-title .brand-badge {
    background: #0081ff; /* Menü mavi tonu */
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.hkm-title mark {
    background: linear-gradient(120deg, rgba(0, 129, 255, 0.2) 0%, rgba(0, 129, 255, 0) 100%);
    color: #0081ff;
    padding: 0 5px;
    font-weight: 800;
}

.hkm-seo-subtext {
    color: #5e6d82;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
}

/* Kart İkonları Renkleri */
.tech-card .card-icon { color: #0081ff; }
.region-card .card-icon { color: #2ecc71; } /* Servis güveni için yeşil tonu */

/* Bu kısmı mevcut CSS içindeki .hkm-tech-bar ile değiştirin */
.hkm-tech-bar {
    display: flex;
    justify-content: space-around;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    margin: 5px; /* Masaüstü için istediğin 5px boşluk */
    margin-top: 20px; /* Üstteki kartlardan ayırmak için */
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    flex-wrap: wrap; /* Mobilde sığmazsa alt alta geçebilmesi için */
    gap: 10px;
}

/* Mobilde öğelerin yan yana düzgün durması için */
@media (max-width: 768px) {
    .hkm-tech-bar {
        display: flex !important; /* Görünürlüğü zorunlu kıldık */
        justify-content: center;
        padding: 10px;
    }
    .tech-item {
        font-size: 11px; /* Mobilde yazılar çok büyük olup taşmasın */
    }
}

.tech-item {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.tech-item i {
    color: #0081ff;
    margin-right: 5px;
}
/* Sağ Taraftaki Bilgi Kartlarını Belirginleştirme */
.hkm-info-card {
    background: #ffffff !important; /* Arka planı net beyaz yapıyoruz */
    border: 1px solid rgba(0, 129, 255, 0.1) !important; /* Çok hafif bir mavi kenarlık */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important; /* Hafif bir gölge ile kağıt hissi */
    transition: transform 0.3s ease;
}

/* Kartın içindeki ikonlar daha canlı */
.hkm-info-card .card-icon {
    font-size: 28px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Başlıkları (H3) Koyu ve Net Yap */
.hkm-info-card h3 {
    color: #1a202c !important; /* Çok koyu gri/siyah tonu */
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    margin-bottom: 5px !important;
    letter-spacing: 0.5px;
}

/* Alt açıklamaları (P) daha okunaklı yap */
.hkm-info-card p {
    color: #4a5568 !important; /* Okunaklı orta-koyu gri */
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    line-height: 1.3;
    margin: 0;
}

/* Hover efekti (Üzerine gelince parlaması için) */
.hkm-info-card:hover {
    transform: translateY(-5px);
    border-color: #0081ff !important;
    box-shadow: 0 15px 30px rgba(0, 129, 255, 0.15) !important;
}

/* Sosyal Medya Ana Kutusu */
.hkm-social-glass {
    display: flex;
    flex-direction: column; /* Üstten aşağıya sıralama */
    gap: 15px;
    background: rgba(15, 23, 42, 0.8); /* Koyu ve belirgin bir zemin */
    padding: 20px;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Derinlik hissi */
}

/* İkonların Genel Hali */
.hkm-social-glass a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.4rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.05);
}

/* Renkleri Belirginleştiriyoruz */
/* Facebook - Mavi */
.hkm-social-glass a[style*="#1877F2"] {
    color: #1877F2; 
    border: 1px solid rgba(24, 119, 242, 0.4);
}

/* Instagram - Canlı Pembe/Kırmızı */
.hkm-social-glass a[style*="#E4405F"] {
    color: #FF5252; /* Daha belirgin bir kırmızı-pembe */
    border: 1px solid rgba(255, 82, 82, 0.4);
}

/* YouTube - Canlı Kırmızı */
.hkm-social-glass a[style*="#FF0000"] {
    color: #FF0000;
    border: 1px solid rgba(255, 0, 0, 0.4);
}

/* Üzerine Gelince (Hover) Efektleri */
.hkm-social-glass a:hover {
    background: var(--cls); /* HTML'deki rengi kullanır */
    color: #fff !important; /* Yazı rengini beyaza çevir */
    transform: scale(1.15) rotate(5deg); /* Büyüt ve hafif döndür */
    box-shadow: 0 0 20px var(--cls); /* Parlama efekti */
}

/* Mobilde yan yana gelmesi için */
@media (max-width: 768px) {
    .hkm-social-glass {
        flex-direction: row;
        margin-bottom: 20px;
    }
}
/* Ana Kutu: Ekrandaki Seyhan/Çukurova kartlarıyla aynı stilde */
.hkm-social-glass {
    display: flex;
    flex-direction: row; /* Yan yana dizilim */
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #ffffff; /* Kartların beyazı */
    padding: 15px 25px;
    border-radius: 20px; /* Ekrandaki kartlarla uyumlu oval köşe */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Yumuşak gölge */
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

/* Takip Edin Yazısı */
.social-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #374151; /* Temadaki başlık rengine yakın */
    letter-spacing: 0.5px;
    position: relative;
}

/* İkon Kapsayıcı */
.social-icons-wrapper {
    display: flex;
    flex-direction: row; /* İkonlar yan yana */
    gap: 12px;
}

/* İkonların Genel Stili: Belirgin ve temiz */
.hkm-social-glass a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    color: #4b5563;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
}

/* Hover Efekti: İstediğin canlı mavi/yeşil/kırmızı belirginliği */
.hkm-social-glass a:hover {
    background: var(--cls);
    color: #fff !important;
    transform: translateY(-3px); /* Hafif yukarı zıplama */
    box-shadow: 0 8px 15px var(--cls); /* Kendi renginde parlama */
    border-color: transparent;
}

/* --- MOBİL UYUM (iPhone 13 Pro vb.) --- */
@media (max-width: 768px) {
    .hkm-social-glass {
        flex-direction: column; /* Mobilde dikey ama ikonlar kendi içinde yan yana */
        text-align: center;
        padding: 20px;
        gap: 10px;
    }
    
    
    

    .social-text {
        font-size: 0.8rem;
        margin-bottom: 5px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 8px;
        width: 100%;
    }

    .social-icons-wrapper {
        gap: 15px;
    }
}
  
/*Anasayfa en ust hero bolum css son */ 

@media (min-width: 768px) {
  .site-footer .footer-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  
  .footer-bottom {
    position: relative;
    grid-column: span 4; /* 4 sütunun tamamını kapla */
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    width: 100%;
  }
}






