/* ==================================================
   HOME PAGE – HERO & SLIDER
   Bu dosya SADECE index.html içindir
================================================== */
      .hero {position: relative;width: 100%;height: 100vh;overflow: hidden;}

/* Seo h1 Görünmez*/
      .seo-h1 {position: absolute;width: 1px;height: 1px;overflow: hidden;clip: rect(0, 0, 0, 0);white-space: nowrap;}

/* SLIDER */
      .slider {position: absolute;inset: 0;z-index: 1;background-size: cover;background-position: center;background-repeat: no-repeat;}
      .slide-layer {position: absolute;inset: 0;z-index: 1;background-size: cover;background-position: center;background-repeat: no-repeat;opacity: 0;transition: opacity 1.2s ease;}

/* DARK OVERLAY */
      .hero .overlay {position: absolute;inset: 0;background: rgba(0, 0, 0, 0.45);z-index: 2;}

/* ==================================================
   SERVICE POPUP (Homepage only)
================================================== */
      .service-popup {position: fixed;inset: 0;background: rgba(0,0,0,0.75);display: none;align-items: center;justify-content: center;z-index: 9999;}
      .service-popup.active {display: flex;}
      .popup-content {background: #0f0f0f;border: 1px solid rgba(212, 175, 55, 0.4);max-width: 520px;width: 90%;padding: 40px 35px;text-align: center;position: relative;animation: popupFade 0.4s ease;}
      .popup-content h2 {font-size: 28px;margin-bottom: 15px;color: #d4af37;}
      .popup-content p {font-size: 15px;line-height: 1.6;color: #ddd;}
      .close-popup {position: absolute;top: 15px;right: 18px;font-size: 26px;color: #d4af37;cursor: pointer;}

/* POPUP ANIMATION */
@keyframes popupFade {
      from {opacity: 0;transform: scale(0.96);}
      to {opacity: 1;transform: scale(1);}}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 768px) {
      .popup-content {padding: 30px 25px;}
      .popup-content h2 {font-size: 24px;}
      .popup-content p {font-size: 14px;}}





