.floating-icons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.floating-icons a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #161c22, #0b0f12) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    z-index: 2;
}

/* Base Pulse Ring */
.floating-icons a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}


.floating-icons a:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.floating-icons svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.floating-icons a:hover svg {
    color: #ffffff !important;
    transform: scale(1.1);
}

/* Gmail */
.floating-icons .icon-mail svg {
    color: #EA4335;
}
.floating-icons .icon-mail:hover {
    background: #EA4335 !important;
}
.floating-icons .icon-mail::before {
    background: rgba(234, 67, 53, 0.6);
    animation-delay: 0s;
}

/* WhatsApp */
.floating-icons .icon-whatsapp svg {
    color: #25D366;
}
.floating-icons .icon-whatsapp:hover {
    background: #25D366 !important;
}
.floating-icons .icon-whatsapp::before {
    background: rgba(37, 211, 102, 0.6);
    animation-delay: 0.6s;
}

/* Call */
.floating-icons .icon-phone svg {
    color: #007BFF;
}
.floating-icons .icon-phone:hover {
    background: #007BFF !important;
}
.floating-icons .icon-phone::before {
    background: rgba(0, 123, 255, 0.6);
    animation-delay: 1.2s;
}

/* Keyframes for Pulse */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Custom Authenticated reCAPTCHA Card */
.custom-recaptcha-card {
    width: 304px;
    height: 76px;
    background-color: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    margin: 0.75rem auto 1rem;
    user-select: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

.custom-recaptcha-card.error {
    border-color: #d93025 !important;
    box-shadow: 0 0 8px rgba(217, 48, 37, 0.35) !important;
    animation: recaptcha-shake 0.4s ease;
}

@keyframes recaptcha-shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.recaptcha-left {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.recaptcha-checkbox-box {
    width: 26px;
    height: 26px;
    background-color: #ffffff;
    border: 2px solid #c1c1c1;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.recaptcha-left:hover .recaptcha-checkbox-box:not(.checked):not(.loading) {
    border-color: #999999;
}

/* Spinner */
.recaptcha-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #e0e0e0;
    border-top: 3px solid #4285f4;
    border-radius: 50%;
    animation: recaptcha-spin 0.7s linear infinite;
}

@keyframes recaptcha-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.recaptcha-checkbox-box.loading {
    border-color: transparent !important;
    background: transparent !important;
}

.recaptcha-checkbox-box.loading .recaptcha-spinner {
    display: block;
}

/* Checkmark */
.recaptcha-checkmark {
    display: none;
    width: 24px;
    height: 24px;
}

.recaptcha-checkbox-box.checked {
    border-color: transparent !important;
    background: transparent !important;
}

.recaptcha-checkbox-box.checked .recaptcha-checkmark {
    display: block;
    animation: recaptcha-check-pop 0.3s ease-out;
}

@keyframes recaptcha-check-pop {
    0% { transform: scale(0.4); opacity: 0; }
    70% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.recaptcha-label {
    font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #282828;
    letter-spacing: 0.1px;
}

.recaptcha-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
    text-decoration: none;
}

.recaptcha-logo-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 2px;
}

.recaptcha-brand-text {
    font-size: 10px;
    font-weight: 700;
    color: #555555;
    line-height: 1.1;
    font-family: Roboto, Arial, sans-serif;
}

.recaptcha-terms {
    font-size: 8px;
    color: #777777;
    line-height: 1.1;
    margin-top: 2px;
    font-family: Roboto, Arial, sans-serif;
}
