.contact-card-hover {
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-card-hover h3 {
  margin-top: 10px;
}

.contact-card-hover a {
  text-decoration: none;
  color: black; 
}

.contact-card-hover a:hover {
  color: #000; 
}


.or-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0 15px;
}

.or-separator::before,
.or-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.or-separator span {
    padding: 0 12px;
    font-size: 13px;
    color: #777;
    font-weight: 500;
    letter-spacing: 1px;
}

.direct-email {
    font-size: 14px;
    color: #555;
}

.direct-email a {
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.direct-email a:hover {
    text-decoration: underline;
}


    ::selection {
      background:  #ffebee;
      color: #d32f2f;
    }

    ::-moz-selection {
      background:  #ffebee;
      color: #d32f2f;
    }


.contact-float-wrapper {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translate(60px, -50%); 
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.6s ease;
}


.contact-float-wrapper.show {
    opacity: 1;
    transform: translate(0, -50%);
}

.contact-float-wrapper.hide {
    opacity: 0;
    transform: translate(80px, -50%);
}

.contact-float-btn {
    position: relative;
    width: 56px;
    height: 56px;
    background-color: #d40000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(212, 0, 0, 0.4);
    transition: all 0.3s ease;
}


.contact-float-btn:hover {
    background-color: #ffffff;
    color: #d40000;
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(212, 0, 0, 0.6);
}

.contact-float-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-float-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 0, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 0, 0, 0);
    }
}

.pulse {
    animation: pulse 2.5s infinite;
}

/* ============================= */
/* Mobile */
/* ============================= */
@media (max-width: 768px) {
    .contact-float-wrapper {
        top: auto;
        bottom: 15px;
        right: 50%;
        transform: translate(50%, 60px);
        flex-direction: row;
        gap: 10px;
    }

    .contact-float-wrapper.show {
        transform: translate(50%, 0);
    }

    .contact-float-wrapper.hide {
        transform: translate(50%, 80px);
    }

    .contact-float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 8px;
    }

    .contact-float-btn::after {
        display: none; 
    }
}


.announcement-bar {
    width: 100%;
    height: 40px;
     background-color: #d40000;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-weight: 500;
}

.announcement-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-text 40s linear infinite; 
}

@keyframes scroll-text {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

