@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease-in-out;
  }

  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  #lightbox-nav button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.4); /* Mobilde daha okunaklı olsun */
    border: none;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .hamburger {
    display: block;
    background: #fff0;
    border: none;
    cursor: pointer;
  }

  .shape {
    display: none;
  }

  .carousel-wrapper {
    padding: 0 10px;
  }

  .item {
    flex: 0 0 280px;
  }

  .business-card-display {
    max-width: 320px;
  }

  .brand-message-box {
    max-width: 320px;
  }

  .card-front .card-logo {
    font-size: 2rem;
  }

  .card-back h4 {
    font-size: 1rem;
  }

  .zoom-icon {
    display: none;
  }

  .footer-grid {
    gap: 30px;
    margin-bottom: 40px;
  }
  .footer-brand p {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .zoomable-item:hover img,
  .zoomable-item:focus-within img {
    transform: none;
  }

  .featured-content h3 {
    font-size: 1.3rem;
  }
  .modal-cta-btn {
    width: 100%;
  }
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .footer-contact {
    justify-content: center;
    margin-top: 15px;
    height: auto;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .about-image img {
    height: 400px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .blog-modal-grid {
    flex-direction: column;
  }

  .blog-modal-image {
    width: 100%;
    height: 250px;
    order: -1;
  }

  .blog-modal-text {
    padding: 30px;
  }
}

@media (max-width: 1200px) {
  .featured-card {
    flex-direction: column;
    padding: 25px;
  }

  .featured-image {
    width: 100%;
    height: 300px;
    order: -1;
    margin-bottom: 10px;
  }

  .featured-content h3 {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (hover: hover) {
  .business-card-display:hover .card-inner {
    transform: rotateY(180deg);
  }
}
