#teklifFormu .nice-select,
#teklifFormu .ui-selectmenu-button,
#teklifFormu .ui-selectmenu-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    padding: 0 !important;
}
.klasik-select {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 60px !important;
    background-color: #1a2332 !important; 
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0 15px !important;
    font-size: 15px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 999999 !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
}
.klasik-select option {
    background-color: #1a2332 !important;
    color: #ffffff !important;
    padding: 10px !important;
}

.input-hata{
    border:1px solid #ff3b3b !important;
}

.hata-mesaji{
    color:#ff3b3b;
    font-size:13px;
    margin-top:6px;
    font-weight:500;
}
.contact-form-validated .error{
    color:#ff3b3b;
    font-size:13px;
    margin-top:6px;
    font-weight:500;
}
@media screen and (max-width: 768px) {
  .main-slider-two__bg {
    /* Görselin sağ kenarını ekrana hizalar, sol tarafı kırpar */
    background-position: 80% center !important;
  }
}

.logoaltislogan {font-size:11px;}

/* Video çerçeve */
.video-kutu1 {
  width: 336px;
  height: 344px;
  overflow: hidden; 
  position: relative;
  border-radius: 8px; 
}
.video-kutu1 video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
}
.video-kutu2 {
  width: 495px;
  height: 474px;
  overflow: hidden; 
  position: relative;
  border-radius: 8px; 
}
.video-kutu2 video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: 50% 50%;
}
.video-kutu3 {
  width: 570px;
  height: 580px;
  overflow: hidden; 
  position: relative;
  border-radius: 8px; 
}
.video-kutu3 video {
  width: 100%;
  height: 100%;

}
.video-kutu4 {
  width: 570px;
  height: 576px;
  overflow: hidden; 
  position: relative;
  border-radius: 8px; 
}
.video-kutu4 video {
  width: 100%;
  height: 100%;
}
.video-kutu5 {
  width: 570px;
  height: 576px;
  overflow: hidden; 
  position: relative;
  border-radius: 8px; 
}
.video-kutu5 video {
  width: 100%;
  height: 100%;
}
/* Arka Plan Videosu İçin Özel Sınıf */
.videobg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Videoyu ekranı bozmadan kaplayacak şekilde ayarlar */
    z-index: -2; /* Mevcut .coming-soon-page__bg (z-index: -1) katmanının arkasında kalması için */
}


/* Video kutusunun konumlandırılması */
.headerbgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* İçeriklerin (yazıların) arkasında kalması için */
    overflow: hidden;
}

/* Videonun tıking bir görsel gibi (background-size: cover mantığıyla) davranması */
.headerbgVideo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* OPSİYONEL: Üzerindeki yazıların daha rahat okunması için videoya hafif koyu maske (Overlay) */
.headerbgVideo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 25, 44, 0.6); /* Sitenin koyu lacivert tonunda %60 opaklıkta bir maske */
    z-index: 1; /* Videonun üstüne biner */
}

.headerbgVideo video {
    position: relative;
    z-index: 0; /* Maskenin altında kalır */
}

.musteripuanstar-rating {
    display: flex;
    gap: 8px;
    font-size: 32px;
}

.musteripuanstar-star {
    position: relative;
    color: #ddd; 
}

.musteripuanstar-star::after {
    content: "\f005";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    
    position: absolute;
    left: 0;
    top: 0;
    
    opacity: 0;
    
    /* Büyüme efektinin tam merkezden orantılı olması için eklendi */
    transform-origin: center;
    
    background: linear-gradient(
        270deg,
        #FA5674 0%,
        #6065D4 100%
    );
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animasyon süresi hızlandırmak adına 10s yerine 6s yapıldı */
.musteripuanstar-star:nth-child(1)::after { animation: star1 6s linear infinite; }
.musteripuanstar-star:nth-child(2)::after { animation: star2 6s linear infinite; }
.musteripuanstar-star:nth-child(3)::after { animation: star3 6s linear infinite; }
.musteripuanstar-star:nth-child(4)::after { animation: star4 6s linear infinite; }
.musteripuanstar-star:nth-child(5)::after { animation: star5 6s linear infinite; }

/* 1. Yıldız: Hemen renklenir ve büyür (1.3 katı), sonra normale (1) döner. %84'te hepsiyle birlikte tekrar büyür. */
@keyframes star1 {
    0% { opacity: 0; transform: scale(1); }
    2% { opacity: 1; transform: scale(1.3); }
    8%, 80% { opacity: 1; transform: scale(1); }
    84% { opacity: 1; transform: scale(1.2); }
    88%, 92% { opacity: 1; transform: scale(1); }
    96%, 100% { opacity: 0; transform: scale(1); }
}

/* 2. Yıldız: Sırası gelince renklenir ve büyür. */
@keyframes star2 {
    0%, 14% { opacity: 0; transform: scale(1); }
    16% { opacity: 1; transform: scale(1.3); }
    22%, 80% { opacity: 1; transform: scale(1); }
    84% { opacity: 1; transform: scale(1.2); }
    88%, 92% { opacity: 1; transform: scale(1); }
    96%, 100% { opacity: 0; transform: scale(1); }
}

/* 3. Yıldız */
@keyframes star3 {
    0%, 28% { opacity: 0; transform: scale(1); }
    30% { opacity: 1; transform: scale(1.3); }
    36%, 80% { opacity: 1; transform: scale(1); }
    84% { opacity: 1; transform: scale(1.2); }
    88%, 92% { opacity: 1; transform: scale(1); }
    96%, 100% { opacity: 0; transform: scale(1); }
}

/* 4. Yıldız */
@keyframes star4 {
    0%, 42% { opacity: 0; transform: scale(1); }
    44% { opacity: 1; transform: scale(1.3); }
    50%, 80% { opacity: 1; transform: scale(1); }
    84% { opacity: 1; transform: scale(1.2); }
    88%, 92% { opacity: 1; transform: scale(1); }
    96%, 100% { opacity: 0; transform: scale(1); }
}

/* 5. Yıldız: Sonuncu yanar. Biraz bekledikten sonra %84 noktasında tüm yıldızlar hep birlikte büyür. */
@keyframes star5 {
    0%, 56% { opacity: 0; transform: scale(1); }
    58% { opacity: 1; transform: scale(1.3); }
    64%, 80% { opacity: 1; transform: scale(1); }
    84% { opacity: 1; transform: scale(1.2); }
    88%, 92% { opacity: 1; transform: scale(1); }
    96%, 100% { opacity: 0; transform: scale(1); }
}

.social-share-btns {
  display: flex;
  justify-content: center;
  align-items: center;

  .share-btn {
    min-height: 80px;
    float: left;
    padding: 10px 30px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    font-family: "Lato", sans-serif;
    text-decoration: none;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
	text-align: center;

    i {
      transition: var(--transition);
      margin-right: 55px;
      display: inline-block;
      font-size: 46px;
      margin-left: 10px;
      line-height: 1.3;
    }
  }
}
:root {
  --transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (min-width: 481px) {
  .social-share-btns .share-btn:hover {
    min-height: 90px;
    font-size: 2.1rem;
    margin-top: -15px;
    padding-top: 12px;
    transition: var(--transition);
    box-shadow: 0 40px 45px -10px rgba(0, 0, 0, 0.2);

    i {
      margin-right: 70px;
      transition: var(--transition);
      font-size: 50px;
    }
  }
}

.share-text {
  display: flex;
  align-items: center;
}

.share-btn-instagram {
  background: radial-gradient(
      circle farthest-corner at 0% 150%,
      rgb(255, 225, 125) 0%,
      rgb(255, 205, 105) 12%,
      rgb(250, 145, 55) 25%,
      rgb(235, 65, 65) 41%,
      transparent 95%
    ),
    linear-gradient(-15deg, rgb(35, 75, 215) -10%, rgb(195, 60, 190) 65%);
  background-size: 120% 120%;
  animation: GradientBackground 5s ease-out infinite;
}

.fadeInUp {
  transition: ease 0.8s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media (max-width: 480px) {
  .social-share-btns .share-btn {
    min-width: 270px;
    min-height: 66px;
    font-size: 1.5rem;

    i {
      margin-right: 30px;
      font-size: 38px;
    }
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  65% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes GradientBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* Alt Menü Ana Taşıyıcı */
.fixed-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  z-index: 9999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%); 
transition: transform 4.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.fixed-bottom-nav.show-nav {
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .fixed-bottom-nav {
    width: 70%;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 24px 24px 0 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.fixed-bottom-nav .nav-item {
  flex: 1; 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  gap: 1px; 
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  transition: transform 0.2s ease;
}

.fixed-bottom-nav .nav-item:active .icon-circle {
  transform: scale(0.9);
}

.icon-circle.phone { background-color: #007bff; } /* Telefon mavisi */
.icon-circle.whatsapp { background-color: #25d366; } /* WhatsApp yeşili */
.icon-circle.location { background-color: #ea4335; } /* Harita kırmızısı */
.icon-circle.instagram { 
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); 
}

.fixed-bottom-nav span {
  font-family: inherit;
  font-weight: 700; 
  font-size: 13px;
  letter-spacing: 0.3px;
}

@media screen and (max-width: 400px) {
  .fixed-bottom-nav span {
    font-size: 11px;
  }
  .icon-circle {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
}

.boslukcizgi {
	border-bottom: 1px dashed rgba(var(--techguru-white-rgb), .20);
    padding-top: 23px;
	padding-bottom: 53px;
}