html, body {
  font-family: "Noto Sans", sans-serif;
}

/* Mobil Touch Fix - Çift dokunma sorununu önlemek için */
@media (max-width: 768px) {
  /* Tıklanabilir elementler için touch-action ayarı */
  a, button, .btn, .nav-link, .navbar-toggler,
  .carousel-control-prev, .carousel-control-next,
  .carousel-indicators button,
  [data-bs-toggle="offcanvas"],
  [data-bs-toggle="collapse"],
  [data-bs-toggle="dropdown"] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-touch-callout: none;
  }
  
  /* Pointer events düzeltmesi */
  .navbar .nav-link::before,
  .navbar .nav-link::after {
    pointer-events: none;
  }
  
  /* Carousel için touch optimizasyonu */
  .carousel {
    touch-action: pan-y pinch-zoom;
  }
  
  /* Offcanvas için touch optimizasyonu */
  .offcanvas {
    touch-action: pan-y;
  }
}

/* Renkler PHP tarafından dinamik olarak yükleniyor */
/* :root değişkenleri her PHP sayfasında <style> tag'i içinde tanımlanıyor */

/* Bootstrap'in sabit renklerini override et - main.css'ten sonra yüklendiği için burada tanımlıyoruz */
/* main.css'teki :root içindeki sabit --bs-accent değerlerini override et */
:root {
  /* Bu değerler PHP'deki style tag'i tarafından override edilecek */
  /* Ancak main.css'teki sabit değerleri de override etmek için burada tanımlıyoruz */
  --bs-accent: var(--accent-color, #FF8C42) !important;
  --bs-accent-rgb: var(--accent-color-rgb, 255, 140, 66) !important;
}

/* Bootstrap btn-accent class'ındaki sabit renkleri override et */
/* main.css'teki sabit #FF8C42 renklerini doğrudan override ediyoruz */
.btn-accent {
  --bs-btn-color: #000 !important;
  color: #000 !important;
  --bs-btn-bg: var(--bs-accent, var(--accent-color)) !important;
  background-color: var(--bs-accent, var(--accent-color)) !important;
  --bs-btn-border-color: var(--bs-accent, var(--accent-color)) !important;
  border-color: var(--bs-accent, var(--accent-color)) !important;
}

.btn-accent:focus {
  --bs-btn-bg: var(--bs-accent, var(--accent-color)) !important;
  background-color: var(--bs-accent, var(--accent-color)) !important;
  --bs-btn-border-color: var(--bs-accent, var(--accent-color)) !important;
  border-color: var(--bs-accent, var(--accent-color)) !important;
}

.btn-accent:hover {
  --bs-btn-hover-color: #000 !important;
  color: #000 !important;
  --bs-btn-hover-bg: rgba(var(--bs-accent-rgb, var(--accent-color-rgb)), 0.9) !important;
  background-color: rgba(var(--bs-accent-rgb, var(--accent-color-rgb)), 0.9) !important;
  --bs-btn-hover-border-color: rgba(var(--bs-accent-rgb, var(--accent-color-rgb)), 0.9) !important;
  border-color: rgba(var(--bs-accent-rgb, var(--accent-color-rgb)), 0.9) !important;
}

.btn-accent:active,
.btn-accent.active {
  --bs-btn-active-color: #000 !important;
  color: #000 !important;
  --bs-btn-active-bg: rgba(var(--bs-accent-rgb, var(--accent-color-rgb)), 0.95) !important;
  background-color: rgba(var(--bs-accent-rgb, var(--accent-color-rgb)), 0.95) !important;
  --bs-btn-active-border-color: rgba(var(--bs-accent-rgb, var(--accent-color-rgb)), 0.95) !important;
  border-color: rgba(var(--bs-accent-rgb, var(--accent-color-rgb)), 0.95) !important;
}

.btn-accent:disabled,
.btn-accent.disabled {
  --bs-btn-disabled-color: #000 !important;
  color: #000 !important;
  --bs-btn-disabled-bg: var(--bs-accent, var(--accent-color)) !important;
  background-color: var(--bs-accent, var(--accent-color)) !important;
  --bs-btn-disabled-border-color: var(--bs-accent, var(--accent-color)) !important;
  border-color: var(--bs-accent, var(--accent-color)) !important;
}

/* main.css'teki .btn-outline-accent class'ındaki sabit renkleri override et */
.btn-outline-accent {
  --bs-btn-color: var(--bs-accent, var(--accent-color)) !important;
  color: var(--bs-accent, var(--accent-color)) !important;
  --bs-btn-border-color: var(--bs-accent, var(--accent-color)) !important;
  border-color: var(--bs-accent, var(--accent-color)) !important;
}

.btn-outline-accent:hover {
  --bs-btn-hover-color: #000 !important;
  color: #000 !important;
  --bs-btn-hover-bg: var(--bs-accent, var(--accent-color)) !important;
  background-color: var(--bs-accent, var(--accent-color)) !important;
  --bs-btn-hover-border-color: var(--bs-accent, var(--accent-color)) !important;
  border-color: var(--bs-accent, var(--accent-color)) !important;
}

.btn-outline-accent:active,
.btn-outline-accent.active {
  --bs-btn-active-color: #000 !important;
  color: #000 !important;
  --bs-btn-active-bg: var(--bs-accent, var(--accent-color)) !important;
  background-color: var(--bs-accent, var(--accent-color)) !important;
  --bs-btn-active-border-color: var(--bs-accent, var(--accent-color)) !important;
  border-color: var(--bs-accent, var(--accent-color)) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

.border-accent {
  border-color: var(--accent-color) !important;
}

.border-accent-subtle {
  border-color: rgba(var(--accent-color-rgb), 0.3) !important;
}

/* CUSTOMIZE THE NAVBAR
-------------------------------------------------- */
.navbar {
  background: linear-gradient(135deg, rgba(30, 30, 35, 0.4) 0%, rgba(20, 20, 25, 0.45) 100%) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  min-height: 90px;
  backdrop-filter: blur(8px) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1060 !important; /* Hero elementlerinden (1020) daha yüksek olmalı */
  position: fixed !important; /* Fixed olmalı ki hero section üstüne çıkabilsin */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
/* Ana sayfa için daha şeffaf navbar */
body.homepage .navbar:not(.bg-primary) {
  background: linear-gradient(135deg, rgba(30, 30, 35, 0.25) 0%, rgba(20, 20, 25, 0.3) 100%) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px) saturate(130%);
  -webkit-backdrop-filter: blur(6px) saturate(130%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.6;
}
.navbar .container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  z-index: 1;
}
.navbar .navbar-brand {
  color: white;
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem;
  background: transparent !important;
  border-radius: 0;
  box-shadow: none !important;
  position: relative;
  overflow: visible;
}
/* Scroll durumunda (bg-primary class'ı eklendiğinde) da logo şeffaf kalmalı */
.navbar.bg-primary .navbar-brand {
  background: transparent !important;
  box-shadow: none !important;
}
.navbar .navbar-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-color-rgb), 0.1), transparent);
  transition: left 0.5s ease;
}
.navbar .navbar-brand:hover::before {
  left: 100%;
}
.navbar .navbar-brand:hover {
  transform: translateY(-2px);
  box-shadow: none;
}
.navbar .navbar-brand img {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  position: relative;
  z-index: 1;
}
.navbar .navbar-brand:hover img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  border-radius: 12px;
  padding: 0.75rem 1.25rem !important;
  margin: 0 0.25rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.navbar .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), rgba(var(--accent-color-rgb), 0.8));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(var(--accent-color-rgb), 0.5);
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.1), rgba(var(--accent-color-rgb), 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}
.navbar .nav-link:hover {
  color: white !important;
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.navbar .nav-link:hover::after {
  opacity: 1;
}
.navbar .nav-link:hover::before {
  width: 80%;
}
.navbar .active {
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.25), rgba(var(--accent-color-rgb), 0.35)) !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(var(--accent-color-rgb), 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.navbar .active::before {
  width: 80%;
  background: linear-gradient(90deg, var(--accent-color), rgba(var(--accent-color-rgb), 0.9));
  box-shadow: 0 0 15px rgba(var(--accent-color-rgb), 0.8);
}
.navbar .active::after {
  opacity: 1;
}
.navbar .navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar .navbar-toggler:hover {
  border-color: var(--accent-color);
  background: rgba(var(--accent-color-rgb), 0.2);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(var(--accent-color-rgb), 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}
.navbar .vstack {
  position: relative;
}
.navbar .vstack,
.navbar .vstack small,
.navbar .fa-headphones {
  color: rgba(255, 255, 255, 0.9) !important;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.navbar .nav-link .fa-headphones {
  font-size: 1.5rem;
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.2), rgba(var(--accent-color-rgb), 0.3));
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.navbar .nav-link:hover .fa-headphones {
  background: linear-gradient(135deg, var(--accent-color), rgba(var(--accent-color-rgb), 0.9));
  color: white !important;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 16px rgba(var(--accent-color-rgb), 0.6), 0 0 20px rgba(var(--accent-color-rgb), 0.4);
}
.navbar .nav-link:hover .vstack small {
  color: var(--accent-color) !important;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(var(--accent-color-rgb), 0.5);
}
.navbar.bg-primary {
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.65) 0%, rgba(10, 10, 15, 0.7) 100%) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px) saturate(170%);
  -webkit-backdrop-filter: blur(12px) saturate(170%);
}
.navbar.bg-primary::before {
  opacity: 0.8;
}
.navbar.bg-primary .navbar-brand {
  background: transparent !important;
  box-shadow: none !important;
}
.navbar.bg-primary .navbar-brand:hover {
  box-shadow: none !important;
}
.navbar.bg-primary .nav-link {
  color: rgba(255, 255, 255, 0.95) !important;
}
.navbar.bg-primary .nav-link:hover {
  color: white !important;
  background-color: rgba(255, 255, 255, 0.15);
}
.navbar.bg-primary .nav-link::before {
  background: linear-gradient(90deg, var(--accent-color), rgba(var(--accent-color-rgb), 0.9));
  box-shadow: 0 0 15px rgba(var(--accent-color-rgb), 0.8);
}
.navbar.bg-primary .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.95) !important;
}
.navbar.bg-primary .navbar-nav .nav-link.active {
  color: white !important;
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.3), rgba(var(--accent-color-rgb), 0.4)) !important;
  box-shadow: 0 6px 25px rgba(var(--accent-color-rgb), 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.navbar.bg-primary .nav-link.active,
.navbar.bg-primary .active {
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.3), rgba(var(--accent-color-rgb), 0.4)) !important;
  color: white !important;
  box-shadow: 0 6px 25px rgba(var(--accent-color-rgb), 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.navbar.bg-primary .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.navbar.bg-primary .navbar-toggler:hover {
  border-color: var(--accent-color);
  background: rgba(var(--accent-color-rgb), 0.3);
  box-shadow: 0 6px 20px rgba(var(--accent-color-rgb), 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.navbar.bg-primary .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar.bg-primary .vstack,
.navbar.bg-primary .vstack small,
.navbar.bg-primary .fa-headphones {
  color: rgba(255, 255, 255, 0.95) !important;
}
.navbar.bg-primary .nav-link:hover .fa-headphones {
  background: linear-gradient(135deg, var(--accent-color), rgba(var(--accent-color-rgb), 0.9));
  color: white !important;
  box-shadow: 0 6px 20px rgba(var(--accent-color-rgb), 0.7), 0 0 25px rgba(var(--accent-color-rgb), 0.5);
}
.navbar.bg-primary .nav-link:hover .vstack small {
  color: var(--accent-color) !important;
  text-shadow: 0 0 15px rgba(var(--accent-color-rgb), 0.6);
}
.navbar .offcanvas .offcanvas-header .btn-close {
  background-color: #fff;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.navbar .offcanvas .offcanvas-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.75rem 0;
    min-height: 80px;
  }
  .navbar .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
  }
  /* Hamburger menü iyileştirmeleri */
  .navbar .navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
  .navbar .navbar-toggler:focus {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 0.25rem rgba(var(--accent-color-rgb), 0.25);
  }
  .navbar .navbar-toggler .navbar-toggler-icon {
    width: 1.75em;
    height: 1.75em;
    background-size: 100%;
  }
  .navbar .navbar-brand {
    padding: 0.5rem 1rem;
  }
  .navbar .navbar-brand img {
    max-height: 50px !important;
    height: auto !important;
  }
  /* Offcanvas menü iyileştirmeleri - Hero'nun üstünde görünmeli */
  .navbar .offcanvas {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(20, 20, 25, 0.85) 100%) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    max-height: 100vh !important;
    height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 10000 !important; /* Hero section'dan (1040) çok daha yüksek */
    position: fixed !important;
    width: 100% !important; /* Tam genişlik */
    max-width: 100% !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  }
  
  .navbar .offcanvas::-webkit-scrollbar {
    width: 6px;
  }
  
  .navbar .offcanvas::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .navbar .offcanvas::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
  }
  
  .navbar .offcanvas::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }
  
  /* Offcanvas backdrop - arka planı kapat */
  .offcanvas-backdrop {
    z-index: 9999 !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
  }
  
  /* Offcanvas açıkken hero section butonlarını gizle */
  body.offcanvas-open .hero-section .carousel-caption {
    z-index: 1 !important;
    pointer-events: none !important;
    opacity: 0.3 !important;
  }
  
  body.offcanvas-open .hero-section .carousel .carousel-control-prev,
  body.offcanvas-open .hero-section .carousel .carousel-control-next,
  body.offcanvas-open .hero-section .carousel-indicators {
    z-index: 1 !important;
    pointer-events: none !important;
    opacity: 0.3 !important;
  }
  
  body.offcanvas-open .hero-section .carousel-caption .btn,
  body.offcanvas-open .hero-section .carousel-caption a {
    pointer-events: none !important;
  }
  
  .navbar .offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 1.5rem;
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 25, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  
  .navbar .offcanvas .offcanvas-header .offcanvas-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none;
    gap: 0.75rem;
  }
  
  .navbar .offcanvas .offcanvas-header .offcanvas-title img {
    height: 40px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain;
  }
  
  .navbar .offcanvas .offcanvas-header .offcanvas-title i {
    display: none !important; /* Icon'u gizle */
  }
  
  /* Kapat butonu düzeltmesi - X icon'u görünür olmalı */
  .navbar .offcanvas .offcanvas-header .btn-close {
    background-color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1 !important;
    width: 2rem !important;
    height: 2rem !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
  }
  
  .navbar .offcanvas .offcanvas-header .btn-close:hover {
    background-color: rgba(255, 255, 255, 1) !important;
    transform: rotate(90deg);
  }
  
  .navbar .offcanvas .offcanvas-header .btn-close::before {
    content: '×' !important;
    font-size: 1.5rem !important;
    color: #000 !important;
    line-height: 1 !important;
    font-weight: bold !important;
  }
  
  .navbar .offcanvas .offcanvas-body {
    padding: 1.25rem 1.5rem 6rem 1.5rem !important; /* Alt padding artırıldı (tarayıcı çubuğu için) */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    flex: 1 1 auto;
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 0 !important; /* Flexbox scroll için gerekli */
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px) + 80px) !important; /* Safe area + tarayıcı çubuğu için */
  }
  
  .navbar .offcanvas .offcanvas-body .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
  }
  
  .navbar .offcanvas .nav-link {
    padding: 1rem 1.25rem !important;
    margin: 0.5rem 0 !important;
    border-radius: 12px;
    font-size: 1.1rem !important;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .navbar .offcanvas .nav-link:hover,
  .navbar .offcanvas .nav-link.active {
    background: rgba(var(--accent-color-rgb), 0.2) !important;
    color: var(--accent-color) !important;
    transform: translateX(5px);
  }
  
  /* Offcanvas içindeki telefon numarası için */
  .navbar .offcanvas .navbar-nav:last-child {
    margin-top: auto;
    margin-bottom: 2rem !important; /* Alt boşluk eklendi */
    padding-top: 1rem;
    padding-bottom: 1rem !important; /* Alt padding eklendi */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
  }
  
  /* Offcanvas body'nin sonuna ekstra boşluk */
  .navbar .offcanvas .offcanvas-body::after {
    content: '';
    display: block;
    height: 100px; /* Tarayıcı çubuğu için boşluk */
    flex-shrink: 0;
  }
}

.section {
  padding: 5rem 0;
}

/* Blog Detay Sayfası için navbar altında kalmaması için */
body:not(.homepage) main > article.section:first-child {
  margin-top: 150px !important;
  padding-top: 2rem !important;
}

/* ABOUT PAGE STYLES
-------------------------------------------------- */
.about-hero-section {
  min-height: 50vh;
  padding-top: 90px; /* Navbar yüksekliği için padding */
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.3) 100%), url("../img/construction-1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hizmetlerimiz Bölümü */
.service-card {
  transition: all 0.3s ease;
  border: 2px solid transparent !important;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color) !important;
  box-shadow: 0 10px 25px rgba(var(--accent-color-rgb), 0.15) !important;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon {
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-card h5 {
  color: var(--accent-color);
  font-weight: 600;
}

.service-card .text-muted {
  line-height: 1.6;
}

.about-hero-section .about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.3) 100%);
  z-index: 1;
}

.min-vh-50 {
  min-height: 50vh;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.stats-section .stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stats-section .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.stats-section .stat-card .stat-icon {
  transition: transform 0.3s ease;
}
.stats-section .stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.about-image-wrapper img {
  transition: transform 0.5s ease;
}
.about-image-wrapper .about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-image-wrapper:hover img {
  transform: scale(1.05);
}
.about-image-wrapper:hover .about-image-overlay {
  opacity: 1;
}

.vision-mission-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}
.vision-mission-card .card-icon {
  transition: transform 0.3s ease;
}
.vision-mission-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.certificate-card {
  transition: all 0.3s ease;
  border: 2px solid transparent !important;
}
.certificate-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color) !important;
  box-shadow: 0 10px 25px rgba(var(--accent-color-rgb), 0.2) !important;
}
.certificate-card:hover i {
  transform: scale(1.1);
}
.certificate-card i {
  transition: transform 0.3s ease;
}

.value-card {
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}
.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}
.value-card .value-icon {
  transition: transform 0.3s ease;
}

.policy-card,
.environment-card {
  transition: all 0.3s ease;
  border: 2px solid transparent !important;
}
.policy-card:hover,
.environment-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color) !important;
  box-shadow: 0 10px 25px rgba(var(--accent-color-rgb), 0.15) !important;
}
.policy-card:hover i,
.environment-card:hover i {
  transform: scale(1.1);
}
.policy-card i,
.environment-card i {
  transition: transform 0.3s ease;
}

.policy-list .policy-item {
  transition: transform 0.2s ease;
}
.policy-list .policy-item:hover {
  transform: translateX(5px);
}

/* PROJECTS PAGE STYLES
-------------------------------------------------- */
.projects-hero-section {
  min-height: 50vh;
  padding-top: 90px; /* Navbar yüksekliği için padding */
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.3) 100%), url("../img/construction-2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.projects-hero-section .projects-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.3) 100%);
  z-index: 1;
}

.min-vh-40 {
  min-height: 40vh;
}

.projects-filter-section .btn-filter-category,
.projects-filter-section .btn-filter-status {
  padding: 0.5rem 1rem;
  border: 2px solid #e0e0e0;
  background: white;
  color: #333;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.projects-filter-section .btn-filter-category i,
.projects-filter-section .btn-filter-status i {
  transition: transform 0.3s ease;
  font-size: 0.875rem;
}
.projects-filter-section .btn-filter-category:hover,
.projects-filter-section .btn-filter-status:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.projects-filter-section .btn-filter-category:hover i,
.projects-filter-section .btn-filter-status:hover i {
  transform: scale(1.1);
}
/* Kategori Filtreleri */
.projects-filter-section .btn-filter-category {
  border-color: #6c757d;
  color: #495057;
}
.projects-filter-section .btn-filter-category:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(var(--accent-color-rgb), 0.05);
}
.projects-filter-section .btn-filter-category.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  box-shadow: 0 4px 12px rgba(var(--accent-color-rgb), 0.3);
}
/* Durum Filtreleri - Renkli */
.projects-filter-section .btn-filter-status.btn-status-all {
  border-color: #6c757d;
  color: #495057;
}
.projects-filter-section .btn-filter-status.btn-status-all:hover {
  border-color: #495057;
  background: rgba(73, 80, 87, 0.05);
}
.projects-filter-section .btn-filter-status.btn-status-all.active {
  background: #6c757d;
  border-color: #6c757d;
  color: white;
}
.projects-filter-section .btn-filter-status.btn-status-success {
  border-color: #198754;
  color: #198754;
  background: rgba(25, 135, 84, 0.05);
}
.projects-filter-section .btn-filter-status.btn-status-success:hover {
  border-color: #198754;
  background: rgba(25, 135, 84, 0.1);
}
.projects-filter-section .btn-filter-status.btn-status-success.active {
  background: #198754;
  border-color: #198754;
  color: white;
  box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}
.projects-filter-section .btn-filter-status.btn-status-warning {
  border-color: #ffc107;
  color: #856404;
  background: rgba(255, 193, 7, 0.1);
}
.projects-filter-section .btn-filter-status.btn-status-warning:hover {
  border-color: #ffc107;
  background: rgba(255, 193, 7, 0.2);
}
.projects-filter-section .btn-filter-status.btn-status-warning.active {
  background: #ffc107;
  border-color: #ffc107;
  color: #000;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}
.projects-filter-section .btn-filter-status.btn-status-info {
  border-color: #0dcaf0;
  color: #055160;
  background: rgba(13, 202, 240, 0.1);
}
.projects-filter-section .btn-filter-status.btn-status-info:hover {
  border-color: #0dcaf0;
  background: rgba(13, 202, 240, 0.2);
}
.projects-filter-section .btn-filter-status.btn-status-info.active {
  background: #0dcaf0;
  border-color: #0dcaf0;
  color: #000;
  box-shadow: 0 4px 12px rgba(13, 202, 240, 0.3);
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.project-card .project-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
  min-height: 350px;
  background: #f5f5f5;
}
.project-card .project-image-wrapper .project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card .project-image-wrapper .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 1;
  transition: all 0.3s ease;
}
.project-card .project-image-wrapper .project-overlay .badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.project-card .project-image-wrapper .project-category-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--accent-color);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  margin-bottom: auto;
  opacity: 1;
  transition: transform 0.3s ease;
}
.project-card .project-image-wrapper .project-info {
  color: white;
  margin-top: auto;
}
.project-card .project-image-wrapper .project-info .project-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  opacity: 1;
  transition: transform 0.3s ease;
}
.project-card .project-image-wrapper .project-info .project-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  opacity: 1;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project-card .project-image-wrapper .project-info .project-location,
.project-card .project-image-wrapper .project-info .project-date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  opacity: 1;
}
.project-card .project-image-wrapper .project-info .project-location i,
.project-card .project-image-wrapper .project-info .project-date i {
  color: var(--accent-color);
  font-size: 0.8rem;
}
.project-card .project-image-wrapper .btn-view-project {
  align-self: flex-end;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-top: 1rem;
  opacity: 0;
  transform: scale(0.8);
}
.project-card .project-image-wrapper:hover .project-image {
  transform: scale(1.1);
}
.project-card .project-image-wrapper:hover .project-overlay {
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.9) 100%);
}
.project-card .project-image-wrapper:hover .project-category-badge {
  transform: translateY(-5px);
}
.project-card .project-image-wrapper:hover .project-info .project-title {
  transform: translateY(-3px);
}
.project-card .project-image-wrapper:hover .btn-view-project {
  opacity: 1;
  transform: scale(1);
}
.project-card .project-image-wrapper:hover .btn-view-project:hover {
  background: white;
  color: var(--accent-color);
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.project-item {
  animation: fadeIn 0.5s ease-in;
}

#projects-grid {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .projects-filter-section .btn-filter {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .projects-filter-section .btn-filter i {
    font-size: 0.85rem;
  }
  .project-card .project-image-wrapper {
    min-height: 300px;
  }
}
/* PROJECT DETAIL PAGE STYLES
-------------------------------------------------- */
.project-detail-hero {
  min-height: 60vh;
  max-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.project-detail-hero .project-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.2) 100%);
  z-index: 1;
}
.project-detail-hero .project-category-badge-hero {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--accent-color);
  color: white;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.min-vh-60 {
  min-height: 60vh;
}

.project-info-section .info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-info-section .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.project-sidebar {
  position: sticky;
  top: 100px;
}

.project-gallery-section .gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.project-gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-gallery-section .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-gallery-section .gallery-item .gallery-overlay i {
  color: white;
  font-size: 2rem;
}
.project-gallery-section .gallery-item:hover img {
  transform: scale(1.1);
}
.project-gallery-section .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox-modal .lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}
.lightbox-modal .lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-modal .lightbox-content .lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}
.lightbox-modal .lightbox-content .lightbox-close:hover {
  transform: scale(1.2);
}
.lightbox-modal .lightbox-content .lightbox-prev,
.lightbox-modal .lightbox-content .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-modal .lightbox-content .lightbox-prev:hover,
.lightbox-modal .lightbox-content .lightbox-next:hover {
  background: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-modal .lightbox-content .lightbox-prev {
  left: -80px;
}
.lightbox-modal .lightbox-content .lightbox-next {
  right: -80px;
}

.related-projects-section {
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .project-detail-hero {
    min-height: 50vh;
  }
  .project-detail-hero h1 {
    font-size: 2rem;
  }
  .lightbox-modal .lightbox-content .lightbox-prev,
  .lightbox-modal .lightbox-content .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-modal .lightbox-content .lightbox-prev {
    left: 10px;
  }
  .lightbox-modal .lightbox-content .lightbox-next {
    right: 10px;
  }
  .lightbox-modal .lightbox-content .lightbox-close {
    top: -40px;
    font-size: 1.5rem;
  }
}
/* CONTACT PAGE STYLES
-------------------------------------------------- */
.contact-hero-section {
  min-height: 50vh;
  padding-top: 90px; /* Navbar yüksekliği için padding */
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(26, 26, 26, 0.6) 100%), url("../img/construction.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-hero-section .contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.3) 100%);
  z-index: 1;
}
.contact-hero-section .btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}
.contact-hero-section .btn-accent:hover {
  background-color: rgba(var(--accent-color-rgb), 0.9);
  border-color: rgba(var(--accent-color-rgb), 0.9);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--accent-color-rgb), 0.3);
}

.min-vh-50 {
  min-height: 50vh;
}

.contact-info-section .contact-info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-section .contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}
.contact-info-section .contact-info-card .contact-icon-wrapper .contact-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.contact-info-section .contact-info-card:hover .contact-icon-circle {
  transform: scale(1.05);
}
.contact-info-section .contact-info-card .contact-details a.hover-lift,
.contact-info-section .contact-info-card .contact-details .hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-section .contact-info-card .contact-details a.hover-lift:hover,
.contact-info-section .contact-info-card .contact-details .hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Modern Contact Cards */
.contact-card-modern {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 30, 35, 0.95) 0%, rgba(20, 20, 25, 0.98) 100%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), rgba(var(--accent-color-rgb), 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-card-modern:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(var(--accent-color-rgb), 0.2), 0 0 40px rgba(var(--accent-color-rgb), 0.1);
}
.contact-card-modern:hover::before {
  opacity: 1;
}
.contact-card-modern[data-card-type="phone"] .contact-card-background {
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.15) 0%, rgba(var(--accent-color-rgb), 0.05) 100%);
}
.contact-card-modern[data-card-type="phone"] .icon-inner-circle {
  background: linear-gradient(135deg, var(--accent-color), rgba(var(--accent-color-rgb), 0.8));
  box-shadow: 0 10px 30px rgba(var(--accent-color-rgb), 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.contact-card-modern[data-card-type="phone"] .icon-pulse-ring {
  border-color: var(--accent-color);
}
.contact-card-modern[data-card-type="phone"] .contact-action-btn:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(var(--accent-color-rgb), 0.3);
}
.contact-card-modern[data-card-type="phone"] .contact-action-btn i {
  color: var(--accent-color);
}
.contact-card-modern[data-card-type="email"] .contact-card-background {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.15) 0%, rgba(66, 133, 244, 0.05) 100%);
}
.contact-card-modern[data-card-type="email"]::before {
  background: linear-gradient(90deg, #4285F4, rgba(66, 133, 244, 0.6));
}
.contact-card-modern[data-card-type="email"] .icon-inner-circle {
  background: linear-gradient(135deg, #4285F4, rgba(66, 133, 244, 0.8));
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.contact-card-modern[data-card-type="email"] .icon-pulse-ring {
  border-color: #4285F4;
}
.contact-card-modern[data-card-type="email"]:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(66, 133, 244, 0.2), 0 0 40px rgba(66, 133, 244, 0.1);
}
.contact-card-modern[data-card-type="email"] .contact-action-btn:hover {
  border-color: #4285F4;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}
.contact-card-modern[data-card-type="email"] .contact-action-btn i {
  color: #4285F4;
}
.contact-card-modern[data-card-type="address"] .contact-card-background {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.15) 0%, rgba(52, 211, 153, 0.05) 100%);
}
.contact-card-modern[data-card-type="address"]::before {
  background: linear-gradient(90deg, #34D399, rgba(52, 211, 153, 0.6));
}
.contact-card-modern[data-card-type="address"] .icon-inner-circle {
  background: linear-gradient(135deg, #34D399, rgba(52, 211, 153, 0.8));
  box-shadow: 0 10px 30px rgba(52, 211, 153, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.contact-card-modern[data-card-type="address"] .icon-pulse-ring {
  border-color: #34D399;
}
.contact-card-modern[data-card-type="address"]:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(52, 211, 153, 0.2), 0 0 40px rgba(52, 211, 153, 0.1);
}
.contact-card-modern[data-card-type="address"] .contact-action-btn:hover {
  border-color: #34D399;
  box-shadow: 0 8px 25px rgba(52, 211, 153, 0.3);
}
.contact-card-modern[data-card-type="address"] .contact-action-btn i {
  color: #34D399;
}
.contact-card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.contact-card-modern:hover .contact-card-background {
  opacity: 0.8;
}
.contact-card-content {
  z-index: 1;
}
.contact-icon-circle-modern {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-inner-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), rgba(var(--accent-color-rgb), 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(var(--accent-color-rgb), 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.icon-inner-circle i {
  font-size: 2.5rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.icon-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  opacity: 0.3;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
.contact-card-modern:hover .icon-inner-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(var(--accent-color-rgb), 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.contact-card-modern:hover .icon-pulse-ring {
  animation-duration: 1.5s;
}
.contact-action-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.contact-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--accent-color-rgb), 0.3);
  color: white;
}
.contact-action-btn i {
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.contact-action-btn:hover i {
  transform: scale(1.2);
  color: white;
}
.contact-card-modern h4 {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}
.contact-card-modern p {
  font-size: 0.95rem;
}
.contact-icon-circle-small {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-form-section .contact-form .form-floating .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}
.contact-form-section .contact-form .form-floating .form-control:focus {
  border-color: var(--accent-color);
  background-color: white;
  box-shadow: 0 0 0 0.2rem rgba(var(--accent-color-rgb), 0.15);
}
.contact-form-section .contact-form .form-floating label {
  color: #6c757d;
  font-weight: 500;
}
.contact-form-section .contact-form .btn-primary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.contact-form-section .contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--accent-color-rgb), 0.4);
  background-color: rgba(var(--accent-color-rgb), 0.9);
  border-color: rgba(var(--accent-color-rgb), 0.9);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.working-hours-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.working-hours-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.social-media-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}
.social-media-card .social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
.social-media-card .social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  color: white;
}
.social-media-card .social-icon.facebook:hover {
  background: #1877f2;
}
.social-media-card .social-icon.twitter:hover {
  background: #1da1f2;
}
.social-media-card .social-icon.linkedin:hover {
  background: #0077b5;
}
.social-media-card .social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

@media (max-width: 768px) {
  .about-hero-section,
  .projects-hero-section,
  .blog-hero-section,
  .contact-hero-section {
    padding-top: 80px; /* Mobilde navbar daha küçük */
  }
  .contact-hero-section {
    min-height: 50vh;
  }
  .contact-hero-section h1 {
    font-size: 2rem;
  }
  .contact-info-card {
    margin-bottom: 1.5rem;
  }
  .map-container iframe {
    min-height: 250px;
  }
}
/* CUSTOMIZE SECTION TITLES
-------------------------------------------------- */
.section-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-title:not(.justify-content-center)::before {
  content: "";
  display: block;
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent-color) 0%, rgba(var(--accent-color-rgb), 0.3) 100%);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title .fa-grip-lines {
  display: none;
}
.section-title p {
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  position: relative;
  margin-bottom: 0;
  padding-bottom: 12px;
}
.section-title p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.section-title p:hover::after {
  width: 80px;
}
.section-title.justify-content-center {
  justify-content: center;
}
.section-title.justify-content-center p::after {
  left: 50%;
  transform: translateX(-50%);
}
.section-title.justify-content-center p:hover::after {
  transform: translateX(-50%);
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
/* Carousel base class */
.hero-section .carousel .btn {
  text-transform: capitalize;
}
.hero-section .carousel .btn-hero-accent {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: white !important;
  transition: all 0.3s ease;
}
.hero-section .carousel .btn-hero-accent:hover {
  background-color: rgba(var(--accent-color-rgb), 0.9) !important;
  border-color: rgba(var(--accent-color-rgb), 0.9) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--accent-color-rgb), 0.4);
}
.hero-section .carousel .btn-hero-call {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
  color: white !important;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hero-section .carousel .btn-hero-call:hover {
  background-color: #218838 !important;
  border-color: #218838 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
}
.hero-section .carousel .btn-hero-call.pulse-animation {
  animation: pulseCall 2s ease-in-out infinite;
}

/* Button2 (Projelerimiz) için şeffaf çerçeve */
.hero-section .carousel .carousel-caption .btn.text-white:not(.btn-hero-accent):not(.btn-hero-call) {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.hero-section .carousel .carousel-caption .btn.text-white:not(.btn-hero-accent):not(.btn-hero-call):hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}
@keyframes pulseCall {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
}
.hero-section .carousel {
  /* Since positioning the image, we need to help out the caption */
}

/* Carousel kontrol butonları caption'dan daha yüksek z-index'e sahip olmalı */
.hero-section .carousel .carousel-control-prev,
.hero-section .carousel .carousel-control-next {
  z-index: 1050 !important; /* Caption'dan (1040) daha yüksek */
  pointer-events: auto !important;
}

.hero-section .carousel .carousel-caption {
  bottom: auto;
  top: 60%;
  transform: translateY(-50%);
  z-index: 1020 !important; /* Navbar'dan (1060) daha düşük olmalı */
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* Caption tıklamaları engellemesin */
}

/* Caption içindeki butonlar tıklanabilir olmalı */
.hero-section .carousel .carousel-caption .btn,
.hero-section .carousel .carousel-caption a {
  pointer-events: auto;
}

/* İlk slide'da logo varsa, caption'ı biraz daha aşağı kaydır */
.hero-section .carousel .carousel-item:first-child .carousel-caption {
  top: 58%;
  transform: translateY(-50%);
}
/* Mobil için hero section düzenlemeleri */
@media (max-width: 768px) {
  /* Hero section padding yok - navbar fixed olduğu için padding gerekmez */
  .hero-section {
    padding-top: 0 !important;
  }
  
  /* Carousel caption'ı aşağı kaydır ve animasyona yer aç */
  .hero-section .carousel .carousel-caption {
    bottom: 1.5rem !important;
    top: auto !important;
    transform: translateY(0) !important;
    padding: 0 1rem;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }
  
  /* İlk slide'da logo varsa, mobilde de özel ayar */
  .hero-section .carousel .carousel-item:first-child .carousel-caption {
    top: auto !important;
    transform: translateY(0) !important;
  }
  
  /* Hero section yüksekliği mobilde - tam ekran */
  .hero-section .carousel .carousel-item {
    height: 100vh !important;
    min-height: 600px;
  }
  
  /* Başlık ve içerik boyutları mobilde */
  .hero-section .carousel .carousel-caption h5 {
    font-size: 1.4rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }
  
  .hero-section .carousel .carousel-caption .lead {
    font-size: 0.9rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.4 !important;
  }
  
  .hero-section .carousel .carousel-caption .btn {
    font-size: 0.8rem !important;
    padding: 0.5rem 0.9rem !important;
    margin: 0.2rem !important;
  }
  
  /* Mobil için YENİ ve BASİT animasyonlu logo - Garantili çalışır */
  .hero-logo-animation {
    margin-bottom: 1rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    visibility: visible !important;
    z-index: 1020 !important; /* Navbar'dan (1060) daha düşük olmalı */
    position: relative !important;
    opacity: 1 !important;
    width: 100% !important;
    animation: mobileLogoFadeIn 1s ease-out forwards !important;
  }
  
  .animated-logo {
    width: 140px !important;
    height: 140px !important;
    max-width: 140px !important;
    max-height: 140px !important;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)) !important;
    animation: mobileLogoPulse 3s ease-in-out infinite !important;
    animation-delay: 1s !important;
  }
  
  /* Mobil için basitleştirilmiş animasyonlar - Tüm elementler görünür başlar */
  .hero-logo-animation .logo-diamond {
    opacity: 1 !important;
    animation: mobileDiamondPulse 2s ease-in-out infinite !important;
    animation-delay: 0.5s !important;
  }
  
  .hero-logo-animation .diamond-border {
    stroke: black !important;
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
    animation: mobileBorderGlow 2.5s ease-in-out infinite !important;
  }
  
  .hero-logo-animation .diamond-fill {
    opacity: 1 !important;
    fill: white !important;
  }
  
  .hero-logo-animation .logo-roof {
    opacity: 1 !important;
    animation: mobileRoofFloat 2.5s ease-in-out infinite !important;
    animation-delay: 0.3s !important;
  }
  
  .hero-logo-animation .roof-left,
  .hero-logo-animation .roof-right,
  .hero-logo-animation .roof-chimney {
    stroke: black !important;
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.4)) !important;
  }
  
  .hero-logo-animation .roof-left {
    animation: mobileRoofLeft 2s ease-in-out infinite !important;
  }
  
  .hero-logo-animation .roof-right {
    animation: mobileRoofRight 2s ease-in-out infinite !important;
    animation-delay: 0.2s !important;
  }
  
  .hero-logo-animation .roof-chimney {
    animation: mobileChimneyGlow 1.5s ease-in-out infinite !important;
    animation-delay: 0.5s !important;
  }
}
.hero-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: relative;
}

.hero-section .carousel {
  /* Declare heights because of positioning of img element */
}
.hero-section .carousel .carousel-item {
  height: 100vh; /* Tam ekran yüksekliği */
  margin-top: 0;
  padding-top: 0;
}
/* Mobil için hero section düzenlemeleri */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 80px; /* Mobil navbar yüksekliği için padding */
  }
  .hero-section .carousel .carousel-caption {
    bottom: 3rem;
    padding: 0 1rem;
  }
  .hero-section .carousel .carousel-item {
    height: 70vh;
    min-height: 500px;
  }
  .hero-section .carousel .carousel-caption h5 {
    font-size: 1.75rem !important;
    margin-bottom: 1.5rem !important;
  }
  .hero-section .carousel .carousel-caption .lead {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  .hero-section .carousel .carousel-caption .btn {
    font-size: 0.9rem !important;
    padding: 0.6rem 1.2rem !important;
    margin: 0.25rem !important;
  }
}
.hero-section .carousel .carousel-item .overlay {
  height: 100%;
  width: 100vw;
  display: inline-block;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.75)), color-stop(100%, rgba(0, 0, 0, 0.5))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a6000000", endColorstr="#00000000", GradientType=0); /* IE6-9 */
}
.hero-section .carousel .carousel-item img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-section .carousel .carousel-indicators {
  bottom: 4rem;
  gap: 0.75rem;
}

/* Desktop'ta progress bar'ları butonların altında kalmaması için daha aşağı indir */
@media (min-width: 992px) {
  .hero-section .carousel .carousel-indicators {
    bottom: 8rem;
  }
}

/* Mobilde carousel-indicators görünür olmalı */
@media (max-width: 991.98px) {
  .hero-section .carousel .carousel-indicators {
    display: flex !important;
    bottom: 2rem;
    gap: 0.5rem;
  }
  
  .hero-section .carousel .carousel-indicators button {
    width: 40px;
    height: 3px;
  }
}

/* Mobil görünümde progressbarları butonların altına kaydır */
@media (max-width: 768px) {
  .hero-section .carousel .carousel-indicators {
    bottom: 0.25rem !important; /* Butonların altında kalması için daha aşağı */
  }
}
.hero-section .carousel .carousel-indicators button {
  width: 50px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transition: background-color 0.3s ease;
}
.hero-section .carousel .carousel-indicators button:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.hero-section .carousel .carousel-indicators button.active {
  background-color: rgba(255, 255, 255, 0.5);
}
/* Hero Logo Animation - Construction Theme (Desktop Only) */
@media (min-width: 769px) {
.hero-logo-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-top: 0;
  opacity: 0;
  animation: logoFadeIn 0.8s ease-out 0.2s forwards;
  z-index: 1020 !important; /* Navbar'dan (1060) daha düşük olmalı */
  position: relative;
}

.animated-logo {
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
  animation: logoFloat 4s ease-in-out infinite;
  transform-origin: center;
}

/* Diamond Animation - Foundation Building */
.logo-diamond {
  transform-origin: center;
  opacity: 0;
  animation: diamondAppear 1s ease-out 0.4s forwards;
}

  .diamond-border {
    stroke: black;
    stroke-dasharray: 280;
    stroke-dashoffset: 280;
    animation: drawDiamond 1.5s ease-out 0.6s forwards;
  }

.diamond-fill {
  opacity: 0;
  fill: white;
  animation: diamondFill 0.8s ease-out 1.8s forwards;
}

/* Roof Animation - Construction Phase */
.logo-roof {
  opacity: 0;
  animation: roofAppear 0.6s ease-out 2.2s forwards;
}

  .roof-left {
    stroke: black;
    stroke-dasharray: 28;
    stroke-dashoffset: 28;
    animation: drawLine 0.8s ease-out 2.4s forwards;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.4));
  }

  .roof-right {
    stroke: black;
    stroke-dasharray: 28;
    stroke-dashoffset: 28;
    animation: drawLine 0.8s ease-out 2.7s forwards;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.4));
  }

  .roof-chimney {
    stroke: black;
    stroke-dasharray: 8;
    stroke-dashoffset: 8;
    animation: drawLine 0.4s ease-out 3.2s forwards;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.4));
  }
}


/* Keyframe Animations */
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
  }
  75% {
    transform: translateY(-5px) rotate(-1deg);
  }
}

@keyframes diamondAppear {
  from {
    opacity: 0;
    transform: scale(0.3) rotate(-45deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes drawDiamond {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes diamondFill {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes roofAppear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* Mobil için YENİ basit animasyonlar - Keyframe'ler media query dışında */
@keyframes mobileLogoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes mobileLogoPulse {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.05) translateY(-5px);
  }
}

@keyframes mobileDiamondPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.08) rotate(2deg);
    opacity: 0.9;
  }
}

@keyframes mobileBorderGlow {
  0%, 100% {
    stroke-opacity: 1;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4));
  }
  50% {
    stroke-opacity: 0.8;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
  }
}

@keyframes mobileFillPulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes mobileRoofFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-3px);
    opacity: 0.95;
  }
}

@keyframes mobileRoofLeft {
  0%, 100% {
    stroke-opacity: 1;
    transform: translateX(0);
  }
  50% {
    stroke-opacity: 0.9;
    transform: translateX(-1px);
  }
}

@keyframes mobileRoofRight {
  0%, 100% {
    stroke-opacity: 1;
    transform: translateX(0);
  }
  50% {
    stroke-opacity: 0.9;
    transform: translateX(1px);
  }
}

@keyframes mobileChimneyGlow {
  0%, 100% {
    stroke-opacity: 1;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4));
  }
  50% {
    stroke-opacity: 0.85;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
  }
}



.hero-section .carousel .carousel-indicators button .indicator-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-color), rgba(var(--accent-color-rgb), 0.8));
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-section .carousel .carousel-indicators button.active .indicator-progress-bar {
  /* Animation will be started via JavaScript after logo animation completes */
}
@keyframes indicatorProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.categories-section {
  background-image: url("../img/hero-1.jpg");
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.categories-section a.card {
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: 0.4s;
}
.categories-section a.card .card-body {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.categories-section a.card:hover {
  background-color: rgba(26, 26, 26, 0.9) !important;
}
.categories-section a.card .card-body i {
  font-size: 1.5rem;
}
@media (max-width: 767.98px) {
  .categories-section a.card .card-body i {
    font-size: 1.25rem;
  }
  .categories-section a.card .card-body {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    gap: 0.75rem !important;
  }
}

/* CUSTOMIZED IMAGE GRID
----------------- */
.about-us-section .image-grid {
  display: flex;
  flex-wrap: wrap;
}
.about-us-section {
  /* Create two equal columns that sits next to each other */
}
.about-us-section .column {
  flex: 50%;
  padding: 0;
  height: 320px;
}
.about-us-section .column img {
  width: 100%;
  height: 100%;
  margin-top: 8px;
  vertical-align: middle;
  border-radius: 6px;
  object-fit: cover;
}
.about-us-section .column:nth-of-type(2) {
  margin-top: 3rem;
  margin-left: -3rem;
}

.services-section {
  /* Container holding the image and the text */
}
.services-section .image-card {
  position: relative;
}
.services-section .image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.services-section .image-card {
  /* Bottom right text */
}
.services-section .image-card .text-block {
  position: absolute;
  bottom: 20px;
  left: 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: var(--accent-color) !important;
}
.services-section .image-card .overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #f8f8f8;
  color: #1a1a1a;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
}
.services-section .image-card .overlay .middle {
  width: 95%;
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.services-section .image-card .overlay .middle .text {
  background-color: var(--accent-color);
  font-size: 16px;
  padding: 16px 32px;
}
.services-section .image-card:hover .overlay {
  bottom: 0;
  height: 100%;
}
.services-section .image-card:hover .overlay .middle {
  opacity: 1;
}

.projects-section .image-card {
  position: relative;
}
.projects-section .image-card img {
  display: block;
  object-fit: cover;
}
.projects-section .image-card .overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  opacity: 0;
  color: white;
  font-size: 20px;
  padding: 20px;
}
.projects-section .image-card .overlay .btn {
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.projects-section .image-card:hover .overlay {
  opacity: 1;
}
.projects-section .image-card .text {
  color: white;
}

/* PARTNERS SECTION STYLES
-------------------------------------------------- */
.partners-section .partners-container {
  overflow: hidden;
  position: relative;
  padding-bottom: 1rem;
}
.partners-section .partners-row {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: scroll-partners 30s linear infinite;
}
.partners-section .partners-row:hover {
  animation-play-state: paused;
}
.partners-section .partner-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 200px;
  width: 250px;
  text-decoration: none;
  color: inherit;
}
.partners-section .partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--accent-color);
  text-decoration: none;
  color: inherit;
}
.partners-section .partner-card[href] {
  cursor: pointer;
}
.partners-section .partner-card .partner-logo-wrapper {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
}
.partners-section .partner-card .partner-logo-wrapper .partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.partners-section .partner-card .partner-logo-wrapper .partner-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(var(--accent-color-rgb), 0.8) 100%);
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.partners-section .partner-card:hover .partner-logo-wrapper {
  background: rgba(var(--accent-color-rgb), 0.05);
}
.partners-section .partner-card:hover .partner-logo-wrapper .partner-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}
.partners-section .partner-card:hover .partner-logo-wrapper .partner-avatar {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(var(--accent-color-rgb), 0.3);
}
.partners-section .partner-card:hover .partner-project-count {
  color: var(--accent-color);
  font-weight: 600;
}
.partners-section .partner-card h6 {
  transition: color 0.3s ease;
}
.partners-section .partner-card:hover h6 {
  color: var(--accent-color);
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .partners-section .partner-card {
    min-height: 180px;
    width: 220px;
  }
  .partners-section .partner-card .partner-logo-wrapper {
    width: 100px;
    height: 100px;
  }
  .partners-section .partner-card .partner-logo-wrapper .partner-avatar {
    font-size: 2rem;
  }
  .partners-section .partners-row {
    animation-duration: 25s;
  }
}
.view-projects-section .carousel {
  /* Declare heights because of positioning of img element */
}
.view-projects-section .carousel .carousel-item {
  height: 50vh;
}
.view-projects-section .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer h5, footer p, footer label, footer .nav-link, footer .navbar-brand {
  color: white;
}
footer .footer-logo {
  margin-left: 20px; /* Logo biraz daha sağa kaydırıldı */
}
@media (min-width: 992px) {
  footer .footer-logo {
    margin-left: 0; /* Desktop'ta margin yok, flexbox ile hizalama */
  }
}
footer .footer-logo img {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
footer .footer-logo:hover img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}
footer .nav-link {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s ease;
}
footer .nav-link:hover {
  color: var(--accent-color) !important;
  transform: translateX(5px);
}
footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
footer a:hover {
  color: var(--accent-color) !important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .hero-section .carousel .carousel-caption {
    bottom: 1rem;
  }
  .hero-section .carousel .carousel-item {
    height: 50vh;
  }
  .about-us-section .image-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .about-us-section {
    /* Create two equal columns that sits next to each other */
  }
  .about-us-section .column {
    height: 200px;
  }
  .about-us-section .column:nth-of-type(2) {
    margin-top: 4rem;
    margin-left: -4rem;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */

/*# sourceMappingURL=style.css.map */

/* BLOG PAGE STYLES
-------------------------------------------------- */
.blog-hero-section {
  min-height: 50vh;
  padding-top: 90px; /* Navbar yüksekliği için padding */
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%),
              url("../img/construction-1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.blog-hero-section .blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.3) 100%);
  z-index: 1;
}

.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.blog-image-wrapper:hover img {
  transform: scale(1.05);
}

.blog-image-wrapper:hover .blog-image-overlay {
  opacity: 1;
}

.blog-detail-image-wrapper {
  transition: transform 0.3s ease;
}

.blog-detail-image-wrapper:hover {
  transform: scale(1.02);
}

/* BLOG DETAIL PAGE STYLES
-------------------------------------------------- */
.blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.blog-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--accent-color);
}

.blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-content a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.blog-content a:hover {
  color: #1a1a1a;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-content blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #666;
}

.blog-content code {
  background-color: #f4f4f4;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.blog-content pre {
  background-color: #f4f4f4;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.blog-content table th,
.blog-content table td {
  padding: 0.75rem;
  border: 1px solid #ddd;
  text-align: left;
}

.blog-content table th {
  background-color: #1a1a1a;
  color: white;
  font-weight: 600;
}

.transition-hover {
  transition: all 0.3s ease;
}

.transition-hover:hover {
  color: var(--accent-color) !important;
  transform: translateX(5px);
}

/* BLOG PAGE COLOR UPDATES
-------------------------------------------------- */
.blog-card .card-title a:hover {
  color: var(--accent-color) !important;
}

.blog-card .btn:hover {
  background-color: rgba(var(--accent-color-rgb), 0.9) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--accent-color-rgb), 0.3);
}

.pagination .page-link:hover {
  color: var(--accent-color) !important;
  border-color: var(--accent-color);
}

.pagination .page-item.active .page-link {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
}

.blog-image-overlay {
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.1) 0%, transparent 100%) !important;
}

/* FOOTER MAP STYLES
-------------------------------------------------- */
.footer-map-wrapper {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* ========================================
   ÇEREZ VE KVKK ONAY SİSTEMİ
   ======================================== */

/* Çerez Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 2px solid rgba(var(--accent-color-rgb), 0.3);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-consent-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  color: #fff;
}

.cookie-consent-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.2), rgba(var(--accent-color-rgb), 0.1));
  border: 2px solid rgba(var(--accent-color-rgb), 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-color);
}

.cookie-consent-text {
  flex: 1;
}

.cookie-consent-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cookie-consent-message {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-link {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: rgba(var(--accent-color-rgb), 0.8);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.btn-cookie-accept-all,
.btn-cookie-accept-necessary,
.btn-cookie-settings {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-cookie-accept-all {
  background: linear-gradient(135deg, var(--accent-color), rgba(var(--accent-color-rgb), 0.8));
  color: #fff;
  box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.3);
}

.btn-cookie-accept-all:hover {
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.9), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--accent-color-rgb), 0.4);
  color: #fff;
}

.btn-cookie-accept-necessary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cookie-accept-necessary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
}

.btn-cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cookie-settings:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
}

/* Çerez Ayarları Modal */
.cookie-settings-modal {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-color-rgb), 0.2);
}

.cookie-settings-modal .modal-header {
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.1), rgba(var(--accent-color-rgb), 0.05));
  border-bottom: 2px solid rgba(var(--accent-color-rgb), 0.2);
  padding: 1.5rem;
}

.cookie-settings-modal .modal-title {
  color: #1a1a1a;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.cookie-settings-modal .modal-body {
  padding: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}

.cookie-settings-intro {
  padding: 1rem;
  background: rgba(var(--accent-color-rgb), 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.cookie-category {
  border: 2px solid rgba(var(--accent-color-rgb), 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  background: #fff;
}

.cookie-category:hover {
  border-color: rgba(var(--accent-color-rgb), 0.3);
  box-shadow: 0 4px 12px rgba(var(--accent-color-rgb), 0.1);
}

.cookie-category.active {
  border-color: var(--accent-color);
  background: rgba(var(--accent-color-rgb), 0.05);
}

.cookie-category-header h6 {
  color: #1a1a1a;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.cookie-category-body {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-category-body p {
  color: #666;
  margin: 0;
}

.form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--accent-color-rgb), 0.25);
}

.cookie-settings-modal .modal-footer {
  border-top: 1px solid rgba(var(--accent-color-rgb), 0.1);
  padding: 1.25rem 1.5rem;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-color), rgba(var(--accent-color-rgb), 0.8));
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.3);
}

.btn-accent:hover {
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.9), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--accent-color-rgb), 0.4);
  color: #fff;
}

/* Bildirim */
.cookie-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 10000;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: 500;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 350px;
}

.cookie-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.cookie-notification-success {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.cookie-notification-info {
  background: linear-gradient(135deg, var(--accent-color), rgba(var(--accent-color-rgb), 0.8));
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-consent-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .cookie-consent-actions {
    flex-direction: column;
  }
  
  .btn-cookie-accept-all,
  .btn-cookie-accept-necessary,
  .btn-cookie-settings {
    width: 100%;
  }
  
  .cookie-notification {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }
  
  .cookie-notification.show {
    transform: translateY(0);
  }
}

/* Mobil görünümde tüm içerikleri ortala */
@media (max-width: 991.98px) {
  /* Text alignment - mobilde tüm metinleri ortala */
  .text-lg-start,
  .text-md-start {
    text-align: center !important;
  }
  
  /* Justify content - mobilde tüm flex içerikleri ortala */
  .justify-content-lg-start,
  .justify-content-md-start {
    justify-content: center !important;
  }
  
  /* About Us Section */
  .about-us-section .section-title {
    justify-content: center !important;
  }
  
  .about-us-section p {
    text-align: center !important;
  }
  
  .about-us-section .text-center.text-lg-start {
    text-align: center !important;
  }
  
  /* Partners Section */
  .partners-section .section-title {
    justify-content: center !important;
  }
  
  /* Footer */
  footer .text-md-start {
    text-align: center !important;
  }
  
  footer .justify-content-md-start {
    justify-content: center !important;
  }
  
  footer .d-flex.justify-content-center[style*="padding-left"] {
    padding-left: 0 !important;
  }
  
  /* Footer logo container */
  footer .d-flex[style*="padding-left: 40px"] {
    padding-left: 0 !important;
  }
  
  /* Footer başlıkları ve listeleri ortala */
  footer h5 {
    text-align: center !important;
  }
  
  footer .nav.flex-column {
    align-items: center !important;
  }
  
  footer .nav-item {
    text-align: center !important;
  }
  
  footer .nav-link {
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem;
  }
  
  footer .nav-link i {
    flex-shrink: 0;
  }
  
  /* Footer copyright bölümü - mobilde alt satıra geç */
  footer .footer-copyright {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-align: center !important;
    line-height: 1.8 !important;
  }
  
  /* Footer copyright içindeki "|" işaretlerini mobilde gizle */
  footer .footer-separator {
    display: none !important;
  }
  
  /* Footer copyright içindeki her öğeyi ayrı satırda göster */
  footer .footer-copyright .copyright-text,
  footer .footer-copyright .copyright-rights,
  footer .footer-copyright .footer-link,
  footer .footer-copyright .footer-design {
    display: block !important;
  }
}
