/* {
     box-sizing: border-box;
}

body {
     margin: 0;
     font-family: sans-serif;
}*/

.contact-wrapper {
     position: fixed;
     bottom: 20px;
     right: 105px;
     z-index: 1000;
}

.main-button {
     background-color: #ff9800;
     color: #fff;
     border-radius: 50px;
     padding: 12px 18px;
     font-size: 16px;
     display: flex;
     align-items: center;
     gap: 10px;
     cursor: pointer;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
     transition: background-color 0.3s;
}

.main-button:hover {
     background-color: #000000;
}

.main-button i {
     font-size: 20px;
}

.icons-contain {
     position: absolute;
     bottom: 60px;
     right: 5px;
     /* pointer-events: none; */
}

.icon-button {
     width: 45px;
     height: 45px;
     border-radius: 50%;
     background-color: #555;
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     position: absolute;
     opacity: 0;
     /* transform: scale(0);
                    transition: all 0.5s ease; */
     box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.icon-button.email {
     background-color: #000000;
     transform: scale(1);
     transition: all 0.5s ease;
}
.icon-button.phone {
     background-color: #14489b;
     transform: scale(3);
     transition: all 0.5s ease;
}
.icon-button.whatsapp {
     background-color: #116e21;
     transform: scale(2);
     transition: all 0.5s ease;
}

.contact-wrapper.active .icon-button {
     pointer-events: auto;
     opacity: 1;
     transform: scale(1);
}

/* Butonların x- y- z ekseni pozisyonları  */
.contact-wrapper.active .email {
     transform: translate(-30px, -50px);
}
.contact-wrapper.active .email:hover {
     transform: translate(-30px, -50px) scale(1.3);
}

.contact-wrapper.active .phone {
     transform: translate(-150px, -50px);
}
.contact-wrapper.active .phone:hover {
     transform: translate(-150px, -50px) scale(1.3);
}

.contact-wrapper.active .whatsapp {
     transform: translate(-90px, -50px);
}
.contact-wrapper.active .whatsapp:hover {
     transform: translate(-90px, -50px) scale(1.3);
}

/* Mobil uyum */
@media (max-width: 600px) {
     .main-button {
          font-size: 14px;
          padding: 10px 14px;
     }
     .icon-button {
          width: 40px;
          height: 40px;
          font-size: 16px;
     }
}
