/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f7f7;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a2238;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.navbar-logo {
  color: #eaeaea;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-links li a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: block;
}

.navbar-links li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  
  transition: left 0.5s ease;
}



.navbar-links li a:hover {
  background: #e94560;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.menu-icon {
  display: none;
  font-size: 2rem;
  color: #eaeaea;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.1);
}

.menu-toggle {
  display: none;
}

html {
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  min-height: 600px;
  margin-top: 70px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5) blur(4px);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  text-align: center;
}

.hero-title {
  color: #fff;
  font-size: clamp(1.5rem, 5vw, 2.7rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.25);
  letter-spacing: 1px;
  background: rgba(26,34,56,0.65);
  padding: 1rem 2rem;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  color: #fff;
  font-size: clamp(1rem, 3vw, 1.25rem);
  text-align: center;
  margin-bottom: 2.2rem;
  background: rgba(26,34,56,0.45);
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn, .whatsapp-btn, .hizmetler-modern-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-btn {
  background: linear-gradient(90deg, #e94560 60%, #1a2238 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.hero-btn::before, .whatsapp-btn::before, .hizmetler-modern-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.hero-btn:hover::before, .whatsapp-btn:hover::before, .hizmetler-modern-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  background: #1a2238;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(233, 69, 96, 0.4);
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.hero-silhouette {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Hizmetler Section */
.hizmetler-section {
  background: linear-gradient(135deg, #f7f8fa 60%, #eaeaea 100%);
  padding: 4rem 0 3rem 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 8px 32px rgba(26,34,56,0.07);
  margin-top: -4px;
  overflow: hidden;
}

.hizmetler-header {
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  padding: 0 2rem;
}

.hizmetler-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 800;
  color: #1a2238;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(26,34,56,0.07);
  animation: fadeInUp 1s ease-out;
}

.hizmetler-desc {
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  padding: 2rem 2rem;
  box-shadow: 0 2px 16px rgba(26,34,56,0.07);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: #222;
  line-height: 1.7;
  margin: 0 auto 2.2rem auto;
  max-width: 750px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hizmetler-modern-btn {
  background: linear-gradient(90deg, #e94560 60%, #1a2238 100%);
  color: #fff;
  padding: 1.1rem 2.7rem;
  font-size: 1.18rem;
  border-radius: 32px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hizmetler-modern-btn:hover {
  background: #1a2238;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(233, 69, 96, 0.4);
}

.hizmetler-gallery-modern {
  width: 100%;
  overflow: hidden;
  padding: 2.5rem 0 1rem 0;
  position: relative;
  display: block;
  min-height: 320px;
  background: linear-gradient(90deg, #eaeaea 60%, #f7f8fa 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(26,34,56,0.08);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 60px;
  height: 60px;
  background: #ffc107;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(26,34,56,0.18);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0;
  outline: none;
}

.gallery-btn.left {
  left: 1rem;
}

.gallery-btn.right {
  right: 1rem;
}

.gallery-btn::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s ease;
}

.gallery-btn.left::before {
  border-width: 14px 18px 14px 0;
  border-color: transparent #fff transparent transparent;
  margin-left: 8px;
}

.gallery-btn.right::before {
  border-width: 14px 0 14px 18px;
  border-color: transparent transparent transparent #fff;
  margin-right: 8px;
}

.gallery-btn:hover {
  background: #ffb300;
  box-shadow: 0 8px 32px rgba(26,34,56,0.22);
  transform: translateY(-50%) scale(1.1);
}

.gallery-scroll-modern {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2.5rem 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

.gallery-scroll-modern::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,34,56,0.13);
  overflow: hidden;
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: scale(1.08) translateY(-12px);
  box-shadow: 0 20px 60px rgba(26,34,56,0.25);
  z-index: 3;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card.large {
  width: 400px;
  height: 270px;
}

.gallery-card.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Filo Section */
.filo-section {
  background: linear-gradient(120deg, #f7f8fa 70%, #eaeaea 100%);
  padding: 4rem 0 3rem 0;
  text-align: center;
  overflow: hidden;
}

.filo-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #1a2238;
  margin-bottom: 2.2rem;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out;
}

.filo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.filo-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(26,34,56,0.13);
  overflow: hidden;
  width: 340px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.filo-card:hover {
  transform: scale(1.05) translateY(-12px);
  box-shadow: 0 20px 60px rgba(26,34,56,0.25);
}

.filo-media img, .filo-media video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  background: #eee;
  border-radius: 20px 20px 0 0;
  transition: transform 0.3s ease;
}

.filo-media video {
  background: #222;
}

.filo-card:hover .filo-media img,
.filo-card:hover .filo-media video {
  transform: scale(1.05);
}

.filo-info {
  padding: 1.2rem 1rem 1.5rem 1rem;
  width: 100%;
}

.filo-info h3 {
  font-size: 1.15rem;
  color: #e94560;
  margin-bottom: 1rem;
  font-weight: 700;
}

.filo-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filo-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.filo-icon {
  font-size: 1.2rem;
}

/* Hakkımızda Section */
.hakkimizda-section {
  background: linear-gradient(120deg, #f7f8fa 70%, #eaeaea 100%);
  padding: 4rem 0 3rem 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.hakkimizda-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  border-radius: 28px;
  box-shadow: 0 4px 32px rgba(26,34,56,0.09);
  padding: 2.5rem 2rem;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out;
}

.hakkimizda-img {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInLeft 1s ease-out 0.3s both;
}

.hakkimizda-img img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(26,34,56,0.13);
  border: 6px solid #eaeaea;
  background: #f7f7f7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hakkimizda-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(26,34,56,0.2);
  border-color: #e94560;
}

.hakkimizda-content {
  flex: 1 1 350px;
  min-width: 250px;
  animation: fadeInRight 1s ease-out 0.6s both;
}

.hakkimizda-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #1a2238;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.hakkimizda-content p {
  font-size: clamp(1rem, 2.5vw, 1.13rem);
  color: #222;
  line-height: 1.7;
  margin-bottom: 0;
}

.hakkimizda-content strong {
  display: block;
  margin-top: 1.2rem;
  font-size: 1.15rem;
  color: #e94560;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* İletişim Section */
.iletisim-section {
  background: linear-gradient(120deg, #f7f8fa 70%, #eaeaea 100%);
  padding: 4rem 0 3rem 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.iletisim-container {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  border-radius: 28px;
  box-shadow: 0 4px 32px rgba(26,34,56,0.09);
  padding: 2.5rem 2rem;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out;
}

.iletisim-info {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(26,34,56,0.07);
  padding: 2rem 1.5rem;
  font-size: 1.13rem;
  color: #222;
  min-width: 250px;
  animation: fadeInLeft 1s ease-out 0.3s both;
}

.iletisim-info h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: #1a2238;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.iletisim-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iletisim-info li {
  margin-bottom: 1.1rem;
  font-size: 1.08rem;
  transition: transform 0.3s ease;
}

.iletisim-info li:hover {
  transform: translateX(5px);
}

.iletisim-info a {
  color: #e94560;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.iletisim-info a:hover {
  color: #1a2238;
  text-decoration: underline;
}

.iletisim-map {
  flex: 1 1 350px;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease-out 0.6s both;
}

.iletisim-map iframe {
  width: 100%;
  min-width: 280px;
  height: 260px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(26,34,56,0.07);
  transition: transform 0.3s ease;
}

.iletisim-map iframe:hover {
  transform: scale(1.02);
}

/* Footer */
.site-footer {
  width: 100%;
  background: #1a2238;
  color: #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem 1.2rem 2.5rem;
  font-size: 1.05rem;
  flex-wrap: wrap;
  gap: 1.5rem;
  overflow: hidden;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-brand:hover {
  color: #e94560;
}

.footer-info {
  font-size: 1rem;
  color: #eaeaea;
}

.footer-info a {
  color: #e94560;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-info a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-right {
  font-size: 1rem;
  color: #eaeaea;
  text-align: right;
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Reveal Animasyonları */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Kusursuz Responsive Tasarım */
@media (max-width: 1200px) {
  .gallery-card.large {
    width: 320px;
    height: 200px;
  }
  
  .filo-gallery {
    gap: 2rem;
  }
  
  .hakkimizda-container,
  .iletisim-container {
    margin: 0 2rem;
  }
}

@media (max-width: 1100px) {
  .gallery-card {
    width: 280px;
    height: 180px;
  }
  
  .hakkimizda-container,
  .iletisim-container {
    margin: 0 1.5rem;
  }
}

@media (max-width: 900px) {
  .navbar-links {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a2238;
    display: none;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  
  .navbar-links li {
    text-align: center;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .navbar-links li:last-child {
    border-bottom: none;
  }
  
  .navbar-links li a {
    display: block;
    padding: 1rem;
    border-radius: 0;
  }
  
  .menu-icon {
    display: block;
  }
  
  .menu-toggle:checked + .menu-icon + .navbar-links {
    display: flex;
  }
  
  .gallery-card {
    width: 240px;
    height: 160px;
  }
  
  .gallery-card.large {
    width: 280px;
    height: 180px;
  }
  
  .gallery-btn {
    width: 50px;
    height: 50px;
  }
  
  .gallery-btn.left::before,
  .gallery-btn.right::before {
    border-width: 12px 15px 12px 0;
  }
  
  .gallery-btn.right::before {
    border-width: 12px 0 12px 15px;
  }
  
  .gallery-scroll-modern {
    padding: 2rem 2rem;
  }
  
  .hizmetler-gallery-modern {
    min-height: 280px;
  }
  
  .hakkimizda-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  
  .hakkimizda-img img {
    width: 200px;
    height: 200px;
  }
  
  .iletisim-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  
  .iletisim-map iframe {
    height: 220px;
  }
  
  .filo-gallery {
    gap: 1.5rem;
  }
  
  .filo-card {
    width: 90vw;
    max-width: 400px;
  }
  
  .filo-media img, .filo-media video {
    height: 250px;
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar-logo {
    font-size: 1.4rem;
  }
  
  .hero-section {
    min-height: 500px;
    margin-top: 60px;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-btn-group {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 300px;
  }
  
  .hero-btn, .whatsapp-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
  
  .gallery-card {
    width: 200px;
    height: 140px;
  }
  
  .gallery-card.large {
    width: 240px;
    height: 160px;
  }
  
  .gallery-btn {
    width: 45px;
    height: 45px;
  }
  
  .gallery-scroll-modern {
    padding: 1.5rem 1.5rem;
    gap: 1.5rem;
  }
  
  .hizmetler-gallery-modern {
    min-height: 240px;
  }
  
  .hizmetler-header {
    padding: 0 1rem;
  }
  
  .hizmetler-desc {
    padding: 1.5rem 1.5rem;
    margin: 0 1rem 2rem 1rem;
  }
  
  .hizmetler-modern-btn {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1rem;
    display: block;
    margin: 0 auto;
    
  }
  
  .hakkimizda-container {
    margin: 0 1rem;
    padding: 1.5rem 1rem;
  }
  
  .hakkimizda-img img {
    width: 180px;
    height: 180px;
  }
  
  .iletisim-container {
    margin: 0 1rem;
    padding: 1.5rem 1rem;
  }
  
  .iletisim-info {
    padding: 1.5rem 1rem;
  }
  
  .iletisim-map iframe {
    height: 200px;
  }
  
  .filo-gallery {
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .filo-card {
    width: 100%;
    max-width: 100%;
  }
  
  .filo-media img, .filo-media video {
    height: 220px;
  }
  
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem 1rem 1rem;
    gap: 1rem;
  }
  
  .footer-right {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0.6rem 0.8rem;
  }
  
  .navbar-logo {
    font-size: 1.2rem;
  }
  
  .hero-section {
    min-height: 400px;
    margin-top: 55px;
  }
  
  .hero-title {
    padding: 0.8rem 1rem;
  }
  
  .hero-subtitle {
    padding: 0.5rem 1rem;
  }
  
  .hero-btn-group {
    max-width: 280px;
  }
  
  .hero-btn, .whatsapp-btn {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .hizmetler-section {
    padding: 3rem 0 2rem 0;
  }
  
  .hizmetler-header {
    padding: 0 0.8rem;
  }
  
  .hizmetler-desc {
    padding: 1rem 1rem;
    margin: 0 0.8rem 1.5rem 0.8rem;
    font-size: 0.95rem;
  }
  
  .hizmetler-modern-btn {
    max-width: 280px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .gallery-card {
    width: 160px;
    height: 120px;
  }
  
  .gallery-card.large {
    width: 200px;
    height: 140px;
  }
  
  .gallery-btn {
    width: 40px;
    height: 40px;
  }
  
  .gallery-btn.left::before,
  .gallery-btn.right::before {
    border-width: 10px 12px 10px 0;
  }
  
  .gallery-btn.right::before {
    border-width: 10px 0 10px 12px;
  }
  
  .gallery-scroll-modern {
    padding: 1rem 1rem;
    gap: 1rem;
  }
  
  .hizmetler-gallery-modern {
    min-height: 200px;
  }
  
  .filo-section {
    padding: 3rem 0 2rem 0;
  }
  
  .filo-gallery {
    padding: 0 0.8rem;
  }
  
  .filo-card {
    border-radius: 15px;
  }
  
  .filo-media img, .filo-media video {
    height: 180px;
    border-radius: 15px 15px 0 0;
  }
  
  .hakkimizda-section {
    padding: 3rem 0 2rem 0;
  }
  
  .hakkimizda-container {
    margin: 0 0.8rem;
    padding: 1rem 0.8rem;
    gap: 1rem;
  }
  
  .hakkimizda-img img {
    width: 140px;
    height: 140px;
  }
  
  .hakkimizda-content h2 {
    font-size: 1.2rem;
  }
  
  .hakkimizda-content p {
    font-size: 0.9rem;
  }
  
  .iletisim-section {
    padding: 3rem 0 2rem 0;
  }
  
  .iletisim-container {
    margin: 0 0.8rem;
    padding: 1rem 0.8rem;
    gap: 1rem;
  }
  
  .iletisim-info {
    padding: 1rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .iletisim-info h2 {
    font-size: 1.2rem;
  }
  
  .iletisim-info li {
    font-size: 0.9rem;
  }
  
  .iletisim-map iframe {
    height: 150px;
  }
  
  .site-footer {
    padding: 1rem 0.8rem 0.8rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .footer-brand {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 0.6rem;
  }
  
  .navbar-logo {
    font-size: 1.1rem;
  }
  
  .hero-section {
    min-height: 350px;
    margin-top: 50px;
  }
  
  .hero-title {
    padding: 0.6rem 0.8rem;
    font-size: 1.1rem;
  }
  
  .hero-subtitle {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .hero-btn-group {
    max-width: 260px;
  }
  
  .hero-btn, .whatsapp-btn {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  
  .hizmetler-header {
    padding: 0 0.6rem;
  }
  
  .hizmetler-desc {
    padding: 0.8rem 0.8rem;
    margin: 0 0.6rem 1rem 0.6rem;
    font-size: 0.9rem;
  }
  
  .hizmetler-modern-btn {
    max-width: 260px;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    
  }
  
  .gallery-card {
    width: 140px;
    height: 100px;
  }
  
  .gallery-card.large {
    width: 180px;
    height: 120px;
  }
  
  .gallery-btn {
    width: 35px;
    height: 35px;
  }
  
  .gallery-btn.left::before,
  .gallery-btn.right::before {
    border-width: 8px 10px 8px 0;
  }
  
  .gallery-btn.right::before {
    border-width: 8px 0 8px 10px;
  }
  
  .gallery-scroll-modern {
    padding: 0.8rem 0.8rem;
    gap: 0.8rem;
  }
  
  .hizmetler-gallery-modern {
    min-height: 180px;
  }
  
  .filo-gallery {
    padding: 0 0.6rem;
  }
  
  .filo-media img, .filo-media video {
    height: 160px;
  }
  
  .hakkimizda-container {
    margin: 0 0.6rem;
    padding: 0.8rem 0.6rem;
  }
  
  .hakkimizda-img img {
    width: 120px;
    height: 120px;
  }
  
  .hakkimizda-content h2 {
    font-size: 1.1rem;
  }
  
  .hakkimizda-content p {
    font-size: 0.85rem;
  }
  
  .iletisim-container {
    margin: 0 0.6rem;
    padding: 0.8rem 0.6rem;
  }
  
  .iletisim-info {
    padding: 0.8rem 0.6rem;
    font-size: 0.85rem;
  }
  
  .iletisim-info h2 {
    font-size: 1.1rem;
  }
  
  .iletisim-info li {
    font-size: 0.85rem;
  }
  
  .iletisim-map iframe {
    height: 120px;
  }
  
  .site-footer {
    padding: 0.8rem 0.6rem 0.6rem 0.6rem;
    font-size: 0.85rem;
  }
  
  .footer-brand {
    font-size: 1rem;
  }
}

/* Hover efektleri için özel sınıflar */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-scale {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-glow:hover {
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
}

/* Loading animasyonu */
.loading {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Smooth scroll için */
html {
  scroll-behavior: smooth;
}

/* Mobilde scroll performansı */
@media (max-width: 768px) {
  * {
    -webkit-overflow-scrolling: touch;
  }
  
  .gallery-scroll-modern {
    -webkit-overflow-scrolling: touch;
  }
}

/* Focus states for accessibility */
.navbar-links li a:focus,
.hero-btn:focus,
.whatsapp-btn:focus,
.hizmetler-modern-btn:focus,
.gallery-btn:focus {
  outline: 2px solid #e94560;
  outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
.hizmetler-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(90deg, #eaeaea 60%, #f7f8fa 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(26, 34, 56, 0.08);
}

.gallery-grid-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26, 34, 56, 0.13);
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-grid-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(26, 34, 56, 0.25);
}

.gallery-grid-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid-card:hover img {
  transform: scale(1.05);
}
/* Modal arka plan */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  cursor: zoom-out;
}

/* Modal kapatma butonu */
.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  z-index: 1001;
}

/* Modal içindeki görsel */
.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {transform: scale(0.8);}
  to {transform: scale(1);}
}
