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

/* Tooltip Balonu */
.wa-tooltip {
  position: absolute;
  bottom: 95px;
  right: 0;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  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: var(--radius-md);
  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;
  }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    padding: 4rem 0 0 0;
    margin-top: 0;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr 1.5fr;
    gap: 2.5rem;
}

.footer-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand svg {
    color: #14b8a6;
    flex-shrink: 0;
}

.footer-brand span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-desc {
    color: #cbd5e1;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Footer Trust Badges */
.footer-trust-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-trust-wrapper .footer-title {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.trust-badge {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 0.8125rem;
    color: #94a3b8;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    height: 44px;
}

.trust-badge svg {
    position: absolute;
    left: 0;
    top: -12px;
    color: #14b8a6;
    flex-shrink: 0;
    background: #1e293b;
    border-radius: 50%;
    padding: 3px;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #14b8a6;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #14b8a6;
    transform: translateX(5px);
}

.footer-view-all-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(20, 184, 166, 0.2);
}

.footer-view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(20, 184, 166, 0.3);
    background: linear-gradient(135deg, #0f766e, #115e59);
}

/* Footer Newsletter */
.footer-newsletter {
    display: flex;
    flex-direction: column;
}

.footer-newsletter .footer-title {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    height: 44px;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #14b8a6;
}

.newsletter-btn {
    padding: 0 1.5rem;
    background: #14b8a6;
    border: none;
    border-radius: var(--radius-sm);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
    height: 44px;
}

.newsletter-btn:hover {
    background: #0f766e;
    transform: translateY(-2px);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-contact li svg {
    color: #14b8a6;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact li a,
.footer-contact li a:link,
.footer-contact li a:visited {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-contact li a:hover,
.footer-contact li a:active {
    color: #14b8a6 !important;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
    text-align: center;
}


/* Footer Payment Icons */
.footer-payment {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-icon {
    height: 28px;
    width: auto;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-main {
        padding: 0 1.5rem 2.5rem 1.5rem;
    }

    .footer-secondary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8125rem;
    }

    .payment-icon {
        height: 20px;
    }
}

@media (max-width: 640px) {
    .footer {
        padding-top: 3rem;
        margin-top: 0;
    }

    .footer-main {
        padding: 0 1.5rem 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    /* Logo kolonu - tam genişlik */
    .footer-grid > .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-grid > .footer-col:first-child .footer-brand {
        justify-content: center;
    }

    .footer-grid > .footer-col:first-child .footer-desc {
        text-align: center;
    }

    .footer-grid > .footer-col:first-child .footer-social {
        justify-content: center;
    }

    /* İletişim ve Politikalar yan yana değil - her biri kendi kolonunda */

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .payment-icon {
        height: 18px;
    }

    .footer-payment {
        gap: 0.5rem;
    }
}

/* Newsletter Messages */
.newsletter-message {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.newsletter-success {
    background: #ccfbf1;
    color: #115e59;
    border: 1px solid #5eead4;
}

.newsletter-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}
