.footer-section {
    background-color: #202020;
    position: relative;
    z-index: 9;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 200px 240px 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column-logo {
    max-width: 400px;
}

.footer-logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin-bottom: 25px;
}

.footer-description {
    color: #c5c5c5;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ffffff;
    color: #8E44AD;
    border-color: #ffffff;
}

.footer-column-links,
.footer-column-policies {
    min-width: 180px;
}

.footer-heading {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}

.icon-list {
    list-style: none;
}

.icon-list-item {
    margin-bottom: 12px;
}

.icon-list-item a {
    color: #b5b5b5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.icon-list-item a:hover {
    color: #ffffff;
}

.icon-list-item i {
    color: #5ea3d0;
    font-size: 10px;
}

.contact-list-item {
    margin-bottom: 15px;
}

.contact-list-item a {
    gap: 12px;
}

.contact-list-item i {
    color: #5ea3d0;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
}

.trust-badge {
    max-width: 150px;
}

.trust-badge img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #9a9a9a;
    font-size: 13px;
    line-height: 1.6;
}

.payment-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-icons img {
    height: 20px;
    width: auto;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-column-logo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 40px 0 20px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-column-logo {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo {
        max-width: 240px;
        margin: 0 auto 25px;
    }

    .footer-description {
        text-align: center;
    }

    .social-icons {
        gap: 10px;
        justify-content: center;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .footer-column-links {
        grid-column: 1;
    }

    .footer-column-policies {
        grid-column: 2;
    }

    .footer-column-contact {
        grid-column: 1 / -1;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .icon-list-item {
        margin-bottom: 10px;
    }

    .icon-list-item a {
        font-size: 13px;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
        justify-content: center;
    }

    .trust-badge {
        max-width: 120px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 20px;
    }

    .copyright {
        font-size: 11px;
    }

    .payment-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        max-width: 100%;
    }

    .payment-icons img {
        height: 18px;
        max-width: 100%;
    }
}

/* WhatsApp Sabit Buton */
.wa-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Tooltip Balonu */
.wa-tooltip {
  position: absolute;
  bottom: 95px;
  right: 0;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  pointer-events: none;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 25px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}

.wa-tooltip-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-tooltip-text {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 4px;
}

.wa-tooltip-support {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #25D366;
}

/* Buton - DAHA BÜYÜK */
.wa-fixed {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  color: #fff;
  text-decoration: none;
  border-radius: 65px;
  padding: 22px 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  font-size: 19px;
  font-weight: 700;
  transition: all 0.25s ease;
  animation: wa-pulse 2.4s infinite;
}

.wa-fixed:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
}

/* 7/24 Destek etiketi - DAHA BELIRGIN */
.wa-label {
  position: absolute;
  top: -14px;
  left: -12px;
  background: linear-gradient(135deg, #ff4444, #ff6666);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 68, 68, 0.4);
  white-space: nowrap;
  animation: wa-label-bounce 2s infinite;
}

.wa-icon {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.wa-text {
  letter-spacing: 0.4px;
  font-size: 19px;
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes wa-label-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Mobil uyum */
@media (max-width: 768px) {
  .wa-wrapper {
    bottom: 20px;
    right: 20px;
  }
  
  .wa-tooltip {
    bottom: 75px;
    right: 0;
    padding: 12px 16px;
    max-width: calc(100vw - 100px);
  }
  
  .wa-tooltip-text {
    font-size: 14px;
  }
  
  .wa-tooltip-support {
    font-size: 12px;
  }
  
  .wa-fixed {
    padding: 18px 24px;
    font-size: 17px;
    border-radius: 55px;
    gap: 10px;
  }
  
  .wa-icon {
    width: 32px;
    height: 32px;
  }
  
  .wa-text {
    font-size: 17px;
  }
  
  .wa-label {
    font-size: 11px;
    top: -12px;
    left: -10px;
    padding: 4px 8px;
  }
}
/* Telefon Sabit Butonu */
.call-fixed {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0078ff, #005ec2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 120, 255, 0.4);
  text-decoration: none;
  z-index: 9999;
  transition: all 0.25s ease;
  animation: call-pulse 2.4s infinite;
}

.call-fixed:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0, 120, 255, 0.6);
}

/* Telefon simgesi */
.call-icon {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes call-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 120, 255, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(0, 120, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 120, 255, 0); }
}

/* Mobil uyum */
@media (max-width: 768px) {
  .call-fixed {
    bottom: 20px;
    left: 20px;
    width: 54px;
    height: 54px;
  }
  .call-icon {
    width: 25px;
    height: 25px;
  }
}
