/*
Theme Name: hibritlens
Theme URI: https://hibritlens.com/
Author: hibritlens
Author URI: https://hibritlens.com/
Description: hibritlens
Version: 1.0
Text Domain: hibritlens
*/

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.whatsapp-icon {
  background-color: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-icon img {
  width: 42px;
  height: 42px;
}

.whatsapp-text {
  background-color: #25d366;
  color: white;
  font-weight: 500;
  margin-left: 10px;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
  max-width: 0;
  overflow: hidden;
}

.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.1);
  animation: none; /* Hover s覺ras覺nda nefes efekti durur */
}

.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
  max-width: 300px;
}

/* Nefes alan (pulse) animasyonu */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float .whatsapp-text {
    display: none;
  }
}

/* Contact Form 7 input & textarea */
.wpcf7 .form-control,
.wpcf7 input.form-control,
.wpcf7 textarea.form-control,
.wpcf7 select.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--divider-color);
    border-radius: 26px;
    background: var(--secondary-color);
    font-size: 16px;
    font-family: var(--default-font);
    transition: all 0.3s ease-in-out;
}

.wpcf7 .form-control:focus {
    border-color: var(--accent-color);
    background: var(--white-color);
    outline: none;
}

/* Textarea */
.wpcf7 textarea.form-control {
    min-height: 160px;
    resize: none;
}

/* Submit butonu */
.wpcf7 input[type="submit"].btn-default {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.wpcf7 form p {
    margin: 0; 
    padding: 0;
}

/* Dijigodijital Start */
.footer-logo1 {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.footer-logo1 img {
  width: 60px;
  height: auto;
  transform-style: preserve-3d;
  transition: transform 1.5s ease;
}

.footer-logo1:hover img {
  transform: rotateY(360deg);
}


.footer-logo1 .popup {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ff5f1f;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


.footer-logo1:hover .popup {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}
/* Dijigodijital End */

