/**
 * Custom CSS - SASS derlemesinden bagimsiz
 * Bu dosya style.css'den sonra yuklenir ve override yapar
 */

/* Buraya ozel stillerinizi ekleyin */

/* Mobile Hamburger Menu */
.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 20px;
}

.toggler-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #2D3436;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation on open */
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none; 
  }
}

.site-footer .footer-emblem img {
  max-width: 100px;
}

.footer-emblem {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.footer-emblem::after {
  display: none;
}

/* Services Section - Mobile Horizontal Overflow Fix */
.services-section {
  overflow-x: hidden;
  overflow-y: hidden;
}

/* Mobile Phone Button - Header */
.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: auto;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.mobile-phone-btn img { 
  width: 140px;
  height: 50px;
}


@media (min-width: 992px) {
  .mobile-phone-btn {
    display: none !important;
  }
}

/* FAQ Section - Mobile padding fix */
@media (max-width: 767px) {
  .faq-section .faq-item {
    padding: 0px !important;
  }
}
 