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

/* Navbar */
.custom-navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.brand-highlight {
  color: #e10600;
}

/* Menü linkleri */
.nav-link {
  color: #212529;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.8rem 1rem;
}

.nav-link:hover,
.nav-link.active {
  color: #e10600;
}

/* Teklif butonu */
.btn-danger {
  background-color: #e10600;
  border: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-danger:hover {
  background-color: #c70500;
  transform: translateY(-2px);
}

/* Scroll sonrası efekt */
.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Hamburger ikon rengi */
.navbar-toggler {
  filter: invert(36%) sepia(83%) saturate(4122%) hue-rotate(349deg)
    brightness(99%) contrast(103%);
}

/* ----- RESPONSIVE DÜZENLEMELER ----- */
@media (max-width: 991px) {
  /* Mobilde menü sola hizalı */
  .navbar-nav {
    text-align: left !important;
    padding-left: 1rem;
  }

  .nav-link {
    padding: 0.6rem 0;
  }
}

/* Masaüstünde menü ortada */
@media (min-width: 992px) {
  .navbar-nav {
    justify-content: center;
    flex: 1;
  }
}
/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #ffeaea 100%);
  min-height: 100vh;
  padding-top: 120px;
}

.hero-section h1 {
  line-height: 1.2;
}

.hero-section p {
  max-width: 500px;
}

/* Görsel animasyonu */
.hero-img {
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(225, 6, 0, 0.2);
}

/* Mobil optimizasyon */
@media (max-width: 991px) {
  .hero-section {
    text-align: center;
    padding-top: 100px;
  }
  .hero-section p {
    margin: 0 auto;
  }
}
.ad-banner-content {
  height: 100px; /* Sabit yükseklik */
  max-width: 100%; /* Tam genişlik */
  transition: transform 0.3s ease; /* Hover efekti için */
}

/* Hover efekti: Hafif yukarı kalkma veya parlama */
.ad-banner-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3) !important; /* Daha belirgin gölge */
}

/* Metin ve Butonun Kapsayıcısı */
.ad-text-overlay {
  /* position-relative zaten ana kutuda var, bu yüzden buna gerek yok */
  /* text-white sınıfı zaten metni beyaz yapar */
  /* text-center sınıfı da zaten metinleri ortalar */
  padding: 0 15px; /* Kenarlardan taşmayı engellemek için iç boşluk */
}

/* Ana Başlık Stili */
.ad-main-heading {
  font-size: 1.8rem; /* Varsayılan masaüstü boyutu */
  line-height: 1; /* Satır aralığını daraltır */
  white-space: nowrap; /* Metnin tek satırda kalmasını sağlar */
  overflow: hidden;
  text-overflow: ellipsis; /* Taşan metin için üç nokta */
  margin-bottom: 0.5rem !important; /* Butonla arasındaki boşluğu ayarlar */
}

/* Teklif Al Butonu Stili */
.ad-offer-btn {
  font-size: 0.9rem; /* Buton metni boyutu */
  padding: 0.5rem 1.5rem !important; /* Butonun iç boşluğu */
  white-space: nowrap;
}

/* RESPONSIVE AYARLAR */

/* Küçük ekranlar (Mobile) - max-width: 575.98px */
@media (max-width: 575.98px) {
  .ad-main-heading {
    font-size: 1.2rem; /* Mobilde daha küçük başlık */
    margin-bottom: 0.3rem !important; /* Butonla arasındaki boşluğu azalt */
  }

  .ad-offer-btn {
    font-size: 0.8rem; /* Mobilde daha küçük buton metni */
    padding: 0.4rem 1rem !important; /* Mobilde butonun iç boşluğunu azalt */
  }
}

/* Orta Boy ekranlar (Tablet) - 576px - 767.98px */
@media (min-width: 576px) and (max-width: 767.98px) {
  .ad-main-heading {
    font-size: 1.5rem; /* Tabletlerde orta boy başlık */
  }

  .ad-offer-btn {
    font-size: 0.85rem;
    padding: 0.45rem 1.2rem !important;
  }
}
/* Genel Ayarlar ve Arkaplan */
.ad-imlat-content {
  height: 100px; /* Sabit yükseklik */
  max-width: 100%;
  background-image: url("images/lightbox-imalat-background.jpg");
  background-size: cover;
  background-position: right center;
  cursor: pointer;
}

/* BURADAKİ BÖLÜM GÜNCELLENDİ: BORDO VE RED DEGRADE */
.ad-imlat-overlay {
  /* Soldan (Bordo) sağa (Kırmızı) geçişli degrade */
  background: linear-gradient(
    to right,
    rgba(139, 0, 0, 0.95),
    /* Koyu Bordo (Orijinal görseldeki sol taraf) */ rgba(255, 0, 0, 0.7)
      /* Daha parlak Kırmızı/Turuncu (Sağ tarafa doğru hafifler) */
  );
}
/* Diğer tüm stiller (Logo, Başlık, Responsive Ayarlar vb.) aynı kalır */

/* X Logo Stili */
.ad-x-logo {
  height: 80px;
  opacity: 0.2;
}

/* Üst Marka Metni (lightboxdunyasi.com) */
.ad-top-brand-text {
  font-size: 0.9rem;
  letter-spacing: 2px;
  border: 1px solid white;
  padding: 0 4px;
}

/* Ana Başlık Stili (LIGHTBOX İMALATI) */
.ad-main-heading {
  font-size: 2rem;
  letter-spacing: 2px;
  line-height: 1.1;
  transform: skewX(-5deg);
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Alt Metin Stili */
.ad-subtext {
  font-size: 0.8rem;
  line-height: 1.1;
  opacity: 0.8;
}

/* RESPONSIVE AYARLAR */
@media (max-width: 575.98px) {
  .ad-main-heading {
    font-size: 1.2rem;
    letter-spacing: 1px;
    transform: skewX(0);
  }
  .ad-imlat-content {
    height: 85px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .ad-x-logo {
    height: 60px;
  }
  .ad-main-heading {
    font-size: 1.6rem;
  }
  .ad-imlat-content {
    height: 90px;
  }
}

@media (min-width: 992px) {
  .ad-logo-wrapper {
    margin-right: 50px !important;
  }
}
.logo {
  height: 50px;
  width: auto;
}
/* CSS KISMI BAŞLANGIÇ */

/* ================================================= */
/* 1. GENEL AYARLAR VE ARKA PLAN */
/* ================================================= */

.ad-imlat-content {
  height: 100px; /* İstenen sabit yükseklik: 100px */
  max-width: 100%;
  /* Önemli: Arka plan resminiz (kraket temalı kaplan vs.) görseldeki gibi sağa yakın olmalı */
  background-image: url("images/lightbox-imalat-background.jpg"); /* Kendi görsel yolunuzu buraya ekleyin */
  background-size: cover;
  background-position: right center; /* Görsel içeriğin sağa hizalanmasını sağlar */
  cursor: pointer;
}

/* DEGRADE VE KARARTMA KAPLAMASI (Overlay) */
.ad-imlat-overlay {
  /* Soldan (Bordo) sağa (Kırmızı) geçişli degrade */
  background: linear-gradient(
    to right,
    rgba(139, 0, 0, 0.95),
    /* Koyu Bordo (Sol taraf) */ rgb(255, 0, 0)
      /* Daha parlak Kırmızı/Turuncu (Sağ tarafa doğru hafifler) */
  );
}

/* ================================================= */
/* 2. SOL KISIM VE METİN STİLLERİ */
/* ================================================= */

/* X Logo Stili */
.ad-x-logo {
  height: 80px; /* 100px yüksekliğindeki kutuya göre büyük logo */
  opacity: 0.2; /* Hayalet/soluk görünüm */
}

/* Üst Marka Metni (lightboxdunyasi.com) */
.ad-top-brand-text {
  font-size: 0.9rem;
  letter-spacing: 2px;
  border: 1px solid white;
  padding: 0 4px;
  display: inline-block;
}

/* Ana Başlık Stili (LIGHTBOX İMALATI) */
.ad-main-heading {
  font-size: 2rem; /* Büyük ve dikkat çekici */
  letter-spacing: 2px;
  line-height: 1.1;
  /* Görseldeki gibi eğik görünüm */
  transform: skewX(-5deg);
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Alt Metin Stili */
.ad-subtext {
  font-size: 0.8rem;
  line-height: 1.1;
  opacity: 0.8;
}

/* ================================================= */
/* 3. RESPONSIVE AYARLAR (MOBİL UYUM) */
/* ================================================= */

/* Mobil Cihazlar (max-width: 575.98px) */
@media (max-width: 575.98px) {
  /* Logoyu gizlediğimiz için yüksekliği biraz düşürüp daha kompakt görünüm sağlarız */
  .ad-imlat-content {
    height: 85px;
  }

  /* Ana başlığı mobilde küçültüyoruz ve eğikliği kaldırıyoruz */
  .ad-main-heading {
    font-size: 1.2rem;
    letter-spacing: 1px;
    transform: skewX(0);
  }

  /* Alt metin (ad-subtext) ve Üst marka (ad-top-brand) Bootstrap sınıflarıyla (d-none d-md-block) zaten gizlidir. */
}

/* Tablet Cihazlar (576px - 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .ad-x-logo {
    height: 60px; /* Logoyu küçült */
  }

  .ad-main-heading {
    font-size: 1.6rem;
  }

  .ad-imlat-content {
    height: 90px;
  }
}

/* Büyük Ekranlar (992px ve üzeri) */
@media (min-width: 992px) {
  /* Logo ve Metin arasındaki boşluğu ayarlama */
  .ad-logo-wrapper {
    margin-right: 50px !important;
  }
}
.cards-section {
  /* py-5 ile dikey boşluk ayarlandı */
  /* bg-light ile açık gri arka plan ayarlandı */
}

/* Ana Kartlar Kapsayıcısı (İstenen ana class) */
.cards {
  /* row sınıfı ile Bootstrap grid sistemi kullanılır */
}

/* Her Bir Kartın İçeriği */
.card-item {
  padding: 15px;
  /* Görselde kartların hafif aralıklı ve temiz görünümü yakalanır. */
}

/* İkon Kapsayıcısı ve Boyutlandırma */
.card-icon-wrapper {
  /* İkonlara sabit bir alan ve boyut veriyoruz */
  width: 70px; /* İkonun genişliği */
  height: 70px; /* İkonun yüksekliği */
  line-height: 1; /* Satır aralığı */
}

/* İkon Stili */
.card-icon {
  max-width: 100%;
  height: auto;
  /* Görseldeki ikonların rengi siyah/gri tonlarında olduğu için, 
     eğer SVG kullanıyorsanız fill rengini ayarlayın, PNG/JPG ise sorun olmaz. */
}

/* Başlık Stili */
.card-title {
  /* fw-bold ve fs-5 ile zaten Bootstrap ayarları kullanılıyor */
  color: #333; /* Koyu gri/siyah başlık rengi */
}

/* Metin Stili */
.card-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* RESPONSIVE AYARLAR */

/* col-6 col-md-3: 
   - Mobilde (col-6): Yan yana 2 kart (50% genişlik)
   - Orta ve büyük ekranlarda (col-md-3): Yan yana 4 kart (25% genişlik)
*/

/* Mobil Düzenleme (col-6 kullandığımız için) */
@media (max-width: 767.98px) {
  .cards .col-6 {
    /* İki sütunda yerleşimi daha iyi göstermek için kartlar arasındaki boşluğu azaltırız */
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cards-section {
  /* Arka planı biraz daha belirgin bir griye çekebiliriz */
  background-color: #f5f5f5;
}

/* Her bir kartın ana taşıyıcısı */
.card-item {
  /* Kartları görselden bağımsız, kendi kutularına alıyoruz */
  background-color: #ffffff;
  padding: 30px 15px; /* Daha fazla iç boşluk */
  border-radius: 8px;
  /* Hafif bir gölge ekliyoruz (Kartı yüzeye çıkarır) */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Tüm kartların eşit yükseklikte olmasını sağlar */
}

/* Mouse Üzerine Gelince Animasyon */
.card-item:hover {
  /* Hafif yukarı kalkma efekti */
  transform: translateY(-5px);
  /* Daha belirgin gölge */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* İkon Kapsayıcısı */
.card-icon-wrapper {
  width: 70px;
  height: 70px;
  /* İkonu vurgulamak için dairesel veya kare arka plan */
  background-color: #dc3545; /* Bootstrap Kırmızı (Kendi renk temanızı kullanın) */
  border-radius: 50%; /* Dairesel arka plan */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px !important; /* Başlıktan daha fazla boşluk */

  /* İkon rengini arka plan rengine göre ayarla */
  color: #ffffff;
}

/* İkon Stili (Font-Awesome i etiketi) */
.card-icon {
  font-size: 2.2rem; /* İkonu kapsayıcıya göre ölçeklendir */
  line-height: 1;
}

/* Başlık ve Metin Stilleri */
.card-title {
  color: #343a40; /* Daha koyu başlık */
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.9rem;
  color: #6c757d; /* Daha yumuşak metin rengi */
}

/* RESPONSIVE AYARLAR */

/* Mobilde Yükseklik Eşitleme Sorununu Engelleme */
@media (max-width: 767.98px) {
  .cards .col-6 {
    /* Mobil cihazlarda iki kart arasına yatayda boşluk bırak */
    padding-left: 10px;
    padding-right: 10px;
  }
}
#left-banner-box {
  /* Sol kutuya sabit bir yükseklik vererek sağdaki metin alanının yanına oturmasını sağla */
  height: 450px; /* Görselinizdeki yüksekliğe yaklaşık bir değer */
}

/* Görselin kutuyu tam doldurması ve taşmaması için */
.media-banner-box .main-visual-area img {
  /* Bootstrap 5.3+ kullanıyorsanız object-fit-cover işe yarar. */
  object-fit: cover;
}

/* Kırmızı Başlık Alanı (ad-top-area) */
.ad-top-area {
  height: 60px;
  background-size: cover;
  background-position: center;
  background-image: url("images/red-texture.jpg");
}

/* Kırmızı Başlık Metin Stilleri */
.ad-top-brand-text {
  font-size: 0.7rem;
  letter-spacing: 1px;
  border: 1px solid white;
  padding: 0 3px;
  display: inline-block;
}

.ad-main-heading-mini {
  font-size: 1.2rem;
  letter-spacing: 1px;
  line-height: 1.1;
  transform: skewX(-5deg);
}

/* Degrade */
.ad-imlat-overlay {
  background: linear-gradient(to right, rgba(139, 0, 0, 0.95), rgb(255, 68, 0));
}

/* ================================================= */
/* SAĞ KUTU ÖZELLİK (FEATURE) İKON STİLLERİ (Aynı kaldı) */
/* ================================================= */
.feature-icon-lg {
  font-size: 2.5rem;
  color: #dc3545;
  margin-bottom: 0.5rem;
}

/* RESPONSIVE AYARLAR */
@media (max-width: 991.98px) {
  /* Tablet ve mobil cihazlarda kutu yüksekliğini kaldır */
  #left-banner-box {
    height: auto;
  }
}
.instagram-feed-section {
  /* Genel arka plan rengi ve dolgu */
  background-color: #ffffff;
}

/* BAŞLIK ALTI ÇİZGİSİ */
.instagram-heading {
  /* Başlıktaki @lightboxdunyasi kısmını kırmızı yapalım */
  color: #dc3545; /* Bootstrap Kırmızı */
  font-size: 2.2rem;
}

.heading-underline {
  /* Başlığın altındaki kırmızı çizgi */
  width: 150px; /* Çizgi genişliği */
  height: 3px;
  background-color: #dc3545;
  margin-top: 5px;
}

/* KAYDIRMA KAPSAYICISI */
.photos-carousel-wrapper {
  /* Bu özellik, yatayda taşan içeriği kaydırma çubuğu ile gösterir (Responsive Kaydırma) */
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px; /* Kaydırma çubuğu için boşluk */
  /* Kaydırma çubuğunu gizlemek isterseniz: 
    -ms-overflow-style: none;  // IE and Edge
    scrollbar-width: none;  // Firefox 
    */
}

/* Kaydırma çubuğunu gizleme (Chrome/Safari) */
.photos-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

/* FOTOĞRAF SIRASI */
.photos-track {
  /* İçeriklerin tek bir satırda kalmasını sağlar */
  white-space: nowrap;
}

/* Her Bir Fotoğraf Kutusu */
.photo-item {
  /* Her fotoğrafın genişliğini ayarlar (Büyük ekranda 5-6 tane sığmalı) */
  width: 250px; /* Masaüstünde sabit genişlik */
  margin-right: 10px;
}

.photo-img {
  /* Görselin yüksekliğini eşitlemek için (isteğe bağlı) */
  height: 250px;
  object-fit: cover; /* Görseli bozmadan kutuya sığdırır */
}

/* RESPONSIVE AYARLAR */

/* Tablet Cihazlar (max-width: 991.98px) */
@media (max-width: 991.98px) {
  .photo-item {
    width: 200px; /* Tablette biraz daha küçük kutular */
    height: 200px;
  }
}

/* Mobil Cihazlar (max-width: 575.98px) */
@media (max-width: 575.98px) {
  .instagram-heading {
    font-size: 1.5rem;
  }

  .photo-item {
    width: 150px; /* Mobilde daha küçük kutular */
    height: 150px;
  }
}
.bg-light-gray {
  background-color: #f7f7f7; /* Görseldeki hafif gri arka plan */
}

/* BAŞLIK VE ALT ÇİZGİ */
.section-heading-lg {
  font-size: 2.5rem;
  color: #343a40;
}

.heading-underline-red {
  width: 150px;
  height: 3px;
  background-color: #dc3545; /* Kırmızı çizgi */
  margin-top: 5px;
  margin-bottom: 0;
}

/* ÜRÜN KARTLARI */
.product-card-link {
  text-decoration: none;
  color: inherit;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08); /* İnce dış çerçeve */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Tüm kartların eşit yükseklikte olmasını sağlar */
}

/* Mouse Üzerine Gelince (Hover) Animasyon */
.product-card:hover {
  transform: translateY(-5px); /* Hafif yukarı kalkma */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important; /* Daha belirgin gölge */
  border-color: #dc3545; /* İsteğe bağlı: Kenarlığı kırmızı yapma */
}

/* Görsel Alanı */
.product-image-wrapper {
  /* Görselin üst kısmını biraz ayırabiliriz */
  position: relative;
  overflow: hidden;
  padding: 10px; /* Görselin içindeki boşluk */
  background-color: #fcfcfc;
}

.product-img {
  height: 250px; /* Tüm görsellerin yüksekliğini eşitler */
  object-fit: contain; /* Görseli bozmadan, kutunun içine sığdırır */
  border-radius: 4px;
}

/* Kart Alt Metin Alanı */
.product-info {
  border-top: 1px solid #eee;
  background-color: #ffffff;
}

/* Mini Logo Stili */
.product-logo img {
  height: 16px; /* Görseldeki minik logo boyutu */
  opacity: 0.8;
}

/* Ürün Başlığı */
.product-title {
  color: #343a40;
}

/* RESPONSIVE AYARLAR */

/* col-6 col-md-4 col-lg-3 ile mobil/tablet/masaüstü geçişleri sağlanmıştır. */
@media (max-width: 575.98px) {
  .section-heading-lg {
    font-size: 1.8rem;
  }
}
/* ================================================= */
/* GENEL BAŞLIK VE ÇİZGİ STİLLERİ */
/* ================================================= */
.projects-gallery-section {
  background-color: #ffffff; /* Beyaz arka plan */
}
.section-heading-lg {
  font-size: 2.2rem;
  color: #343a40;
}
.heading-underline-red {
  width: 150px;
  height: 3px;
  background-color: #dc3545; /* Kırmızı çizgi */
  margin-top: 5px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================= */
/* SLIDER/KAYDIRMA ALANI STİLLERİ */
/* ================================================= */
.projects-track-container {
  /* Yatay kaydırmayı aktifleştirir */
  overflow-x: auto;
  overflow-y: hidden;
  /* Kaydırma çubuğunu gizle */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.projects-track-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.projects-track {
  /* İçeriklerin tek satırda kalmasını sağlar */
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
}

/* HER BİR PROJE KARTI */
.project-item {
  width: 280px; /* Kart genişliği */
  margin-right: 20px;
  padding: 10px;
  flex-shrink: 0;
}

.project-card {
  /* Üst düzey gölge tasarımı */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
  transition: transform 0.3s ease;
  background-color: #ffffff;
}
.project-card:hover {
  transform: translateY(-3px); /* Hafif hover efekti */
}

.project-img {
  height: 450px; /* Dikey uzun görsel yüksekliği */
  object-fit: cover;
}

/* SLIDER GEZİNME OKLARI */
.gallery-nav-btn {
  border: none;
  background-color: rgba(255, 255, 255, 0.9);
  color: #dc3545; /* Kırmızı ok rengi */
  padding: 15px 10px;
  border-radius: 5px;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s;
}

.gallery-nav-btn:hover {
  background-color: #dc3545;
  color: white;
}

/* TÜM PROJELERİ GÖR BUTONU */
.portfolio-btn {
  --bs-btn-color: #fe0019;
  --bs-btn-border-color: #ff0019;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #bc0013;
  border-width: 2px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 10px 40px;
}

/* ================================================= */
/* RESPONSIVE AYARLAR */
/* ================================================= */
@media (max-width: 767.98px) {
  /* Slider oklarını mobilde gizle */
  .gallery-nav-btn {
    display: none !important;
  }
  .project-item {
    width: 240px;
    margin-right: 15px;
  }
  .project-img {
    height: 400px;
  }
}
/* ================================================= */
/* KALİTE ÖZELLİKLERİ STİLLERİ */
/* ================================================= */

.bg-light-gray-alt {
  /* Görseldeki açık gri/beyaz arası arka plan */
  background-color: #f8f8f8;
}

/* BAŞLIK VE SOL YERLEŞİM */
.section-title-lg {
  font-size: 2.2rem;
  color: #343a40;
}
.section-subtitle {
  font-size: 1rem;
  line-height: 1.5;
}

/* ÖZELLİK KARTLARI */
.feature-card {
  background-color: #ffffff;
  /* Hafif ve yumuşak bir gölge */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.feature-card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* İKON ALANI */
.feature-icon-wrapper {
  /* İkonun etrafındaki boşluklu ve ortalanmış yapıyı sağlar */
  padding: 10px;
  display: inline-block;
  border-radius: 50%; /* İsteğe bağlı: daire çerçeve */
}

.feature-icon-red {
  /* Görseldeki gibi kırmızı damla, ok ve çubuk ikonlarını temsil eder */
  font-size: 2.5rem;
  color: #dc3545; /* Kırmızı renk */
  line-height: 1;
}

/* METİN ALANI */
.feature-heading {
  font-size: 1.1rem;
  color: #343a40;
  margin-top: 0;
}

.feature-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* RESPONSIVE AYARLAR */
@media (max-width: 991.98px) {
  /* Tablet ve mobil cihazlarda başlık tam genişlikte olur */
  .section-title-lg {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .section-title-lg {
    font-size: 1.8rem;
  }
  .feature-icon-red {
    font-size: 2rem;
  }
}
/* ================================================= */
/* FOOTER (ALTBİLGİ) STİLLERİ */
/* ================================================= */

.main-footer {
  /* Koyu Bordo/Kırmızı Degrade Arka Plan */
  background: linear-gradient(
    to right,
    #8b0000 0%,
    /* Koyu Bordo */ #a52a2a 50%,
    /* Orta Bordo */ #b22222 100% /* Kiremit Kırmızısı */
  );
  color: #ffffff; /* Tüm metinler beyaz */
}

/* BAŞLIKLAR */
.footer-heading {
  font-size: 1.3rem;
  font-weight: bold;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2); /* İnce, şık çizgi */
  padding-bottom: 5px;
  margin-bottom: 15px;
}

/* LOGO VE KURUMSAL YAZI */
.footer-logo {
  height: 40px;
  filter: brightness(1.5); /* Logoyu biraz daha parlak yap */
}
.footer-text,
.footer-contact {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* LİNKLER (HIZLI ERİŞİM & ÜRÜNLER) */
.footer-link,
.footer-link-contact {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding: 3px 0;
}
.footer-link:hover,
.footer-link-contact:hover {
  color: #ffd700; /* Altın Sarısı Hover Rengi (Kırmızı ile kontrast) */
  padding-left: 5px; /* Hafif kaydırma efekti */
}

/* İLETİŞİM İKONLARI */
.footer-icon-red {
  color: #dc3545; /* Kırmızı renk vurgusu */
  min-width: 20px;
}

/* SOSYAL MEDYA İKONLARI */
.social-icon-link {
  color: #ffffff;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}
.social-icon-link:hover {
  background-color: #dc3545; /* Hoverda kırmızı dolgu */
  color: #ffffff;
  border-color: #dc3545;
}

/* TELİF HAKKI BÖLÜMÜ */
.footer-bottom-bar {
  border-color: rgba(255, 255, 255, 0.15) !important;
}
.footer-copyright-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE DÜZENLEMELER */
@media (max-width: 767.98px) {
  /* Mobilde kolonlar üst üste yığılır */
  .main-footer .col-lg-4,
  .col-lg-2,
  .col-lg-3 {
    margin-bottom: 30px !important;
  }
}
