html {
  scroll-behavior: smooth;
}

/* SLAYDER CONTAİNER */

.inter-text {
    font-family: 'Inter', sans-serif;
}

.slider-strip {
  position: relative;
  overflow: hidden;
  margin: 10px 0;
  height: 150px; /* resim boyu */
}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: center;
}

.slider-strip img {
  width: 180px;
  height: 100px;
  object-fit: contain;
  background: white;
  padding: 5px;
  flex-shrink: 0;
}

/* Üst şerit: sağdan sola */
.top-strip .slider-track {
  animation: slide-right-to-left 20s linear infinite;
  mask-image: linear-gradient(to right, rgba(0,0,0,0), black 20%, black 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), black 20%, black 100%);
}

/* Alt şerit: soldan sağa */
.bottom-strip .slider-track {
  animation: slide-left-to-right 20s linear infinite;
  mask-image: linear-gradient(to left, black 80%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to left, black 80%, rgba(0,0,0,0));
}

/* Animasyonlar */
@keyframes slide-right-to-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes slide-left-to-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}



/* ORTADAKI YAŞIL CONTAİNER */
.custom-container {
    background-color: #e8f9e8; /* çok açık yeşil */
    border-top: 2px solid #7bb87b; /* üst ve yan çizgi */
    border-left: 2px solid #7bb87b;
    border-right: 2px solid #7bb87b;
    border-bottom: none; /* alt çizgi yok */
    border-top-left-radius: 15px; /* üst sol yuvarlak */
    border-top-right-radius: 15px; /* üst sağ yuvarlak */
    border-bottom-left-radius: 0; /* alt sol düz */
    border-bottom-right-radius: 0; /* alt sağ düz */
}

.hizmet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.hizmet-item:last-child {
    border-bottom: none;
}

.icon {
    font-size: 28px;
    color: #2e7d32;
}


/* NİYE BİZ? */

.nedenbiz-container {
    background: linear-gradient(135deg, #e8f9e8, #f4fff4);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Yuxarı dekorativ xətt */
.nedenbiz-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #25D366, #2e7d32);
}

.neden-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.neden-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}





/* ƏN ALTDAKI ƏLAQƏ BUTTONU */
.siparis-btn {
    position: fixed;
    bottom: 0;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    padding: 15px 25px;
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Masa端st端 */
@media (min-width: 768px) {
    .siparis-btn {
        right: 20px;
        bottom: 20px;
        border-radius: 14px;
    }
}

/* Mobil */
@media (max-width: 767px) {
    .siparis-btn {
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: 18px;
    }
}

/* YAPIŞIQ INSTAGRAM */

.instagram-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #E1306C;
    color: white;
    padding: 12px 14px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    font-size: 22px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.instagram-float:hover {
    background: #c72a5c;
    padding-right: 20px;
}


/* FOOTER */

.site-footer {
    background-color: #4f5d75; /* mavimsi gri */
    color: #f1f3f5;
    padding-bottom: 70px;
}

.site-footer p,
.site-footer small {
    color: #e0e3e7;
}

.footer-title {
    font-weight: 600;
}

.site-footer strong {
    color: #ffffff;
}